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