blob: f94135ff778a1247694b1252380801ab828b61c7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass36ad2342015-06-23 15:39:15 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Stephen Warrena9622432016-06-17 09:44:00 -06005 * Copyright (c) 2016, NVIDIA CORPORATION.
Simon Glass36ad2342015-06-23 15:39:15 -06006 */
7
Michal Simeka0d28022013-11-21 13:39:02 -08008#ifndef _CLK_H_
9#define _CLK_H_
10
Jagan Tekifc7c7ce2019-02-28 00:26:52 +053011#include <dm/ofnode.h>
Patrick Delaunay624ba612020-04-27 15:29:57 +020012#include <linux/err.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090013#include <linux/errno.h>
Masahiro Yamada53b2aec2016-01-13 13:16:09 +090014#include <linux/types.h>
15
Patrick Delaunaycfe57af2025-05-27 15:27:46 +020016#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 Warrena9622432016-06-17 09:44:00 -060025/**
Sean Anderson308ac9e2021-12-22 12:11:12 -050026 * DOC: Overview
27 *
Stephen Warrena9622432016-06-17 09:44:00 -060028 * 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 Majewski2c30fa42019-06-24 15:50:36 +020035 * A driver that implements UCLASS_CLK is a clock provider. A provider will
Stephen Warrena9622432016-06-17 09:44:00 -060036 * often implement multiple separate clocks, since the hardware it manages
Liviu Dudau0a083b82018-09-17 17:43:08 +010037 * often has this capability. clk-uclass.h describes the interface which
Stephen Warrena9622432016-06-17 09:44:00 -060038 * 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 Yamada67c22952016-01-13 13:16:12 +090043
Stephen Warrena9622432016-06-17 09:44:00 -060044struct udevice;
Simon Glass36ad2342015-06-23 15:39:15 -060045
Stephen Warrena9622432016-06-17 09:44:00 -060046/**
47 * struct clk - A handle to (allowing control of) a single clock.
Stephen Warrena9622432016-06-17 09:44:00 -060048 * @dev: The device which implements the clock signal.
Lukasz Majewskied2685f2019-06-24 15:50:38 +020049 * @rate: The clock rate (in HZ).
Sean Anderson308ac9e2021-12-22 12:11:12 -050050 * @flags: Flags used across common clock structure (e.g. %CLK_)
Lukasz Majewski8ea04342019-06-24 15:50:39 +020051 * Clock IP blocks specific flags (i.e. mux, div, gate, etc) are defined
Sean Anderson308ac9e2021-12-22 12:11:12 -050052 * in struct's for those devices (e.g. &struct clk_mux).
53 * @enable_count: The number of times this clock has been enabled.
Stephen Warrena9622432016-06-17 09:44:00 -060054 * @id: The clock signal ID within the provider.
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053055 * @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 Warrena9622432016-06-17 09:44:00 -060058 *
Sean Anderson308ac9e2021-12-22 12:11:12 -050059 * 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 Dannenbergcb5ac652018-08-27 15:57:42 +053064 * 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 Warrena9622432016-06-17 09:44:00 -060066 * 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 */
72struct clk {
73 struct udevice *dev;
Lukasz Majewskied2685f2019-06-24 15:50:38 +020074 long long rate; /* in HZ */
Lukasz Majewski8ea04342019-06-24 15:50:39 +020075 u32 flags;
Peng Fan30a6ebc2019-08-21 13:35:03 +000076 int enable_count;
Stephen Warrena9622432016-06-17 09:44:00 -060077 /*
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053078 * Written by of_xlate. In the future, we might add more fields here.
Simon Glass36ad2342015-06-23 15:39:15 -060079 */
Stephen Warrena9622432016-06-17 09:44:00 -060080 unsigned long id;
Andreas Dannenbergcb5ac652018-08-27 15:57:42 +053081 unsigned long data;
Simon Glass36ad2342015-06-23 15:39:15 -060082};
83
Neil Armstrong8a275a02018-04-03 11:44:18 +020084/**
85 * struct clk_bulk - A handle to (allowing control of) a bulk of clocks.
Sean Anderson308ac9e2021-12-22 12:11:12 -050086 * @clks: An array of clock handles.
87 * @count: The number of clock handles in the clks array.
Neil Armstrong8a275a02018-04-03 11:44:18 +020088 *
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 Armstrong8a275a02018-04-03 11:44:18 +020094 */
95struct clk_bulk {
96 struct clk *clks;
97 unsigned int count;
98};
99
Simon Glasse94414b2017-08-29 14:15:56 -0600100struct phandle_1_arg;
Dario Binacchib32e24f2022-09-27 19:18:19 +0200101
102#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK)
Simon Glass1257efc2021-08-07 07:24:09 -0600103/**
104 * clk_get_by_phandle() - Get a clock by its phandle information (of-platadata)
Sean Anderson308ac9e2021-12-22 12:11:12 -0500105 * @dev: Device containing the phandle
106 * @cells: Phandle info
107 * @clk: A pointer to a clock struct to initialise
Simon Glass1257efc2021-08-07 07:24:09 -0600108 *
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 Anderson308ac9e2021-12-22 12:11:12 -0500112 * 'clocks' property is transformed into an idx representing the device.
113 * For example::
Simon Glass1257efc2021-08-07 07:24:09 -0600114 *
115 * clocks = <&dpll_mpu_ck 23>;
116 *
Sean Anderson308ac9e2021-12-22 12:11:12 -0500117 * might result in::
Simon Glass1257efc2021-08-07 07:24:09 -0600118 *
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 Schuchardt47b4c022022-01-19 18:05:50 +0100126 * Return: 0 if OK, or a negative error code.
Simon Glass1257efc2021-08-07 07:24:09 -0600127 */
128int clk_get_by_phandle(struct udevice *dev, const struct phandle_1_arg *cells,
129 struct clk *clk);
Simon Glass589d9152016-07-04 11:58:03 -0600130
Stephen Warrena9622432016-06-17 09:44:00 -0600131/**
Simon Glass1257efc2021-08-07 07:24:09 -0600132 * clk_get_by_index() - Get/request a clock by integer index.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500133 * @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 Warrena9622432016-06-17 09:44:00 -0600137 *
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 Schuchardt47b4c022022-01-19 18:05:50 +0100144 * Return: 0 if OK, or a negative error code.
Stephen Warrena9622432016-06-17 09:44:00 -0600145 */
146int clk_get_by_index(struct udevice *dev, int index, struct clk *clk);
Simon Glass36ad2342015-06-23 15:39:15 -0600147
148/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500149 * clk_get_by_index_nodev() - Get/request a clock by integer index without a
150 * device.
Jagan Tekifc7c7ce2019-02-28 00:26:52 +0530151 * @node: The client ofnode.
152 * @index: The index of the clock to request, within the client's list of
153 * clocks.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500154 * @clk: A pointer to a clock struct to initialize.
155 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100156 * Return: 0 if OK, or a negative error code.
Jagan Tekifc7c7ce2019-02-28 00:26:52 +0530157 */
158int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk);
159
160/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500161 * 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 Armstrong8a275a02018-04-03 11:44:18 +0200164 *
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 Schuchardt47b4c022022-01-19 18:05:50 +0100171 * Return: 0 if OK, or a negative error code.
Neil Armstrong8a275a02018-04-03 11:44:18 +0200172 */
173int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk);
174
175/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500176 * 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 Hollandbae0f4f2023-01-21 18:02:51 -0600179 * clocks, or NULL to request the first clock in the list.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500180 * @clk: A pointer to a clock struct to initialize.
Simon Glass36ad2342015-06-23 15:39:15 -0600181 *
Stephen Warrena9622432016-06-17 09:44:00 -0600182 * 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 Schuchardt47b4c022022-01-19 18:05:50 +0100188 * Return: 0 if OK, or a negative error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600189 */
Stephen Warrena9622432016-06-17 09:44:00 -0600190int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
Patrice Chotardcafc3412017-07-25 13:24:45 +0200191
192/**
developerbdc786d2020-01-09 11:35:07 +0800193 * clk_get_by_name_nodev - Get/request a clock by name without a device.
developerbdc786d2020-01-09 11:35:07 +0800194 * @node: The client ofnode.
195 * @name: The name of the clock to request, within the client's list of
Samuel Hollandbae0f4f2023-01-21 18:02:51 -0600196 * clocks, or NULL to request the first clock in the list.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500197 * @clk: A pointer to a clock struct to initialize.
198 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100199 * Return: 0 if OK, or a negative error code.
developerbdc786d2020-01-09 11:35:07 +0800200 */
201int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk);
202
203/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500204 * devm_clk_get() - lookup and obtain a managed reference to a clock producer.
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200205 * @dev: device for clock "consumer"
206 * @id: clock consumer ID
207 *
Sean Anderson308ac9e2021-12-22 12:11:12 -0500208 * 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 Hiblot6e66b2d2019-10-22 14:00:04 +0200211 *
212 * Drivers must assume that the clock source is not enabled.
213 *
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200214 * The clock will automatically be freed when the device is unbound
215 * from the bus.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500216 *
217 * Return:
218 * a struct clk corresponding to the clock producer, or
219 * valid IS_ERR() condition containing errno
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200220 */
221struct clk *devm_clk_get(struct udevice *dev, const char *id);
222
223/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500224 * devm_clk_get_optional() - lookup and obtain a managed reference to an
225 * optional clock producer.
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200226 * @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 Anderson308ac9e2021-12-22 12:11:12 -0500230 * In this case, instead of returning -%ENOENT, the function returns NULL.
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200231 */
Sean Anderson0d69d062021-12-22 12:11:11 -0500232static inline struct clk *devm_clk_get_optional(struct udevice *dev,
233 const char *id)
234{
Yang Xiwen00e02fd2023-08-18 01:04:02 +0800235 int ret;
Sean Anderson0d69d062021-12-22 12:11:11 -0500236 struct clk *clk = devm_clk_get(dev, id);
237
Yang Xiwen00e02fd2023-08-18 01:04:02 +0800238 ret = PTR_ERR(clk);
239 if (ret == -ENODATA || ret == -ENOENT)
Sean Anderson0d69d062021-12-22 12:11:11 -0500240 return NULL;
241
242 return clk;
243}
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200244
245/**
Patrice Chotardcafc3412017-07-25 13:24:45 +0200246 * clk_release_all() - Disable (turn off)/Free an array of previously
247 * requested clocks.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500248 * @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 Chotardcafc3412017-07-25 13:24:45 +0200251 *
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 Schuchardt47b4c022022-01-19 18:05:50 +0100255 * Return: zero on success, or -ve error code.
Patrice Chotardcafc3412017-07-25 13:24:45 +0200256 */
Eugen Hristev70e32ba2023-06-19 13:47:52 +0300257int clk_release_all(struct clk *clk, unsigned int count);
Patrice Chotardcafc3412017-07-25 13:24:45 +0200258
Masahiro Yamada09abe2b2016-09-26 20:45:27 +0900259#else
Dario Binacchib32e24f2022-09-27 19:18:19 +0200260
261static 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 Yamada09abe2b2016-09-26 20:45:27 +0900268static inline int clk_get_by_index(struct udevice *dev, int index,
269 struct clk *clk)
270{
271 return -ENOSYS;
272}
273
Dario Binacchib32e24f2022-09-27 19:18:19 +0200274static inline int clk_get_by_index_nodev(ofnode node, int index,
275 struct clk *clk)
276{
277 return -ENOSYS;
278}
279
Neil Armstrong8a275a02018-04-03 11:44:18 +0200280static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
281{
282 return -ENOSYS;
283}
284
Masahiro Yamada09abe2b2016-09-26 20:45:27 +0900285static inline int clk_get_by_name(struct udevice *dev, const char *name,
286 struct clk *clk)
287{
288 return -ENOSYS;
289}
Patrice Chotardcafc3412017-07-25 13:24:45 +0200290
Dario Binacchib32e24f2022-09-27 19:18:19 +0200291static inline struct clk *devm_clk_get(struct udevice *dev, const char *id)
292{
293 return ERR_PTR(-ENOSYS);
294}
295
296static inline struct clk *devm_clk_get_optional(struct udevice *dev,
297 const char *id)
298{
299 return ERR_PTR(-ENOSYS);
300}
301
developerbdc786d2020-01-09 11:35:07 +0800302static inline int
303clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk)
304{
305 return -ENOSYS;
306}
307
Eugen Hristev70e32ba2023-06-19 13:47:52 +0300308static inline int clk_release_all(struct clk *clk, unsigned int count)
developerbdc786d2020-01-09 11:35:07 +0800309{
310 return -ENOSYS;
311}
Sean Anderson0d69d062021-12-22 12:11:11 -0500312#endif
developerbdc786d2020-01-09 11:35:07 +0800313
Sean Anderson0d69d062021-12-22 12:11:11 -0500314/**
Sean Andersone1c56f32022-01-15 15:52:47 -0500315 * 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 */
326static 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 Xiwen00e02fd2023-08-18 01:04:02 +0800332 if (ret == -ENODATA || ret == -ENOENT)
Sean Andersone1c56f32022-01-15 15:52:47 -0500333 return 0;
334
335 return ret;
336}
337
338/**
Sean Anderson0d69d062021-12-22 12:11:11 -0500339 * clk_get_by_name_nodev_optional - Get/request an optinonal clock by name
340 * without a device.
341 * @node: The client ofnode.
Sean Anderson0d69d062021-12-22 12:11:11 -0500342 * @name: The name of the clock to request, within the client's list of
343 * clocks.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500344 * @clk: A pointer to a clock struct to initialize.
Sean Anderson0d69d062021-12-22 12:11:11 -0500345 *
346 * Behaves the same as clk_get_by_name_nodev() except where there is
Sean Anderson308ac9e2021-12-22 12:11:12 -0500347 * no clock producer, in this case, skip the error number -%ENODATA, and
Sean Anderson0d69d062021-12-22 12:11:11 -0500348 * the function returns 0.
349 */
350static inline int clk_get_by_name_nodev_optional(ofnode node, const char *name,
351 struct clk *clk)
Patrice Chotardcafc3412017-07-25 13:24:45 +0200352{
Sean Anderson0d69d062021-12-22 12:11:11 -0500353 int ret;
354
355 ret = clk_get_by_name_nodev(node, name, clk);
Yang Xiwen00e02fd2023-08-18 01:04:02 +0800356 if (ret == -ENODATA || ret == -ENOENT)
Sean Anderson0d69d062021-12-22 12:11:11 -0500357 return 0;
358
359 return ret;
Patrice Chotardcafc3412017-07-25 13:24:45 +0200360}
Simon Glass36ad2342015-06-23 15:39:15 -0600361
Sean Anderson08d531c2021-06-11 00:16:07 -0400362/**
Marek Vasut1e090df2025-03-23 16:58:30 +0100363 * 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 */
369const char *clk_resolve_parent_clk(struct udevice *dev, const char *name);
370
371/**
Sean Anderson08d531c2021-06-11 00:16:07 -0400372 * 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 */
388enum clk_defaults_stage {
389 CLK_DEFAULTS_PRE = 0,
390 CLK_DEFAULTS_POST = 1,
391 CLK_DEFAULTS_POST_FORCE,
392};
393
Simon Glass3580f6d2021-08-07 07:24:03 -0600394#if CONFIG_IS_ENABLED(OF_REAL) && CONFIG_IS_ENABLED(CLK)
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100395/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500396 * clk_set_defaults - Process ``assigned-{clocks/clock-parents/clock-rates}``
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100397 * properties to configure clocks
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100398 * @dev: A device to process (the ofnode associated with this device
399 * will be processed).
Sean Anderson08d531c2021-06-11 00:16:07 -0400400 * @stage: The stage of the probing process this function is called during.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500401 *
402 * Return: zero on success, or -ve error code.
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100403 */
Sean Anderson08d531c2021-06-11 00:16:07 -0400404int clk_set_defaults(struct udevice *dev, enum clk_defaults_stage stage);
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100405#else
Jean-Jacques Hiblot9601f322019-10-22 14:00:06 +0200406static inline int clk_set_defaults(struct udevice *dev, int stage)
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100407{
408 return 0;
409}
410#endif
411
Simon Glass36ad2342015-06-23 15:39:15 -0600412/**
Neil Armstrong8a275a02018-04-03 11:44:18 +0200413 * clk_release_bulk() - Disable (turn off)/Free an array of previously
414 * requested clocks in a clock bulk struct.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500415 * @bulk: A clock bulk struct that was previously successfully
416 * requested by clk_get_bulk().
Neil Armstrong8a275a02018-04-03 11:44:18 +0200417 *
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 Schuchardt47b4c022022-01-19 18:05:50 +0100421 * Return: zero on success, or -ve error code.
Neil Armstrong8a275a02018-04-03 11:44:18 +0200422 */
423static inline int clk_release_bulk(struct clk_bulk *bulk)
424{
425 return clk_release_all(bulk->clks, bulk->count);
426}
427
Patrick Delaunay624ba612020-04-27 15:29:57 +0200428#if CONFIG_IS_ENABLED(CLK)
Neil Armstrong8a275a02018-04-03 11:44:18 +0200429/**
Sean Anderson308ac9e2021-12-22 12:11:12 -0500430 * 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 Glass36ad2342015-06-23 15:39:15 -0600435 *
Stephen Warrena9622432016-06-17 09:44:00 -0600436 * 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 Schuchardt47b4c022022-01-19 18:05:50 +0100441 * Return: 0 if OK, or a negative error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600442 */
Stephen Warrena9622432016-06-17 09:44:00 -0600443int clk_request(struct udevice *dev, struct clk *clk);
Simon Glass36ad2342015-06-23 15:39:15 -0600444
445/**
Stephen Warrena9622432016-06-17 09:44:00 -0600446 * clk_get_rate() - Get current clock rate.
Stephen Warrena9622432016-06-17 09:44:00 -0600447 * @clk: A clock struct that was previously successfully requested by
448 * clk_request/get_by_*().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500449 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100450 * Return: clock rate in Hz on success, 0 for invalid clock, or -ve error code
Giulio Benettidcc67fa2021-02-14 03:17:18 +0100451 * for other errors.
Simon Glass36ad2342015-06-23 15:39:15 -0600452 */
Stephen Warrena9622432016-06-17 09:44:00 -0600453ulong clk_get_rate(struct clk *clk);
Simon Glass36ad2342015-06-23 15:39:15 -0600454
455/**
Lukasz Majewski9e38dc32019-06-24 15:50:42 +0200456 * clk_get_parent() - Get current clock's parent.
Lukasz Majewski9e38dc32019-06-24 15:50:42 +0200457 * @clk: A clock struct that was previously successfully requested by
458 * clk_request/get_by_*().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500459 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100460 * Return: pointer to parent's struct clk, or error code passed as pointer
Lukasz Majewski9e38dc32019-06-24 15:50:42 +0200461 */
462struct clk *clk_get_parent(struct clk *clk);
463
464/**
Alexander Dahl92ff9b62024-05-03 09:20:09 +0200465 * clk_get_parent_rate() - Get rate of current clock's parent.
Lukasz Majewski53155da2019-06-24 15:50:43 +0200466 * @clk: A clock struct that was previously successfully requested by
467 * clk_request/get_by_*().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500468 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100469 * Return: clock rate in Hz, or -ve error code.
Lukasz Majewski53155da2019-06-24 15:50:43 +0200470 */
Michal Suchanek0d4d5e42022-09-28 12:37:57 +0200471ulong clk_get_parent_rate(struct clk *clk);
Lukasz Majewski53155da2019-06-24 15:50:43 +0200472
473/**
Dario Binacchib7f85892020-12-30 00:06:31 +0100474 * clk_round_rate() - Adjust a rate to the exact rate a clock can provide
Sean Anderson308ac9e2021-12-22 12:11:12 -0500475 * @clk: A clock struct that was previously successfully requested by
476 * clk_request/get_by_*().
477 * @rate: desired clock rate in Hz.
Dario Binacchib7f85892020-12-30 00:06:31 +0100478 *
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 Anderson308ac9e2021-12-22 12:11:12 -0500481 * in any way. In other words::
Dario Binacchib7f85892020-12-30 00:06:31 +0100482 *
483 * rate = clk_round_rate(clk, r);
484 *
Sean Anderson308ac9e2021-12-22 12:11:12 -0500485 * and::
Dario Binacchib7f85892020-12-30 00:06:31 +0100486 *
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 Schuchardt47b4c022022-01-19 18:05:50 +0100492 * Return: rounded rate in Hz, or -ve error code.
Dario Binacchib7f85892020-12-30 00:06:31 +0100493 */
494ulong clk_round_rate(struct clk *clk, ulong rate);
495
496/**
Stephen Warrena9622432016-06-17 09:44:00 -0600497 * clk_set_rate() - Set current clock rate.
Stephen Warrena9622432016-06-17 09:44:00 -0600498 * @clk: A clock struct that was previously successfully requested by
499 * clk_request/get_by_*().
500 * @rate: New clock rate in Hz.
Sean Anderson308ac9e2021-12-22 12:11:12 -0500501 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100502 * Return: new rate, or -ve error code.
Simon Glass36ad2342015-06-23 15:39:15 -0600503 */
Stephen Warrena9622432016-06-17 09:44:00 -0600504ulong clk_set_rate(struct clk *clk, ulong rate);
Simon Glass36ad2342015-06-23 15:39:15 -0600505
Simon Glass0342bd22016-01-20 19:43:02 -0700506/**
Philipp Tomsichf8e02b22018-01-08 11:15:08 +0100507 * clk_set_parent() - Set current clock parent.
Philipp Tomsichf8e02b22018-01-08 11:15:08 +0100508 * @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 Anderson308ac9e2021-12-22 12:11:12 -0500512 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100513 * Return: new rate, or -ve error code.
Philipp Tomsichf8e02b22018-01-08 11:15:08 +0100514 */
515int clk_set_parent(struct clk *clk, struct clk *parent);
516
517/**
Stephen Warrena9622432016-06-17 09:44:00 -0600518 * clk_enable() - Enable (turn on) a clock.
Stephen Warrena9622432016-06-17 09:44:00 -0600519 * @clk: A clock struct that was previously successfully requested by
520 * clk_request/get_by_*().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500521 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100522 * Return: zero on success, or -ve error code.
Stephen Warrena9622432016-06-17 09:44:00 -0600523 */
524int clk_enable(struct clk *clk);
525
526/**
Neil Armstrong8a275a02018-04-03 11:44:18 +0200527 * clk_enable_bulk() - Enable (turn on) all clocks in a clock bulk struct.
Neil Armstrong8a275a02018-04-03 11:44:18 +0200528 * @bulk: A clock bulk struct that was previously successfully requested
529 * by clk_get_bulk().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500530 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100531 * Return: zero on success, or -ve error code.
Neil Armstrong8a275a02018-04-03 11:44:18 +0200532 */
533int clk_enable_bulk(struct clk_bulk *bulk);
534
535/**
Stephen Warrena9622432016-06-17 09:44:00 -0600536 * clk_disable() - Disable (turn off) a clock.
Stephen Warrena9622432016-06-17 09:44:00 -0600537 * @clk: A clock struct that was previously successfully requested by
538 * clk_request/get_by_*().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500539 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100540 * Return: zero on success, or -ve error code.
Simon Glass0342bd22016-01-20 19:43:02 -0700541 */
Stephen Warrena9622432016-06-17 09:44:00 -0600542int clk_disable(struct clk *clk);
Simon Glass0342bd22016-01-20 19:43:02 -0700543
Neil Armstrong8a275a02018-04-03 11:44:18 +0200544/**
545 * clk_disable_bulk() - Disable (turn off) all clocks in a clock bulk struct.
Neil Armstrong8a275a02018-04-03 11:44:18 +0200546 * @bulk: A clock bulk struct that was previously successfully requested
547 * by clk_get_bulk().
Sean Anderson308ac9e2021-12-22 12:11:12 -0500548 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100549 * Return: zero on success, or -ve error code.
Neil Armstrong8a275a02018-04-03 11:44:18 +0200550 */
551int clk_disable_bulk(struct clk_bulk *bulk);
552
Sekhar Noricf3119d2019-08-01 19:12:55 +0530553/**
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 Anderson308ac9e2021-12-22 12:11:12 -0500558 * 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 Noricf3119d2019-08-01 19:12:55 +0530561 */
562bool clk_is_match(const struct clk *p, const struct clk *q);
563
Lukasz Majewski12014be2019-06-24 15:50:44 +0200564/**
565 * clk_get_by_id() - Get the clock by its ID
Lukasz Majewski12014be2019-06-24 15:50:44 +0200566 * @id: The clock ID to search for
Lukasz Majewski12014be2019-06-24 15:50:44 +0200567 * @clkp: A pointer to clock struct that has been found among added clocks
568 * to UCLASS_CLK
Sean Anderson308ac9e2021-12-22 12:11:12 -0500569 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100570 * Return: zero on success, or -ENOENT on error
Lukasz Majewski12014be2019-06-24 15:50:44 +0200571 */
572int clk_get_by_id(ulong id, struct clk **clkp);
Peng Fan1d0a50a2019-07-31 07:01:23 +0000573
574/**
575 * clk_dev_binded() - Check whether the clk has a device binded
Sean Anderson308ac9e2021-12-22 12:11:12 -0500576 * @clk: A pointer to the clk
Peng Fan1d0a50a2019-07-31 07:01:23 +0000577 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100578 * Return: true on binded, or false on no
Peng Fan1d0a50a2019-07-31 07:01:23 +0000579 */
580bool clk_dev_binded(struct clk *clk);
Patrick Delaunay624ba612020-04-27 15:29:57 +0200581
Patrick Delaunaycfe57af2025-05-27 15:27:46 +0200582/**
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 */
590ulong clk_get_id(const struct clk *clk);
591
Patrick Delaunay624ba612020-04-27 15:29:57 +0200592#else /* CONFIG_IS_ENABLED(CLK) */
593
594static inline int clk_request(struct udevice *dev, struct clk *clk)
595{
596 return -ENOSYS;
597}
598
Patrick Delaunay624ba612020-04-27 15:29:57 +0200599static inline ulong clk_get_rate(struct clk *clk)
600{
601 return -ENOSYS;
602}
603
604static inline struct clk *clk_get_parent(struct clk *clk)
605{
606 return ERR_PTR(-ENOSYS);
607}
608
Michal Suchanek0d4d5e42022-09-28 12:37:57 +0200609static inline ulong clk_get_parent_rate(struct clk *clk)
Patrick Delaunay624ba612020-04-27 15:29:57 +0200610{
611 return -ENOSYS;
612}
613
Dario Binacchib7f85892020-12-30 00:06:31 +0100614static inline ulong clk_round_rate(struct clk *clk, ulong rate)
615{
616 return -ENOSYS;
617}
618
Patrick Delaunay624ba612020-04-27 15:29:57 +0200619static inline ulong clk_set_rate(struct clk *clk, ulong rate)
620{
621 return -ENOSYS;
622}
623
624static inline int clk_set_parent(struct clk *clk, struct clk *parent)
625{
626 return -ENOSYS;
627}
628
629static inline int clk_enable(struct clk *clk)
630{
631 return 0;
632}
633
634static inline int clk_enable_bulk(struct clk_bulk *bulk)
635{
636 return 0;
637}
638
639static inline int clk_disable(struct clk *clk)
640{
641 return 0;
642}
643
644static inline int clk_disable_bulk(struct clk_bulk *bulk)
645{
646 return 0;
647}
648
649static inline bool clk_is_match(const struct clk *p, const struct clk *q)
650{
651 return false;
652}
653
654static inline int clk_get_by_id(ulong id, struct clk **clkp)
655{
656 return -ENOSYS;
657}
658
659static inline bool clk_dev_binded(struct clk *clk)
660{
661 return false;
662}
Patrick Delaunaycfe57af2025-05-27 15:27:46 +0200663
664static inline ulong clk_get_id(const struct clk *clk)
665{
666 return 0;
667}
Patrick Delaunay624ba612020-04-27 15:29:57 +0200668#endif /* CONFIG_IS_ENABLED(CLK) */
669
670/**
671 * clk_valid() - check if clk is valid
Patrick Delaunay624ba612020-04-27 15:29:57 +0200672 * @clk: the clock to check
Sean Anderson308ac9e2021-12-22 12:11:12 -0500673 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100674 * Return: true if valid, or false
Patrick Delaunay624ba612020-04-27 15:29:57 +0200675 */
676static inline bool clk_valid(struct clk *clk)
677{
678 return clk && !!clk->dev;
679}
680
Stephen Warrena9622432016-06-17 09:44:00 -0600681#endif
Jean-Jacques Hiblot6e66b2d2019-10-22 14:00:04 +0200682
683#define clk_prepare_enable(clk) clk_enable(clk)
684#define clk_disable_unprepare(clk) clk_disable(clk)