Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 5 | * Copyright (c) 2016, NVIDIA CORPORATION. |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 8 | #ifndef _CLK_H_ |
| 9 | #define _CLK_H_ |
| 10 | |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 11 | #include <dm/ofnode.h> |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 12 | #include <linux/err.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 13 | #include <linux/errno.h> |
Masahiro Yamada | ad1cf78 | 2016-01-13 13:16:09 +0900 | [diff] [blame] | 14 | #include <linux/types.h> |
| 15 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 16 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 17 | * DOC: Overview |
| 18 | * |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 19 | * A clock is a hardware signal that oscillates autonomously at a specific |
| 20 | * frequency and duty cycle. Most hardware modules require one or more clock |
| 21 | * signal to drive their operation. Clock signals are typically generated |
| 22 | * externally to the HW module consuming them, by an entity this API calls a |
| 23 | * clock provider. This API provides a standard means for drivers to enable and |
| 24 | * disable clocks, and to set the rate at which they oscillate. |
| 25 | * |
Lukasz Majewski | a909271 | 2019-06-24 15:50:36 +0200 | [diff] [blame] | 26 | * A driver that implements UCLASS_CLK is a clock provider. A provider will |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 27 | * often implement multiple separate clocks, since the hardware it manages |
Liviu Dudau | 9bf8650 | 2018-09-17 17:43:08 +0100 | [diff] [blame] | 28 | * often has this capability. clk-uclass.h describes the interface which |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 29 | * clock providers must implement. |
| 30 | * |
| 31 | * Clock consumers/clients are the HW modules driven by the clock signals. This |
| 32 | * header file describes the API used by drivers for those HW modules. |
| 33 | */ |
| 34 | |
Masahiro Yamada | ad1cf78 | 2016-01-13 13:16:09 +0900 | [diff] [blame] | 35 | struct udevice; |
| 36 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 37 | /** |
| 38 | * struct clk - A handle to (allowing control of) a single clock. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 39 | * @dev: The device which implements the clock signal. |
| 40 | * @rate: The clock rate (in HZ). |
| 41 | * @flags: Flags used across common clock structure (e.g. %CLK_) |
| 42 | * Clock IP blocks specific flags (i.e. mux, div, gate, etc) are defined |
| 43 | * in struct's for those devices (e.g. &struct clk_mux). |
| 44 | * @enable_count: The number of times this clock has been enabled. |
| 45 | * @id: The clock signal ID within the provider. |
| 46 | * @data: An optional data field for scenarios where a single integer ID is not |
| 47 | * sufficient. If used, it can be populated through an .of_xlate op and |
| 48 | * processed during the various clock ops. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 49 | * |
| 50 | * Clients provide storage for clock handles. The content of the structure is |
| 51 | * managed solely by the clock API and clock drivers. A clock struct is |
| 52 | * initialized by "get"ing the clock struct. The clock struct is passed to all |
| 53 | * other clock APIs to identify which clock signal to operate upon. |
| 54 | * |
Andreas Dannenberg | 3b3969b | 2018-08-27 15:57:42 +0530 | [diff] [blame] | 55 | * Should additional information to identify and configure any clock signal |
| 56 | * for any provider be required in the future, the struct could be expanded to |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 57 | * either (a) add more fields to allow clock providers to store additional |
| 58 | * information, or (b) replace the id field with an opaque pointer, which the |
| 59 | * provider would dynamically allocated during its .of_xlate op, and process |
| 60 | * during is .request op. This may require the addition of an extra op to clean |
| 61 | * up the allocation. |
| 62 | */ |
| 63 | struct clk { |
| 64 | struct udevice *dev; |
Lukasz Majewski | 105db95 | 2019-06-24 15:50:38 +0200 | [diff] [blame] | 65 | long long rate; /* in HZ */ |
Lukasz Majewski | a8592cd | 2019-06-24 15:50:39 +0200 | [diff] [blame] | 66 | u32 flags; |
Peng Fan | e6849e2 | 2019-08-21 13:35:03 +0000 | [diff] [blame] | 67 | int enable_count; |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 68 | /* |
Andreas Dannenberg | 3b3969b | 2018-08-27 15:57:42 +0530 | [diff] [blame] | 69 | * Written by of_xlate. In the future, we might add more fields here. |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 70 | */ |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 71 | unsigned long id; |
Andreas Dannenberg | 3b3969b | 2018-08-27 15:57:42 +0530 | [diff] [blame] | 72 | unsigned long data; |
Simon Glass | f26c8a8 | 2015-06-23 15:39:15 -0600 | [diff] [blame] | 73 | }; |
| 74 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 75 | /** |
| 76 | * struct clk_bulk - A handle to (allowing control of) a bulk of clocks. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 77 | * @clks: An array of clock handles. |
| 78 | * @count: The number of clock handles in the clks array. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 79 | * |
| 80 | * Clients provide storage for the clock bulk. The content of the structure is |
| 81 | * managed solely by the clock API. A clock bulk struct is |
| 82 | * initialized by "get"ing the clock bulk struct. |
| 83 | * The clock bulk struct is passed to all other bulk clock APIs to apply |
| 84 | * the API to all the clock in the bulk struct. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 85 | */ |
| 86 | struct clk_bulk { |
| 87 | struct clk *clks; |
| 88 | unsigned int count; |
| 89 | }; |
| 90 | |
Simon Glass | 0d15463 | 2017-08-29 14:15:56 -0600 | [diff] [blame] | 91 | struct phandle_1_arg; |
Dario Binacchi | c9dc8e7 | 2022-09-27 19:18:19 +0200 | [diff] [blame] | 92 | |
| 93 | #if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK) |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 94 | /** |
| 95 | * clk_get_by_phandle() - Get a clock by its phandle information (of-platadata) |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 96 | * @dev: Device containing the phandle |
| 97 | * @cells: Phandle info |
| 98 | * @clk: A pointer to a clock struct to initialise |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 99 | * |
| 100 | * This function is used when of-platdata is enabled. |
| 101 | * |
| 102 | * This looks up a clock using the phandle info. With dtoc, each phandle in the |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 103 | * 'clocks' property is transformed into an idx representing the device. |
| 104 | * For example:: |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 105 | * |
| 106 | * clocks = <&dpll_mpu_ck 23>; |
| 107 | * |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 108 | * might result in:: |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 109 | * |
| 110 | * .clocks = {1, {23}},}, |
| 111 | * |
| 112 | * indicating that the clock is udevice idx 1 in dt-plat.c with an argument of |
| 113 | * 23. This function can return a valid clock given the above information. In |
| 114 | * this example it would return a clock containing the 'dpll_mpu_ck' device and |
| 115 | * the clock ID 23. |
| 116 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 117 | * Return: 0 if OK, or a negative error code. |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 118 | */ |
| 119 | int clk_get_by_phandle(struct udevice *dev, const struct phandle_1_arg *cells, |
| 120 | struct clk *clk); |
Simon Glass | 7423daa | 2016-07-04 11:58:03 -0600 | [diff] [blame] | 121 | |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 122 | /** |
Simon Glass | f0ab8f9 | 2021-08-07 07:24:09 -0600 | [diff] [blame] | 123 | * clk_get_by_index() - Get/request a clock by integer index. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 124 | * @dev: The client device. |
| 125 | * @index: The index of the clock to request, within the client's list of |
| 126 | * clocks. |
| 127 | * @clk: A pointer to a clock struct to initialize. |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 128 | * |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 129 | * This looks up and requests a clock. The index is relative to the client |
| 130 | * device; each device is assumed to have n clocks associated with it somehow, |
| 131 | * and this function finds and requests one of them. The mapping of client |
| 132 | * device clock indices to provider clocks may be via device-tree properties, |
| 133 | * board-provided mapping tables, or some other mechanism. |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 134 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 135 | * Return: 0 if OK, or a negative error code. |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 136 | */ |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 137 | int clk_get_by_index(struct udevice *dev, int index, struct clk *clk); |
| 138 | |
| 139 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 140 | * clk_get_by_index_nodev() - Get/request a clock by integer index without a |
| 141 | * device. |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 142 | * @node: The client ofnode. |
| 143 | * @index: The index of the clock to request, within the client's list of |
| 144 | * clocks. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 145 | * @clk: A pointer to a clock struct to initialize. |
| 146 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 147 | * Return: 0 if OK, or a negative error code. |
Jagan Teki | 75f9831 | 2019-02-28 00:26:52 +0530 | [diff] [blame] | 148 | */ |
| 149 | int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk); |
| 150 | |
| 151 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 152 | * clk_get_bulk() - Get/request all clocks of a device. |
| 153 | * @dev: The client device. |
| 154 | * @bulk: A pointer to a clock bulk struct to initialize. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 155 | * |
| 156 | * This looks up and requests all clocks of the client device; each device is |
| 157 | * assumed to have n clocks associated with it somehow, and this function finds |
| 158 | * and requests all of them in a separate structure. The mapping of client |
| 159 | * device clock indices to provider clocks may be via device-tree properties, |
| 160 | * board-provided mapping tables, or some other mechanism. |
| 161 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 162 | * Return: 0 if OK, or a negative error code. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 163 | */ |
| 164 | int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk); |
| 165 | |
| 166 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 167 | * clk_get_by_name() - Get/request a clock by name. |
| 168 | * @dev: The client device. |
| 169 | * @name: The name of the clock to request, within the client's list of |
Samuel Holland | 2050f82 | 2023-01-21 18:02:51 -0600 | [diff] [blame] | 170 | * clocks, or NULL to request the first clock in the list. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 171 | * @clk: A pointer to a clock struct to initialize. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 172 | * |
| 173 | * This looks up and requests a clock. The name is relative to the client |
| 174 | * device; each device is assumed to have n clocks associated with it somehow, |
| 175 | * and this function finds and requests one of them. The mapping of client |
| 176 | * device clock names to provider clocks may be via device-tree properties, |
| 177 | * board-provided mapping tables, or some other mechanism. |
| 178 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 179 | * Return: 0 if OK, or a negative error code. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 180 | */ |
| 181 | int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk); |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 182 | |
| 183 | /** |
Chunfeng Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 184 | * clk_get_by_name_nodev - Get/request a clock by name without a device. |
Chunfeng Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 185 | * @node: The client ofnode. |
| 186 | * @name: The name of the clock to request, within the client's list of |
Samuel Holland | 2050f82 | 2023-01-21 18:02:51 -0600 | [diff] [blame] | 187 | * clocks, or NULL to request the first clock in the list. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 188 | * @clk: A pointer to a clock struct to initialize. |
| 189 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 190 | * Return: 0 if OK, or a negative error code. |
Chunfeng Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 191 | */ |
| 192 | int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk); |
| 193 | |
| 194 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 195 | * devm_clk_get() - lookup and obtain a managed reference to a clock producer. |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 196 | * @dev: device for clock "consumer" |
| 197 | * @id: clock consumer ID |
| 198 | * |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 199 | * The implementation uses @dev and @id to determine the clock consumer, and |
| 200 | * thereby the clock producer. (IOW, @id may be identical strings, but clk_get |
| 201 | * may return different clock producers depending on @dev.) |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 202 | * |
| 203 | * Drivers must assume that the clock source is not enabled. |
| 204 | * |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 205 | * The clock will automatically be freed when the device is unbound |
| 206 | * from the bus. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 207 | * |
| 208 | * Return: |
| 209 | * a struct clk corresponding to the clock producer, or |
| 210 | * valid IS_ERR() condition containing errno |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 211 | */ |
| 212 | struct clk *devm_clk_get(struct udevice *dev, const char *id); |
| 213 | |
| 214 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 215 | * devm_clk_get_optional() - lookup and obtain a managed reference to an |
| 216 | * optional clock producer. |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 217 | * @dev: device for clock "consumer" |
| 218 | * @id: clock consumer ID |
| 219 | * |
| 220 | * Behaves the same as devm_clk_get() except where there is no clock producer. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 221 | * In this case, instead of returning -%ENOENT, the function returns NULL. |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 222 | */ |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 223 | static inline struct clk *devm_clk_get_optional(struct udevice *dev, |
| 224 | const char *id) |
| 225 | { |
Yang Xiwen | c4b52fd | 2023-08-18 01:04:02 +0800 | [diff] [blame] | 226 | int ret; |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 227 | struct clk *clk = devm_clk_get(dev, id); |
| 228 | |
Yang Xiwen | c4b52fd | 2023-08-18 01:04:02 +0800 | [diff] [blame] | 229 | ret = PTR_ERR(clk); |
| 230 | if (ret == -ENODATA || ret == -ENOENT) |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 231 | return NULL; |
| 232 | |
| 233 | return clk; |
| 234 | } |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 235 | |
| 236 | /** |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 237 | * clk_release_all() - Disable (turn off)/Free an array of previously |
| 238 | * requested clocks. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 239 | * @clk: A clock struct array that was previously successfully |
| 240 | * requested by clk_request/get_by_*(). |
| 241 | * @count: Number of clock contained in the array |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 242 | * |
| 243 | * For each clock contained in the clock array, this function will check if |
| 244 | * clock has been previously requested and then will disable and free it. |
| 245 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 246 | * Return: zero on success, or -ve error code. |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 247 | */ |
Eugen Hristev | b6a56f5 | 2023-06-19 13:47:52 +0300 | [diff] [blame] | 248 | int clk_release_all(struct clk *clk, unsigned int count); |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 249 | |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 250 | /** |
| 251 | * devm_clk_put - "free" a managed clock source |
| 252 | * @dev: device used to acquire the clock |
| 253 | * @clk: clock source acquired with devm_clk_get() |
| 254 | * |
| 255 | * Note: drivers must ensure that all clk_enable calls made on this |
| 256 | * clock source are balanced by clk_disable calls prior to calling |
| 257 | * this function. |
| 258 | * |
| 259 | * clk_put should not be called from within interrupt context. |
| 260 | */ |
| 261 | void devm_clk_put(struct udevice *dev, struct clk *clk); |
| 262 | |
Masahiro Yamada | 021abf6 | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 263 | #else |
Dario Binacchi | c9dc8e7 | 2022-09-27 19:18:19 +0200 | [diff] [blame] | 264 | |
| 265 | static inline int clk_get_by_phandle(struct udevice *dev, const |
| 266 | struct phandle_1_arg *cells, |
| 267 | struct clk *clk) |
| 268 | { |
| 269 | return -ENOSYS; |
| 270 | } |
| 271 | |
Masahiro Yamada | 021abf6 | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 272 | static inline int clk_get_by_index(struct udevice *dev, int index, |
| 273 | struct clk *clk) |
| 274 | { |
| 275 | return -ENOSYS; |
| 276 | } |
| 277 | |
Dario Binacchi | c9dc8e7 | 2022-09-27 19:18:19 +0200 | [diff] [blame] | 278 | static inline int clk_get_by_index_nodev(ofnode node, int index, |
| 279 | struct clk *clk) |
| 280 | { |
| 281 | return -ENOSYS; |
| 282 | } |
| 283 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 284 | static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) |
| 285 | { |
| 286 | return -ENOSYS; |
| 287 | } |
| 288 | |
Masahiro Yamada | 021abf6 | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 289 | static inline int clk_get_by_name(struct udevice *dev, const char *name, |
| 290 | struct clk *clk) |
| 291 | { |
| 292 | return -ENOSYS; |
| 293 | } |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 294 | |
Dario Binacchi | c9dc8e7 | 2022-09-27 19:18:19 +0200 | [diff] [blame] | 295 | static inline struct clk *devm_clk_get(struct udevice *dev, const char *id) |
| 296 | { |
| 297 | return ERR_PTR(-ENOSYS); |
| 298 | } |
| 299 | |
| 300 | static inline struct clk *devm_clk_get_optional(struct udevice *dev, |
| 301 | const char *id) |
| 302 | { |
| 303 | return ERR_PTR(-ENOSYS); |
| 304 | } |
| 305 | |
Chunfeng Yun | d646420 | 2020-01-09 11:35:07 +0800 | [diff] [blame] | 306 | static inline int |
| 307 | clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk) |
| 308 | { |
| 309 | return -ENOSYS; |
| 310 | } |
| 311 | |
Eugen Hristev | b6a56f5 | 2023-06-19 13:47:52 +0300 | [diff] [blame] | 312 | static inline int clk_release_all(struct clk *clk, unsigned int count) |
Patrice Chotard | b108d8a | 2017-07-25 13:24:45 +0200 | [diff] [blame] | 313 | { |
| 314 | return -ENOSYS; |
| 315 | } |
Dario Binacchi | c9dc8e7 | 2022-09-27 19:18:19 +0200 | [diff] [blame] | 316 | |
| 317 | static inline void devm_clk_put(struct udevice *dev, struct clk *clk) |
| 318 | { |
| 319 | } |
Masahiro Yamada | 021abf6 | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 320 | #endif |
Simon Glass | e70cc43 | 2016-01-20 19:43:02 -0700 | [diff] [blame] | 321 | |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 322 | /** |
Sean Anderson | e96e213 | 2022-01-15 15:52:47 -0500 | [diff] [blame] | 323 | * clk_get_by_name_optional() - Get/request a optional clock by name. |
| 324 | * @dev: The client device. |
| 325 | * @name: The name of the clock to request, within the client's list of |
| 326 | * clocks. |
| 327 | * @clk: A pointer to a clock struct to initialize. |
| 328 | * |
| 329 | * Behaves the same as clk_get_by_name(), except when there is no clock |
| 330 | * provider. In the latter case, return 0. |
| 331 | * |
| 332 | * Return: 0 if OK, or a negative error code. |
| 333 | */ |
| 334 | static inline int clk_get_by_name_optional(struct udevice *dev, |
| 335 | const char *name, struct clk *clk) |
| 336 | { |
| 337 | int ret; |
| 338 | |
| 339 | ret = clk_get_by_name(dev, name, clk); |
Yang Xiwen | c4b52fd | 2023-08-18 01:04:02 +0800 | [diff] [blame] | 340 | if (ret == -ENODATA || ret == -ENOENT) |
Sean Anderson | e96e213 | 2022-01-15 15:52:47 -0500 | [diff] [blame] | 341 | return 0; |
| 342 | |
| 343 | return ret; |
| 344 | } |
| 345 | |
| 346 | /** |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 347 | * clk_get_by_name_nodev_optional - Get/request an optinonal clock by name |
| 348 | * without a device. |
| 349 | * @node: The client ofnode. |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 350 | * @name: The name of the clock to request, within the client's list of |
| 351 | * clocks. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 352 | * @clk: A pointer to a clock struct to initialize. |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 353 | * |
| 354 | * Behaves the same as clk_get_by_name_nodev() except where there is |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 355 | * no clock producer, in this case, skip the error number -%ENODATA, and |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 356 | * the function returns 0. |
| 357 | */ |
| 358 | static inline int clk_get_by_name_nodev_optional(ofnode node, const char *name, |
| 359 | struct clk *clk) |
| 360 | { |
| 361 | int ret; |
| 362 | |
| 363 | ret = clk_get_by_name_nodev(node, name, clk); |
Yang Xiwen | c4b52fd | 2023-08-18 01:04:02 +0800 | [diff] [blame] | 364 | if (ret == -ENODATA || ret == -ENOENT) |
Sean Anderson | 14cacb0 | 2021-12-22 12:11:11 -0500 | [diff] [blame] | 365 | return 0; |
| 366 | |
| 367 | return ret; |
| 368 | } |
| 369 | |
| 370 | /** |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 371 | * enum clk_defaults_stage - What stage clk_set_defaults() is called at |
| 372 | * @CLK_DEFAULTS_PRE: Called before probe. Setting of defaults for clocks owned |
| 373 | * by this clock driver will be defered until after probing. |
| 374 | * @CLK_DEFAULTS_POST: Called after probe. Only defaults for clocks owned by |
| 375 | * this clock driver will be set. |
| 376 | * @CLK_DEFAULTS_POST_FORCE: Called after probe, and always set defaults, even |
| 377 | * before relocation. Usually, defaults are not set |
| 378 | * pre-relocation to avoid setting them twice (when |
| 379 | * the device is probed again post-relocation). This |
| 380 | * may incur a performance cost as device tree |
| 381 | * properties must be parsed for a second time. |
| 382 | * However, when not using SPL, pre-relocation may be |
| 383 | * the only time we can set defaults for some clocks |
| 384 | * (such as those used for the RAM we will relocate |
| 385 | * into). |
| 386 | */ |
| 387 | enum clk_defaults_stage { |
| 388 | CLK_DEFAULTS_PRE = 0, |
| 389 | CLK_DEFAULTS_POST = 1, |
| 390 | CLK_DEFAULTS_POST_FORCE, |
| 391 | }; |
| 392 | |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 393 | #if CONFIG_IS_ENABLED(OF_REAL) && CONFIG_IS_ENABLED(CLK) |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 394 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 395 | * clk_set_defaults - Process ``assigned-{clocks/clock-parents/clock-rates}`` |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 396 | * properties to configure clocks |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 397 | * @dev: A device to process (the ofnode associated with this device |
| 398 | * will be processed). |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 399 | * @stage: The stage of the probing process this function is called during. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 400 | * |
| 401 | * Return: zero on success, or -ve error code. |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 402 | */ |
Sean Anderson | 6e33eba | 2021-06-11 00:16:07 -0400 | [diff] [blame] | 403 | int clk_set_defaults(struct udevice *dev, enum clk_defaults_stage stage); |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 404 | #else |
Jean-Jacques Hiblot | fd1ba29 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 405 | static inline int clk_set_defaults(struct udevice *dev, int stage) |
Philipp Tomsich | f4fcba5 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 406 | { |
| 407 | return 0; |
| 408 | } |
| 409 | #endif |
| 410 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 411 | /** |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 412 | * clk_release_bulk() - Disable (turn off)/Free an array of previously |
| 413 | * requested clocks in a clock bulk struct. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 414 | * @bulk: A clock bulk struct that was previously successfully |
| 415 | * requested by clk_get_bulk(). |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 416 | * |
| 417 | * For each clock contained in the clock bulk struct, this function will check |
| 418 | * if clock has been previously requested and then will disable and free it. |
| 419 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 420 | * Return: zero on success, or -ve error code. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 421 | */ |
| 422 | static inline int clk_release_bulk(struct clk_bulk *bulk) |
| 423 | { |
| 424 | return clk_release_all(bulk->clks, bulk->count); |
| 425 | } |
| 426 | |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 427 | #if CONFIG_IS_ENABLED(CLK) |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 428 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 429 | * clk_request() - Request a clock by provider-specific ID. |
| 430 | * @dev: The clock provider device. |
| 431 | * @clk: A pointer to a clock struct to initialize. The caller must |
| 432 | * have already initialized any field in this struct which the |
| 433 | * clock provider uses to identify the clock. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 434 | * |
| 435 | * This requests a clock using a provider-specific ID. Generally, this function |
| 436 | * should not be used, since clk_get_by_index/name() provide an interface that |
| 437 | * better separates clients from intimate knowledge of clock providers. |
| 438 | * However, this function may be useful in core SoC-specific code. |
| 439 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 440 | * Return: 0 if OK, or a negative error code. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 441 | */ |
| 442 | int clk_request(struct udevice *dev, struct clk *clk); |
| 443 | |
| 444 | /** |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 445 | * clk_free() - Free a previously requested clock. |
| 446 | * @clk: A clock struct that was previously successfully requested by |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 447 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 448 | * |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 449 | * Free resources allocated by clk_request() (or any clk_get_* function). |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 450 | */ |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 451 | void clk_free(struct clk *clk); |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 452 | |
| 453 | /** |
| 454 | * clk_get_rate() - Get current clock rate. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 455 | * @clk: A clock struct that was previously successfully requested by |
| 456 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 457 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 458 | * Return: clock rate in Hz on success, 0 for invalid clock, or -ve error code |
Giulio Benetti | 9e578f6 | 2021-02-14 03:17:18 +0100 | [diff] [blame] | 459 | * for other errors. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 460 | */ |
| 461 | ulong clk_get_rate(struct clk *clk); |
| 462 | |
| 463 | /** |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 464 | * clk_get_parent() - Get current clock's parent. |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 465 | * @clk: A clock struct that was previously successfully requested by |
| 466 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 467 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 468 | * Return: pointer to parent's struct clk, or error code passed as pointer |
Lukasz Majewski | 0c660c2 | 2019-06-24 15:50:42 +0200 | [diff] [blame] | 469 | */ |
| 470 | struct clk *clk_get_parent(struct clk *clk); |
| 471 | |
| 472 | /** |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 473 | * clk_get_parent_rate() - Get parent of current clock rate. |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 474 | * @clk: A clock struct that was previously successfully requested by |
| 475 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 476 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 477 | * Return: clock rate in Hz, or -ve error code. |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 478 | */ |
Michal Suchanek | a1265cd | 2022-09-28 12:37:57 +0200 | [diff] [blame] | 479 | ulong clk_get_parent_rate(struct clk *clk); |
Lukasz Majewski | 4aa7830 | 2019-06-24 15:50:43 +0200 | [diff] [blame] | 480 | |
| 481 | /** |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 482 | * clk_round_rate() - Adjust a rate to the exact rate a clock can provide |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 483 | * @clk: A clock struct that was previously successfully requested by |
| 484 | * clk_request/get_by_*(). |
| 485 | * @rate: desired clock rate in Hz. |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 486 | * |
| 487 | * This answers the question "if I were to pass @rate to clk_set_rate(), |
| 488 | * what clock rate would I end up with?" without changing the hardware |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 489 | * in any way. In other words:: |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 490 | * |
| 491 | * rate = clk_round_rate(clk, r); |
| 492 | * |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 493 | * and:: |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 494 | * |
| 495 | * rate = clk_set_rate(clk, r); |
| 496 | * |
| 497 | * are equivalent except the former does not modify the clock hardware |
| 498 | * in any way. |
| 499 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 500 | * Return: rounded rate in Hz, or -ve error code. |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 501 | */ |
| 502 | ulong clk_round_rate(struct clk *clk, ulong rate); |
| 503 | |
| 504 | /** |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 505 | * clk_set_rate() - Set current clock rate. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 506 | * @clk: A clock struct that was previously successfully requested by |
| 507 | * clk_request/get_by_*(). |
| 508 | * @rate: New clock rate in Hz. |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 509 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 510 | * Return: new rate, or -ve error code. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 511 | */ |
| 512 | ulong clk_set_rate(struct clk *clk, ulong rate); |
| 513 | |
| 514 | /** |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 515 | * clk_set_parent() - Set current clock parent. |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 516 | * @clk: A clock struct that was previously successfully requested by |
| 517 | * clk_request/get_by_*(). |
| 518 | * @parent: A clock struct that was previously successfully requested by |
| 519 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 520 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 521 | * Return: new rate, or -ve error code. |
Philipp Tomsich | f7d1046 | 2018-01-08 11:15:08 +0100 | [diff] [blame] | 522 | */ |
| 523 | int clk_set_parent(struct clk *clk, struct clk *parent); |
| 524 | |
| 525 | /** |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 526 | * clk_enable() - Enable (turn on) a clock. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 527 | * @clk: A clock struct that was previously successfully requested by |
| 528 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 529 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 530 | * Return: zero on success, or -ve error code. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 531 | */ |
| 532 | int clk_enable(struct clk *clk); |
| 533 | |
| 534 | /** |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 535 | * clk_enable_bulk() - Enable (turn on) all clocks in a clock bulk struct. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 536 | * @bulk: A clock bulk struct that was previously successfully requested |
| 537 | * by clk_get_bulk(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 538 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 539 | * Return: zero on success, or -ve error code. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 540 | */ |
| 541 | int clk_enable_bulk(struct clk_bulk *bulk); |
| 542 | |
| 543 | /** |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 544 | * clk_disable() - Disable (turn off) a clock. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 545 | * @clk: A clock struct that was previously successfully requested by |
| 546 | * clk_request/get_by_*(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 547 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 548 | * Return: zero on success, or -ve error code. |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 549 | */ |
| 550 | int clk_disable(struct clk *clk); |
| 551 | |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 552 | /** |
| 553 | * clk_disable_bulk() - Disable (turn off) all clocks in a clock bulk struct. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 554 | * @bulk: A clock bulk struct that was previously successfully requested |
| 555 | * by clk_get_bulk(). |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 556 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 557 | * Return: zero on success, or -ve error code. |
Neil Armstrong | a855be8 | 2018-04-03 11:44:18 +0200 | [diff] [blame] | 558 | */ |
| 559 | int clk_disable_bulk(struct clk_bulk *bulk); |
| 560 | |
Sekhar Nori | acbb7cd | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 561 | /** |
| 562 | * clk_is_match - check if two clk's point to the same hardware clock |
| 563 | * @p: clk compared against q |
| 564 | * @q: clk compared against p |
| 565 | * |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 566 | * Return: |
| 567 | * %true if the two struct clk pointers both point to the same hardware clock |
| 568 | * node, and %false otherwise. Note that two %NULL clks are treated as matching. |
Sekhar Nori | acbb7cd | 2019-08-01 19:12:55 +0530 | [diff] [blame] | 569 | */ |
| 570 | bool clk_is_match(const struct clk *p, const struct clk *q); |
| 571 | |
Lukasz Majewski | 2796af7 | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 572 | /** |
| 573 | * clk_get_by_id() - Get the clock by its ID |
Lukasz Majewski | 2796af7 | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 574 | * @id: The clock ID to search for |
Lukasz Majewski | 2796af7 | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 575 | * @clkp: A pointer to clock struct that has been found among added clocks |
| 576 | * to UCLASS_CLK |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 577 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 578 | * Return: zero on success, or -ENOENT on error |
Lukasz Majewski | 2796af7 | 2019-06-24 15:50:44 +0200 | [diff] [blame] | 579 | */ |
| 580 | int clk_get_by_id(ulong id, struct clk **clkp); |
Peng Fan | 2457612 | 2019-07-31 07:01:23 +0000 | [diff] [blame] | 581 | |
| 582 | /** |
| 583 | * clk_dev_binded() - Check whether the clk has a device binded |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 584 | * @clk: A pointer to the clk |
Peng Fan | 2457612 | 2019-07-31 07:01:23 +0000 | [diff] [blame] | 585 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 586 | * Return: true on binded, or false on no |
Peng Fan | 2457612 | 2019-07-31 07:01:23 +0000 | [diff] [blame] | 587 | */ |
| 588 | bool clk_dev_binded(struct clk *clk); |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 589 | |
| 590 | #else /* CONFIG_IS_ENABLED(CLK) */ |
| 591 | |
| 592 | static inline int clk_request(struct udevice *dev, struct clk *clk) |
| 593 | { |
| 594 | return -ENOSYS; |
| 595 | } |
| 596 | |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 597 | static inline void clk_free(struct clk *clk) |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 598 | { |
Sean Anderson | ac15e78 | 2022-01-15 17:25:04 -0500 | [diff] [blame] | 599 | return; |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | static inline ulong clk_get_rate(struct clk *clk) |
| 603 | { |
| 604 | return -ENOSYS; |
| 605 | } |
| 606 | |
| 607 | static inline struct clk *clk_get_parent(struct clk *clk) |
| 608 | { |
| 609 | return ERR_PTR(-ENOSYS); |
| 610 | } |
| 611 | |
Michal Suchanek | a1265cd | 2022-09-28 12:37:57 +0200 | [diff] [blame] | 612 | static inline ulong clk_get_parent_rate(struct clk *clk) |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 613 | { |
| 614 | return -ENOSYS; |
| 615 | } |
| 616 | |
Dario Binacchi | 2983ad5 | 2020-12-30 00:06:31 +0100 | [diff] [blame] | 617 | static inline ulong clk_round_rate(struct clk *clk, ulong rate) |
| 618 | { |
| 619 | return -ENOSYS; |
| 620 | } |
| 621 | |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 622 | static inline ulong clk_set_rate(struct clk *clk, ulong rate) |
| 623 | { |
| 624 | return -ENOSYS; |
| 625 | } |
| 626 | |
| 627 | static inline int clk_set_parent(struct clk *clk, struct clk *parent) |
| 628 | { |
| 629 | return -ENOSYS; |
| 630 | } |
| 631 | |
| 632 | static inline int clk_enable(struct clk *clk) |
| 633 | { |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | static inline int clk_enable_bulk(struct clk_bulk *bulk) |
| 638 | { |
| 639 | return 0; |
| 640 | } |
| 641 | |
| 642 | static inline int clk_disable(struct clk *clk) |
| 643 | { |
| 644 | return 0; |
| 645 | } |
| 646 | |
| 647 | static inline int clk_disable_bulk(struct clk_bulk *bulk) |
| 648 | { |
| 649 | return 0; |
| 650 | } |
| 651 | |
| 652 | static inline bool clk_is_match(const struct clk *p, const struct clk *q) |
| 653 | { |
| 654 | return false; |
| 655 | } |
| 656 | |
| 657 | static inline int clk_get_by_id(ulong id, struct clk **clkp) |
| 658 | { |
| 659 | return -ENOSYS; |
| 660 | } |
| 661 | |
| 662 | static inline bool clk_dev_binded(struct clk *clk) |
| 663 | { |
| 664 | return false; |
| 665 | } |
| 666 | #endif /* CONFIG_IS_ENABLED(CLK) */ |
| 667 | |
| 668 | /** |
| 669 | * clk_valid() - check if clk is valid |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 670 | * @clk: the clock to check |
Sean Anderson | 9c88b13 | 2021-12-22 12:11:12 -0500 | [diff] [blame] | 671 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 672 | * Return: true if valid, or false |
Patrick Delaunay | 6f79174 | 2020-04-27 15:29:57 +0200 | [diff] [blame] | 673 | */ |
| 674 | static inline bool clk_valid(struct clk *clk) |
| 675 | { |
| 676 | return clk && !!clk->dev; |
| 677 | } |
| 678 | |
| 679 | int soc_clk_dump(void); |
| 680 | |
Stephen Warren | 135aa95 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 681 | #endif |
Jean-Jacques Hiblot | 52720c5 | 2019-10-22 14:00:04 +0200 | [diff] [blame] | 682 | |
| 683 | #define clk_prepare_enable(clk) clk_enable(clk) |
| 684 | #define clk_disable_unprepare(clk) clk_disable(clk) |