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.
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 * clk_rate_exclusive_put - release exclusivity over the rate control of a
209 * This function allows drivers to release the exclusivity it previously got
210 * from clk_rate_exclusive_get()
212 * The caller must balance the number of clk_rate_exclusive_get() and
213 * clk_rate_exclusive_put() calls.
215 * Must not be called from within atomic context.
217 void clk_rate_exclusive_put(struct clk *clk);
221 static inline int clk_notifier_register(struct clk *clk,
222 struct notifier_block *nb)
227 static inline int clk_notifier_unregister(struct clk *clk,
228 struct notifier_block *nb)
233 static inline int devm_clk_notifier_register(struct device *dev,
235 struct notifier_block *nb)
240 static inline long clk_get_accuracy(struct clk *clk)
245 static inline long clk_set_phase(struct clk *clk, int phase)
250 static inline long clk_get_phase(struct clk *clk)
255 static inline int clk_set_duty_cycle(struct clk *clk, unsigned int num,
261 static inline unsigned int clk_get_scaled_duty_cycle(struct clk *clk,
267 static inline bool clk_is_match(const struct clk *p, const struct clk *q)
272 static inline int clk_rate_exclusive_get(struct clk *clk)
277 static inline void clk_rate_exclusive_put(struct clk *clk) {}
281 #ifdef CONFIG_HAVE_CLK_PREPARE
283 * clk_prepare - prepare a clock source
286 * This prepares the clock source for use.
288 * Must not be called from within atomic context.
290 int clk_prepare(struct clk *clk);
291 int __must_check clk_bulk_prepare(int num_clks,
292 const struct clk_bulk_data *clks);
295 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
298 * Returns true if clk_prepare() implicitly enables the clock, effectively
299 * making clk_enable()/clk_disable() no-ops, false otherwise.
301 * This is of interest mainly to the power management code where actually
302 * disabling the clock also requires unpreparing it to have any material
305 * Regardless of the value returned here, the caller must always invoke
306 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
309 bool clk_is_enabled_when_prepared(struct clk *clk);
311 static inline int clk_prepare(struct clk *clk)
317 static inline int __must_check
318 clk_bulk_prepare(int num_clks, const struct clk_bulk_data *clks)
324 static inline bool clk_is_enabled_when_prepared(struct clk *clk)
331 * clk_unprepare - undo preparation of a clock source
334 * This undoes a previously prepared clock. The caller must balance
335 * the number of prepare and unprepare calls.
337 * Must not be called from within atomic context.
339 #ifdef CONFIG_HAVE_CLK_PREPARE
340 void clk_unprepare(struct clk *clk);
341 void clk_bulk_unprepare(int num_clks, const struct clk_bulk_data *clks);
343 static inline void clk_unprepare(struct clk *clk)
347 static inline void clk_bulk_unprepare(int num_clks,
348 const struct clk_bulk_data *clks)
354 #ifdef CONFIG_HAVE_CLK
356 * clk_get - lookup and obtain a reference to a clock producer.
357 * @dev: device for clock "consumer"
358 * @id: clock consumer ID
360 * Returns a struct clk corresponding to the clock producer, or
361 * valid IS_ERR() condition containing errno. The implementation
362 * uses @dev and @id to determine the clock consumer, and thereby
363 * the clock producer. (IOW, @id may be identical strings, but
364 * clk_get may return different clock producers depending on @dev.)
366 * Drivers must assume that the clock source is not enabled.
368 * clk_get should not be called from within interrupt context.
370 struct clk *clk_get(struct device *dev, const char *id);
373 * clk_bulk_get - lookup and obtain a number of references to clock producer.
374 * @dev: device for clock "consumer"
375 * @num_clks: the number of clk_bulk_data
376 * @clks: the clk_bulk_data table of consumer
378 * This helper function allows drivers to get several clk consumers in one
379 * operation. If any of the clk cannot be acquired then any clks
380 * that were obtained will be freed before returning to the caller.
382 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
383 * successfully, or valid IS_ERR() condition containing errno.
384 * The implementation uses @dev and @clk_bulk_data.id to determine the
385 * clock consumer, and thereby the clock producer.
386 * The clock returned is stored in each @clk_bulk_data.clk field.
388 * Drivers must assume that the clock source is not enabled.
390 * clk_bulk_get should not be called from within interrupt context.
392 int __must_check clk_bulk_get(struct device *dev, int num_clks,
393 struct clk_bulk_data *clks);
395 * clk_bulk_get_all - lookup and obtain all available references to clock
397 * @dev: device for clock "consumer"
398 * @clks: pointer to the clk_bulk_data table of consumer
400 * This helper function allows drivers to get all clk consumers in one
401 * operation. If any of the clk cannot be acquired then any clks
402 * that were obtained will be freed before returning to the caller.
404 * Returns a positive value for the number of clocks obtained while the
405 * clock references are stored in the clk_bulk_data table in @clks field.
406 * Returns 0 if there're none and a negative value if something failed.
408 * Drivers must assume that the clock source is not enabled.
410 * clk_bulk_get should not be called from within interrupt context.
412 int __must_check clk_bulk_get_all(struct device *dev,
413 struct clk_bulk_data **clks);
416 * clk_bulk_get_optional - lookup and obtain a number of references to clock producer
417 * @dev: device for clock "consumer"
418 * @num_clks: the number of clk_bulk_data
419 * @clks: the clk_bulk_data table of consumer
421 * Behaves the same as clk_bulk_get() except where there is no clock producer.
422 * In this case, instead of returning -ENOENT, the function returns 0 and
423 * NULL for a clk for which a clock producer could not be determined.
425 int __must_check clk_bulk_get_optional(struct device *dev, int num_clks,
426 struct clk_bulk_data *clks);
428 * devm_clk_bulk_get - managed get multiple clk consumers
429 * @dev: device for clock "consumer"
430 * @num_clks: the number of clk_bulk_data
431 * @clks: the clk_bulk_data table of consumer
433 * Return 0 on success, an errno on failure.
435 * This helper function allows drivers to get several clk
436 * consumers in one operation with management, the clks will
437 * automatically be freed when the device is unbound.
439 int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
440 struct clk_bulk_data *clks);
442 * devm_clk_bulk_get_optional - managed get multiple optional consumer clocks
443 * @dev: device for clock "consumer"
444 * @num_clks: the number of clk_bulk_data
445 * @clks: pointer to the clk_bulk_data table of consumer
447 * Behaves the same as devm_clk_bulk_get() except where there is no clock
448 * producer. In this case, instead of returning -ENOENT, the function returns
449 * NULL for given clk. It is assumed all clocks in clk_bulk_data are optional.
451 * Returns 0 if all clocks specified in clk_bulk_data table are obtained
452 * successfully or for any clk there was no clk provider available, otherwise
453 * returns valid IS_ERR() condition containing errno.
454 * The implementation uses @dev and @clk_bulk_data.id to determine the
455 * clock consumer, and thereby the clock producer.
456 * The clock returned is stored in each @clk_bulk_data.clk field.
458 * Drivers must assume that the clock source is not enabled.
460 * clk_bulk_get should not be called from within interrupt context.
462 int __must_check devm_clk_bulk_get_optional(struct device *dev, int num_clks,
463 struct clk_bulk_data *clks);
465 * devm_clk_bulk_get_all - managed get multiple clk consumers
466 * @dev: device for clock "consumer"
467 * @clks: pointer to the clk_bulk_data table of consumer
469 * Returns a positive value for the number of clocks obtained while the
470 * clock references are stored in the clk_bulk_data table in @clks field.
471 * Returns 0 if there're none and a negative value if something failed.
473 * This helper function allows drivers to get several clk
474 * consumers in one operation with management, the clks will
475 * automatically be freed when the device is unbound.
478 int __must_check devm_clk_bulk_get_all(struct device *dev,
479 struct clk_bulk_data **clks);
482 * devm_clk_get - lookup and obtain a managed reference to a clock producer.
483 * @dev: device for clock "consumer"
484 * @id: clock consumer ID
486 * Context: May sleep.
488 * Return: a struct clk corresponding to the clock producer, or
489 * valid IS_ERR() condition containing errno. The implementation
490 * uses @dev and @id to determine the clock consumer, and thereby
491 * the clock producer. (IOW, @id may be identical strings, but
492 * clk_get may return different clock producers depending on @dev.)
494 * Drivers must assume that the clock source is neither prepared nor
497 * The clock will automatically be freed when the device is unbound
500 struct clk *devm_clk_get(struct device *dev, const char *id);
503 * devm_clk_get_prepared - devm_clk_get() + clk_prepare()
504 * @dev: device for clock "consumer"
505 * @id: clock consumer ID
507 * Context: May sleep.
509 * Return: a struct clk corresponding to the clock producer, or
510 * valid IS_ERR() condition containing errno. The implementation
511 * uses @dev and @id to determine the clock consumer, and thereby
512 * the clock producer. (IOW, @id may be identical strings, but
513 * clk_get may return different clock producers depending on @dev.)
515 * The returned clk (if valid) is prepared. Drivers must however assume
516 * that the clock is not enabled.
518 * The clock will automatically be unprepared and freed when the device
519 * is unbound from the bus.
521 struct clk *devm_clk_get_prepared(struct device *dev, const char *id);
524 * devm_clk_get_enabled - devm_clk_get() + clk_prepare_enable()
525 * @dev: device for clock "consumer"
526 * @id: clock consumer ID
528 * Context: May sleep.
530 * Return: a struct clk corresponding to the clock producer, or
531 * valid IS_ERR() condition containing errno. The implementation
532 * uses @dev and @id to determine the clock consumer, and thereby
533 * the clock producer. (IOW, @id may be identical strings, but
534 * clk_get may return different clock producers depending on @dev.)
536 * The returned clk (if valid) is prepared and enabled.
538 * The clock will automatically be disabled, unprepared and freed
539 * when the device is unbound from the bus.
541 struct clk *devm_clk_get_enabled(struct device *dev, const char *id);
544 * devm_clk_get_optional - lookup and obtain a managed reference to an optional
546 * @dev: device for clock "consumer"
547 * @id: clock consumer ID
549 * Context: May sleep.
551 * Return: a struct clk corresponding to the clock producer, or
552 * valid IS_ERR() condition containing errno. The implementation
553 * uses @dev and @id to determine the clock consumer, and thereby
554 * the clock producer. If no such clk is found, it returns NULL
555 * which serves as a dummy clk. That's the only difference compared
558 * Drivers must assume that the clock source is neither prepared nor
561 * The clock will automatically be freed when the device is unbound
564 struct clk *devm_clk_get_optional(struct device *dev, const char *id);
567 * devm_clk_get_optional_prepared - devm_clk_get_optional() + clk_prepare()
568 * @dev: device for clock "consumer"
569 * @id: clock consumer ID
571 * Context: May sleep.
573 * Return: a struct clk corresponding to the clock producer, or
574 * valid IS_ERR() condition containing errno. The implementation
575 * uses @dev and @id to determine the clock consumer, and thereby
576 * the clock producer. If no such clk is found, it returns NULL
577 * which serves as a dummy clk. That's the only difference compared
578 * to devm_clk_get_prepared().
580 * The returned clk (if valid) is prepared. Drivers must however
581 * assume that the clock is not enabled.
583 * The clock will automatically be unprepared and freed when the
584 * device is unbound from the bus.
586 struct clk *devm_clk_get_optional_prepared(struct device *dev, const char *id);
589 * devm_clk_get_optional_enabled - devm_clk_get_optional() +
590 * clk_prepare_enable()
591 * @dev: device for clock "consumer"
592 * @id: clock consumer ID
594 * Context: May sleep.
596 * Return: a struct clk corresponding to the clock producer, or
597 * valid IS_ERR() condition containing errno. The implementation
598 * uses @dev and @id to determine the clock consumer, and thereby
599 * the clock producer. If no such clk is found, it returns NULL
600 * which serves as a dummy clk. That's the only difference compared
601 * to devm_clk_get_enabled().
603 * The returned clk (if valid) is prepared and enabled.
605 * The clock will automatically be disabled, unprepared and freed
606 * when the device is unbound from the bus.
608 struct clk *devm_clk_get_optional_enabled(struct device *dev, const char *id);
611 * devm_get_clk_from_child - lookup and obtain a managed reference to a
612 * clock producer from child node.
613 * @dev: device for clock "consumer"
614 * @np: pointer to clock consumer node
615 * @con_id: clock consumer ID
617 * This function parses the clocks, and uses them to look up the
618 * struct clk from the registered list of clock providers by using
621 * The clock will automatically be freed when the device is unbound
624 struct clk *devm_get_clk_from_child(struct device *dev,
625 struct device_node *np, const char *con_id);
628 * clk_enable - inform the system when the clock source should be running.
631 * If the clock can not be enabled/disabled, this should return success.
633 * May be called from atomic contexts.
635 * Returns success (0) or negative errno.
637 int clk_enable(struct clk *clk);
640 * clk_bulk_enable - inform the system when the set of clks should be running.
641 * @num_clks: the number of clk_bulk_data
642 * @clks: the clk_bulk_data table of consumer
644 * May be called from atomic contexts.
646 * Returns success (0) or negative errno.
648 int __must_check clk_bulk_enable(int num_clks,
649 const struct clk_bulk_data *clks);
652 * clk_disable - inform the system when the clock source is no longer required.
655 * Inform the system that a clock source is no longer required by
656 * a driver and may be shut down.
658 * May be called from atomic contexts.
660 * Implementation detail: if the clock source is shared between
661 * multiple drivers, clk_enable() calls must be balanced by the
662 * same number of clk_disable() calls for the clock source to be
665 void clk_disable(struct clk *clk);
668 * clk_bulk_disable - inform the system when the set of clks is no
670 * @num_clks: the number of clk_bulk_data
671 * @clks: the clk_bulk_data table of consumer
673 * Inform the system that a set of clks is no longer required by
674 * a driver and may be shut down.
676 * May be called from atomic contexts.
678 * Implementation detail: if the set of clks is shared between
679 * multiple drivers, clk_bulk_enable() calls must be balanced by the
680 * same number of clk_bulk_disable() calls for the clock source to be
683 void clk_bulk_disable(int num_clks, const struct clk_bulk_data *clks);
686 * clk_get_rate - obtain the current clock rate (in Hz) for a clock source.
687 * This is only valid once the clock source has been enabled.
690 unsigned long clk_get_rate(struct clk *clk);
693 * clk_put - "free" the clock source
696 * Note: drivers must ensure that all clk_enable calls made on this
697 * clock source are balanced by clk_disable calls prior to calling
700 * clk_put should not be called from within interrupt context.
702 void clk_put(struct clk *clk);
705 * clk_bulk_put - "free" the clock source
706 * @num_clks: the number of clk_bulk_data
707 * @clks: the clk_bulk_data table of consumer
709 * Note: drivers must ensure that all clk_bulk_enable calls made on this
710 * clock source are balanced by clk_bulk_disable calls prior to calling
713 * clk_bulk_put should not be called from within interrupt context.
715 void clk_bulk_put(int num_clks, struct clk_bulk_data *clks);
718 * clk_bulk_put_all - "free" all the clock source
719 * @num_clks: the number of clk_bulk_data
720 * @clks: the clk_bulk_data table of consumer
722 * Note: drivers must ensure that all clk_bulk_enable calls made on this
723 * clock source are balanced by clk_bulk_disable calls prior to calling
726 * clk_bulk_put_all should not be called from within interrupt context.
728 void clk_bulk_put_all(int num_clks, struct clk_bulk_data *clks);
731 * devm_clk_put - "free" a managed clock source
732 * @dev: device used to acquire the clock
733 * @clk: clock source acquired with devm_clk_get()
735 * Note: drivers must ensure that all clk_enable calls made on this
736 * clock source are balanced by clk_disable calls prior to calling
739 * clk_put should not be called from within interrupt context.
741 void devm_clk_put(struct device *dev, struct clk *clk);
744 * The remaining APIs are optional for machine class support.
749 * clk_round_rate - adjust a rate to the exact rate a clock can provide
751 * @rate: desired clock rate in Hz
753 * This answers the question "if I were to pass @rate to clk_set_rate(),
754 * what clock rate would I end up with?" without changing the hardware
755 * in any way. In other words:
757 * rate = clk_round_rate(clk, r);
761 * clk_set_rate(clk, r);
762 * rate = clk_get_rate(clk);
764 * are equivalent except the former does not modify the clock hardware
767 * Returns rounded clock rate in Hz, or negative errno.
769 long clk_round_rate(struct clk *clk, unsigned long rate);
772 * clk_set_rate - set the clock rate for a clock source
774 * @rate: desired clock rate in Hz
776 * Updating the rate starts at the top-most affected clock and then
777 * walks the tree down to the bottom-most clock that needs updating.
779 * Returns success (0) or negative errno.
781 int clk_set_rate(struct clk *clk, unsigned long rate);
784 * clk_set_rate_exclusive- set the clock rate and claim exclusivity over
787 * @rate: desired clock rate in Hz
789 * This helper function allows drivers to atomically set the rate of a producer
790 * and claim exclusivity over the rate control of the producer.
792 * It is essentially a combination of clk_set_rate() and
793 * clk_rate_exclusite_get(). Caller must balance this call with a call to
794 * clk_rate_exclusive_put()
796 * Returns success (0) or negative errno.
798 int clk_set_rate_exclusive(struct clk *clk, unsigned long rate);
801 * clk_has_parent - check if a clock is a possible parent for another
803 * @parent: parent clock source
805 * This function can be used in drivers that need to check that a clock can be
806 * the parent of another without actually changing the parent.
808 * Returns true if @parent is a possible parent for @clk, false otherwise.
810 bool clk_has_parent(const struct clk *clk, const struct clk *parent);
813 * clk_set_rate_range - set a rate range for a clock source
815 * @min: desired minimum clock rate in Hz, inclusive
816 * @max: desired maximum clock rate in Hz, inclusive
818 * Returns success (0) or negative errno.
820 int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max);
823 * clk_set_min_rate - set a minimum clock rate for a clock source
825 * @rate: desired minimum clock rate in Hz, inclusive
827 * Returns success (0) or negative errno.
829 int clk_set_min_rate(struct clk *clk, unsigned long rate);
832 * clk_set_max_rate - set a maximum clock rate for a clock source
834 * @rate: desired maximum clock rate in Hz, inclusive
836 * Returns success (0) or negative errno.
838 int clk_set_max_rate(struct clk *clk, unsigned long rate);
841 * clk_set_parent - set the parent clock source for this clock
843 * @parent: parent clock source
845 * Returns success (0) or negative errno.
847 int clk_set_parent(struct clk *clk, struct clk *parent);
850 * clk_get_parent - get the parent clock source for this clock
853 * Returns struct clk corresponding to parent clock source, or
854 * valid IS_ERR() condition containing errno.
856 struct clk *clk_get_parent(struct clk *clk);
859 * clk_get_sys - get a clock based upon the device name
860 * @dev_id: device name
861 * @con_id: connection ID
863 * Returns a struct clk corresponding to the clock producer, or
864 * valid IS_ERR() condition containing errno. The implementation
865 * uses @dev_id and @con_id to determine the clock consumer, and
866 * thereby the clock producer. In contrast to clk_get() this function
867 * takes the device name instead of the device itself for identification.
869 * Drivers must assume that the clock source is not enabled.
871 * clk_get_sys should not be called from within interrupt context.
873 struct clk *clk_get_sys(const char *dev_id, const char *con_id);
876 * clk_save_context - save clock context for poweroff
878 * Saves the context of the clock register for powerstates in which the
879 * contents of the registers will be lost. Occurs deep within the suspend
880 * code so locking is not necessary.
882 int clk_save_context(void);
885 * clk_restore_context - restore clock context after poweroff
887 * This occurs with all clocks enabled. Occurs deep within the resume code
888 * so locking is not necessary.
890 void clk_restore_context(void);
892 #else /* !CONFIG_HAVE_CLK */
894 static inline struct clk *clk_get(struct device *dev, const char *id)
899 static inline int __must_check clk_bulk_get(struct device *dev, int num_clks,
900 struct clk_bulk_data *clks)
905 static inline int __must_check clk_bulk_get_optional(struct device *dev,
906 int num_clks, struct clk_bulk_data *clks)
911 static inline int __must_check clk_bulk_get_all(struct device *dev,
912 struct clk_bulk_data **clks)
917 static inline struct clk *devm_clk_get(struct device *dev, const char *id)
922 static inline struct clk *devm_clk_get_prepared(struct device *dev,
928 static inline struct clk *devm_clk_get_enabled(struct device *dev,
934 static inline struct clk *devm_clk_get_optional(struct device *dev,
940 static inline struct clk *devm_clk_get_optional_prepared(struct device *dev,
946 static inline struct clk *devm_clk_get_optional_enabled(struct device *dev,
952 static inline int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
953 struct clk_bulk_data *clks)
958 static inline int __must_check devm_clk_bulk_get_optional(struct device *dev,
959 int num_clks, struct clk_bulk_data *clks)
964 static inline int __must_check devm_clk_bulk_get_all(struct device *dev,
965 struct clk_bulk_data **clks)
971 static inline struct clk *devm_get_clk_from_child(struct device *dev,
972 struct device_node *np, const char *con_id)
977 static inline void clk_put(struct clk *clk) {}
979 static inline void clk_bulk_put(int num_clks, struct clk_bulk_data *clks) {}
981 static inline void clk_bulk_put_all(int num_clks, struct clk_bulk_data *clks) {}
983 static inline void devm_clk_put(struct device *dev, struct clk *clk) {}
985 static inline int clk_enable(struct clk *clk)
990 static inline int __must_check clk_bulk_enable(int num_clks,
991 const struct clk_bulk_data *clks)
996 static inline void clk_disable(struct clk *clk) {}
999 static inline void clk_bulk_disable(int num_clks,
1000 const struct clk_bulk_data *clks) {}
1002 static inline unsigned long clk_get_rate(struct clk *clk)
1007 static inline int clk_set_rate(struct clk *clk, unsigned long rate)
1012 static inline int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
1017 static inline long clk_round_rate(struct clk *clk, unsigned long rate)
1022 static inline bool clk_has_parent(struct clk *clk, struct clk *parent)
1027 static inline int clk_set_rate_range(struct clk *clk, unsigned long min,
1033 static inline int clk_set_min_rate(struct clk *clk, unsigned long rate)
1038 static inline int clk_set_max_rate(struct clk *clk, unsigned long rate)
1043 static inline int clk_set_parent(struct clk *clk, struct clk *parent)
1048 static inline struct clk *clk_get_parent(struct clk *clk)
1053 static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
1058 static inline int clk_save_context(void)
1063 static inline void clk_restore_context(void) {}
1067 /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
1068 static inline int clk_prepare_enable(struct clk *clk)
1072 ret = clk_prepare(clk);
1075 ret = clk_enable(clk);
1082 /* clk_disable_unprepare helps cases using clk_disable in non-atomic context. */
1083 static inline void clk_disable_unprepare(struct clk *clk)
1089 static inline int __must_check
1090 clk_bulk_prepare_enable(int num_clks, const struct clk_bulk_data *clks)
1094 ret = clk_bulk_prepare(num_clks, clks);
1097 ret = clk_bulk_enable(num_clks, clks);
1099 clk_bulk_unprepare(num_clks, clks);
1104 static inline void clk_bulk_disable_unprepare(int num_clks,
1105 const struct clk_bulk_data *clks)
1107 clk_bulk_disable(num_clks, clks);
1108 clk_bulk_unprepare(num_clks, clks);
1112 * clk_drop_range - Reset any range set on that clock
1113 * @clk: clock source
1115 * Returns success (0) or negative errno.
1117 static inline int clk_drop_range(struct clk *clk)
1119 return clk_set_rate_range(clk, 0, ULONG_MAX);
1123 * clk_get_optional - lookup and obtain a reference to an optional clock
1125 * @dev: device for clock "consumer"
1126 * @id: clock consumer ID
1128 * Behaves the same as clk_get() except where there is no clock producer. In
1129 * this case, instead of returning -ENOENT, the function returns NULL.
1131 static inline struct clk *clk_get_optional(struct device *dev, const char *id)
1133 struct clk *clk = clk_get(dev, id);
1135 if (clk == ERR_PTR(-ENOENT))
1141 #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
1142 struct clk *of_clk_get(struct device_node *np, int index);
1143 struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
1144 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
1146 static inline struct clk *of_clk_get(struct device_node *np, int index)
1148 return ERR_PTR(-ENOENT);
1150 static inline struct clk *of_clk_get_by_name(struct device_node *np,
1153 return ERR_PTR(-ENOENT);
1155 static inline struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
1157 return ERR_PTR(-ENOENT);