1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * linux/include/linux/clk.h
5 * Copyright (C) 2004 ARM Limited.
6 * Written by Deep Blue Solutions Limited.
7 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
12 #include <linux/err.h>
13 #include <linux/kernel.h>
14 #include <linux/notifier.h>
19 struct of_phandle_args
;
22 * DOC: clk notifier callback types
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
27 * rate change. Callbacks may either return NOTIFY_DONE, NOTIFY_OK,
28 * NOTIFY_STOP or NOTIFY_BAD.
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
33 * always return NOTIFY_DONE or NOTIFY_OK.
35 * POST_RATE_CHANGE - called after the clk rate change has successfully
36 * completed. Callbacks must always return NOTIFY_DONE or NOTIFY_OK.
39 #define PRE_RATE_CHANGE BIT(0)
40 #define POST_RATE_CHANGE BIT(1)
41 #define ABORT_RATE_CHANGE BIT(2)
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
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
56 struct srcu_notifier_head notifier_head
;
57 struct list_head node
;
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
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).
71 struct clk_notifier_data
{
73 unsigned long old_rate
;
74 unsigned long new_rate
;
78 * struct clk_bulk_data - Data used for bulk clk operations.
80 * @id: clock consumer ID
81 * @clk: struct clk * to store the associated clock
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.
87 struct clk_bulk_data
{
92 #ifdef CONFIG_COMMON_CLK
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
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
103 int clk_notifier_register(struct clk
*clk
, struct notifier_block
*nb
);
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
110 int clk_notifier_unregister(struct clk
*clk
, struct notifier_block
*nb
);
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
118 * Returns 0 on success, -EERROR otherwise
120 int devm_clk_notifier_register(struct device
*dev
, struct clk
*clk
,
121 struct notifier_block
*nb
);
124 * clk_get_accuracy - obtain the clock accuracy in ppb (parts per billion)
125 * for a clock source.
128 * This gets the clock source accuracy expressed in ppb.
129 * A perfect clock returns 0.
131 long clk_get_accuracy(struct clk
*clk
);
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
138 * Shifts the phase of a clock signal by the specified degrees. Returns 0 on
139 * success, -EERROR otherwise.
141 int clk_set_phase(struct clk
*clk
, int degrees
);
144 * clk_get_phase - return the phase shift of a clock signal
145 * @clk: clock signal source
147 * Returns the phase shift of a clock node in degrees, otherwise returns
150 int clk_get_phase(struct clk
*clk
);
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
158 * Adjust the duty cycle of a clock signal by the specified ratio. Returns 0 on
159 * success, -EERROR otherwise.
161 int clk_set_duty_cycle(struct clk
*clk
, unsigned int num
, unsigned int den
);
164 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
165 * @clk: clock signal source
166 * @scale: scaling factor to be applied to represent the ratio as an integer
168 * Returns the duty cycle ratio multiplied by the scale provided, otherwise
171 int clk_get_scaled_duty_cycle(struct clk
*clk
, unsigned int scale
);
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
178 * Returns true if the two struct clk pointers both point to the same hardware
179 * clock node. Put differently, returns true if @p and @q
180 * share the same &struct clk_core object.
182 * Returns false otherwise. Note that two NULL clks are treated as matching.
184 bool clk_is_match(const struct clk
*p
, const struct clk
*q
);
187 * clk_rate_exclusive_get - get exclusivity over the rate control of a
191 * This function allows drivers to get exclusive control over the rate of a
192 * provider. It prevents any other consumer to execute, even indirectly,
193 * opereation which could alter the rate of the provider or cause glitches
195 * If exlusivity is claimed more than once on clock, even by the same driver,
196 * the rate effectively gets locked as exclusivity can't be preempted.
198 * Must not be called from within atomic context.
200 * Returns success (0) or negative errno.
202 int clk_rate_exclusive_get(struct clk
*clk
);
205 * devm_clk_rate_exclusive_get - devm variant of clk_rate_exclusive_get
206 * @dev: device the exclusivity is bound to
209 * Calls clk_rate_exclusive_get() on @clk and registers a devm cleanup handler
210 * on @dev to call clk_rate_exclusive_put().
212 * Must not be called from within atomic context.
214 int devm_clk_rate_exclusive_get(struct device
*dev
, struct clk
*clk
);
217 * clk_rate_exclusive_put - release exclusivity over the rate control of a
221 * This function allows drivers to release the exclusivity it previously got
222 * from clk_rate_exclusive_get()
224 * The caller must balance the number of clk_rate_exclusive_get() and
225 * clk_rate_exclusive_put() calls.
227 * Must not be called from within atomic context.
229 void clk_rate_exclusive_put(struct clk
*clk
);
233 static inline int clk_notifier_register(struct clk
*clk
,
234 struct notifier_block
*nb
)
239 static inline int clk_notifier_unregister(struct clk
*clk
,
240 struct notifier_block
*nb
)
245 static inline int devm_clk_notifier_register(struct device
*dev
,
247 struct notifier_block
*nb
)
252 static inline long clk_get_accuracy(struct clk
*clk
)
257 static inline long clk_set_phase(struct clk
*clk
, int phase
)
262 static inline long clk_get_phase(struct clk
*clk
)
267 static inline int clk_set_duty_cycle(struct clk
*clk
, unsigned int num
,
273 static inline unsigned int clk_get_scaled_duty_cycle(struct clk
*clk
,
279 static inline bool clk_is_match(const struct clk
*p
, const struct clk
*q
)
284 static inline int clk_rate_exclusive_get(struct clk
*clk
)
289 static inline int devm_clk_rate_exclusive_get(struct device
*dev
, struct clk
*clk
)
294 static inline void clk_rate_exclusive_put(struct clk
*clk
) {}
298 #ifdef CONFIG_HAVE_CLK_PREPARE
300 * clk_prepare - prepare a clock source
303 * This prepares the clock source for use.
305 * Must not be called from within atomic context.
307 int clk_prepare(struct clk
*clk
);
308 int __must_check
clk_bulk_prepare(int num_clks
,
309 const struct clk_bulk_data
*clks
);
312 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
315 * Returns true if clk_prepare() implicitly enables the clock, effectively
316 * making clk_enable()/clk_disable() no-ops, false otherwise.
318 * This is of interest mainly to the power management code where actually
319 * disabling the clock also requires unpreparing it to have any material
322 * Regardless of the value returned here, the caller must always invoke
323 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
326 bool clk_is_enabled_when_prepared(struct clk
*clk
);
328 static inline int clk_prepare(struct clk
*clk
)
334 static inline int __must_check
335 clk_bulk_prepare(int num_clks
, const struct clk_bulk_data
*clks
)
341 static inline bool clk_is_enabled_when_prepared(struct clk
*clk
)
348 * clk_unprepare - undo preparation of a clock source
351 * This undoes a previously prepared clock. The caller must balance
352 * the number of prepare and unprepare calls.
354 * Must not be called from within atomic context.
356 #ifdef CONFIG_HAVE_CLK_PREPARE
357 void clk_unprepare(struct clk
*clk
);
358 void clk_bulk_unprepare(int num_clks
, const struct clk_bulk_data
*clks
);
360 static inline void clk_unprepare(struct clk
*clk
)
364 static inline void clk_bulk_unprepare(int num_clks
,
365 const struct clk_bulk_data
*clks
)
371 #ifdef CONFIG_HAVE_CLK
373 * clk_get - lookup and obtain a reference to a clock producer.
374 * @dev: device for clock "consumer"
375 * @id: clock consumer ID
377 * Returns a struct clk corresponding to the clock producer, or
378 * valid IS_ERR() condition containing errno. The implementation
379 * uses @dev and @id to determine the clock consumer, and thereby
380 * the clock producer. (IOW, @id may be identical strings, but
381 * clk_get may return different clock producers depending on @dev.)
383 * Drivers must assume that the clock source is not enabled.
385 * clk_get should not be called from within interrupt context.
387 struct clk
*clk_get(struct device
*dev
, const char *id
);
390 * clk_bulk_get - lookup and obtain a number of references to clock producer.
391 * @dev: device for clock "consumer"
392 * @num_clks: the number of clk_bulk_data
393 * @clks: the clk_bulk_data table of consumer
395 * This helper function allows drivers to get several clk consumers in one
396 * operation. If any of the clk cannot be acquired then any clks
397 * that were obtained will be freed before returning to the caller.
399 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
400 * successfully, or valid IS_ERR() condition containing errno.
401 * The implementation uses @dev and @clk_bulk_data.id to determine the
402 * clock consumer, and thereby the clock producer.
403 * The clock returned is stored in each @clk_bulk_data.clk field.
405 * Drivers must assume that the clock source is not enabled.
407 * clk_bulk_get should not be called from within interrupt context.
409 int __must_check
clk_bulk_get(struct device
*dev
, int num_clks
,
410 struct clk_bulk_data
*clks
);
412 * clk_bulk_get_all - lookup and obtain all available references to clock
414 * @dev: device for clock "consumer"
415 * @clks: pointer to the clk_bulk_data table of consumer
417 * This helper function allows drivers to get all clk consumers in one
418 * operation. If any of the clk cannot be acquired then any clks
419 * that were obtained will be freed before returning to the caller.
421 * Returns a positive value for the number of clocks obtained while the
422 * clock references are stored in the clk_bulk_data table in @clks field.
423 * Returns 0 if there're none and a negative value if something failed.
425 * Drivers must assume that the clock source is not enabled.
427 * clk_bulk_get should not be called from within interrupt context.
429 int __must_check
clk_bulk_get_all(struct device
*dev
,
430 struct clk_bulk_data
**clks
);
433 * clk_bulk_get_optional - lookup and obtain a number of references to clock producer
434 * @dev: device for clock "consumer"
435 * @num_clks: the number of clk_bulk_data
436 * @clks: the clk_bulk_data table of consumer
438 * Behaves the same as clk_bulk_get() except where there is no clock producer.
439 * In this case, instead of returning -ENOENT, the function returns 0 and
440 * NULL for a clk for which a clock producer could not be determined.
442 int __must_check
clk_bulk_get_optional(struct device
*dev
, int num_clks
,
443 struct clk_bulk_data
*clks
);
445 * devm_clk_bulk_get - managed get multiple clk consumers
446 * @dev: device for clock "consumer"
447 * @num_clks: the number of clk_bulk_data
448 * @clks: the clk_bulk_data table of consumer
450 * Return 0 on success, an errno on failure.
452 * This helper function allows drivers to get several clk
453 * consumers in one operation with management, the clks will
454 * automatically be freed when the device is unbound.
456 int __must_check
devm_clk_bulk_get(struct device
*dev
, int num_clks
,
457 struct clk_bulk_data
*clks
);
459 * devm_clk_bulk_get_optional - managed get multiple optional consumer clocks
460 * @dev: device for clock "consumer"
461 * @num_clks: the number of clk_bulk_data
462 * @clks: pointer to the clk_bulk_data table of consumer
464 * Behaves the same as devm_clk_bulk_get() except where there is no clock
465 * producer. In this case, instead of returning -ENOENT, the function returns
466 * NULL for given clk. It is assumed all clocks in clk_bulk_data are optional.
468 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
469 * successfully or for any clk there was no clk provider available, otherwise
470 * returns valid IS_ERR() condition containing errno.
471 * The implementation uses @dev and @clk_bulk_data.id to determine the
472 * clock consumer, and thereby the clock producer.
473 * The clock returned is stored in each @clk_bulk_data.clk field.
475 * Drivers must assume that the clock source is not enabled.
477 * clk_bulk_get should not be called from within interrupt context.
479 int __must_check
devm_clk_bulk_get_optional(struct device
*dev
, int num_clks
,
480 struct clk_bulk_data
*clks
);
482 * devm_clk_bulk_get_all - managed get multiple clk consumers
483 * @dev: device for clock "consumer"
484 * @clks: pointer to the clk_bulk_data table of consumer
486 * Returns a positive value for the number of clocks obtained while the
487 * clock references are stored in the clk_bulk_data table in @clks field.
488 * Returns 0 if there're none and a negative value if something failed.
490 * This helper function allows drivers to get several clk
491 * consumers in one operation with management, the clks will
492 * automatically be freed when the device is unbound.
495 int __must_check
devm_clk_bulk_get_all(struct device
*dev
,
496 struct clk_bulk_data
**clks
);
499 * devm_clk_bulk_get_all_enabled - Get and enable all clocks of the consumer (managed)
500 * @dev: device for clock "consumer"
501 * @clks: pointer to the clk_bulk_data table of consumer
503 * Returns a positive value for the number of clocks obtained while the
504 * clock references are stored in the clk_bulk_data table in @clks field.
505 * Returns 0 if there're none and a negative value if something failed.
507 * This helper function allows drivers to get all clocks of the
508 * consumer and enables them in one operation with management.
509 * The clks will automatically be disabled and freed when the device
513 int __must_check
devm_clk_bulk_get_all_enabled(struct device
*dev
,
514 struct clk_bulk_data
**clks
);
517 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
518 * @dev: device for clock "consumer"
519 * @id: clock consumer ID
521 * Context: May sleep.
523 * Return: a struct clk corresponding to the clock producer, or
524 * valid IS_ERR() condition containing errno. The implementation
525 * uses @dev and @id to determine the clock consumer, and thereby
526 * the clock producer. (IOW, @id may be identical strings, but
527 * clk_get may return different clock producers depending on @dev.)
529 * Drivers must assume that the clock source is neither prepared nor
532 * The clock will automatically be freed when the device is unbound
535 struct clk
*devm_clk_get(struct device
*dev
, const char *id
);
538 * devm_clk_get_prepared - devm_clk_get() + clk_prepare()
539 * @dev: device for clock "consumer"
540 * @id: clock consumer ID
542 * Context: May sleep.
544 * Return: a struct clk corresponding to the clock producer, or
545 * valid IS_ERR() condition containing errno. The implementation
546 * uses @dev and @id to determine the clock consumer, and thereby
547 * the clock producer. (IOW, @id may be identical strings, but
548 * clk_get may return different clock producers depending on @dev.)
550 * The returned clk (if valid) is prepared. Drivers must however assume
551 * that the clock is not enabled.
553 * The clock will automatically be unprepared and freed when the device
554 * is unbound from the bus.
556 struct clk
*devm_clk_get_prepared(struct device
*dev
, const char *id
);
559 * devm_clk_get_enabled - devm_clk_get() + clk_prepare_enable()
560 * @dev: device for clock "consumer"
561 * @id: clock consumer ID
563 * Context: May sleep.
565 * Return: a struct clk corresponding to the clock producer, or
566 * valid IS_ERR() condition containing errno. The implementation
567 * uses @dev and @id to determine the clock consumer, and thereby
568 * the clock producer. (IOW, @id may be identical strings, but
569 * clk_get may return different clock producers depending on @dev.)
571 * The returned clk (if valid) is prepared and enabled.
573 * The clock will automatically be disabled, unprepared and freed
574 * when the device is unbound from the bus.
576 struct clk
*devm_clk_get_enabled(struct device
*dev
, const char *id
);
579 * devm_clk_get_optional - lookup and obtain a managed reference to an optional
581 * @dev: device for clock "consumer"
582 * @id: clock consumer ID
584 * Context: May sleep.
586 * Return: a struct clk corresponding to the clock producer, or
587 * valid IS_ERR() condition containing errno. The implementation
588 * uses @dev and @id to determine the clock consumer, and thereby
589 * the clock producer. If no such clk is found, it returns NULL
590 * which serves as a dummy clk. That's the only difference compared
593 * Drivers must assume that the clock source is neither prepared nor
596 * The clock will automatically be freed when the device is unbound
599 struct clk
*devm_clk_get_optional(struct device
*dev
, const char *id
);
602 * devm_clk_get_optional_prepared - devm_clk_get_optional() + clk_prepare()
603 * @dev: device for clock "consumer"
604 * @id: clock consumer ID
606 * Context: May sleep.
608 * Return: a struct clk corresponding to the clock producer, or
609 * valid IS_ERR() condition containing errno. The implementation
610 * uses @dev and @id to determine the clock consumer, and thereby
611 * the clock producer. If no such clk is found, it returns NULL
612 * which serves as a dummy clk. That's the only difference compared
613 * to devm_clk_get_prepared().
615 * The returned clk (if valid) is prepared. Drivers must however
616 * assume that the clock is not enabled.
618 * The clock will automatically be unprepared and freed when the
619 * device is unbound from the bus.
621 struct clk
*devm_clk_get_optional_prepared(struct device
*dev
, const char *id
);
624 * devm_clk_get_optional_enabled - devm_clk_get_optional() +
625 * clk_prepare_enable()
626 * @dev: device for clock "consumer"
627 * @id: clock consumer ID
629 * Context: May sleep.
631 * Return: a struct clk corresponding to the clock producer, or
632 * valid IS_ERR() condition containing errno. The implementation
633 * uses @dev and @id to determine the clock consumer, and thereby
634 * the clock producer. If no such clk is found, it returns NULL
635 * which serves as a dummy clk. That's the only difference compared
636 * to devm_clk_get_enabled().
638 * The returned clk (if valid) is prepared and enabled.
640 * The clock will automatically be disabled, unprepared and freed
641 * when the device is unbound from the bus.
643 struct clk
*devm_clk_get_optional_enabled(struct device
*dev
, const char *id
);
646 * devm_clk_get_optional_enabled_with_rate - devm_clk_get_optional() +
648 * clk_prepare_enable()
649 * @dev: device for clock "consumer"
650 * @id: clock consumer ID
651 * @rate: new clock rate
653 * Context: May sleep.
655 * Return: a struct clk corresponding to the clock producer, or
656 * valid IS_ERR() condition containing errno. The implementation
657 * uses @dev and @id to determine the clock consumer, and thereby
658 * the clock producer. If no such clk is found, it returns NULL
659 * which serves as a dummy clk. That's the only difference compared
660 * to devm_clk_get_enabled().
662 * The returned clk (if valid) is prepared and enabled and rate was set.
664 * The clock will automatically be disabled, unprepared and freed
665 * when the device is unbound from the bus.
667 struct clk
*devm_clk_get_optional_enabled_with_rate(struct device
*dev
,
672 * devm_get_clk_from_child - lookup and obtain a managed reference to a
673 * clock producer from child node.
674 * @dev: device for clock "consumer"
675 * @np: pointer to clock consumer node
676 * @con_id: clock consumer ID
678 * This function parses the clocks, and uses them to look up the
679 * struct clk from the registered list of clock providers by using
682 * The clock will automatically be freed when the device is unbound
685 struct clk
*devm_get_clk_from_child(struct device
*dev
,
686 struct device_node
*np
, const char *con_id
);
689 * clk_enable - inform the system when the clock source should be running.
692 * If the clock can not be enabled/disabled, this should return success.
694 * May be called from atomic contexts.
696 * Returns success (0) or negative errno.
698 int clk_enable(struct clk
*clk
);
701 * clk_bulk_enable - inform the system when the set of clks should be running.
702 * @num_clks: the number of clk_bulk_data
703 * @clks: the clk_bulk_data table of consumer
705 * May be called from atomic contexts.
707 * Returns success (0) or negative errno.
709 int __must_check
clk_bulk_enable(int num_clks
,
710 const struct clk_bulk_data
*clks
);
713 * clk_disable - inform the system when the clock source is no longer required.
716 * Inform the system that a clock source is no longer required by
717 * a driver and may be shut down.
719 * May be called from atomic contexts.
721 * Implementation detail: if the clock source is shared between
722 * multiple drivers, clk_enable() calls must be balanced by the
723 * same number of clk_disable() calls for the clock source to be
726 void clk_disable(struct clk
*clk
);
729 * clk_bulk_disable - inform the system when the set of clks is no
731 * @num_clks: the number of clk_bulk_data
732 * @clks: the clk_bulk_data table of consumer
734 * Inform the system that a set of clks is no longer required by
735 * a driver and may be shut down.
737 * May be called from atomic contexts.
739 * Implementation detail: if the set of clks is shared between
740 * multiple drivers, clk_bulk_enable() calls must be balanced by the
741 * same number of clk_bulk_disable() calls for the clock source to be
744 void clk_bulk_disable(int num_clks
, const struct clk_bulk_data
*clks
);
747 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
748 * This is only valid once the clock source has been enabled.
751 unsigned long clk_get_rate(struct clk
*clk
);
754 * clk_put - "free" the clock source
757 * Note: drivers must ensure that all clk_enable calls made on this
758 * clock source are balanced by clk_disable calls prior to calling
761 * clk_put should not be called from within interrupt context.
763 void clk_put(struct clk
*clk
);
766 * clk_bulk_put - "free" the clock source
767 * @num_clks: the number of clk_bulk_data
768 * @clks: the clk_bulk_data table of consumer
770 * Note: drivers must ensure that all clk_bulk_enable calls made on this
771 * clock source are balanced by clk_bulk_disable calls prior to calling
774 * clk_bulk_put should not be called from within interrupt context.
776 void clk_bulk_put(int num_clks
, struct clk_bulk_data
*clks
);
779 * clk_bulk_put_all - "free" all the clock source
780 * @num_clks: the number of clk_bulk_data
781 * @clks: the clk_bulk_data table of consumer
783 * Note: drivers must ensure that all clk_bulk_enable calls made on this
784 * clock source are balanced by clk_bulk_disable calls prior to calling
787 * clk_bulk_put_all should not be called from within interrupt context.
789 void clk_bulk_put_all(int num_clks
, struct clk_bulk_data
*clks
);
792 * devm_clk_put - "free" a managed clock source
793 * @dev: device used to acquire the clock
794 * @clk: clock source acquired with devm_clk_get()
796 * Note: drivers must ensure that all clk_enable calls made on this
797 * clock source are balanced by clk_disable calls prior to calling
800 * clk_put should not be called from within interrupt context.
802 void devm_clk_put(struct device
*dev
, struct clk
*clk
);
805 * The remaining APIs are optional for machine class support.
810 * clk_round_rate - adjust a rate to the exact rate a clock can provide
812 * @rate: desired clock rate in Hz
814 * This answers the question "if I were to pass @rate to clk_set_rate(),
815 * what clock rate would I end up with?" without changing the hardware
816 * in any way. In other words:
818 * rate = clk_round_rate(clk, r);
822 * clk_set_rate(clk, r);
823 * rate = clk_get_rate(clk);
825 * are equivalent except the former does not modify the clock hardware
828 * Returns rounded clock rate in Hz, or negative errno.
830 long clk_round_rate(struct clk
*clk
, unsigned long rate
);
833 * clk_set_rate - set the clock rate for a clock source
835 * @rate: desired clock rate in Hz
837 * Updating the rate starts at the top-most affected clock and then
838 * walks the tree down to the bottom-most clock that needs updating.
840 * Returns success (0) or negative errno.
842 int clk_set_rate(struct clk
*clk
, unsigned long rate
);
845 * clk_set_rate_exclusive- set the clock rate and claim exclusivity over
848 * @rate: desired clock rate in Hz
850 * This helper function allows drivers to atomically set the rate of a producer
851 * and claim exclusivity over the rate control of the producer.
853 * It is essentially a combination of clk_set_rate() and
854 * clk_rate_exclusite_get(). Caller must balance this call with a call to
855 * clk_rate_exclusive_put()
857 * Returns success (0) or negative errno.
859 int clk_set_rate_exclusive(struct clk
*clk
, unsigned long rate
);
862 * clk_has_parent - check if a clock is a possible parent for another
864 * @parent: parent clock source
866 * This function can be used in drivers that need to check that a clock can be
867 * the parent of another without actually changing the parent.
869 * Returns true if @parent is a possible parent for @clk, false otherwise.
871 bool clk_has_parent(const struct clk
*clk
, const struct clk
*parent
);
874 * clk_set_rate_range - set a rate range for a clock source
876 * @min: desired minimum clock rate in Hz, inclusive
877 * @max: desired maximum clock rate in Hz, inclusive
879 * Returns success (0) or negative errno.
881 int clk_set_rate_range(struct clk
*clk
, unsigned long min
, unsigned long max
);
884 * clk_set_min_rate - set a minimum clock rate for a clock source
886 * @rate: desired minimum clock rate in Hz, inclusive
888 * Returns success (0) or negative errno.
890 int clk_set_min_rate(struct clk
*clk
, unsigned long rate
);
893 * clk_set_max_rate - set a maximum clock rate for a clock source
895 * @rate: desired maximum clock rate in Hz, inclusive
897 * Returns success (0) or negative errno.
899 int clk_set_max_rate(struct clk
*clk
, unsigned long rate
);
902 * clk_set_parent - set the parent clock source for this clock
904 * @parent: parent clock source
906 * Returns success (0) or negative errno.
908 int clk_set_parent(struct clk
*clk
, struct clk
*parent
);
911 * clk_get_parent - get the parent clock source for this clock
914 * Returns struct clk corresponding to parent clock source, or
915 * valid IS_ERR() condition containing errno.
917 struct clk
*clk_get_parent(struct clk
*clk
);
920 * clk_get_sys - get a clock based upon the device name
921 * @dev_id: device name
922 * @con_id: connection ID
924 * Returns a struct clk corresponding to the clock producer, or
925 * valid IS_ERR() condition containing errno. The implementation
926 * uses @dev_id and @con_id to determine the clock consumer, and
927 * thereby the clock producer. In contrast to clk_get() this function
928 * takes the device name instead of the device itself for identification.
930 * Drivers must assume that the clock source is not enabled.
932 * clk_get_sys should not be called from within interrupt context.
934 struct clk
*clk_get_sys(const char *dev_id
, const char *con_id
);
937 * clk_save_context - save clock context for poweroff
939 * Saves the context of the clock register for powerstates in which the
940 * contents of the registers will be lost. Occurs deep within the suspend
941 * code so locking is not necessary.
943 int clk_save_context(void);
946 * clk_restore_context - restore clock context after poweroff
948 * This occurs with all clocks enabled. Occurs deep within the resume code
949 * so locking is not necessary.
951 void clk_restore_context(void);
953 #else /* !CONFIG_HAVE_CLK */
955 static inline struct clk
*clk_get(struct device
*dev
, const char *id
)
960 static inline int __must_check
clk_bulk_get(struct device
*dev
, int num_clks
,
961 struct clk_bulk_data
*clks
)
966 static inline int __must_check
clk_bulk_get_optional(struct device
*dev
,
967 int num_clks
, struct clk_bulk_data
*clks
)
972 static inline int __must_check
clk_bulk_get_all(struct device
*dev
,
973 struct clk_bulk_data
**clks
)
978 static inline struct clk
*devm_clk_get(struct device
*dev
, const char *id
)
983 static inline struct clk
*devm_clk_get_prepared(struct device
*dev
,
989 static inline struct clk
*devm_clk_get_enabled(struct device
*dev
,
995 static inline struct clk
*devm_clk_get_optional(struct device
*dev
,
1001 static inline struct clk
*devm_clk_get_optional_prepared(struct device
*dev
,
1007 static inline struct clk
*devm_clk_get_optional_enabled(struct device
*dev
,
1013 static inline struct clk
*
1014 devm_clk_get_optional_enabled_with_rate(struct device
*dev
, const char *id
,
1020 static inline int __must_check
devm_clk_bulk_get(struct device
*dev
, int num_clks
,
1021 struct clk_bulk_data
*clks
)
1026 static inline int __must_check
devm_clk_bulk_get_optional(struct device
*dev
,
1027 int num_clks
, struct clk_bulk_data
*clks
)
1032 static inline int __must_check
devm_clk_bulk_get_all(struct device
*dev
,
1033 struct clk_bulk_data
**clks
)
1039 static inline int __must_check
devm_clk_bulk_get_all_enabled(struct device
*dev
,
1040 struct clk_bulk_data
**clks
)
1045 static inline struct clk
*devm_get_clk_from_child(struct device
*dev
,
1046 struct device_node
*np
, const char *con_id
)
1051 static inline void clk_put(struct clk
*clk
) {}
1053 static inline void clk_bulk_put(int num_clks
, struct clk_bulk_data
*clks
) {}
1055 static inline void clk_bulk_put_all(int num_clks
, struct clk_bulk_data
*clks
) {}
1057 static inline void devm_clk_put(struct device
*dev
, struct clk
*clk
) {}
1059 static inline int clk_enable(struct clk
*clk
)
1064 static inline int __must_check
clk_bulk_enable(int num_clks
,
1065 const struct clk_bulk_data
*clks
)
1070 static inline void clk_disable(struct clk
*clk
) {}
1073 static inline void clk_bulk_disable(int num_clks
,
1074 const struct clk_bulk_data
*clks
) {}
1076 static inline unsigned long clk_get_rate(struct clk
*clk
)
1081 static inline int clk_set_rate(struct clk
*clk
, unsigned long rate
)
1086 static inline int clk_set_rate_exclusive(struct clk
*clk
, unsigned long rate
)
1091 static inline long clk_round_rate(struct clk
*clk
, unsigned long rate
)
1096 static inline bool clk_has_parent(struct clk
*clk
, struct clk
*parent
)
1101 static inline int clk_set_rate_range(struct clk
*clk
, unsigned long min
,
1107 static inline int clk_set_min_rate(struct clk
*clk
, unsigned long rate
)
1112 static inline int clk_set_max_rate(struct clk
*clk
, unsigned long rate
)
1117 static inline int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
1122 static inline struct clk
*clk_get_parent(struct clk
*clk
)
1127 static inline struct clk
*clk_get_sys(const char *dev_id
, const char *con_id
)
1132 static inline int clk_save_context(void)
1137 static inline void clk_restore_context(void) {}
1141 /* Deprecated. Use devm_clk_bulk_get_all_enabled() */
1142 static inline int __must_check
1143 devm_clk_bulk_get_all_enable(struct device
*dev
, struct clk_bulk_data
**clks
)
1145 int ret
= devm_clk_bulk_get_all_enabled(dev
, clks
);
1147 return ret
> 0 ? 0 : ret
;
1150 /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
1151 static inline int clk_prepare_enable(struct clk
*clk
)
1155 ret
= clk_prepare(clk
);
1158 ret
= clk_enable(clk
);
1165 /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
1166 static inline void clk_disable_unprepare(struct clk
*clk
)
1172 static inline int __must_check
1173 clk_bulk_prepare_enable(int num_clks
, const struct clk_bulk_data
*clks
)
1177 ret
= clk_bulk_prepare(num_clks
, clks
);
1180 ret
= clk_bulk_enable(num_clks
, clks
);
1182 clk_bulk_unprepare(num_clks
, clks
);
1187 static inline void clk_bulk_disable_unprepare(int num_clks
,
1188 const struct clk_bulk_data
*clks
)
1190 clk_bulk_disable(num_clks
, clks
);
1191 clk_bulk_unprepare(num_clks
, clks
);
1195 * clk_drop_range - Reset any range set on that clock
1196 * @clk: clock source
1198 * Returns success (0) or negative errno.
1200 static inline int clk_drop_range(struct clk
*clk
)
1202 return clk_set_rate_range(clk
, 0, ULONG_MAX
);
1206 * clk_get_optional - lookup and obtain a reference to an optional clock
1208 * @dev: device for clock "consumer"
1209 * @id: clock consumer ID
1211 * Behaves the same as clk_get() except where there is no clock producer. In
1212 * this case, instead of returning -ENOENT, the function returns NULL.
1214 static inline struct clk
*clk_get_optional(struct device
*dev
, const char *id
)
1216 struct clk
*clk
= clk_get(dev
, id
);
1218 if (clk
== ERR_PTR(-ENOENT
))
1224 #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
1225 struct clk
*of_clk_get(struct device_node
*np
, int index
);
1226 struct clk
*of_clk_get_by_name(struct device_node
*np
, const char *name
);
1227 struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
);
1229 static inline struct clk
*of_clk_get(struct device_node
*np
, int index
)
1231 return ERR_PTR(-ENOENT
);
1233 static inline struct clk
*of_clk_get_by_name(struct device_node
*np
,
1236 return ERR_PTR(-ENOENT
);
1238 static inline struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
)
1240 return ERR_PTR(-ENOENT
);