]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/clk.h
Merge branch 'pci/microchip'
[mirror_ubuntu-jammy-kernel.git] / include / linux / clk.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
1da177e4 2/*
f8ce2547 3 * linux/include/linux/clk.h
1da177e4
LT
4 *
5 * Copyright (C) 2004 ARM Limited.
6 * Written by Deep Blue Solutions Limited.
b2476490 7 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
1da177e4 8 */
686f8c5d
TP
9#ifndef __LINUX_CLK_H
10#define __LINUX_CLK_H
1da177e4 11
9f1612d3 12#include <linux/err.h>
40d3e0f4 13#include <linux/kernel.h>
b2476490 14#include <linux/notifier.h>
40d3e0f4 15
1da177e4 16struct device;
b2476490 17struct clk;
71a2f115
KM
18struct device_node;
19struct of_phandle_args;
b2476490 20
b2476490
MT
21/**
22 * DOC: clk notifier callback types
23 *
24 * PRE_RATE_CHANGE - called immediately before the clk rate is changed,
25 * to indicate that the rate change will proceed. Drivers must
26 * immediately terminate any operations that will be affected by the
fb72a059
SB
27 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
28 * NOTIFY_STOP or NOTIFY_BAD.
b2476490
MT
29 *
30 * ABORT_RATE_CHANGE: called if the rate change failed for some reason
31 * after PRE_RATE_CHANGE. In this case, all registered notifiers on
32 * the clk will be called with ABORT_RATE_CHANGE. Callbacks must
fb72a059 33 * always return NOTIFY_DONE or NOTIFY_OK.
b2476490
MT
34 *
35 * POST_RATE_CHANGE - called after the clk rate change has successfully
fb72a059 36 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
b2476490 37 *
1da177e4 38 */
b2476490
MT
39#define PRE_RATE_CHANGE BIT(0)
40#define POST_RATE_CHANGE BIT(1)
41#define ABORT_RATE_CHANGE BIT(2)
1da177e4 42
b2476490
MT
43/**
44 * struct clk_notifier - associate a clk with a notifier
45 * @clk: struct clk * to associate the notifier with
46 * @notifier_head: a blocking_notifier_head for this clk
47 * @node: linked list pointers
48 *
49 * A list of struct clk_notifier is maintained by the notifier code.
50 * An entry is created whenever code registers the first notifier on a
51 * particular @clk. Future notifiers on that @clk are added to the
52 * @notifier_head.
53 */
54struct clk_notifier {
55 struct clk *clk;
56 struct srcu_notifier_head notifier_head;
57 struct list_head node;
58};
1da177e4 59
b2476490
MT
60/**
61 * struct clk_notifier_data - rate data to pass to the notifier callback
62 * @clk: struct clk * being changed
63 * @old_rate: previous rate of this clk
64 * @new_rate: new rate of this clk
65 *
66 * For a pre-notifier, old_rate is the clk's rate before this rate
67 * change, and new_rate is what the rate will be in the future. For a
68 * post-notifier, old_rate and new_rate are both set to the clk's
69 * current rate (this was done to optimize the implementation).
1da177e4 70 */
b2476490
MT
71struct clk_notifier_data {
72 struct clk *clk;
73 unsigned long old_rate;
74 unsigned long new_rate;
75};
76
266e4e9d
DA
77/**
78 * struct clk_bulk_data - Data used for bulk clk operations.
79 *
80 * @id: clock consumer ID
81 * @clk: struct clk * to store the associated clock
82 *
83 * The CLK APIs provide a series of clk_bulk_() API calls as
84 * a convenience to consumers which require multiple clks. This
85 * structure is used to manage data for these calls.
86 */
87struct clk_bulk_data {
88 const char *id;
89 struct clk *clk;
90};
91
e81b87d2
KK
92#ifdef CONFIG_COMMON_CLK
93
86bcfa2e
MT
94/**
95 * clk_notifier_register: register a clock rate-change notifier callback
96 * @clk: clock whose rate we are interested in
97 * @nb: notifier block with callback function pointer
98 *
99 * ProTip: debugging across notifier chains can be frustrating. Make sure that
100 * your notifier callback function prints a nice big warning in case of
101 * failure.
102 */
b2476490
MT
103int clk_notifier_register(struct clk *clk, struct notifier_block *nb);
104
86bcfa2e
MT
105/**
106 * clk_notifier_unregister: unregister a clock rate-change notifier callback
107 * @clk: clock whose rate we are no longer interested in
108 * @nb: notifier block which will be unregistered
109 */
b2476490
MT
110int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
111
6d30d50d
JB
112/**
113 * devm_clk_notifier_register - register a managed rate-change notifier callback
114 * @dev: device for clock "consumer"
115 * @clk: clock whose rate we are interested in
116 * @nb: notifier block with callback function pointer
117 *
118 * Returns 0 on success, -EERROR otherwise
119 */
e6fb7aee
JB
120int devm_clk_notifier_register(struct device *dev, struct clk *clk,
121 struct notifier_block *nb);
6d30d50d 122
5279fc40
BB
123/**
124 * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
125 * for a clock source.
126 * @clk: clock source
127 *
128 * This gets the clock source accuracy expressed in ppb.
129 * A perfect clock returns 0.
130 */
131long clk_get_accuracy(struct clk *clk);
132
e59c5371
MT
133/**
134 * clk_set_phase - adjust the phase shift of a clock signal
135 * @clk: clock signal source
136 * @degrees: number of degrees the signal is shifted
137 *
138 * Shifts the phase of a clock signal by the specified degrees. Returns 0 on
139 * success, -EERROR otherwise.
140 */
141int clk_set_phase(struct clk *clk, int degrees);
142
143/**
144 * clk_get_phase - return the phase shift of a clock signal
145 * @clk: clock signal source
146 *
147 * Returns the phase shift of a clock node in degrees, otherwise returns
148 * -EERROR.
149 */
150int clk_get_phase(struct clk *clk);
151
9fba738a
JB
152/**
153 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
154 * @clk: clock signal source
155 * @num: numerator of the duty cycle ratio to be applied
156 * @den: denominator of the duty cycle ratio to be applied
157 *
158 * Adjust the duty cycle of a clock signal by the specified ratio. Returns 0 on
159 * success, -EERROR otherwise.
160 */
161int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den);
162
163/**
9d1c94a6 164 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
9fba738a
JB
165 * @clk: clock signal source
166 * @scale: scaling factor to be applied to represent the ratio as an integer
167 *
168 * Returns the duty cycle ratio multiplied by the scale provided, otherwise
169 * returns -EERROR.
170 */
171int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale);
172
3d3801ef
MT
173/**
174 * clk_is_match - check if two clk's point to the same hardware clock
175 * @p: clk compared against q
176 * @q: clk compared against p
177 *
178 * Returns true if the two struct clk pointers both point to the same hardware
0e056eb5
MCC
179 * clock node. Put differently, returns true if @p and @q
180 * share the same &struct clk_core object.
3d3801ef
MT
181 *
182 * Returns false otherwise. Note that two NULL clks are treated as matching.
183 */
184bool clk_is_match(const struct clk *p, const struct clk *q);
185
5279fc40
BB
186#else
187
e81b87d2
KK
188static inline int clk_notifier_register(struct clk *clk,
189 struct notifier_block *nb)
190{
191 return -ENOTSUPP;
192}
193
194static inline int clk_notifier_unregister(struct clk *clk,
195 struct notifier_block *nb)
196{
197 return -ENOTSUPP;
198}
199
e6fb7aee
JB
200static inline int devm_clk_notifier_register(struct device *dev,
201 struct clk *clk,
202 struct notifier_block *nb)
203{
204 return -ENOTSUPP;
205}
206
5279fc40
BB
207static inline long clk_get_accuracy(struct clk *clk)
208{
209 return -ENOTSUPP;
210}
211
e59c5371
MT
212static inline long clk_set_phase(struct clk *clk, int phase)
213{
214 return -ENOTSUPP;
215}
216
217static inline long clk_get_phase(struct clk *clk)
218{
219 return -ENOTSUPP;
220}
221
9fba738a
JB
222static inline int clk_set_duty_cycle(struct clk *clk, unsigned int num,
223 unsigned int den)
224{
225 return -ENOTSUPP;
226}
227
228static inline unsigned int clk_get_scaled_duty_cycle(struct clk *clk,
229 unsigned int scale)
230{
231 return 0;
232}
233
3d3801ef
MT
234static inline bool clk_is_match(const struct clk *p, const struct clk *q)
235{
236 return p == q;
237}
238
7e87aed9 239#endif
1da177e4 240
93abe8e4
VK
241/**
242 * clk_prepare - prepare a clock source
243 * @clk: clock source
244 *
245 * This prepares the clock source for use.
246 *
247 * Must not be called from within atomic context.
248 */
249#ifdef CONFIG_HAVE_CLK_PREPARE
250int clk_prepare(struct clk *clk);
266e4e9d
DA
251int __must_check clk_bulk_prepare(int num_clks,
252 const struct clk_bulk_data *clks);
93abe8e4
VK
253#else
254static inline int clk_prepare(struct clk *clk)
255{
256 might_sleep();
257 return 0;
258}
266e4e9d 259
570aaec7
AS
260static inline int __must_check
261clk_bulk_prepare(int num_clks, const struct clk_bulk_data *clks)
266e4e9d
DA
262{
263 might_sleep();
264 return 0;
265}
93abe8e4
VK
266#endif
267
268/**
269 * clk_unprepare - undo preparation of a clock source
270 * @clk: clock source
271 *
272 * This undoes a previously prepared clock. The caller must balance
273 * the number of prepare and unprepare calls.
274 *
275 * Must not be called from within atomic context.
276 */
277#ifdef CONFIG_HAVE_CLK_PREPARE
278void clk_unprepare(struct clk *clk);
266e4e9d 279void clk_bulk_unprepare(int num_clks, const struct clk_bulk_data *clks);
93abe8e4
VK
280#else
281static inline void clk_unprepare(struct clk *clk)
282{
283 might_sleep();
284}
570aaec7
AS
285static inline void clk_bulk_unprepare(int num_clks,
286 const struct clk_bulk_data *clks)
266e4e9d
DA
287{
288 might_sleep();
289}
93abe8e4
VK
290#endif
291
292#ifdef CONFIG_HAVE_CLK
1da177e4
LT
293/**
294 * clk_get - lookup and obtain a reference to a clock producer.
295 * @dev: device for clock "consumer"
a58b3a4a 296 * @id: clock consumer ID
1da177e4
LT
297 *
298 * Returns a struct clk corresponding to the clock producer, or
ea3f4eac
RK
299 * valid IS_ERR() condition containing errno. The implementation
300 * uses @dev and @id to determine the clock consumer, and thereby
301 * the clock producer. (IOW, @id may be identical strings, but
302 * clk_get may return different clock producers depending on @dev.)
f47fc0ac
RK
303 *
304 * Drivers must assume that the clock source is not enabled.
f7ad160b
AR
305 *
306 * clk_get should not be called from within interrupt context.
1da177e4
LT
307 */
308struct clk *clk_get(struct device *dev, const char *id);
309
266e4e9d
DA
310/**
311 * clk_bulk_get - lookup and obtain a number of references to clock producer.
312 * @dev: device for clock "consumer"
313 * @num_clks: the number of clk_bulk_data
314 * @clks: the clk_bulk_data table of consumer
315 *
316 * This helper function allows drivers to get several clk consumers in one
317 * operation. If any of the clk cannot be acquired then any clks
318 * that were obtained will be freed before returning to the caller.
319 *
320 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
321 * successfully, or valid IS_ERR() condition containing errno.
322 * The implementation uses @dev and @clk_bulk_data.id to determine the
323 * clock consumer, and thereby the clock producer.
324 * The clock returned is stored in each @clk_bulk_data.clk field.
325 *
326 * Drivers must assume that the clock source is not enabled.
327 *
328 * clk_bulk_get should not be called from within interrupt context.
329 */
330int __must_check clk_bulk_get(struct device *dev, int num_clks,
331 struct clk_bulk_data *clks);
616e45df
DA
332/**
333 * clk_bulk_get_all - lookup and obtain all available references to clock
334 * producer.
335 * @dev: device for clock "consumer"
336 * @clks: pointer to the clk_bulk_data table of consumer
337 *
338 * This helper function allows drivers to get all clk consumers in one
339 * operation. If any of the clk cannot be acquired then any clks
340 * that were obtained will be freed before returning to the caller.
341 *
342 * Returns a positive value for the number of clocks obtained while the
343 * clock references are stored in the clk_bulk_data table in @clks field.
344 * Returns 0 if there're none and a negative value if something failed.
345 *
346 * Drivers must assume that the clock source is not enabled.
347 *
348 * clk_bulk_get should not be called from within interrupt context.
349 */
350int __must_check clk_bulk_get_all(struct device *dev,
351 struct clk_bulk_data **clks);
2f25528e
SN
352
353/**
354 * clk_bulk_get_optional - lookup and obtain a number of references to clock producer
355 * @dev: device for clock "consumer"
356 * @num_clks: the number of clk_bulk_data
357 * @clks: the clk_bulk_data table of consumer
358 *
359 * Behaves the same as clk_bulk_get() except where there is no clock producer.
360 * In this case, instead of returning -ENOENT, the function returns 0 and
361 * NULL for a clk for which a clock producer could not be determined.
362 */
363int __must_check clk_bulk_get_optional(struct device *dev, int num_clks,
364 struct clk_bulk_data *clks);
618aee02
DA
365/**
366 * devm_clk_bulk_get - managed get multiple clk consumers
367 * @dev: device for clock "consumer"
368 * @num_clks: the number of clk_bulk_data
369 * @clks: the clk_bulk_data table of consumer
370 *
371 * Return 0 on success, an errno on failure.
372 *
373 * This helper function allows drivers to get several clk
374 * consumers in one operation with management, the clks will
375 * automatically be freed when the device is unbound.
376 */
377int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
378 struct clk_bulk_data *clks);
9bd5ef0b
SN
379/**
380 * devm_clk_bulk_get_optional - managed get multiple optional consumer clocks
381 * @dev: device for clock "consumer"
6ee82ef0 382 * @num_clks: the number of clk_bulk_data
9bd5ef0b
SN
383 * @clks: pointer to the clk_bulk_data table of consumer
384 *
385 * Behaves the same as devm_clk_bulk_get() except where there is no clock
386 * producer. In this case, instead of returning -ENOENT, the function returns
387 * NULL for given clk. It is assumed all clocks in clk_bulk_data are optional.
388 *
389 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
390 * successfully or for any clk there was no clk provider available, otherwise
391 * returns valid IS_ERR() condition containing errno.
392 * The implementation uses @dev and @clk_bulk_data.id to determine the
393 * clock consumer, and thereby the clock producer.
394 * The clock returned is stored in each @clk_bulk_data.clk field.
395 *
396 * Drivers must assume that the clock source is not enabled.
397 *
398 * clk_bulk_get should not be called from within interrupt context.
399 */
400int __must_check devm_clk_bulk_get_optional(struct device *dev, int num_clks,
401 struct clk_bulk_data *clks);
f08c2e28
DA
402/**
403 * devm_clk_bulk_get_all - managed get multiple clk consumers
404 * @dev: device for clock "consumer"
405 * @clks: pointer to the clk_bulk_data table of consumer
406 *
407 * Returns a positive value for the number of clocks obtained while the
408 * clock references are stored in the clk_bulk_data table in @clks field.
409 * Returns 0 if there're none and a negative value if something failed.
410 *
411 * This helper function allows drivers to get several clk
412 * consumers in one operation with management, the clks will
413 * automatically be freed when the device is unbound.
414 */
415
416int __must_check devm_clk_bulk_get_all(struct device *dev,
417 struct clk_bulk_data **clks);
618aee02 418
a8a97db9
MB
419/**
420 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
421 * @dev: device for clock "consumer"
a58b3a4a 422 * @id: clock consumer ID
a8a97db9
MB
423 *
424 * Returns a struct clk corresponding to the clock producer, or
425 * valid IS_ERR() condition containing errno. The implementation
426 * uses @dev and @id to determine the clock consumer, and thereby
427 * the clock producer. (IOW, @id may be identical strings, but
428 * clk_get may return different clock producers depending on @dev.)
429 *
430 * Drivers must assume that the clock source is not enabled.
431 *
432 * devm_clk_get should not be called from within interrupt context.
433 *
434 * The clock will automatically be freed when the device is unbound
435 * from the bus.
436 */
437struct clk *devm_clk_get(struct device *dev, const char *id);
438
60b8f0dd
PE
439/**
440 * devm_clk_get_optional - lookup and obtain a managed reference to an optional
441 * clock producer.
442 * @dev: device for clock "consumer"
443 * @id: clock consumer ID
444 *
445 * Behaves the same as devm_clk_get() except where there is no clock producer.
446 * In this case, instead of returning -ENOENT, the function returns NULL.
447 */
448struct clk *devm_clk_get_optional(struct device *dev, const char *id);
449
71a2f115
KM
450/**
451 * devm_get_clk_from_child - lookup and obtain a managed reference to a
452 * clock producer from child node.
453 * @dev: device for clock "consumer"
454 * @np: pointer to clock consumer node
455 * @con_id: clock consumer ID
456 *
457 * This function parses the clocks, and uses them to look up the
458 * struct clk from the registered list of clock providers by using
459 * @np and @con_id
460 *
461 * The clock will automatically be freed when the device is unbound
462 * from the bus.
463 */
464struct clk *devm_get_clk_from_child(struct device *dev,
465 struct device_node *np, const char *con_id);
55e9b8b7
JB
466/**
467 * clk_rate_exclusive_get - get exclusivity over the rate control of a
468 * producer
469 * @clk: clock source
470 *
471 * This function allows drivers to get exclusive control over the rate of a
472 * provider. It prevents any other consumer to execute, even indirectly,
473 * opereation which could alter the rate of the provider or cause glitches
474 *
475 * If exlusivity is claimed more than once on clock, even by the same driver,
476 * the rate effectively gets locked as exclusivity can't be preempted.
477 *
478 * Must not be called from within atomic context.
479 *
480 * Returns success (0) or negative errno.
481 */
482int clk_rate_exclusive_get(struct clk *clk);
483
484/**
485 * clk_rate_exclusive_put - release exclusivity over the rate control of a
486 * producer
487 * @clk: clock source
488 *
489 * This function allows drivers to release the exclusivity it previously got
490 * from clk_rate_exclusive_get()
491 *
492 * The caller must balance the number of clk_rate_exclusive_get() and
493 * clk_rate_exclusive_put() calls.
494 *
495 * Must not be called from within atomic context.
496 */
497void clk_rate_exclusive_put(struct clk *clk);
71a2f115 498
1da177e4
LT
499/**
500 * clk_enable - inform the system when the clock source should be running.
501 * @clk: clock source
502 *
503 * If the clock can not be enabled/disabled, this should return success.
504 *
40d3e0f4
RK
505 * May be called from atomic contexts.
506 *
1da177e4
LT
507 * Returns success (0) or negative errno.
508 */
509int clk_enable(struct clk *clk);
510
266e4e9d
DA
511/**
512 * clk_bulk_enable - inform the system when the set of clks should be running.
513 * @num_clks: the number of clk_bulk_data
514 * @clks: the clk_bulk_data table of consumer
515 *
516 * May be called from atomic contexts.
517 *
518 * Returns success (0) or negative errno.
519 */
520int __must_check clk_bulk_enable(int num_clks,
521 const struct clk_bulk_data *clks);
522
1da177e4
LT
523/**
524 * clk_disable - inform the system when the clock source is no longer required.
525 * @clk: clock source
f47fc0ac
RK
526 *
527 * Inform the system that a clock source is no longer required by
528 * a driver and may be shut down.
529 *
40d3e0f4
RK
530 * May be called from atomic contexts.
531 *
f47fc0ac
RK
532 * Implementation detail: if the clock source is shared between
533 * multiple drivers, clk_enable() calls must be balanced by the
534 * same number of clk_disable() calls for the clock source to be
535 * disabled.
1da177e4
LT
536 */
537void clk_disable(struct clk *clk);
538
266e4e9d
DA
539/**
540 * clk_bulk_disable - inform the system when the set of clks is no
541 * longer required.
542 * @num_clks: the number of clk_bulk_data
543 * @clks: the clk_bulk_data table of consumer
544 *
545 * Inform the system that a set of clks is no longer required by
546 * a driver and may be shut down.
547 *
548 * May be called from atomic contexts.
549 *
550 * Implementation detail: if the set of clks is shared between
551 * multiple drivers, clk_bulk_enable() calls must be balanced by the
552 * same number of clk_bulk_disable() calls for the clock source to be
553 * disabled.
554 */
555void clk_bulk_disable(int num_clks, const struct clk_bulk_data *clks);
556
1da177e4
LT
557/**
558 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
559 * This is only valid once the clock source has been enabled.
560 * @clk: clock source
561 */
562unsigned long clk_get_rate(struct clk *clk);
563
564/**
565 * clk_put - "free" the clock source
566 * @clk: clock source
f47fc0ac
RK
567 *
568 * Note: drivers must ensure that all clk_enable calls made on this
569 * clock source are balanced by clk_disable calls prior to calling
570 * this function.
f7ad160b
AR
571 *
572 * clk_put should not be called from within interrupt context.
1da177e4
LT
573 */
574void clk_put(struct clk *clk);
575
266e4e9d
DA
576/**
577 * clk_bulk_put - "free" the clock source
578 * @num_clks: the number of clk_bulk_data
579 * @clks: the clk_bulk_data table of consumer
580 *
581 * Note: drivers must ensure that all clk_bulk_enable calls made on this
582 * clock source are balanced by clk_bulk_disable calls prior to calling
583 * this function.
584 *
585 * clk_bulk_put should not be called from within interrupt context.
586 */
587void clk_bulk_put(int num_clks, struct clk_bulk_data *clks);
588
616e45df
DA
589/**
590 * clk_bulk_put_all - "free" all the clock source
591 * @num_clks: the number of clk_bulk_data
592 * @clks: the clk_bulk_data table of consumer
593 *
594 * Note: drivers must ensure that all clk_bulk_enable calls made on this
595 * clock source are balanced by clk_bulk_disable calls prior to calling
596 * this function.
597 *
598 * clk_bulk_put_all should not be called from within interrupt context.
599 */
600void clk_bulk_put_all(int num_clks, struct clk_bulk_data *clks);
601
a8a97db9
MB
602/**
603 * devm_clk_put - "free" a managed clock source
da3dae54 604 * @dev: device used to acquire the clock
a8a97db9
MB
605 * @clk: clock source acquired with devm_clk_get()
606 *
607 * Note: drivers must ensure that all clk_enable calls made on this
608 * clock source are balanced by clk_disable calls prior to calling
609 * this function.
610 *
611 * clk_put should not be called from within interrupt context.
612 */
613void devm_clk_put(struct device *dev, struct clk *clk);
1da177e4
LT
614
615/*
616 * The remaining APIs are optional for machine class support.
617 */
618
619
620/**
621 * clk_round_rate - adjust a rate to the exact rate a clock can provide
622 * @clk: clock source
623 * @rate: desired clock rate in Hz
624 *
d2d14a77
RK
625 * This answers the question "if I were to pass @rate to clk_set_rate(),
626 * what clock rate would I end up with?" without changing the hardware
627 * in any way. In other words:
628 *
629 * rate = clk_round_rate(clk, r);
630 *
631 * and:
632 *
633 * clk_set_rate(clk, r);
634 * rate = clk_get_rate(clk);
635 *
636 * are equivalent except the former does not modify the clock hardware
637 * in any way.
638 *
1da177e4
LT
639 * Returns rounded clock rate in Hz, or negative errno.
640 */
641long clk_round_rate(struct clk *clk, unsigned long rate);
8b7730dd 642
1da177e4
LT
643/**
644 * clk_set_rate - set the clock rate for a clock source
645 * @clk: clock source
646 * @rate: desired clock rate in Hz
647 *
64c76b31
MB
648 * Updating the rate starts at the top-most affected clock and then
649 * walks the tree down to the bottom-most clock that needs updating.
650 *
1da177e4
LT
651 * Returns success (0) or negative errno.
652 */
653int clk_set_rate(struct clk *clk, unsigned long rate);
8b7730dd 654
55e9b8b7
JB
655/**
656 * clk_set_rate_exclusive- set the clock rate and claim exclusivity over
657 * clock source
658 * @clk: clock source
659 * @rate: desired clock rate in Hz
660 *
661 * This helper function allows drivers to atomically set the rate of a producer
662 * and claim exclusivity over the rate control of the producer.
663 *
664 * It is essentially a combination of clk_set_rate() and
665 * clk_rate_exclusite_get(). Caller must balance this call with a call to
666 * clk_rate_exclusive_put()
667 *
668 * Returns success (0) or negative errno.
669 */
670int clk_set_rate_exclusive(struct clk *clk, unsigned long rate);
671
4e88f3de
TR
672/**
673 * clk_has_parent - check if a clock is a possible parent for another
674 * @clk: clock source
675 * @parent: parent clock source
676 *
677 * This function can be used in drivers that need to check that a clock can be
678 * the parent of another without actually changing the parent.
679 *
680 * Returns true if @parent is a possible parent for @clk, false otherwise.
681 */
682bool clk_has_parent(struct clk *clk, struct clk *parent);
683
1c8e6004
TV
684/**
685 * clk_set_rate_range - set a rate range for a clock source
686 * @clk: clock source
687 * @min: desired minimum clock rate in Hz, inclusive
688 * @max: desired maximum clock rate in Hz, inclusive
689 *
690 * Returns success (0) or negative errno.
691 */
692int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max);
693
694/**
695 * clk_set_min_rate - set a minimum clock rate for a clock source
696 * @clk: clock source
697 * @rate: desired minimum clock rate in Hz, inclusive
698 *
699 * Returns success (0) or negative errno.
700 */
701int clk_set_min_rate(struct clk *clk, unsigned long rate);
702
703/**
704 * clk_set_max_rate - set a maximum clock rate for a clock source
705 * @clk: clock source
706 * @rate: desired maximum clock rate in Hz, inclusive
707 *
708 * Returns success (0) or negative errno.
709 */
710int clk_set_max_rate(struct clk *clk, unsigned long rate);
711
1da177e4
LT
712/**
713 * clk_set_parent - set the parent clock source for this clock
714 * @clk: clock source
715 * @parent: parent clock source
716 *
717 * Returns success (0) or negative errno.
718 */
719int clk_set_parent(struct clk *clk, struct clk *parent);
720
721/**
722 * clk_get_parent - get the parent clock source for this clock
723 * @clk: clock source
724 *
725 * Returns struct clk corresponding to parent clock source, or
726 * valid IS_ERR() condition containing errno.
727 */
728struct clk *clk_get_parent(struct clk *clk);
729
05fd8e73
SH
730/**
731 * clk_get_sys - get a clock based upon the device name
732 * @dev_id: device name
733 * @con_id: connection ID
734 *
735 * Returns a struct clk corresponding to the clock producer, or
736 * valid IS_ERR() condition containing errno. The implementation
737 * uses @dev_id and @con_id to determine the clock consumer, and
738 * thereby the clock producer. In contrast to clk_get() this function
739 * takes the device name instead of the device itself for identification.
740 *
741 * Drivers must assume that the clock source is not enabled.
742 *
743 * clk_get_sys should not be called from within interrupt context.
744 */
745struct clk *clk_get_sys(const char *dev_id, const char *con_id);
746
8b95d1ce
RD
747/**
748 * clk_save_context - save clock context for poweroff
749 *
750 * Saves the context of the clock register for powerstates in which the
751 * contents of the registers will be lost. Occurs deep within the suspend
752 * code so locking is not necessary.
753 */
754int clk_save_context(void);
755
756/**
757 * clk_restore_context - restore clock context after poweroff
758 *
759 * This occurs with all clocks enabled. Occurs deep within the resume code
760 * so locking is not necessary.
761 */
762void clk_restore_context(void);
763
93abe8e4
VK
764#else /* !CONFIG_HAVE_CLK */
765
766static inline struct clk *clk_get(struct device *dev, const char *id)
767{
768 return NULL;
769}
770
6e0d4ff4
DA
771static inline int __must_check clk_bulk_get(struct device *dev, int num_clks,
772 struct clk_bulk_data *clks)
266e4e9d
DA
773{
774 return 0;
775}
776
2f25528e
SN
777static inline int __must_check clk_bulk_get_optional(struct device *dev,
778 int num_clks, struct clk_bulk_data *clks)
779{
780 return 0;
781}
782
616e45df
DA
783static inline int __must_check clk_bulk_get_all(struct device *dev,
784 struct clk_bulk_data **clks)
785{
786 return 0;
787}
788
93abe8e4
VK
789static inline struct clk *devm_clk_get(struct device *dev, const char *id)
790{
791 return NULL;
792}
793
60b8f0dd
PE
794static inline struct clk *devm_clk_get_optional(struct device *dev,
795 const char *id)
796{
797 return NULL;
798}
799
6e0d4ff4
DA
800static inline int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
801 struct clk_bulk_data *clks)
618aee02
DA
802{
803 return 0;
804}
805
9bd5ef0b
SN
806static inline int __must_check devm_clk_bulk_get_optional(struct device *dev,
807 int num_clks, struct clk_bulk_data *clks)
808{
809 return 0;
810}
811
f08c2e28
DA
812static inline int __must_check devm_clk_bulk_get_all(struct device *dev,
813 struct clk_bulk_data **clks)
814{
815
816 return 0;
817}
818
71a2f115
KM
819static inline struct clk *devm_get_clk_from_child(struct device *dev,
820 struct device_node *np, const char *con_id)
821{
822 return NULL;
823}
824
93abe8e4
VK
825static inline void clk_put(struct clk *clk) {}
826
266e4e9d
DA
827static inline void clk_bulk_put(int num_clks, struct clk_bulk_data *clks) {}
828
616e45df
DA
829static inline void clk_bulk_put_all(int num_clks, struct clk_bulk_data *clks) {}
830
93abe8e4
VK
831static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
832
55e9b8b7
JB
833
834static inline int clk_rate_exclusive_get(struct clk *clk)
835{
836 return 0;
837}
838
839static inline void clk_rate_exclusive_put(struct clk *clk) {}
840
93abe8e4
VK
841static inline int clk_enable(struct clk *clk)
842{
843 return 0;
844}
845
570aaec7
AS
846static inline int __must_check clk_bulk_enable(int num_clks,
847 const struct clk_bulk_data *clks)
266e4e9d
DA
848{
849 return 0;
850}
851
93abe8e4
VK
852static inline void clk_disable(struct clk *clk) {}
853
266e4e9d
DA
854
855static inline void clk_bulk_disable(int num_clks,
570aaec7 856 const struct clk_bulk_data *clks) {}
266e4e9d 857
93abe8e4
VK
858static inline unsigned long clk_get_rate(struct clk *clk)
859{
860 return 0;
861}
862
863static inline int clk_set_rate(struct clk *clk, unsigned long rate)
864{
865 return 0;
866}
867
55e9b8b7
JB
868static inline int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
869{
870 return 0;
871}
872
93abe8e4
VK
873static inline long clk_round_rate(struct clk *clk, unsigned long rate)
874{
875 return 0;
876}
877
4e88f3de
TR
878static inline bool clk_has_parent(struct clk *clk, struct clk *parent)
879{
880 return true;
881}
882
b88c9f41
DO
883static inline int clk_set_rate_range(struct clk *clk, unsigned long min,
884 unsigned long max)
885{
886 return 0;
887}
888
889static inline int clk_set_min_rate(struct clk *clk, unsigned long rate)
890{
891 return 0;
892}
893
894static inline int clk_set_max_rate(struct clk *clk, unsigned long rate)
895{
896 return 0;
897}
898
93abe8e4
VK
899static inline int clk_set_parent(struct clk *clk, struct clk *parent)
900{
901 return 0;
902}
903
904static inline struct clk *clk_get_parent(struct clk *clk)
905{
906 return NULL;
907}
908
b81ea968
DL
909static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
910{
911 return NULL;
912}
8b95d1ce
RD
913
914static inline int clk_save_context(void)
915{
916 return 0;
917}
918
919static inline void clk_restore_context(void) {}
920
93abe8e4
VK
921#endif
922
923/* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
924static inline int clk_prepare_enable(struct clk *clk)
925{
926 int ret;
927
928 ret = clk_prepare(clk);
929 if (ret)
930 return ret;
931 ret = clk_enable(clk);
932 if (ret)
933 clk_unprepare(clk);
934
935 return ret;
936}
937
938/* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
939static inline void clk_disable_unprepare(struct clk *clk)
940{
941 clk_disable(clk);
942 clk_unprepare(clk);
943}
944
570aaec7
AS
945static inline int __must_check
946clk_bulk_prepare_enable(int num_clks, const struct clk_bulk_data *clks)
3c48d86c
BA
947{
948 int ret;
949
950 ret = clk_bulk_prepare(num_clks, clks);
951 if (ret)
952 return ret;
953 ret = clk_bulk_enable(num_clks, clks);
954 if (ret)
955 clk_bulk_unprepare(num_clks, clks);
956
957 return ret;
958}
959
960static inline void clk_bulk_disable_unprepare(int num_clks,
570aaec7 961 const struct clk_bulk_data *clks)
3c48d86c
BA
962{
963 clk_bulk_disable(num_clks, clks);
964 clk_bulk_unprepare(num_clks, clks);
965}
966
60b8f0dd
PE
967/**
968 * clk_get_optional - lookup and obtain a reference to an optional clock
969 * producer.
970 * @dev: device for clock "consumer"
971 * @id: clock consumer ID
972 *
973 * Behaves the same as clk_get() except where there is no clock producer. In
974 * this case, instead of returning -ENOENT, the function returns NULL.
975 */
976static inline struct clk *clk_get_optional(struct device *dev, const char *id)
977{
978 struct clk *clk = clk_get(dev, id);
979
980 if (clk == ERR_PTR(-ENOENT))
981 return NULL;
982
983 return clk;
984}
985
137f8a72 986#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
766e6a4e
GL
987struct clk *of_clk_get(struct device_node *np, int index);
988struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
989struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
990#else
991static inline struct clk *of_clk_get(struct device_node *np, int index)
992{
9f1612d3 993 return ERR_PTR(-ENOENT);
766e6a4e
GL
994}
995static inline struct clk *of_clk_get_by_name(struct device_node *np,
996 const char *name)
997{
9f1612d3 998 return ERR_PTR(-ENOENT);
766e6a4e 999}
428c9de5
GU
1000static inline struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
1001{
1002 return ERR_PTR(-ENOENT);
1003}
766e6a4e
GL
1004#endif
1005
1da177e4 1006#endif