blob: 6706afa55dd9a96d91c2f21e4db31c24761ae3c7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassf26c8a82015-06-23 15:39:15 -06002/*
3 * Copyright (c) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Stephen Warren135aa952016-06-17 09:44:00 -06005 * Copyright (c) 2016, NVIDIA CORPORATION.
Simon Glassf26c8a82015-06-23 15:39:15 -06006 */
7
Michal Simek08d0d6f2013-11-21 13:39:02 -08008#ifndef _CLK_H_
9#define _CLK_H_
10
Jagan Teki75f98312019-02-28 00:26:52 +053011#include <dm/ofnode.h>
Patrick Delaunay6f791742020-04-27 15:29:57 +020012#include <linux/err.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090013#include <linux/errno.h>
Masahiro Yamadaad1cf782016-01-13 13:16:09 +090014#include <linux/types.h>
15
Stephen Warren135aa952016-06-17 09:44:00 -060016/**
17 * A clock is a hardware signal that oscillates autonomously at a specific
18 * frequency and duty cycle. Most hardware modules require one or more clock
19 * signal to drive their operation. Clock signals are typically generated
20 * externally to the HW module consuming them, by an entity this API calls a
21 * clock provider. This API provides a standard means for drivers to enable and
22 * disable clocks, and to set the rate at which they oscillate.
23 *
Lukasz Majewskia9092712019-06-24 15:50:36 +020024 * A driver that implements UCLASS_CLK is a clock provider. A provider will
Stephen Warren135aa952016-06-17 09:44:00 -060025 * often implement multiple separate clocks, since the hardware it manages
Liviu Dudau9bf86502018-09-17 17:43:08 +010026 * often has this capability. clk-uclass.h describes the interface which
Stephen Warren135aa952016-06-17 09:44:00 -060027 * clock providers must implement.
28 *
29 * Clock consumers/clients are the HW modules driven by the clock signals. This
30 * header file describes the API used by drivers for those HW modules.
31 */
32
Masahiro Yamadaad1cf782016-01-13 13:16:09 +090033struct udevice;
34
Stephen Warren135aa952016-06-17 09:44:00 -060035/**
36 * struct clk - A handle to (allowing control of) a single clock.
37 *
38 * Clients provide storage for clock handles. The content of the structure is
39 * managed solely by the clock API and clock drivers. A clock struct is
40 * initialized by "get"ing the clock struct. The clock struct is passed to all
41 * other clock APIs to identify which clock signal to operate upon.
42 *
43 * @dev: The device which implements the clock signal.
Lukasz Majewski105db952019-06-24 15:50:38 +020044 * @rate: The clock rate (in HZ).
Lukasz Majewskia8592cd2019-06-24 15:50:39 +020045 * @flags: Flags used across common clock structure (e.g. CLK_)
46 * Clock IP blocks specific flags (i.e. mux, div, gate, etc) are defined
47 * in struct's for those devices (e.g. struct clk_mux).
Stephen Warren135aa952016-06-17 09:44:00 -060048 * @id: The clock signal ID within the provider.
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053049 * @data: An optional data field for scenarios where a single integer ID is not
50 * sufficient. If used, it can be populated through an .of_xlate op and
51 * processed during the various clock ops.
Stephen Warren135aa952016-06-17 09:44:00 -060052 *
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053053 * Should additional information to identify and configure any clock signal
54 * for any provider be required in the future, the struct could be expanded to
Stephen Warren135aa952016-06-17 09:44:00 -060055 * either (a) add more fields to allow clock providers to store additional
56 * information, or (b) replace the id field with an opaque pointer, which the
57 * provider would dynamically allocated during its .of_xlate op, and process
58 * during is .request op. This may require the addition of an extra op to clean
59 * up the allocation.
60 */
61struct clk {
62 struct udevice *dev;
Lukasz Majewski105db952019-06-24 15:50:38 +020063 long long rate; /* in HZ */
Lukasz Majewskia8592cd2019-06-24 15:50:39 +020064 u32 flags;
Peng Fane6849e22019-08-21 13:35:03 +000065 int enable_count;
Stephen Warren135aa952016-06-17 09:44:00 -060066 /*
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053067 * Written by of_xlate. In the future, we might add more fields here.
Simon Glassf26c8a82015-06-23 15:39:15 -060068 */
Stephen Warren135aa952016-06-17 09:44:00 -060069 unsigned long id;
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053070 unsigned long data;
Simon Glassf26c8a82015-06-23 15:39:15 -060071};
72
Neil Armstronga855be82018-04-03 11:44:18 +020073/**
74 * struct clk_bulk - A handle to (allowing control of) a bulk of clocks.
75 *
76 * Clients provide storage for the clock bulk. The content of the structure is
77 * managed solely by the clock API. A clock bulk struct is
78 * initialized by "get"ing the clock bulk struct.
79 * The clock bulk struct is passed to all other bulk clock APIs to apply
80 * the API to all the clock in the bulk struct.
81 *
82 * @clks: An array of clock handles.
83 * @count: The number of clock handles in the clks array.
84 */
85struct clk_bulk {
86 struct clk *clks;
87 unsigned int count;
88};
89
Paul Burton3f96f872016-09-08 07:47:28 +010090#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK)
Simon Glass0d154632017-08-29 14:15:56 -060091struct phandle_1_arg;
Simon Glassf0ab8f92021-08-07 07:24:09 -060092/**
93 * clk_get_by_phandle() - Get a clock by its phandle information (of-platadata)
94 *
95 * This function is used when of-platdata is enabled.
96 *
97 * This looks up a clock using the phandle info. With dtoc, each phandle in the
98 * 'clocks' property is transformed into an idx representing the device. For
99 * example:
100 *
101 * clocks = <&dpll_mpu_ck 23>;
102 *
103 * might result in:
104 *
105 * .clocks = {1, {23}},},
106 *
107 * indicating that the clock is udevice idx 1 in dt-plat.c with an argument of
108 * 23. This function can return a valid clock given the above information. In
109 * this example it would return a clock containing the 'dpll_mpu_ck' device and
110 * the clock ID 23.
111 *
112 * @dev: Device containing the phandle
113 * @cells: Phandle info
114 * @clock: A pointer to a clock struct to initialise
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100115 * Return: 0 if OK, or a negative error code.
Simon Glassf0ab8f92021-08-07 07:24:09 -0600116 */
117int clk_get_by_phandle(struct udevice *dev, const struct phandle_1_arg *cells,
118 struct clk *clk);
Simon Glass7423daa2016-07-04 11:58:03 -0600119
Simon Glasse70cc432016-01-20 19:43:02 -0700120/**
Simon Glassf0ab8f92021-08-07 07:24:09 -0600121 * clk_get_by_index() - Get/request a clock by integer index.
Simon Glasse70cc432016-01-20 19:43:02 -0700122 *
Stephen Warren135aa952016-06-17 09:44:00 -0600123 * This looks up and requests a clock. The index is relative to the client
124 * device; each device is assumed to have n clocks associated with it somehow,
125 * and this function finds and requests one of them. The mapping of client
126 * device clock indices to provider clocks may be via device-tree properties,
127 * board-provided mapping tables, or some other mechanism.
Simon Glasse70cc432016-01-20 19:43:02 -0700128 *
Stephen Warren135aa952016-06-17 09:44:00 -0600129 * @dev: The client device.
130 * @index: The index of the clock to request, within the client's list of
131 * clocks.
132 * @clock A pointer to a clock struct to initialize.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100133 * Return: 0 if OK, or a negative error code.
Simon Glasse70cc432016-01-20 19:43:02 -0700134 */
Stephen Warren135aa952016-06-17 09:44:00 -0600135int clk_get_by_index(struct udevice *dev, int index, struct clk *clk);
136
137/**
Jagan Tekid7c56612020-05-01 23:45:08 +0530138 * clk_get_by_index_nodev - Get/request a clock by integer index
Jagan Teki75f98312019-02-28 00:26:52 +0530139 * without a device.
140 *
141 * This is a version of clk_get_by_index() that does not use a device.
142 *
143 * @node: The client ofnode.
144 * @index: The index of the clock to request, within the client's list of
145 * clocks.
146 * @clock A pointer to a clock struct to initialize.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100147 * Return: 0 if OK, or a negative error code.
Jagan Teki75f98312019-02-28 00:26:52 +0530148 */
149int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk);
150
151/**
Jagan Tekid7c56612020-05-01 23:45:08 +0530152 * clk_get_bulk - Get/request all clocks of a device.
Neil Armstronga855be82018-04-03 11:44:18 +0200153 *
154 * This looks up and requests all clocks of the client device; each device is
155 * assumed to have n clocks associated with it somehow, and this function finds
156 * and requests all of them in a separate structure. The mapping of client
157 * device clock indices to provider clocks may be via device-tree properties,
158 * board-provided mapping tables, or some other mechanism.
159 *
160 * @dev: The client device.
161 * @bulk A pointer to a clock bulk struct to initialize.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100162 * Return: 0 if OK, or a negative error code.
Neil Armstronga855be82018-04-03 11:44:18 +0200163 */
164int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk);
165
166/**
Jagan Tekid7c56612020-05-01 23:45:08 +0530167 * clk_get_by_name - Get/request a clock by name.
Stephen Warren135aa952016-06-17 09:44:00 -0600168 *
169 * This looks up and requests a clock. The name is relative to the client
170 * device; each device is assumed to have n clocks associated with it somehow,
171 * and this function finds and requests one of them. The mapping of client
172 * device clock names to provider clocks may be via device-tree properties,
173 * board-provided mapping tables, or some other mechanism.
174 *
175 * @dev: The client device.
176 * @name: The name of the clock to request, within the client's list of
177 * clocks.
178 * @clock: A pointer to a clock struct to initialize.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100179 * Return: 0 if OK, or a negative error code.
Stephen Warren135aa952016-06-17 09:44:00 -0600180 */
181int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200182
183/**
Chunfeng Yund6464202020-01-09 11:35:07 +0800184 * clk_get_by_name_nodev - Get/request a clock by name without a device.
185 *
186 * This is a version of clk_get_by_name() that does not use a device.
187 *
188 * @node: The client ofnode.
189 * @name: The name of the clock to request, within the client's list of
190 * clocks.
191 * @clock: A pointer to a clock struct to initialize.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100192 * Return: 0 if OK, or a negative error code.
Chunfeng Yund6464202020-01-09 11:35:07 +0800193 */
194int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk);
195
196/**
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200197 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
198 * @dev: device for clock "consumer"
199 * @id: clock consumer ID
200 *
201 * Returns a struct clk corresponding to the clock producer, or
202 * valid IS_ERR() condition containing errno. The implementation
203 * uses @dev and @id to determine the clock consumer, and thereby
204 * the clock producer. (IOW, @id may be identical strings, but
205 * clk_get may return different clock producers depending on @dev.)
206 *
207 * Drivers must assume that the clock source is not enabled.
208 *
209 * devm_clk_get should not be called from within interrupt context.
210 *
211 * The clock will automatically be freed when the device is unbound
212 * from the bus.
213 */
214struct clk *devm_clk_get(struct udevice *dev, const char *id);
215
216/**
217 * devm_clk_get_optional - lookup and obtain a managed reference to an optional
218 * clock producer.
219 * @dev: device for clock "consumer"
220 * @id: clock consumer ID
221 *
222 * Behaves the same as devm_clk_get() except where there is no clock producer.
223 * In this case, instead of returning -ENOENT, the function returns NULL.
224 */
Sean Anderson14cacb02021-12-22 12:11:11 -0500225static inline struct clk *devm_clk_get_optional(struct udevice *dev,
226 const char *id)
227{
228 struct clk *clk = devm_clk_get(dev, id);
229
230 if (PTR_ERR(clk) == -ENODATA)
231 return NULL;
232
233 return clk;
234}
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200235
236/**
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200237 * clk_release_all() - Disable (turn off)/Free an array of previously
238 * requested clocks.
239 *
240 * For each clock contained in the clock array, this function will check if
241 * clock has been previously requested and then will disable and free it.
242 *
243 * @clk: A clock struct array that was previously successfully
244 * requested by clk_request/get_by_*().
245 * @count Number of clock contained in the array
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100246 * Return: zero on success, or -ve error code.
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200247 */
248int clk_release_all(struct clk *clk, int count);
249
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200250/**
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 */
261void devm_clk_put(struct udevice *dev, struct clk *clk);
262
Masahiro Yamada021abf62016-09-26 20:45:27 +0900263#else
264static inline int clk_get_by_index(struct udevice *dev, int index,
265 struct clk *clk)
266{
267 return -ENOSYS;
268}
269
Neil Armstronga855be82018-04-03 11:44:18 +0200270static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
271{
272 return -ENOSYS;
273}
274
Masahiro Yamada021abf62016-09-26 20:45:27 +0900275static inline int clk_get_by_name(struct udevice *dev, const char *name,
276 struct clk *clk)
277{
278 return -ENOSYS;
279}
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200280
Chunfeng Yund6464202020-01-09 11:35:07 +0800281static inline int
282clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk)
283{
284 return -ENOSYS;
285}
286
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200287static inline int clk_release_all(struct clk *clk, int count)
288{
289 return -ENOSYS;
290}
Masahiro Yamada021abf62016-09-26 20:45:27 +0900291#endif
Simon Glasse70cc432016-01-20 19:43:02 -0700292
Sean Anderson6e33eba2021-06-11 00:16:07 -0400293/**
Sean Anderson14cacb02021-12-22 12:11:11 -0500294 * clk_get_by_name_nodev_optional - Get/request an optinonal clock by name
295 * without a device.
296 * @node: The client ofnode.
297 * @name: The name of the clock to request.
298 * @name: The name of the clock to request, within the client's list of
299 * clocks.
300 * @clock: A pointer to a clock struct to initialize.
301 *
302 * Behaves the same as clk_get_by_name_nodev() except where there is
303 * no clock producer, in this case, skip the error number -ENODATA, and
304 * the function returns 0.
305 */
306static inline int clk_get_by_name_nodev_optional(ofnode node, const char *name,
307 struct clk *clk)
308{
309 int ret;
310
311 ret = clk_get_by_name_nodev(node, name, clk);
312 if (ret == -ENODATA)
313 return 0;
314
315 return ret;
316}
317
318/**
Sean Anderson6e33eba2021-06-11 00:16:07 -0400319 * enum clk_defaults_stage - What stage clk_set_defaults() is called at
320 * @CLK_DEFAULTS_PRE: Called before probe. Setting of defaults for clocks owned
321 * by this clock driver will be defered until after probing.
322 * @CLK_DEFAULTS_POST: Called after probe. Only defaults for clocks owned by
323 * this clock driver will be set.
324 * @CLK_DEFAULTS_POST_FORCE: Called after probe, and always set defaults, even
325 * before relocation. Usually, defaults are not set
326 * pre-relocation to avoid setting them twice (when
327 * the device is probed again post-relocation). This
328 * may incur a performance cost as device tree
329 * properties must be parsed for a second time.
330 * However, when not using SPL, pre-relocation may be
331 * the only time we can set defaults for some clocks
332 * (such as those used for the RAM we will relocate
333 * into).
334 */
335enum clk_defaults_stage {
336 CLK_DEFAULTS_PRE = 0,
337 CLK_DEFAULTS_POST = 1,
338 CLK_DEFAULTS_POST_FORCE,
339};
340
Simon Glass414cc152021-08-07 07:24:03 -0600341#if CONFIG_IS_ENABLED(OF_REAL) && CONFIG_IS_ENABLED(CLK)
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100342/**
343 * clk_set_defaults - Process 'assigned-{clocks/clock-parents/clock-rates}'
344 * properties to configure clocks
345 *
346 * @dev: A device to process (the ofnode associated with this device
347 * will be processed).
Sean Anderson6e33eba2021-06-11 00:16:07 -0400348 * @stage: The stage of the probing process this function is called during.
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100349 */
Sean Anderson6e33eba2021-06-11 00:16:07 -0400350int clk_set_defaults(struct udevice *dev, enum clk_defaults_stage stage);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100351#else
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200352static inline int clk_set_defaults(struct udevice *dev, int stage)
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100353{
354 return 0;
355}
356#endif
357
Stephen Warren135aa952016-06-17 09:44:00 -0600358/**
Neil Armstronga855be82018-04-03 11:44:18 +0200359 * clk_release_bulk() - Disable (turn off)/Free an array of previously
360 * requested clocks in a clock bulk struct.
361 *
362 * For each clock contained in the clock bulk struct, this function will check
363 * if clock has been previously requested and then will disable and free it.
364 *
365 * @clk: A clock bulk struct that was previously successfully
366 * requested by clk_get_bulk().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100367 * Return: zero on success, or -ve error code.
Neil Armstronga855be82018-04-03 11:44:18 +0200368 */
369static inline int clk_release_bulk(struct clk_bulk *bulk)
370{
371 return clk_release_all(bulk->clks, bulk->count);
372}
373
Patrick Delaunay6f791742020-04-27 15:29:57 +0200374#if CONFIG_IS_ENABLED(CLK)
Neil Armstronga855be82018-04-03 11:44:18 +0200375/**
Stephen Warren135aa952016-06-17 09:44:00 -0600376 * clk_request - Request a clock by provider-specific ID.
377 *
378 * This requests a clock using a provider-specific ID. Generally, this function
379 * should not be used, since clk_get_by_index/name() provide an interface that
380 * better separates clients from intimate knowledge of clock providers.
381 * However, this function may be useful in core SoC-specific code.
382 *
383 * @dev: The clock provider device.
384 * @clock: A pointer to a clock struct to initialize. The caller must
385 * have already initialized any field in this struct which the
386 * clock provider uses to identify the clock.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100387 * Return: 0 if OK, or a negative error code.
Stephen Warren135aa952016-06-17 09:44:00 -0600388 */
389int clk_request(struct udevice *dev, struct clk *clk);
390
391/**
Jagan Tekid7c56612020-05-01 23:45:08 +0530392 * clk_free - Free a previously requested clock.
Stephen Warren135aa952016-06-17 09:44:00 -0600393 *
394 * @clock: A clock struct that was previously successfully requested by
395 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100396 * Return: 0 if OK, or a negative error code.
Stephen Warren135aa952016-06-17 09:44:00 -0600397 */
398int clk_free(struct clk *clk);
399
400/**
401 * clk_get_rate() - Get current clock rate.
402 *
403 * @clk: A clock struct that was previously successfully requested by
404 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100405 * Return: clock rate in Hz on success, 0 for invalid clock, or -ve error code
Giulio Benetti9e578f62021-02-14 03:17:18 +0100406 * for other errors.
Stephen Warren135aa952016-06-17 09:44:00 -0600407 */
408ulong clk_get_rate(struct clk *clk);
409
410/**
Lukasz Majewski0c660c22019-06-24 15:50:42 +0200411 * clk_get_parent() - Get current clock's parent.
412 *
413 * @clk: A clock struct that was previously successfully requested by
414 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100415 * Return: pointer to parent's struct clk, or error code passed as pointer
Lukasz Majewski0c660c22019-06-24 15:50:42 +0200416 */
417struct clk *clk_get_parent(struct clk *clk);
418
419/**
Lukasz Majewski4aa78302019-06-24 15:50:43 +0200420 * clk_get_parent_rate() - Get parent of current clock rate.
421 *
422 * @clk: A clock struct that was previously successfully requested by
423 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100424 * Return: clock rate in Hz, or -ve error code.
Lukasz Majewski4aa78302019-06-24 15:50:43 +0200425 */
426long long clk_get_parent_rate(struct clk *clk);
427
428/**
Dario Binacchi2983ad52020-12-30 00:06:31 +0100429 * clk_round_rate() - Adjust a rate to the exact rate a clock can provide
430 *
431 * This answers the question "if I were to pass @rate to clk_set_rate(),
432 * what clock rate would I end up with?" without changing the hardware
433 * in any way. In other words:
434 *
435 * rate = clk_round_rate(clk, r);
436 *
437 * and:
438 *
439 * rate = clk_set_rate(clk, r);
440 *
441 * are equivalent except the former does not modify the clock hardware
442 * in any way.
443 *
444 * @clk: A clock struct that was previously successfully requested by
445 * clk_request/get_by_*().
446 * @rate: desired clock rate in Hz.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100447 * Return: rounded rate in Hz, or -ve error code.
Dario Binacchi2983ad52020-12-30 00:06:31 +0100448 */
449ulong clk_round_rate(struct clk *clk, ulong rate);
450
451/**
Stephen Warren135aa952016-06-17 09:44:00 -0600452 * clk_set_rate() - Set current clock rate.
453 *
454 * @clk: A clock struct that was previously successfully requested by
455 * clk_request/get_by_*().
456 * @rate: New clock rate in Hz.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100457 * Return: new rate, or -ve error code.
Stephen Warren135aa952016-06-17 09:44:00 -0600458 */
459ulong clk_set_rate(struct clk *clk, ulong rate);
460
461/**
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100462 * clk_set_parent() - Set current clock parent.
463 *
464 * @clk: A clock struct that was previously successfully requested by
465 * clk_request/get_by_*().
466 * @parent: A clock struct that was previously successfully requested by
467 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100468 * Return: new rate, or -ve error code.
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100469 */
470int clk_set_parent(struct clk *clk, struct clk *parent);
471
472/**
Stephen Warren135aa952016-06-17 09:44:00 -0600473 * clk_enable() - Enable (turn on) a clock.
474 *
475 * @clk: A clock struct that was previously successfully requested by
476 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100477 * Return: zero on success, or -ve error code.
Stephen Warren135aa952016-06-17 09:44:00 -0600478 */
479int clk_enable(struct clk *clk);
480
481/**
Neil Armstronga855be82018-04-03 11:44:18 +0200482 * clk_enable_bulk() - Enable (turn on) all clocks in a clock bulk struct.
483 *
484 * @bulk: A clock bulk struct that was previously successfully requested
485 * by clk_get_bulk().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100486 * Return: zero on success, or -ve error code.
Neil Armstronga855be82018-04-03 11:44:18 +0200487 */
488int clk_enable_bulk(struct clk_bulk *bulk);
489
490/**
Stephen Warren135aa952016-06-17 09:44:00 -0600491 * clk_disable() - Disable (turn off) a clock.
492 *
493 * @clk: A clock struct that was previously successfully requested by
494 * clk_request/get_by_*().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100495 * Return: zero on success, or -ve error code.
Stephen Warren135aa952016-06-17 09:44:00 -0600496 */
497int clk_disable(struct clk *clk);
498
Neil Armstronga855be82018-04-03 11:44:18 +0200499/**
500 * clk_disable_bulk() - Disable (turn off) all clocks in a clock bulk struct.
501 *
502 * @bulk: A clock bulk struct that was previously successfully requested
503 * by clk_get_bulk().
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100504 * Return: zero on success, or -ve error code.
Neil Armstronga855be82018-04-03 11:44:18 +0200505 */
506int clk_disable_bulk(struct clk_bulk *bulk);
507
Sekhar Noriacbb7cd2019-08-01 19:12:55 +0530508/**
509 * clk_is_match - check if two clk's point to the same hardware clock
510 * @p: clk compared against q
511 * @q: clk compared against p
512 *
513 * Returns true if the two struct clk pointers both point to the same hardware
514 * clock node.
515 *
516 * Returns false otherwise. Note that two NULL clks are treated as matching.
517 */
518bool clk_is_match(const struct clk *p, const struct clk *q);
519
Lukasz Majewski2796af72019-06-24 15:50:44 +0200520/**
521 * clk_get_by_id() - Get the clock by its ID
522 *
523 * @id: The clock ID to search for
524 *
525 * @clkp: A pointer to clock struct that has been found among added clocks
526 * to UCLASS_CLK
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100527 * Return: zero on success, or -ENOENT on error
Lukasz Majewski2796af72019-06-24 15:50:44 +0200528 */
529int clk_get_by_id(ulong id, struct clk **clkp);
Peng Fan24576122019-07-31 07:01:23 +0000530
531/**
532 * clk_dev_binded() - Check whether the clk has a device binded
533 *
534 * @clk A pointer to the clk
535 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100536 * Return: true on binded, or false on no
Peng Fan24576122019-07-31 07:01:23 +0000537 */
538bool clk_dev_binded(struct clk *clk);
Patrick Delaunay6f791742020-04-27 15:29:57 +0200539
540#else /* CONFIG_IS_ENABLED(CLK) */
541
542static inline int clk_request(struct udevice *dev, struct clk *clk)
543{
544 return -ENOSYS;
545}
546
547static inline int clk_free(struct clk *clk)
548{
549 return 0;
550}
551
552static inline ulong clk_get_rate(struct clk *clk)
553{
554 return -ENOSYS;
555}
556
557static inline struct clk *clk_get_parent(struct clk *clk)
558{
559 return ERR_PTR(-ENOSYS);
560}
561
562static inline long long clk_get_parent_rate(struct clk *clk)
563{
564 return -ENOSYS;
565}
566
Dario Binacchi2983ad52020-12-30 00:06:31 +0100567static inline ulong clk_round_rate(struct clk *clk, ulong rate)
568{
569 return -ENOSYS;
570}
571
Patrick Delaunay6f791742020-04-27 15:29:57 +0200572static inline ulong clk_set_rate(struct clk *clk, ulong rate)
573{
574 return -ENOSYS;
575}
576
577static inline int clk_set_parent(struct clk *clk, struct clk *parent)
578{
579 return -ENOSYS;
580}
581
582static inline int clk_enable(struct clk *clk)
583{
584 return 0;
585}
586
587static inline int clk_enable_bulk(struct clk_bulk *bulk)
588{
589 return 0;
590}
591
592static inline int clk_disable(struct clk *clk)
593{
594 return 0;
595}
596
597static inline int clk_disable_bulk(struct clk_bulk *bulk)
598{
599 return 0;
600}
601
602static inline bool clk_is_match(const struct clk *p, const struct clk *q)
603{
604 return false;
605}
606
607static inline int clk_get_by_id(ulong id, struct clk **clkp)
608{
609 return -ENOSYS;
610}
611
612static inline bool clk_dev_binded(struct clk *clk)
613{
614 return false;
615}
616#endif /* CONFIG_IS_ENABLED(CLK) */
617
618/**
619 * clk_valid() - check if clk is valid
620 *
621 * @clk: the clock to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100622 * Return: true if valid, or false
Patrick Delaunay6f791742020-04-27 15:29:57 +0200623 */
624static inline bool clk_valid(struct clk *clk)
625{
626 return clk && !!clk->dev;
627}
628
629int soc_clk_dump(void);
630
Stephen Warren135aa952016-06-17 09:44:00 -0600631#endif
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200632
633#define clk_prepare_enable(clk) clk_enable(clk)
634#define clk_disable_unprepare(clk) clk_disable(clk)