blob: 3336301815ff63a1513c09d20578631fbcf41399 [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>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090012#include <linux/errno.h>
Masahiro Yamadaad1cf782016-01-13 13:16:09 +090013#include <linux/types.h>
14
Stephen Warren135aa952016-06-17 09:44:00 -060015/**
16 * A clock is a hardware signal that oscillates autonomously at a specific
17 * frequency and duty cycle. Most hardware modules require one or more clock
18 * signal to drive their operation. Clock signals are typically generated
19 * externally to the HW module consuming them, by an entity this API calls a
20 * clock provider. This API provides a standard means for drivers to enable and
21 * disable clocks, and to set the rate at which they oscillate.
22 *
Lukasz Majewskia9092712019-06-24 15:50:36 +020023 * A driver that implements UCLASS_CLK is a clock provider. A provider will
Stephen Warren135aa952016-06-17 09:44:00 -060024 * often implement multiple separate clocks, since the hardware it manages
Liviu Dudau9bf86502018-09-17 17:43:08 +010025 * often has this capability. clk-uclass.h describes the interface which
Stephen Warren135aa952016-06-17 09:44:00 -060026 * clock providers must implement.
27 *
28 * Clock consumers/clients are the HW modules driven by the clock signals. This
29 * header file describes the API used by drivers for those HW modules.
30 */
31
Masahiro Yamadaad1cf782016-01-13 13:16:09 +090032struct udevice;
33
Stephen Warren135aa952016-06-17 09:44:00 -060034/**
35 * struct clk - A handle to (allowing control of) a single clock.
36 *
37 * Clients provide storage for clock handles. The content of the structure is
38 * managed solely by the clock API and clock drivers. A clock struct is
39 * initialized by "get"ing the clock struct. The clock struct is passed to all
40 * other clock APIs to identify which clock signal to operate upon.
41 *
42 * @dev: The device which implements the clock signal.
Lukasz Majewski105db952019-06-24 15:50:38 +020043 * @rate: The clock rate (in HZ).
Lukasz Majewskia8592cd2019-06-24 15:50:39 +020044 * @flags: Flags used across common clock structure (e.g. CLK_)
45 * Clock IP blocks specific flags (i.e. mux, div, gate, etc) are defined
46 * in struct's for those devices (e.g. struct clk_mux).
Stephen Warren135aa952016-06-17 09:44:00 -060047 * @id: The clock signal ID within the provider.
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053048 * @data: An optional data field for scenarios where a single integer ID is not
49 * sufficient. If used, it can be populated through an .of_xlate op and
50 * processed during the various clock ops.
Stephen Warren135aa952016-06-17 09:44:00 -060051 *
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053052 * Should additional information to identify and configure any clock signal
53 * for any provider be required in the future, the struct could be expanded to
Stephen Warren135aa952016-06-17 09:44:00 -060054 * either (a) add more fields to allow clock providers to store additional
55 * information, or (b) replace the id field with an opaque pointer, which the
56 * provider would dynamically allocated during its .of_xlate op, and process
57 * during is .request op. This may require the addition of an extra op to clean
58 * up the allocation.
59 */
60struct clk {
61 struct udevice *dev;
Lukasz Majewski105db952019-06-24 15:50:38 +020062 long long rate; /* in HZ */
Lukasz Majewskia8592cd2019-06-24 15:50:39 +020063 u32 flags;
Peng Fane6849e22019-08-21 13:35:03 +000064 int enable_count;
Stephen Warren135aa952016-06-17 09:44:00 -060065 /*
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053066 * Written by of_xlate. In the future, we might add more fields here.
Simon Glassf26c8a82015-06-23 15:39:15 -060067 */
Stephen Warren135aa952016-06-17 09:44:00 -060068 unsigned long id;
Andreas Dannenberg3b3969b2018-08-27 15:57:42 +053069 unsigned long data;
Simon Glassf26c8a82015-06-23 15:39:15 -060070};
71
Neil Armstronga855be82018-04-03 11:44:18 +020072/**
73 * struct clk_bulk - A handle to (allowing control of) a bulk of clocks.
74 *
75 * Clients provide storage for the clock bulk. The content of the structure is
76 * managed solely by the clock API. A clock bulk struct is
77 * initialized by "get"ing the clock bulk struct.
78 * The clock bulk struct is passed to all other bulk clock APIs to apply
79 * the API to all the clock in the bulk struct.
80 *
81 * @clks: An array of clock handles.
82 * @count: The number of clock handles in the clks array.
83 */
84struct clk_bulk {
85 struct clk *clks;
86 unsigned int count;
87};
88
Paul Burton3f96f872016-09-08 07:47:28 +010089#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(CLK)
Simon Glass0d154632017-08-29 14:15:56 -060090struct phandle_1_arg;
Simon Glass7423daa2016-07-04 11:58:03 -060091int clk_get_by_index_platdata(struct udevice *dev, int index,
Simon Glass0d154632017-08-29 14:15:56 -060092 struct phandle_1_arg *cells, struct clk *clk);
Simon Glass7423daa2016-07-04 11:58:03 -060093
Simon Glasse70cc432016-01-20 19:43:02 -070094/**
Stephen Warren135aa952016-06-17 09:44:00 -060095 * clock_get_by_index - Get/request a clock by integer index.
Simon Glasse70cc432016-01-20 19:43:02 -070096 *
Stephen Warren135aa952016-06-17 09:44:00 -060097 * This looks up and requests a clock. The index is relative to the client
98 * device; each device is assumed to have n clocks associated with it somehow,
99 * and this function finds and requests one of them. The mapping of client
100 * device clock indices to provider clocks may be via device-tree properties,
101 * board-provided mapping tables, or some other mechanism.
Simon Glasse70cc432016-01-20 19:43:02 -0700102 *
Stephen Warren135aa952016-06-17 09:44:00 -0600103 * @dev: The client device.
104 * @index: The index of the clock to request, within the client's list of
105 * clocks.
106 * @clock A pointer to a clock struct to initialize.
107 * @return 0 if OK, or a negative error code.
Simon Glasse70cc432016-01-20 19:43:02 -0700108 */
Stephen Warren135aa952016-06-17 09:44:00 -0600109int clk_get_by_index(struct udevice *dev, int index, struct clk *clk);
110
111/**
Jagan Teki75f98312019-02-28 00:26:52 +0530112 * clock_get_by_index_nodev - Get/request a clock by integer index
113 * without a device.
114 *
115 * This is a version of clk_get_by_index() that does not use a device.
116 *
117 * @node: The client ofnode.
118 * @index: The index of the clock to request, within the client's list of
119 * clocks.
120 * @clock A pointer to a clock struct to initialize.
121 * @return 0 if OK, or a negative error code.
122 */
123int clk_get_by_index_nodev(ofnode node, int index, struct clk *clk);
124
125/**
Neil Armstronga855be82018-04-03 11:44:18 +0200126 * clock_get_bulk - Get/request all clocks of a device.
127 *
128 * This looks up and requests all clocks of the client device; each device is
129 * assumed to have n clocks associated with it somehow, and this function finds
130 * and requests all of them in a separate structure. The mapping of client
131 * device clock indices to provider clocks may be via device-tree properties,
132 * board-provided mapping tables, or some other mechanism.
133 *
134 * @dev: The client device.
135 * @bulk A pointer to a clock bulk struct to initialize.
136 * @return 0 if OK, or a negative error code.
137 */
138int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk);
139
140/**
Stephen Warren135aa952016-06-17 09:44:00 -0600141 * clock_get_by_name - Get/request a clock by name.
142 *
143 * This looks up and requests a clock. The name is relative to the client
144 * device; each device is assumed to have n clocks associated with it somehow,
145 * and this function finds and requests one of them. The mapping of client
146 * device clock names to provider clocks may be via device-tree properties,
147 * board-provided mapping tables, or some other mechanism.
148 *
149 * @dev: The client device.
150 * @name: The name of the clock to request, within the client's list of
151 * clocks.
152 * @clock: A pointer to a clock struct to initialize.
153 * @return 0 if OK, or a negative error code.
154 */
155int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200156
157/**
Chunfeng Yund6464202020-01-09 11:35:07 +0800158 * clk_get_by_name_nodev - Get/request a clock by name without a device.
159 *
160 * This is a version of clk_get_by_name() that does not use a device.
161 *
162 * @node: The client ofnode.
163 * @name: The name of the clock to request, within the client's list of
164 * clocks.
165 * @clock: A pointer to a clock struct to initialize.
166 * @return 0 if OK, or a negative error code.
167 */
168int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk);
169
170/**
171 * clock_get_optional_nodev - Get/request an optinonal clock by name
172 * without a device.
173 * @node: The client ofnode.
174 * @name: The name of the clock to request.
175 * @name: The name of the clock to request, within the client's list of
176 * clocks.
177 * @clock: A pointer to a clock struct to initialize.
178 *
179 * Behaves the same as clk_get_by_name_nodev() except where there is
180 * no clock producer, in this case, skip the error number -ENODATA, and
181 * the function returns 0.
182 */
183int clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk);
184
185/**
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200186 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
187 * @dev: device for clock "consumer"
188 * @id: clock consumer ID
189 *
190 * Returns a struct clk corresponding to the clock producer, or
191 * valid IS_ERR() condition containing errno. The implementation
192 * uses @dev and @id to determine the clock consumer, and thereby
193 * the clock producer. (IOW, @id may be identical strings, but
194 * clk_get may return different clock producers depending on @dev.)
195 *
196 * Drivers must assume that the clock source is not enabled.
197 *
198 * devm_clk_get should not be called from within interrupt context.
199 *
200 * The clock will automatically be freed when the device is unbound
201 * from the bus.
202 */
203struct clk *devm_clk_get(struct udevice *dev, const char *id);
204
205/**
206 * devm_clk_get_optional - lookup and obtain a managed reference to an optional
207 * clock producer.
208 * @dev: device for clock "consumer"
209 * @id: clock consumer ID
210 *
211 * Behaves the same as devm_clk_get() except where there is no clock producer.
212 * In this case, instead of returning -ENOENT, the function returns NULL.
213 */
214struct clk *devm_clk_get_optional(struct udevice *dev, const char *id);
215
216/**
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200217 * clk_release_all() - Disable (turn off)/Free an array of previously
218 * requested clocks.
219 *
220 * For each clock contained in the clock array, this function will check if
221 * clock has been previously requested and then will disable and free it.
222 *
223 * @clk: A clock struct array that was previously successfully
224 * requested by clk_request/get_by_*().
225 * @count Number of clock contained in the array
226 * @return zero on success, or -ve error code.
227 */
228int clk_release_all(struct clk *clk, int count);
229
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200230/**
231 * devm_clk_put - "free" a managed clock source
232 * @dev: device used to acquire the clock
233 * @clk: clock source acquired with devm_clk_get()
234 *
235 * Note: drivers must ensure that all clk_enable calls made on this
236 * clock source are balanced by clk_disable calls prior to calling
237 * this function.
238 *
239 * clk_put should not be called from within interrupt context.
240 */
241void devm_clk_put(struct udevice *dev, struct clk *clk);
242
Masahiro Yamada021abf62016-09-26 20:45:27 +0900243#else
244static inline int clk_get_by_index(struct udevice *dev, int index,
245 struct clk *clk)
246{
247 return -ENOSYS;
248}
249
Neil Armstronga855be82018-04-03 11:44:18 +0200250static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
251{
252 return -ENOSYS;
253}
254
Masahiro Yamada021abf62016-09-26 20:45:27 +0900255static inline int clk_get_by_name(struct udevice *dev, const char *name,
256 struct clk *clk)
257{
258 return -ENOSYS;
259}
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200260
Chunfeng Yund6464202020-01-09 11:35:07 +0800261static inline int
262clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk)
263{
264 return -ENOSYS;
265}
266
267static inline int
268clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk)
269{
270 return -ENOSYS;
271}
272
Patrice Chotardb108d8a2017-07-25 13:24:45 +0200273static inline int clk_release_all(struct clk *clk, int count)
274{
275 return -ENOSYS;
276}
Masahiro Yamada021abf62016-09-26 20:45:27 +0900277#endif
Simon Glasse70cc432016-01-20 19:43:02 -0700278
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100279#if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) && \
280 CONFIG_IS_ENABLED(CLK)
281/**
282 * clk_set_defaults - Process 'assigned-{clocks/clock-parents/clock-rates}'
283 * properties to configure clocks
284 *
285 * @dev: A device to process (the ofnode associated with this device
286 * will be processed).
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200287 * @stage: A integer. 0 indicates that this is called before the device
288 * is probed. 1 indicates that this is called just after the
289 * device has been probed
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100290 */
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200291int clk_set_defaults(struct udevice *dev, int stage);
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100292#else
Jean-Jacques Hiblotfd1ba292019-10-22 14:00:06 +0200293static inline int clk_set_defaults(struct udevice *dev, int stage)
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100294{
295 return 0;
296}
297#endif
298
Stephen Warren135aa952016-06-17 09:44:00 -0600299/**
Neil Armstronga855be82018-04-03 11:44:18 +0200300 * clk_release_bulk() - Disable (turn off)/Free an array of previously
301 * requested clocks in a clock bulk struct.
302 *
303 * For each clock contained in the clock bulk struct, this function will check
304 * if clock has been previously requested and then will disable and free it.
305 *
306 * @clk: A clock bulk struct that was previously successfully
307 * requested by clk_get_bulk().
308 * @return zero on success, or -ve error code.
309 */
310static inline int clk_release_bulk(struct clk_bulk *bulk)
311{
312 return clk_release_all(bulk->clks, bulk->count);
313}
314
315/**
Stephen Warren135aa952016-06-17 09:44:00 -0600316 * clk_request - Request a clock by provider-specific ID.
317 *
318 * This requests a clock using a provider-specific ID. Generally, this function
319 * should not be used, since clk_get_by_index/name() provide an interface that
320 * better separates clients from intimate knowledge of clock providers.
321 * However, this function may be useful in core SoC-specific code.
322 *
323 * @dev: The clock provider device.
324 * @clock: A pointer to a clock struct to initialize. The caller must
325 * have already initialized any field in this struct which the
326 * clock provider uses to identify the clock.
327 * @return 0 if OK, or a negative error code.
328 */
329int clk_request(struct udevice *dev, struct clk *clk);
330
331/**
332 * clock_free - Free a previously requested clock.
333 *
334 * @clock: A clock struct that was previously successfully requested by
335 * clk_request/get_by_*().
336 * @return 0 if OK, or a negative error code.
337 */
338int clk_free(struct clk *clk);
339
340/**
341 * clk_get_rate() - Get current clock rate.
342 *
343 * @clk: A clock struct that was previously successfully requested by
344 * clk_request/get_by_*().
345 * @return clock rate in Hz, or -ve error code.
346 */
347ulong clk_get_rate(struct clk *clk);
348
349/**
Lukasz Majewski0c660c22019-06-24 15:50:42 +0200350 * clk_get_parent() - Get current clock's parent.
351 *
352 * @clk: A clock struct that was previously successfully requested by
353 * clk_request/get_by_*().
354 * @return pointer to parent's struct clk, or error code passed as pointer
355 */
356struct clk *clk_get_parent(struct clk *clk);
357
358/**
Lukasz Majewski4aa78302019-06-24 15:50:43 +0200359 * clk_get_parent_rate() - Get parent of current clock rate.
360 *
361 * @clk: A clock struct that was previously successfully requested by
362 * clk_request/get_by_*().
363 * @return clock rate in Hz, or -ve error code.
364 */
365long long clk_get_parent_rate(struct clk *clk);
366
367/**
Stephen Warren135aa952016-06-17 09:44:00 -0600368 * clk_set_rate() - Set current clock rate.
369 *
370 * @clk: A clock struct that was previously successfully requested by
371 * clk_request/get_by_*().
372 * @rate: New clock rate in Hz.
373 * @return new rate, or -ve error code.
374 */
375ulong clk_set_rate(struct clk *clk, ulong rate);
376
377/**
Philipp Tomsichf7d10462018-01-08 11:15:08 +0100378 * clk_set_parent() - Set current clock parent.
379 *
380 * @clk: A clock struct that was previously successfully requested by
381 * clk_request/get_by_*().
382 * @parent: A clock struct that was previously successfully requested by
383 * clk_request/get_by_*().
384 * @return new rate, or -ve error code.
385 */
386int clk_set_parent(struct clk *clk, struct clk *parent);
387
388/**
Stephen Warren135aa952016-06-17 09:44:00 -0600389 * clk_enable() - Enable (turn on) a clock.
390 *
391 * @clk: A clock struct that was previously successfully requested by
392 * clk_request/get_by_*().
393 * @return zero on success, or -ve error code.
394 */
395int clk_enable(struct clk *clk);
396
397/**
Neil Armstronga855be82018-04-03 11:44:18 +0200398 * clk_enable_bulk() - Enable (turn on) all clocks in a clock bulk struct.
399 *
400 * @bulk: A clock bulk struct that was previously successfully requested
401 * by clk_get_bulk().
402 * @return zero on success, or -ve error code.
403 */
404int clk_enable_bulk(struct clk_bulk *bulk);
405
406/**
Stephen Warren135aa952016-06-17 09:44:00 -0600407 * clk_disable() - Disable (turn off) a clock.
408 *
409 * @clk: A clock struct that was previously successfully requested by
410 * clk_request/get_by_*().
411 * @return zero on success, or -ve error code.
412 */
413int clk_disable(struct clk *clk);
414
Neil Armstronga855be82018-04-03 11:44:18 +0200415/**
416 * clk_disable_bulk() - Disable (turn off) all clocks in a clock bulk struct.
417 *
418 * @bulk: A clock bulk struct that was previously successfully requested
419 * by clk_get_bulk().
420 * @return zero on success, or -ve error code.
421 */
422int clk_disable_bulk(struct clk_bulk *bulk);
423
Sekhar Noriacbb7cd2019-08-01 19:12:55 +0530424/**
425 * clk_is_match - check if two clk's point to the same hardware clock
426 * @p: clk compared against q
427 * @q: clk compared against p
428 *
429 * Returns true if the two struct clk pointers both point to the same hardware
430 * clock node.
431 *
432 * Returns false otherwise. Note that two NULL clks are treated as matching.
433 */
434bool clk_is_match(const struct clk *p, const struct clk *q);
435
Stephen Warren135aa952016-06-17 09:44:00 -0600436int soc_clk_dump(void);
437
Fabrice Gasnier1fe243a2018-07-24 16:31:28 +0200438/**
439 * clk_valid() - check if clk is valid
440 *
441 * @clk: the clock to check
442 * @return true if valid, or false
443 */
444static inline bool clk_valid(struct clk *clk)
445{
Jean-Jacques Hiblot8a1661f2019-10-22 14:00:03 +0200446 return clk && !!clk->dev;
Fabrice Gasnier1fe243a2018-07-24 16:31:28 +0200447}
Lukasz Majewski2796af72019-06-24 15:50:44 +0200448
449/**
450 * clk_get_by_id() - Get the clock by its ID
451 *
452 * @id: The clock ID to search for
453 *
454 * @clkp: A pointer to clock struct that has been found among added clocks
455 * to UCLASS_CLK
456 * @return zero on success, or -ENOENT on error
457 */
458int clk_get_by_id(ulong id, struct clk **clkp);
Peng Fan24576122019-07-31 07:01:23 +0000459
460/**
461 * clk_dev_binded() - Check whether the clk has a device binded
462 *
463 * @clk A pointer to the clk
464 *
465 * @return true on binded, or false on no
466 */
467bool clk_dev_binded(struct clk *clk);
Stephen Warren135aa952016-06-17 09:44:00 -0600468#endif
Jean-Jacques Hiblot52720c52019-10-22 14:00:04 +0200469
470#define clk_prepare_enable(clk) clk_enable(clk)
471#define clk_disable_unprepare(clk) clk_disable(clk)