1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
6 * Standard functionality for the common clock API. See Documentation/driver-api/clk.rst
10 #include <linux/clk-provider.h>
11 #include <linux/clk/clk-conf.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/spinlock.h>
15 #include <linux/err.h>
16 #include <linux/list.h>
17 #include <linux/slab.h>
19 #include <linux/device.h>
20 #include <linux/init.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/sched.h>
23 #include <linux/clkdev.h>
27 static DEFINE_SPINLOCK(enable_lock
);
28 static DEFINE_MUTEX(prepare_lock
);
30 static struct task_struct
*prepare_owner
;
31 static struct task_struct
*enable_owner
;
33 static int prepare_refcnt
;
34 static int enable_refcnt
;
36 static HLIST_HEAD(clk_root_list
);
37 static HLIST_HEAD(clk_orphan_list
);
38 static LIST_HEAD(clk_notifier_list
);
40 static struct hlist_head
*all_lists
[] = {
46 /*** private data structures ***/
48 struct clk_parent_map
{
49 const struct clk_hw
*hw
;
50 struct clk_core
*core
;
58 const struct clk_ops
*ops
;
62 struct device_node
*of_node
;
63 struct clk_core
*parent
;
64 struct clk_parent_map
*parents
;
68 unsigned long req_rate
;
69 unsigned long new_rate
;
70 struct clk_core
*new_parent
;
71 struct clk_core
*new_child
;
75 unsigned int enable_count
;
76 unsigned int prepare_count
;
77 unsigned int protect_count
;
78 unsigned long min_rate
;
79 unsigned long max_rate
;
80 unsigned long accuracy
;
83 struct hlist_head children
;
84 struct hlist_node child_node
;
85 struct hlist_head clks
;
86 unsigned int notifier_count
;
87 #ifdef CONFIG_DEBUG_FS
88 struct dentry
*dentry
;
89 struct hlist_node debug_node
;
94 #define CREATE_TRACE_POINTS
95 #include <trace/events/clk.h>
98 struct clk_core
*core
;
102 unsigned long min_rate
;
103 unsigned long max_rate
;
104 unsigned int exclusive_count
;
105 struct hlist_node clks_node
;
109 static int clk_pm_runtime_get(struct clk_core
*core
)
113 if (!core
->rpm_enabled
)
116 ret
= pm_runtime_get_sync(core
->dev
);
117 return ret
< 0 ? ret
: 0;
120 static void clk_pm_runtime_put(struct clk_core
*core
)
122 if (!core
->rpm_enabled
)
125 pm_runtime_put_sync(core
->dev
);
129 static void clk_prepare_lock(void)
131 if (!mutex_trylock(&prepare_lock
)) {
132 if (prepare_owner
== current
) {
136 mutex_lock(&prepare_lock
);
138 WARN_ON_ONCE(prepare_owner
!= NULL
);
139 WARN_ON_ONCE(prepare_refcnt
!= 0);
140 prepare_owner
= current
;
144 static void clk_prepare_unlock(void)
146 WARN_ON_ONCE(prepare_owner
!= current
);
147 WARN_ON_ONCE(prepare_refcnt
== 0);
149 if (--prepare_refcnt
)
151 prepare_owner
= NULL
;
152 mutex_unlock(&prepare_lock
);
155 static unsigned long clk_enable_lock(void)
156 __acquires(enable_lock
)
161 * On UP systems, spin_trylock_irqsave() always returns true, even if
162 * we already hold the lock. So, in that case, we rely only on
163 * reference counting.
165 if (!IS_ENABLED(CONFIG_SMP
) ||
166 !spin_trylock_irqsave(&enable_lock
, flags
)) {
167 if (enable_owner
== current
) {
169 __acquire(enable_lock
);
170 if (!IS_ENABLED(CONFIG_SMP
))
171 local_save_flags(flags
);
174 spin_lock_irqsave(&enable_lock
, flags
);
176 WARN_ON_ONCE(enable_owner
!= NULL
);
177 WARN_ON_ONCE(enable_refcnt
!= 0);
178 enable_owner
= current
;
183 static void clk_enable_unlock(unsigned long flags
)
184 __releases(enable_lock
)
186 WARN_ON_ONCE(enable_owner
!= current
);
187 WARN_ON_ONCE(enable_refcnt
== 0);
189 if (--enable_refcnt
) {
190 __release(enable_lock
);
194 spin_unlock_irqrestore(&enable_lock
, flags
);
197 static bool clk_core_rate_is_protected(struct clk_core
*core
)
199 return core
->protect_count
;
202 static bool clk_core_is_prepared(struct clk_core
*core
)
207 * .is_prepared is optional for clocks that can prepare
208 * fall back to software usage counter if it is missing
210 if (!core
->ops
->is_prepared
)
211 return core
->prepare_count
;
213 if (!clk_pm_runtime_get(core
)) {
214 ret
= core
->ops
->is_prepared(core
->hw
);
215 clk_pm_runtime_put(core
);
221 static bool clk_core_is_enabled(struct clk_core
*core
)
226 * .is_enabled is only mandatory for clocks that gate
227 * fall back to software usage counter if .is_enabled is missing
229 if (!core
->ops
->is_enabled
)
230 return core
->enable_count
;
233 * Check if clock controller's device is runtime active before
234 * calling .is_enabled callback. If not, assume that clock is
235 * disabled, because we might be called from atomic context, from
236 * which pm_runtime_get() is not allowed.
237 * This function is called mainly from clk_disable_unused_subtree,
238 * which ensures proper runtime pm activation of controller before
239 * taking enable spinlock, but the below check is needed if one tries
240 * to call it from other places.
242 if (core
->rpm_enabled
) {
243 pm_runtime_get_noresume(core
->dev
);
244 if (!pm_runtime_active(core
->dev
)) {
250 ret
= core
->ops
->is_enabled(core
->hw
);
252 if (core
->rpm_enabled
)
253 pm_runtime_put(core
->dev
);
258 /*** helper functions ***/
260 const char *__clk_get_name(const struct clk
*clk
)
262 return !clk
? NULL
: clk
->core
->name
;
264 EXPORT_SYMBOL_GPL(__clk_get_name
);
266 const char *clk_hw_get_name(const struct clk_hw
*hw
)
268 return hw
->core
->name
;
270 EXPORT_SYMBOL_GPL(clk_hw_get_name
);
272 struct clk_hw
*__clk_get_hw(struct clk
*clk
)
274 return !clk
? NULL
: clk
->core
->hw
;
276 EXPORT_SYMBOL_GPL(__clk_get_hw
);
278 unsigned int clk_hw_get_num_parents(const struct clk_hw
*hw
)
280 return hw
->core
->num_parents
;
282 EXPORT_SYMBOL_GPL(clk_hw_get_num_parents
);
284 struct clk_hw
*clk_hw_get_parent(const struct clk_hw
*hw
)
286 return hw
->core
->parent
? hw
->core
->parent
->hw
: NULL
;
288 EXPORT_SYMBOL_GPL(clk_hw_get_parent
);
290 static struct clk_core
*__clk_lookup_subtree(const char *name
,
291 struct clk_core
*core
)
293 struct clk_core
*child
;
294 struct clk_core
*ret
;
296 if (!strcmp(core
->name
, name
))
299 hlist_for_each_entry(child
, &core
->children
, child_node
) {
300 ret
= __clk_lookup_subtree(name
, child
);
308 static struct clk_core
*clk_core_lookup(const char *name
)
310 struct clk_core
*root_clk
;
311 struct clk_core
*ret
;
316 /* search the 'proper' clk tree first */
317 hlist_for_each_entry(root_clk
, &clk_root_list
, child_node
) {
318 ret
= __clk_lookup_subtree(name
, root_clk
);
323 /* if not found, then search the orphan tree */
324 hlist_for_each_entry(root_clk
, &clk_orphan_list
, child_node
) {
325 ret
= __clk_lookup_subtree(name
, root_clk
);
334 static int of_parse_clkspec(const struct device_node
*np
, int index
,
335 const char *name
, struct of_phandle_args
*out_args
);
336 static struct clk_hw
*
337 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
);
339 static inline int of_parse_clkspec(const struct device_node
*np
, int index
,
341 struct of_phandle_args
*out_args
)
345 static inline struct clk_hw
*
346 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
)
348 return ERR_PTR(-ENOENT
);
353 * clk_core_get - Find the clk_core parent of a clk
354 * @core: clk to find parent of
355 * @p_index: parent index to search for
357 * This is the preferred method for clk providers to find the parent of a
358 * clk when that parent is external to the clk controller. The parent_names
359 * array is indexed and treated as a local name matching a string in the device
360 * node's 'clock-names' property or as the 'con_id' matching the device's
361 * dev_name() in a clk_lookup. This allows clk providers to use their own
362 * namespace instead of looking for a globally unique parent string.
364 * For example the following DT snippet would allow a clock registered by the
365 * clock-controller@c001 that has a clk_init_data::parent_data array
366 * with 'xtal' in the 'name' member to find the clock provided by the
367 * clock-controller@f00abcd without needing to get the globally unique name of
370 * parent: clock-controller@f00abcd {
371 * reg = <0xf00abcd 0xabcd>;
372 * #clock-cells = <0>;
375 * clock-controller@c001 {
376 * reg = <0xc001 0xf00d>;
377 * clocks = <&parent>;
378 * clock-names = "xtal";
379 * #clock-cells = <1>;
382 * Returns: -ENOENT when the provider can't be found or the clk doesn't
383 * exist in the provider or the name can't be found in the DT node or
384 * in a clkdev lookup. NULL when the provider knows about the clk but it
385 * isn't provided on this system.
386 * A valid clk_core pointer when the clk can be found in the provider.
388 static struct clk_core
*clk_core_get(struct clk_core
*core
, u8 p_index
)
390 const char *name
= core
->parents
[p_index
].fw_name
;
391 int index
= core
->parents
[p_index
].index
;
392 struct clk_hw
*hw
= ERR_PTR(-ENOENT
);
393 struct device
*dev
= core
->dev
;
394 const char *dev_id
= dev
? dev_name(dev
) : NULL
;
395 struct device_node
*np
= core
->of_node
;
396 struct of_phandle_args clkspec
;
398 if (np
&& (name
|| index
>= 0) &&
399 !of_parse_clkspec(np
, index
, name
, &clkspec
)) {
400 hw
= of_clk_get_hw_from_clkspec(&clkspec
);
401 of_node_put(clkspec
.np
);
404 * If the DT search above couldn't find the provider fallback to
405 * looking up via clkdev based clk_lookups.
407 hw
= clk_find_hw(dev_id
, name
);
416 static void clk_core_fill_parent_index(struct clk_core
*core
, u8 index
)
418 struct clk_parent_map
*entry
= &core
->parents
[index
];
419 struct clk_core
*parent
= ERR_PTR(-ENOENT
);
422 parent
= entry
->hw
->core
;
424 * We have a direct reference but it isn't registered yet?
425 * Orphan it and let clk_reparent() update the orphan status
426 * when the parent is registered.
429 parent
= ERR_PTR(-EPROBE_DEFER
);
431 parent
= clk_core_get(core
, index
);
432 if (IS_ERR(parent
) && PTR_ERR(parent
) == -ENOENT
&& entry
->name
)
433 parent
= clk_core_lookup(entry
->name
);
436 /* Only cache it if it's not an error */
438 entry
->core
= parent
;
441 static struct clk_core
*clk_core_get_parent_by_index(struct clk_core
*core
,
444 if (!core
|| index
>= core
->num_parents
|| !core
->parents
)
447 if (!core
->parents
[index
].core
)
448 clk_core_fill_parent_index(core
, index
);
450 return core
->parents
[index
].core
;
454 clk_hw_get_parent_by_index(const struct clk_hw
*hw
, unsigned int index
)
456 struct clk_core
*parent
;
458 parent
= clk_core_get_parent_by_index(hw
->core
, index
);
460 return !parent
? NULL
: parent
->hw
;
462 EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index
);
464 unsigned int __clk_get_enable_count(struct clk
*clk
)
466 return !clk
? 0 : clk
->core
->enable_count
;
469 static unsigned long clk_core_get_rate_nolock(struct clk_core
*core
)
474 if (!core
->num_parents
|| core
->parent
)
478 * Clk must have a parent because num_parents > 0 but the parent isn't
479 * known yet. Best to return 0 as the rate of this clk until we can
480 * properly recalc the rate based on the parent's rate.
485 unsigned long clk_hw_get_rate(const struct clk_hw
*hw
)
487 return clk_core_get_rate_nolock(hw
->core
);
489 EXPORT_SYMBOL_GPL(clk_hw_get_rate
);
491 static unsigned long __clk_get_accuracy(struct clk_core
*core
)
496 return core
->accuracy
;
499 unsigned long __clk_get_flags(struct clk
*clk
)
501 return !clk
? 0 : clk
->core
->flags
;
503 EXPORT_SYMBOL_GPL(__clk_get_flags
);
505 unsigned long clk_hw_get_flags(const struct clk_hw
*hw
)
507 return hw
->core
->flags
;
509 EXPORT_SYMBOL_GPL(clk_hw_get_flags
);
511 bool clk_hw_is_prepared(const struct clk_hw
*hw
)
513 return clk_core_is_prepared(hw
->core
);
515 EXPORT_SYMBOL_GPL(clk_hw_is_prepared
);
517 bool clk_hw_rate_is_protected(const struct clk_hw
*hw
)
519 return clk_core_rate_is_protected(hw
->core
);
521 EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected
);
523 bool clk_hw_is_enabled(const struct clk_hw
*hw
)
525 return clk_core_is_enabled(hw
->core
);
527 EXPORT_SYMBOL_GPL(clk_hw_is_enabled
);
529 bool __clk_is_enabled(struct clk
*clk
)
534 return clk_core_is_enabled(clk
->core
);
536 EXPORT_SYMBOL_GPL(__clk_is_enabled
);
538 static bool mux_is_better_rate(unsigned long rate
, unsigned long now
,
539 unsigned long best
, unsigned long flags
)
541 if (flags
& CLK_MUX_ROUND_CLOSEST
)
542 return abs(now
- rate
) < abs(best
- rate
);
544 return now
<= rate
&& now
> best
;
547 int clk_mux_determine_rate_flags(struct clk_hw
*hw
,
548 struct clk_rate_request
*req
,
551 struct clk_core
*core
= hw
->core
, *parent
, *best_parent
= NULL
;
552 int i
, num_parents
, ret
;
553 unsigned long best
= 0;
554 struct clk_rate_request parent_req
= *req
;
556 /* if NO_REPARENT flag set, pass through to current parent */
557 if (core
->flags
& CLK_SET_RATE_NO_REPARENT
) {
558 parent
= core
->parent
;
559 if (core
->flags
& CLK_SET_RATE_PARENT
) {
560 ret
= __clk_determine_rate(parent
? parent
->hw
: NULL
,
565 best
= parent_req
.rate
;
567 best
= clk_core_get_rate_nolock(parent
);
569 best
= clk_core_get_rate_nolock(core
);
575 /* find the parent that can provide the fastest rate <= rate */
576 num_parents
= core
->num_parents
;
577 for (i
= 0; i
< num_parents
; i
++) {
578 parent
= clk_core_get_parent_by_index(core
, i
);
582 if (core
->flags
& CLK_SET_RATE_PARENT
) {
584 ret
= __clk_determine_rate(parent
->hw
, &parent_req
);
588 parent_req
.rate
= clk_core_get_rate_nolock(parent
);
591 if (mux_is_better_rate(req
->rate
, parent_req
.rate
,
593 best_parent
= parent
;
594 best
= parent_req
.rate
;
603 req
->best_parent_hw
= best_parent
->hw
;
604 req
->best_parent_rate
= best
;
609 EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags
);
611 struct clk
*__clk_lookup(const char *name
)
613 struct clk_core
*core
= clk_core_lookup(name
);
615 return !core
? NULL
: core
->hw
->clk
;
618 static void clk_core_get_boundaries(struct clk_core
*core
,
619 unsigned long *min_rate
,
620 unsigned long *max_rate
)
622 struct clk
*clk_user
;
624 lockdep_assert_held(&prepare_lock
);
626 *min_rate
= core
->min_rate
;
627 *max_rate
= core
->max_rate
;
629 hlist_for_each_entry(clk_user
, &core
->clks
, clks_node
)
630 *min_rate
= max(*min_rate
, clk_user
->min_rate
);
632 hlist_for_each_entry(clk_user
, &core
->clks
, clks_node
)
633 *max_rate
= min(*max_rate
, clk_user
->max_rate
);
636 void clk_hw_set_rate_range(struct clk_hw
*hw
, unsigned long min_rate
,
637 unsigned long max_rate
)
639 hw
->core
->min_rate
= min_rate
;
640 hw
->core
->max_rate
= max_rate
;
642 EXPORT_SYMBOL_GPL(clk_hw_set_rate_range
);
645 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
646 * @hw: mux type clk to determine rate on
647 * @req: rate request, also used to return preferred parent and frequencies
649 * Helper for finding best parent to provide a given frequency. This can be used
650 * directly as a determine_rate callback (e.g. for a mux), or from a more
651 * complex clock that may combine a mux with other operations.
653 * Returns: 0 on success, -EERROR value on error
655 int __clk_mux_determine_rate(struct clk_hw
*hw
,
656 struct clk_rate_request
*req
)
658 return clk_mux_determine_rate_flags(hw
, req
, 0);
660 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate
);
662 int __clk_mux_determine_rate_closest(struct clk_hw
*hw
,
663 struct clk_rate_request
*req
)
665 return clk_mux_determine_rate_flags(hw
, req
, CLK_MUX_ROUND_CLOSEST
);
667 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest
);
671 static void clk_core_rate_unprotect(struct clk_core
*core
)
673 lockdep_assert_held(&prepare_lock
);
678 if (WARN(core
->protect_count
== 0,
679 "%s already unprotected\n", core
->name
))
682 if (--core
->protect_count
> 0)
685 clk_core_rate_unprotect(core
->parent
);
688 static int clk_core_rate_nuke_protect(struct clk_core
*core
)
692 lockdep_assert_held(&prepare_lock
);
697 if (core
->protect_count
== 0)
700 ret
= core
->protect_count
;
701 core
->protect_count
= 1;
702 clk_core_rate_unprotect(core
);
708 * clk_rate_exclusive_put - release exclusivity over clock rate control
709 * @clk: the clk over which the exclusivity is released
711 * clk_rate_exclusive_put() completes a critical section during which a clock
712 * consumer cannot tolerate any other consumer making any operation on the
713 * clock which could result in a rate change or rate glitch. Exclusive clocks
714 * cannot have their rate changed, either directly or indirectly due to changes
715 * further up the parent chain of clocks. As a result, clocks up parent chain
716 * also get under exclusive control of the calling consumer.
718 * If exlusivity is claimed more than once on clock, even by the same consumer,
719 * the rate effectively gets locked as exclusivity can't be preempted.
721 * Calls to clk_rate_exclusive_put() must be balanced with calls to
722 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
725 void clk_rate_exclusive_put(struct clk
*clk
)
733 * if there is something wrong with this consumer protect count, stop
734 * here before messing with the provider
736 if (WARN_ON(clk
->exclusive_count
<= 0))
739 clk_core_rate_unprotect(clk
->core
);
740 clk
->exclusive_count
--;
742 clk_prepare_unlock();
744 EXPORT_SYMBOL_GPL(clk_rate_exclusive_put
);
746 static void clk_core_rate_protect(struct clk_core
*core
)
748 lockdep_assert_held(&prepare_lock
);
753 if (core
->protect_count
== 0)
754 clk_core_rate_protect(core
->parent
);
756 core
->protect_count
++;
759 static void clk_core_rate_restore_protect(struct clk_core
*core
, int count
)
761 lockdep_assert_held(&prepare_lock
);
769 clk_core_rate_protect(core
);
770 core
->protect_count
= count
;
774 * clk_rate_exclusive_get - get exclusivity over the clk rate control
775 * @clk: the clk over which the exclusity of rate control is requested
777 * clk_rate_exlusive_get() begins a critical section during which a clock
778 * consumer cannot tolerate any other consumer making any operation on the
779 * clock which could result in a rate change or rate glitch. Exclusive clocks
780 * cannot have their rate changed, either directly or indirectly due to changes
781 * further up the parent chain of clocks. As a result, clocks up parent chain
782 * also get under exclusive control of the calling consumer.
784 * If exlusivity is claimed more than once on clock, even by the same consumer,
785 * the rate effectively gets locked as exclusivity can't be preempted.
787 * Calls to clk_rate_exclusive_get() should be balanced with calls to
788 * clk_rate_exclusive_put(). Calls to this function may sleep.
789 * Returns 0 on success, -EERROR otherwise
791 int clk_rate_exclusive_get(struct clk
*clk
)
797 clk_core_rate_protect(clk
->core
);
798 clk
->exclusive_count
++;
799 clk_prepare_unlock();
803 EXPORT_SYMBOL_GPL(clk_rate_exclusive_get
);
805 static void clk_core_unprepare(struct clk_core
*core
)
807 lockdep_assert_held(&prepare_lock
);
812 if (WARN(core
->prepare_count
== 0,
813 "%s already unprepared\n", core
->name
))
816 if (WARN(core
->prepare_count
== 1 && core
->flags
& CLK_IS_CRITICAL
,
817 "Unpreparing critical %s\n", core
->name
))
820 if (core
->flags
& CLK_SET_RATE_GATE
)
821 clk_core_rate_unprotect(core
);
823 if (--core
->prepare_count
> 0)
826 WARN(core
->enable_count
> 0, "Unpreparing enabled %s\n", core
->name
);
828 trace_clk_unprepare(core
);
830 if (core
->ops
->unprepare
)
831 core
->ops
->unprepare(core
->hw
);
833 clk_pm_runtime_put(core
);
835 trace_clk_unprepare_complete(core
);
836 clk_core_unprepare(core
->parent
);
839 static void clk_core_unprepare_lock(struct clk_core
*core
)
842 clk_core_unprepare(core
);
843 clk_prepare_unlock();
847 * clk_unprepare - undo preparation of a clock source
848 * @clk: the clk being unprepared
850 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
851 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
852 * if the operation may sleep. One example is a clk which is accessed over
853 * I2c. In the complex case a clk gate operation may require a fast and a slow
854 * part. It is this reason that clk_unprepare and clk_disable are not mutually
855 * exclusive. In fact clk_disable must be called before clk_unprepare.
857 void clk_unprepare(struct clk
*clk
)
859 if (IS_ERR_OR_NULL(clk
))
862 clk_core_unprepare_lock(clk
->core
);
864 EXPORT_SYMBOL_GPL(clk_unprepare
);
866 static int clk_core_prepare(struct clk_core
*core
)
870 lockdep_assert_held(&prepare_lock
);
875 if (core
->prepare_count
== 0) {
876 ret
= clk_pm_runtime_get(core
);
880 ret
= clk_core_prepare(core
->parent
);
884 trace_clk_prepare(core
);
886 if (core
->ops
->prepare
)
887 ret
= core
->ops
->prepare(core
->hw
);
889 trace_clk_prepare_complete(core
);
895 core
->prepare_count
++;
898 * CLK_SET_RATE_GATE is a special case of clock protection
899 * Instead of a consumer claiming exclusive rate control, it is
900 * actually the provider which prevents any consumer from making any
901 * operation which could result in a rate change or rate glitch while
902 * the clock is prepared.
904 if (core
->flags
& CLK_SET_RATE_GATE
)
905 clk_core_rate_protect(core
);
909 clk_core_unprepare(core
->parent
);
911 clk_pm_runtime_put(core
);
915 static int clk_core_prepare_lock(struct clk_core
*core
)
920 ret
= clk_core_prepare(core
);
921 clk_prepare_unlock();
927 * clk_prepare - prepare a clock source
928 * @clk: the clk being prepared
930 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
931 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
932 * operation may sleep. One example is a clk which is accessed over I2c. In
933 * the complex case a clk ungate operation may require a fast and a slow part.
934 * It is this reason that clk_prepare and clk_enable are not mutually
935 * exclusive. In fact clk_prepare must be called before clk_enable.
936 * Returns 0 on success, -EERROR otherwise.
938 int clk_prepare(struct clk
*clk
)
943 return clk_core_prepare_lock(clk
->core
);
945 EXPORT_SYMBOL_GPL(clk_prepare
);
947 static void clk_core_disable(struct clk_core
*core
)
949 lockdep_assert_held(&enable_lock
);
954 if (WARN(core
->enable_count
== 0, "%s already disabled\n", core
->name
))
957 if (WARN(core
->enable_count
== 1 && core
->flags
& CLK_IS_CRITICAL
,
958 "Disabling critical %s\n", core
->name
))
961 if (--core
->enable_count
> 0)
964 trace_clk_disable_rcuidle(core
);
966 if (core
->ops
->disable
)
967 core
->ops
->disable(core
->hw
);
969 trace_clk_disable_complete_rcuidle(core
);
971 clk_core_disable(core
->parent
);
974 static void clk_core_disable_lock(struct clk_core
*core
)
978 flags
= clk_enable_lock();
979 clk_core_disable(core
);
980 clk_enable_unlock(flags
);
984 * clk_disable - gate a clock
985 * @clk: the clk being gated
987 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
988 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
989 * clk if the operation is fast and will never sleep. One example is a
990 * SoC-internal clk which is controlled via simple register writes. In the
991 * complex case a clk gate operation may require a fast and a slow part. It is
992 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
993 * In fact clk_disable must be called before clk_unprepare.
995 void clk_disable(struct clk
*clk
)
997 if (IS_ERR_OR_NULL(clk
))
1000 clk_core_disable_lock(clk
->core
);
1002 EXPORT_SYMBOL_GPL(clk_disable
);
1004 static int clk_core_enable(struct clk_core
*core
)
1008 lockdep_assert_held(&enable_lock
);
1013 if (WARN(core
->prepare_count
== 0,
1014 "Enabling unprepared %s\n", core
->name
))
1017 if (core
->enable_count
== 0) {
1018 ret
= clk_core_enable(core
->parent
);
1023 trace_clk_enable_rcuidle(core
);
1025 if (core
->ops
->enable
)
1026 ret
= core
->ops
->enable(core
->hw
);
1028 trace_clk_enable_complete_rcuidle(core
);
1031 clk_core_disable(core
->parent
);
1036 core
->enable_count
++;
1040 static int clk_core_enable_lock(struct clk_core
*core
)
1042 unsigned long flags
;
1045 flags
= clk_enable_lock();
1046 ret
= clk_core_enable(core
);
1047 clk_enable_unlock(flags
);
1053 * clk_gate_restore_context - restore context for poweroff
1054 * @hw: the clk_hw pointer of clock whose state is to be restored
1056 * The clock gate restore context function enables or disables
1057 * the gate clocks based on the enable_count. This is done in cases
1058 * where the clock context is lost and based on the enable_count
1059 * the clock either needs to be enabled/disabled. This
1060 * helps restore the state of gate clocks.
1062 void clk_gate_restore_context(struct clk_hw
*hw
)
1064 struct clk_core
*core
= hw
->core
;
1066 if (core
->enable_count
)
1067 core
->ops
->enable(hw
);
1069 core
->ops
->disable(hw
);
1071 EXPORT_SYMBOL_GPL(clk_gate_restore_context
);
1073 static int clk_core_save_context(struct clk_core
*core
)
1075 struct clk_core
*child
;
1078 hlist_for_each_entry(child
, &core
->children
, child_node
) {
1079 ret
= clk_core_save_context(child
);
1084 if (core
->ops
&& core
->ops
->save_context
)
1085 ret
= core
->ops
->save_context(core
->hw
);
1090 static void clk_core_restore_context(struct clk_core
*core
)
1092 struct clk_core
*child
;
1094 if (core
->ops
&& core
->ops
->restore_context
)
1095 core
->ops
->restore_context(core
->hw
);
1097 hlist_for_each_entry(child
, &core
->children
, child_node
)
1098 clk_core_restore_context(child
);
1102 * clk_save_context - save clock context for poweroff
1104 * Saves the context of the clock register for powerstates in which the
1105 * contents of the registers will be lost. Occurs deep within the suspend
1106 * code. Returns 0 on success.
1108 int clk_save_context(void)
1110 struct clk_core
*clk
;
1113 hlist_for_each_entry(clk
, &clk_root_list
, child_node
) {
1114 ret
= clk_core_save_context(clk
);
1119 hlist_for_each_entry(clk
, &clk_orphan_list
, child_node
) {
1120 ret
= clk_core_save_context(clk
);
1127 EXPORT_SYMBOL_GPL(clk_save_context
);
1130 * clk_restore_context - restore clock context after poweroff
1132 * Restore the saved clock context upon resume.
1135 void clk_restore_context(void)
1137 struct clk_core
*core
;
1139 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1140 clk_core_restore_context(core
);
1142 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1143 clk_core_restore_context(core
);
1145 EXPORT_SYMBOL_GPL(clk_restore_context
);
1148 * clk_enable - ungate a clock
1149 * @clk: the clk being ungated
1151 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1152 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1153 * if the operation will never sleep. One example is a SoC-internal clk which
1154 * is controlled via simple register writes. In the complex case a clk ungate
1155 * operation may require a fast and a slow part. It is this reason that
1156 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1157 * must be called before clk_enable. Returns 0 on success, -EERROR
1160 int clk_enable(struct clk
*clk
)
1165 return clk_core_enable_lock(clk
->core
);
1167 EXPORT_SYMBOL_GPL(clk_enable
);
1169 static int clk_core_prepare_enable(struct clk_core
*core
)
1173 ret
= clk_core_prepare_lock(core
);
1177 ret
= clk_core_enable_lock(core
);
1179 clk_core_unprepare_lock(core
);
1184 static void clk_core_disable_unprepare(struct clk_core
*core
)
1186 clk_core_disable_lock(core
);
1187 clk_core_unprepare_lock(core
);
1190 static void clk_unprepare_unused_subtree(struct clk_core
*core
)
1192 struct clk_core
*child
;
1194 lockdep_assert_held(&prepare_lock
);
1196 hlist_for_each_entry(child
, &core
->children
, child_node
)
1197 clk_unprepare_unused_subtree(child
);
1199 if (core
->prepare_count
)
1202 if (core
->flags
& CLK_IGNORE_UNUSED
)
1205 if (clk_pm_runtime_get(core
))
1208 if (clk_core_is_prepared(core
)) {
1209 trace_clk_unprepare(core
);
1210 if (core
->ops
->unprepare_unused
)
1211 core
->ops
->unprepare_unused(core
->hw
);
1212 else if (core
->ops
->unprepare
)
1213 core
->ops
->unprepare(core
->hw
);
1214 trace_clk_unprepare_complete(core
);
1217 clk_pm_runtime_put(core
);
1220 static void clk_disable_unused_subtree(struct clk_core
*core
)
1222 struct clk_core
*child
;
1223 unsigned long flags
;
1225 lockdep_assert_held(&prepare_lock
);
1227 hlist_for_each_entry(child
, &core
->children
, child_node
)
1228 clk_disable_unused_subtree(child
);
1230 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
1231 clk_core_prepare_enable(core
->parent
);
1233 if (clk_pm_runtime_get(core
))
1236 flags
= clk_enable_lock();
1238 if (core
->enable_count
)
1241 if (core
->flags
& CLK_IGNORE_UNUSED
)
1245 * some gate clocks have special needs during the disable-unused
1246 * sequence. call .disable_unused if available, otherwise fall
1249 if (clk_core_is_enabled(core
)) {
1250 trace_clk_disable(core
);
1251 if (core
->ops
->disable_unused
)
1252 core
->ops
->disable_unused(core
->hw
);
1253 else if (core
->ops
->disable
)
1254 core
->ops
->disable(core
->hw
);
1255 trace_clk_disable_complete(core
);
1259 clk_enable_unlock(flags
);
1260 clk_pm_runtime_put(core
);
1262 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
1263 clk_core_disable_unprepare(core
->parent
);
1266 static bool clk_ignore_unused
;
1267 static int __init
clk_ignore_unused_setup(char *__unused
)
1269 clk_ignore_unused
= true;
1272 __setup("clk_ignore_unused", clk_ignore_unused_setup
);
1274 static int clk_disable_unused(void)
1276 struct clk_core
*core
;
1278 if (clk_ignore_unused
) {
1279 pr_warn("clk: Not disabling unused clocks\n");
1285 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1286 clk_disable_unused_subtree(core
);
1288 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1289 clk_disable_unused_subtree(core
);
1291 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1292 clk_unprepare_unused_subtree(core
);
1294 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1295 clk_unprepare_unused_subtree(core
);
1297 clk_prepare_unlock();
1301 late_initcall_sync(clk_disable_unused
);
1303 static int clk_core_determine_round_nolock(struct clk_core
*core
,
1304 struct clk_rate_request
*req
)
1308 lockdep_assert_held(&prepare_lock
);
1314 * At this point, core protection will be disabled if
1315 * - if the provider is not protected at all
1316 * - if the calling consumer is the only one which has exclusivity
1319 if (clk_core_rate_is_protected(core
)) {
1320 req
->rate
= core
->rate
;
1321 } else if (core
->ops
->determine_rate
) {
1322 return core
->ops
->determine_rate(core
->hw
, req
);
1323 } else if (core
->ops
->round_rate
) {
1324 rate
= core
->ops
->round_rate(core
->hw
, req
->rate
,
1325 &req
->best_parent_rate
);
1337 static void clk_core_init_rate_req(struct clk_core
* const core
,
1338 struct clk_rate_request
*req
)
1340 struct clk_core
*parent
;
1342 if (WARN_ON(!core
|| !req
))
1345 parent
= core
->parent
;
1347 req
->best_parent_hw
= parent
->hw
;
1348 req
->best_parent_rate
= parent
->rate
;
1350 req
->best_parent_hw
= NULL
;
1351 req
->best_parent_rate
= 0;
1355 static bool clk_core_can_round(struct clk_core
* const core
)
1357 return core
->ops
->determine_rate
|| core
->ops
->round_rate
;
1360 static int clk_core_round_rate_nolock(struct clk_core
*core
,
1361 struct clk_rate_request
*req
)
1363 lockdep_assert_held(&prepare_lock
);
1370 clk_core_init_rate_req(core
, req
);
1372 if (clk_core_can_round(core
))
1373 return clk_core_determine_round_nolock(core
, req
);
1374 else if (core
->flags
& CLK_SET_RATE_PARENT
)
1375 return clk_core_round_rate_nolock(core
->parent
, req
);
1377 req
->rate
= core
->rate
;
1382 * __clk_determine_rate - get the closest rate actually supported by a clock
1383 * @hw: determine the rate of this clock
1384 * @req: target rate request
1386 * Useful for clk_ops such as .set_rate and .determine_rate.
1388 int __clk_determine_rate(struct clk_hw
*hw
, struct clk_rate_request
*req
)
1395 return clk_core_round_rate_nolock(hw
->core
, req
);
1397 EXPORT_SYMBOL_GPL(__clk_determine_rate
);
1399 unsigned long clk_hw_round_rate(struct clk_hw
*hw
, unsigned long rate
)
1402 struct clk_rate_request req
;
1404 clk_core_get_boundaries(hw
->core
, &req
.min_rate
, &req
.max_rate
);
1407 ret
= clk_core_round_rate_nolock(hw
->core
, &req
);
1413 EXPORT_SYMBOL_GPL(clk_hw_round_rate
);
1416 * clk_round_rate - round the given rate for a clk
1417 * @clk: the clk for which we are rounding a rate
1418 * @rate: the rate which is to be rounded
1420 * Takes in a rate as input and rounds it to a rate that the clk can actually
1421 * use which is then returned. If clk doesn't support round_rate operation
1422 * then the parent rate is returned.
1424 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
1426 struct clk_rate_request req
;
1434 if (clk
->exclusive_count
)
1435 clk_core_rate_unprotect(clk
->core
);
1437 clk_core_get_boundaries(clk
->core
, &req
.min_rate
, &req
.max_rate
);
1440 ret
= clk_core_round_rate_nolock(clk
->core
, &req
);
1442 if (clk
->exclusive_count
)
1443 clk_core_rate_protect(clk
->core
);
1445 clk_prepare_unlock();
1452 EXPORT_SYMBOL_GPL(clk_round_rate
);
1455 * __clk_notify - call clk notifier chain
1456 * @core: clk that is changing rate
1457 * @msg: clk notifier type (see include/linux/clk.h)
1458 * @old_rate: old clk rate
1459 * @new_rate: new clk rate
1461 * Triggers a notifier call chain on the clk rate-change notification
1462 * for 'clk'. Passes a pointer to the struct clk and the previous
1463 * and current rates to the notifier callback. Intended to be called by
1464 * internal clock code only. Returns NOTIFY_DONE from the last driver
1465 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1466 * a driver returns that.
1468 static int __clk_notify(struct clk_core
*core
, unsigned long msg
,
1469 unsigned long old_rate
, unsigned long new_rate
)
1471 struct clk_notifier
*cn
;
1472 struct clk_notifier_data cnd
;
1473 int ret
= NOTIFY_DONE
;
1475 cnd
.old_rate
= old_rate
;
1476 cnd
.new_rate
= new_rate
;
1478 list_for_each_entry(cn
, &clk_notifier_list
, node
) {
1479 if (cn
->clk
->core
== core
) {
1481 ret
= srcu_notifier_call_chain(&cn
->notifier_head
, msg
,
1483 if (ret
& NOTIFY_STOP_MASK
)
1492 * __clk_recalc_accuracies
1493 * @core: first clk in the subtree
1495 * Walks the subtree of clks starting with clk and recalculates accuracies as
1496 * it goes. Note that if a clk does not implement the .recalc_accuracy
1497 * callback then it is assumed that the clock will take on the accuracy of its
1500 static void __clk_recalc_accuracies(struct clk_core
*core
)
1502 unsigned long parent_accuracy
= 0;
1503 struct clk_core
*child
;
1505 lockdep_assert_held(&prepare_lock
);
1508 parent_accuracy
= core
->parent
->accuracy
;
1510 if (core
->ops
->recalc_accuracy
)
1511 core
->accuracy
= core
->ops
->recalc_accuracy(core
->hw
,
1514 core
->accuracy
= parent_accuracy
;
1516 hlist_for_each_entry(child
, &core
->children
, child_node
)
1517 __clk_recalc_accuracies(child
);
1520 static long clk_core_get_accuracy(struct clk_core
*core
)
1522 unsigned long accuracy
;
1525 if (core
&& (core
->flags
& CLK_GET_ACCURACY_NOCACHE
))
1526 __clk_recalc_accuracies(core
);
1528 accuracy
= __clk_get_accuracy(core
);
1529 clk_prepare_unlock();
1535 * clk_get_accuracy - return the accuracy of clk
1536 * @clk: the clk whose accuracy is being returned
1538 * Simply returns the cached accuracy of the clk, unless
1539 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1541 * If clk is NULL then returns 0.
1543 long clk_get_accuracy(struct clk
*clk
)
1548 return clk_core_get_accuracy(clk
->core
);
1550 EXPORT_SYMBOL_GPL(clk_get_accuracy
);
1552 static unsigned long clk_recalc(struct clk_core
*core
,
1553 unsigned long parent_rate
)
1555 unsigned long rate
= parent_rate
;
1557 if (core
->ops
->recalc_rate
&& !clk_pm_runtime_get(core
)) {
1558 rate
= core
->ops
->recalc_rate(core
->hw
, parent_rate
);
1559 clk_pm_runtime_put(core
);
1565 * __clk_recalc_rates
1566 * @core: first clk in the subtree
1567 * @msg: notification type (see include/linux/clk.h)
1569 * Walks the subtree of clks starting with clk and recalculates rates as it
1570 * goes. Note that if a clk does not implement the .recalc_rate callback then
1571 * it is assumed that the clock will take on the rate of its parent.
1573 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1576 static void __clk_recalc_rates(struct clk_core
*core
, unsigned long msg
)
1578 unsigned long old_rate
;
1579 unsigned long parent_rate
= 0;
1580 struct clk_core
*child
;
1582 lockdep_assert_held(&prepare_lock
);
1584 old_rate
= core
->rate
;
1587 parent_rate
= core
->parent
->rate
;
1589 core
->rate
= clk_recalc(core
, parent_rate
);
1592 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1593 * & ABORT_RATE_CHANGE notifiers
1595 if (core
->notifier_count
&& msg
)
1596 __clk_notify(core
, msg
, old_rate
, core
->rate
);
1598 hlist_for_each_entry(child
, &core
->children
, child_node
)
1599 __clk_recalc_rates(child
, msg
);
1602 static unsigned long clk_core_get_rate(struct clk_core
*core
)
1608 if (core
&& (core
->flags
& CLK_GET_RATE_NOCACHE
))
1609 __clk_recalc_rates(core
, 0);
1611 rate
= clk_core_get_rate_nolock(core
);
1612 clk_prepare_unlock();
1618 * clk_get_rate - return the rate of clk
1619 * @clk: the clk whose rate is being returned
1621 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1622 * is set, which means a recalc_rate will be issued.
1623 * If clk is NULL then returns 0.
1625 unsigned long clk_get_rate(struct clk
*clk
)
1630 return clk_core_get_rate(clk
->core
);
1632 EXPORT_SYMBOL_GPL(clk_get_rate
);
1634 static int clk_fetch_parent_index(struct clk_core
*core
,
1635 struct clk_core
*parent
)
1642 for (i
= 0; i
< core
->num_parents
; i
++) {
1643 /* Found it first try! */
1644 if (core
->parents
[i
].core
== parent
)
1647 /* Something else is here, so keep looking */
1648 if (core
->parents
[i
].core
)
1651 /* Maybe core hasn't been cached but the hw is all we know? */
1652 if (core
->parents
[i
].hw
) {
1653 if (core
->parents
[i
].hw
== parent
->hw
)
1656 /* Didn't match, but we're expecting a clk_hw */
1660 /* Maybe it hasn't been cached (clk_set_parent() path) */
1661 if (parent
== clk_core_get(core
, i
))
1664 /* Fallback to comparing globally unique names */
1665 if (core
->parents
[i
].name
&&
1666 !strcmp(parent
->name
, core
->parents
[i
].name
))
1670 if (i
== core
->num_parents
)
1673 core
->parents
[i
].core
= parent
;
1678 * Update the orphan status of @core and all its children.
1680 static void clk_core_update_orphan_status(struct clk_core
*core
, bool is_orphan
)
1682 struct clk_core
*child
;
1684 core
->orphan
= is_orphan
;
1686 hlist_for_each_entry(child
, &core
->children
, child_node
)
1687 clk_core_update_orphan_status(child
, is_orphan
);
1690 static void clk_reparent(struct clk_core
*core
, struct clk_core
*new_parent
)
1692 bool was_orphan
= core
->orphan
;
1694 hlist_del(&core
->child_node
);
1697 bool becomes_orphan
= new_parent
->orphan
;
1699 /* avoid duplicate POST_RATE_CHANGE notifications */
1700 if (new_parent
->new_child
== core
)
1701 new_parent
->new_child
= NULL
;
1703 hlist_add_head(&core
->child_node
, &new_parent
->children
);
1705 if (was_orphan
!= becomes_orphan
)
1706 clk_core_update_orphan_status(core
, becomes_orphan
);
1708 hlist_add_head(&core
->child_node
, &clk_orphan_list
);
1710 clk_core_update_orphan_status(core
, true);
1713 core
->parent
= new_parent
;
1716 static struct clk_core
*__clk_set_parent_before(struct clk_core
*core
,
1717 struct clk_core
*parent
)
1719 unsigned long flags
;
1720 struct clk_core
*old_parent
= core
->parent
;
1723 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1725 * 2. Migrate prepare state between parents and prevent race with
1728 * If the clock is not prepared, then a race with
1729 * clk_enable/disable() is impossible since we already have the
1730 * prepare lock (future calls to clk_enable() need to be preceded by
1733 * If the clock is prepared, migrate the prepared state to the new
1734 * parent and also protect against a race with clk_enable() by
1735 * forcing the clock and the new parent on. This ensures that all
1736 * future calls to clk_enable() are practically NOPs with respect to
1737 * hardware and software states.
1739 * See also: Comment for clk_set_parent() below.
1742 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1743 if (core
->flags
& CLK_OPS_PARENT_ENABLE
) {
1744 clk_core_prepare_enable(old_parent
);
1745 clk_core_prepare_enable(parent
);
1748 /* migrate prepare count if > 0 */
1749 if (core
->prepare_count
) {
1750 clk_core_prepare_enable(parent
);
1751 clk_core_enable_lock(core
);
1754 /* update the clk tree topology */
1755 flags
= clk_enable_lock();
1756 clk_reparent(core
, parent
);
1757 clk_enable_unlock(flags
);
1762 static void __clk_set_parent_after(struct clk_core
*core
,
1763 struct clk_core
*parent
,
1764 struct clk_core
*old_parent
)
1767 * Finish the migration of prepare state and undo the changes done
1768 * for preventing a race with clk_enable().
1770 if (core
->prepare_count
) {
1771 clk_core_disable_lock(core
);
1772 clk_core_disable_unprepare(old_parent
);
1775 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1776 if (core
->flags
& CLK_OPS_PARENT_ENABLE
) {
1777 clk_core_disable_unprepare(parent
);
1778 clk_core_disable_unprepare(old_parent
);
1782 static int __clk_set_parent(struct clk_core
*core
, struct clk_core
*parent
,
1785 unsigned long flags
;
1787 struct clk_core
*old_parent
;
1789 old_parent
= __clk_set_parent_before(core
, parent
);
1791 trace_clk_set_parent(core
, parent
);
1793 /* change clock input source */
1794 if (parent
&& core
->ops
->set_parent
)
1795 ret
= core
->ops
->set_parent(core
->hw
, p_index
);
1797 trace_clk_set_parent_complete(core
, parent
);
1800 flags
= clk_enable_lock();
1801 clk_reparent(core
, old_parent
);
1802 clk_enable_unlock(flags
);
1803 __clk_set_parent_after(core
, old_parent
, parent
);
1808 __clk_set_parent_after(core
, parent
, old_parent
);
1814 * __clk_speculate_rates
1815 * @core: first clk in the subtree
1816 * @parent_rate: the "future" rate of clk's parent
1818 * Walks the subtree of clks starting with clk, speculating rates as it
1819 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1821 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1822 * pre-rate change notifications and returns early if no clks in the
1823 * subtree have subscribed to the notifications. Note that if a clk does not
1824 * implement the .recalc_rate callback then it is assumed that the clock will
1825 * take on the rate of its parent.
1827 static int __clk_speculate_rates(struct clk_core
*core
,
1828 unsigned long parent_rate
)
1830 struct clk_core
*child
;
1831 unsigned long new_rate
;
1832 int ret
= NOTIFY_DONE
;
1834 lockdep_assert_held(&prepare_lock
);
1836 new_rate
= clk_recalc(core
, parent_rate
);
1838 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
1839 if (core
->notifier_count
)
1840 ret
= __clk_notify(core
, PRE_RATE_CHANGE
, core
->rate
, new_rate
);
1842 if (ret
& NOTIFY_STOP_MASK
) {
1843 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
1844 __func__
, core
->name
, ret
);
1848 hlist_for_each_entry(child
, &core
->children
, child_node
) {
1849 ret
= __clk_speculate_rates(child
, new_rate
);
1850 if (ret
& NOTIFY_STOP_MASK
)
1858 static void clk_calc_subtree(struct clk_core
*core
, unsigned long new_rate
,
1859 struct clk_core
*new_parent
, u8 p_index
)
1861 struct clk_core
*child
;
1863 core
->new_rate
= new_rate
;
1864 core
->new_parent
= new_parent
;
1865 core
->new_parent_index
= p_index
;
1866 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1867 core
->new_child
= NULL
;
1868 if (new_parent
&& new_parent
!= core
->parent
)
1869 new_parent
->new_child
= core
;
1871 hlist_for_each_entry(child
, &core
->children
, child_node
) {
1872 child
->new_rate
= clk_recalc(child
, new_rate
);
1873 clk_calc_subtree(child
, child
->new_rate
, NULL
, 0);
1878 * calculate the new rates returning the topmost clock that has to be
1881 static struct clk_core
*clk_calc_new_rates(struct clk_core
*core
,
1884 struct clk_core
*top
= core
;
1885 struct clk_core
*old_parent
, *parent
;
1886 unsigned long best_parent_rate
= 0;
1887 unsigned long new_rate
;
1888 unsigned long min_rate
;
1889 unsigned long max_rate
;
1894 if (IS_ERR_OR_NULL(core
))
1897 /* save parent rate, if it exists */
1898 parent
= old_parent
= core
->parent
;
1900 best_parent_rate
= parent
->rate
;
1902 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
1904 /* find the closest rate and parent clk/rate */
1905 if (clk_core_can_round(core
)) {
1906 struct clk_rate_request req
;
1909 req
.min_rate
= min_rate
;
1910 req
.max_rate
= max_rate
;
1912 clk_core_init_rate_req(core
, &req
);
1914 ret
= clk_core_determine_round_nolock(core
, &req
);
1918 best_parent_rate
= req
.best_parent_rate
;
1919 new_rate
= req
.rate
;
1920 parent
= req
.best_parent_hw
? req
.best_parent_hw
->core
: NULL
;
1922 if (new_rate
< min_rate
|| new_rate
> max_rate
)
1924 } else if (!parent
|| !(core
->flags
& CLK_SET_RATE_PARENT
)) {
1925 /* pass-through clock without adjustable parent */
1926 core
->new_rate
= core
->rate
;
1929 /* pass-through clock with adjustable parent */
1930 top
= clk_calc_new_rates(parent
, rate
);
1931 new_rate
= parent
->new_rate
;
1935 /* some clocks must be gated to change parent */
1936 if (parent
!= old_parent
&&
1937 (core
->flags
& CLK_SET_PARENT_GATE
) && core
->prepare_count
) {
1938 pr_debug("%s: %s not gated but wants to reparent\n",
1939 __func__
, core
->name
);
1943 /* try finding the new parent index */
1944 if (parent
&& core
->num_parents
> 1) {
1945 p_index
= clk_fetch_parent_index(core
, parent
);
1947 pr_debug("%s: clk %s can not be parent of clk %s\n",
1948 __func__
, parent
->name
, core
->name
);
1953 if ((core
->flags
& CLK_SET_RATE_PARENT
) && parent
&&
1954 best_parent_rate
!= parent
->rate
)
1955 top
= clk_calc_new_rates(parent
, best_parent_rate
);
1958 clk_calc_subtree(core
, new_rate
, parent
, p_index
);
1964 * Notify about rate changes in a subtree. Always walk down the whole tree
1965 * so that in case of an error we can walk down the whole tree again and
1968 static struct clk_core
*clk_propagate_rate_change(struct clk_core
*core
,
1969 unsigned long event
)
1971 struct clk_core
*child
, *tmp_clk
, *fail_clk
= NULL
;
1972 int ret
= NOTIFY_DONE
;
1974 if (core
->rate
== core
->new_rate
)
1977 if (core
->notifier_count
) {
1978 ret
= __clk_notify(core
, event
, core
->rate
, core
->new_rate
);
1979 if (ret
& NOTIFY_STOP_MASK
)
1983 hlist_for_each_entry(child
, &core
->children
, child_node
) {
1984 /* Skip children who will be reparented to another clock */
1985 if (child
->new_parent
&& child
->new_parent
!= core
)
1987 tmp_clk
= clk_propagate_rate_change(child
, event
);
1992 /* handle the new child who might not be in core->children yet */
1993 if (core
->new_child
) {
1994 tmp_clk
= clk_propagate_rate_change(core
->new_child
, event
);
2003 * walk down a subtree and set the new rates notifying the rate
2006 static void clk_change_rate(struct clk_core
*core
)
2008 struct clk_core
*child
;
2009 struct hlist_node
*tmp
;
2010 unsigned long old_rate
;
2011 unsigned long best_parent_rate
= 0;
2012 bool skip_set_rate
= false;
2013 struct clk_core
*old_parent
;
2014 struct clk_core
*parent
= NULL
;
2016 old_rate
= core
->rate
;
2018 if (core
->new_parent
) {
2019 parent
= core
->new_parent
;
2020 best_parent_rate
= core
->new_parent
->rate
;
2021 } else if (core
->parent
) {
2022 parent
= core
->parent
;
2023 best_parent_rate
= core
->parent
->rate
;
2026 if (clk_pm_runtime_get(core
))
2029 if (core
->flags
& CLK_SET_RATE_UNGATE
) {
2030 unsigned long flags
;
2032 clk_core_prepare(core
);
2033 flags
= clk_enable_lock();
2034 clk_core_enable(core
);
2035 clk_enable_unlock(flags
);
2038 if (core
->new_parent
&& core
->new_parent
!= core
->parent
) {
2039 old_parent
= __clk_set_parent_before(core
, core
->new_parent
);
2040 trace_clk_set_parent(core
, core
->new_parent
);
2042 if (core
->ops
->set_rate_and_parent
) {
2043 skip_set_rate
= true;
2044 core
->ops
->set_rate_and_parent(core
->hw
, core
->new_rate
,
2046 core
->new_parent_index
);
2047 } else if (core
->ops
->set_parent
) {
2048 core
->ops
->set_parent(core
->hw
, core
->new_parent_index
);
2051 trace_clk_set_parent_complete(core
, core
->new_parent
);
2052 __clk_set_parent_after(core
, core
->new_parent
, old_parent
);
2055 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
2056 clk_core_prepare_enable(parent
);
2058 trace_clk_set_rate(core
, core
->new_rate
);
2060 if (!skip_set_rate
&& core
->ops
->set_rate
)
2061 core
->ops
->set_rate(core
->hw
, core
->new_rate
, best_parent_rate
);
2063 trace_clk_set_rate_complete(core
, core
->new_rate
);
2065 core
->rate
= clk_recalc(core
, best_parent_rate
);
2067 if (core
->flags
& CLK_SET_RATE_UNGATE
) {
2068 unsigned long flags
;
2070 flags
= clk_enable_lock();
2071 clk_core_disable(core
);
2072 clk_enable_unlock(flags
);
2073 clk_core_unprepare(core
);
2076 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
2077 clk_core_disable_unprepare(parent
);
2079 if (core
->notifier_count
&& old_rate
!= core
->rate
)
2080 __clk_notify(core
, POST_RATE_CHANGE
, old_rate
, core
->rate
);
2082 if (core
->flags
& CLK_RECALC_NEW_RATES
)
2083 (void)clk_calc_new_rates(core
, core
->new_rate
);
2086 * Use safe iteration, as change_rate can actually swap parents
2087 * for certain clock types.
2089 hlist_for_each_entry_safe(child
, tmp
, &core
->children
, child_node
) {
2090 /* Skip children who will be reparented to another clock */
2091 if (child
->new_parent
&& child
->new_parent
!= core
)
2093 clk_change_rate(child
);
2096 /* handle the new child who might not be in core->children yet */
2097 if (core
->new_child
)
2098 clk_change_rate(core
->new_child
);
2100 clk_pm_runtime_put(core
);
2103 static unsigned long clk_core_req_round_rate_nolock(struct clk_core
*core
,
2104 unsigned long req_rate
)
2107 struct clk_rate_request req
;
2109 lockdep_assert_held(&prepare_lock
);
2114 /* simulate what the rate would be if it could be freely set */
2115 cnt
= clk_core_rate_nuke_protect(core
);
2119 clk_core_get_boundaries(core
, &req
.min_rate
, &req
.max_rate
);
2120 req
.rate
= req_rate
;
2122 ret
= clk_core_round_rate_nolock(core
, &req
);
2124 /* restore the protection */
2125 clk_core_rate_restore_protect(core
, cnt
);
2127 return ret
? 0 : req
.rate
;
2130 static int clk_core_set_rate_nolock(struct clk_core
*core
,
2131 unsigned long req_rate
)
2133 struct clk_core
*top
, *fail_clk
;
2140 rate
= clk_core_req_round_rate_nolock(core
, req_rate
);
2142 /* bail early if nothing to do */
2143 if (rate
== clk_core_get_rate_nolock(core
))
2146 /* fail on a direct rate set of a protected provider */
2147 if (clk_core_rate_is_protected(core
))
2150 /* calculate new rates and get the topmost changed clock */
2151 top
= clk_calc_new_rates(core
, req_rate
);
2155 ret
= clk_pm_runtime_get(core
);
2159 /* notify that we are about to change rates */
2160 fail_clk
= clk_propagate_rate_change(top
, PRE_RATE_CHANGE
);
2162 pr_debug("%s: failed to set %s rate\n", __func__
,
2164 clk_propagate_rate_change(top
, ABORT_RATE_CHANGE
);
2169 /* change the rates */
2170 clk_change_rate(top
);
2172 core
->req_rate
= req_rate
;
2174 clk_pm_runtime_put(core
);
2180 * clk_set_rate - specify a new rate for clk
2181 * @clk: the clk whose rate is being changed
2182 * @rate: the new rate for clk
2184 * In the simplest case clk_set_rate will only adjust the rate of clk.
2186 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2187 * propagate up to clk's parent; whether or not this happens depends on the
2188 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2189 * after calling .round_rate then upstream parent propagation is ignored. If
2190 * *parent_rate comes back with a new rate for clk's parent then we propagate
2191 * up to clk's parent and set its rate. Upward propagation will continue
2192 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2193 * .round_rate stops requesting changes to clk's parent_rate.
2195 * Rate changes are accomplished via tree traversal that also recalculates the
2196 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
2198 * Returns 0 on success, -EERROR otherwise.
2200 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
2207 /* prevent racing with updates to the clock topology */
2210 if (clk
->exclusive_count
)
2211 clk_core_rate_unprotect(clk
->core
);
2213 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2215 if (clk
->exclusive_count
)
2216 clk_core_rate_protect(clk
->core
);
2218 clk_prepare_unlock();
2222 EXPORT_SYMBOL_GPL(clk_set_rate
);
2225 * clk_set_rate_exclusive - specify a new rate and get exclusive control
2226 * @clk: the clk whose rate is being changed
2227 * @rate: the new rate for clk
2229 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2230 * within a critical section
2232 * This can be used initially to ensure that at least 1 consumer is
2233 * satisfied when several consumers are competing for exclusivity over the
2234 * same clock provider.
2236 * The exclusivity is not applied if setting the rate failed.
2238 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2239 * clk_rate_exclusive_put().
2241 * Returns 0 on success, -EERROR otherwise.
2243 int clk_set_rate_exclusive(struct clk
*clk
, unsigned long rate
)
2250 /* prevent racing with updates to the clock topology */
2254 * The temporary protection removal is not here, on purpose
2255 * This function is meant to be used instead of clk_rate_protect,
2256 * so before the consumer code path protect the clock provider
2259 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2261 clk_core_rate_protect(clk
->core
);
2262 clk
->exclusive_count
++;
2265 clk_prepare_unlock();
2269 EXPORT_SYMBOL_GPL(clk_set_rate_exclusive
);
2272 * clk_set_rate_range - set a rate range for a clock source
2273 * @clk: clock source
2274 * @min: desired minimum clock rate in Hz, inclusive
2275 * @max: desired maximum clock rate in Hz, inclusive
2277 * Returns success (0) or negative errno.
2279 int clk_set_rate_range(struct clk
*clk
, unsigned long min
, unsigned long max
)
2282 unsigned long old_min
, old_max
, rate
;
2288 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2289 __func__
, clk
->core
->name
, clk
->dev_id
, clk
->con_id
,
2296 if (clk
->exclusive_count
)
2297 clk_core_rate_unprotect(clk
->core
);
2299 /* Save the current values in case we need to rollback the change */
2300 old_min
= clk
->min_rate
;
2301 old_max
= clk
->max_rate
;
2302 clk
->min_rate
= min
;
2303 clk
->max_rate
= max
;
2305 rate
= clk_core_get_rate_nolock(clk
->core
);
2306 if (rate
< min
|| rate
> max
) {
2309 * We are in bit of trouble here, current rate is outside the
2310 * the requested range. We are going try to request appropriate
2311 * range boundary but there is a catch. It may fail for the
2312 * usual reason (clock broken, clock protected, etc) but also
2314 * - round_rate() was not favorable and fell on the wrong
2315 * side of the boundary
2316 * - the determine_rate() callback does not really check for
2317 * this corner case when determining the rate
2325 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2327 /* rollback the changes */
2328 clk
->min_rate
= old_min
;
2329 clk
->max_rate
= old_max
;
2333 if (clk
->exclusive_count
)
2334 clk_core_rate_protect(clk
->core
);
2336 clk_prepare_unlock();
2340 EXPORT_SYMBOL_GPL(clk_set_rate_range
);
2343 * clk_set_min_rate - set a minimum clock rate for a clock source
2344 * @clk: clock source
2345 * @rate: desired minimum clock rate in Hz, inclusive
2347 * Returns success (0) or negative errno.
2349 int clk_set_min_rate(struct clk
*clk
, unsigned long rate
)
2354 return clk_set_rate_range(clk
, rate
, clk
->max_rate
);
2356 EXPORT_SYMBOL_GPL(clk_set_min_rate
);
2359 * clk_set_max_rate - set a maximum clock rate for a clock source
2360 * @clk: clock source
2361 * @rate: desired maximum clock rate in Hz, inclusive
2363 * Returns success (0) or negative errno.
2365 int clk_set_max_rate(struct clk
*clk
, unsigned long rate
)
2370 return clk_set_rate_range(clk
, clk
->min_rate
, rate
);
2372 EXPORT_SYMBOL_GPL(clk_set_max_rate
);
2375 * clk_get_parent - return the parent of a clk
2376 * @clk: the clk whose parent gets returned
2378 * Simply returns clk->parent. Returns NULL if clk is NULL.
2380 struct clk
*clk_get_parent(struct clk
*clk
)
2388 /* TODO: Create a per-user clk and change callers to call clk_put */
2389 parent
= !clk
->core
->parent
? NULL
: clk
->core
->parent
->hw
->clk
;
2390 clk_prepare_unlock();
2394 EXPORT_SYMBOL_GPL(clk_get_parent
);
2396 static struct clk_core
*__clk_init_parent(struct clk_core
*core
)
2400 if (core
->num_parents
> 1 && core
->ops
->get_parent
)
2401 index
= core
->ops
->get_parent(core
->hw
);
2403 return clk_core_get_parent_by_index(core
, index
);
2406 static void clk_core_reparent(struct clk_core
*core
,
2407 struct clk_core
*new_parent
)
2409 clk_reparent(core
, new_parent
);
2410 __clk_recalc_accuracies(core
);
2411 __clk_recalc_rates(core
, POST_RATE_CHANGE
);
2414 void clk_hw_reparent(struct clk_hw
*hw
, struct clk_hw
*new_parent
)
2419 clk_core_reparent(hw
->core
, !new_parent
? NULL
: new_parent
->core
);
2423 * clk_has_parent - check if a clock is a possible parent for another
2424 * @clk: clock source
2425 * @parent: parent clock source
2427 * This function can be used in drivers that need to check that a clock can be
2428 * the parent of another without actually changing the parent.
2430 * Returns true if @parent is a possible parent for @clk, false otherwise.
2432 bool clk_has_parent(struct clk
*clk
, struct clk
*parent
)
2434 struct clk_core
*core
, *parent_core
;
2437 /* NULL clocks should be nops, so return success if either is NULL. */
2438 if (!clk
|| !parent
)
2442 parent_core
= parent
->core
;
2444 /* Optimize for the case where the parent is already the parent. */
2445 if (core
->parent
== parent_core
)
2448 for (i
= 0; i
< core
->num_parents
; i
++)
2449 if (!strcmp(core
->parents
[i
].name
, parent_core
->name
))
2454 EXPORT_SYMBOL_GPL(clk_has_parent
);
2456 static int clk_core_set_parent_nolock(struct clk_core
*core
,
2457 struct clk_core
*parent
)
2461 unsigned long p_rate
= 0;
2463 lockdep_assert_held(&prepare_lock
);
2468 if (core
->parent
== parent
)
2471 /* verify ops for multi-parent clks */
2472 if (core
->num_parents
> 1 && !core
->ops
->set_parent
)
2475 /* check that we are allowed to re-parent if the clock is in use */
2476 if ((core
->flags
& CLK_SET_PARENT_GATE
) && core
->prepare_count
)
2479 if (clk_core_rate_is_protected(core
))
2482 /* try finding the new parent index */
2484 p_index
= clk_fetch_parent_index(core
, parent
);
2486 pr_debug("%s: clk %s can not be parent of clk %s\n",
2487 __func__
, parent
->name
, core
->name
);
2490 p_rate
= parent
->rate
;
2493 ret
= clk_pm_runtime_get(core
);
2497 /* propagate PRE_RATE_CHANGE notifications */
2498 ret
= __clk_speculate_rates(core
, p_rate
);
2500 /* abort if a driver objects */
2501 if (ret
& NOTIFY_STOP_MASK
)
2504 /* do the re-parent */
2505 ret
= __clk_set_parent(core
, parent
, p_index
);
2507 /* propagate rate an accuracy recalculation accordingly */
2509 __clk_recalc_rates(core
, ABORT_RATE_CHANGE
);
2511 __clk_recalc_rates(core
, POST_RATE_CHANGE
);
2512 __clk_recalc_accuracies(core
);
2516 clk_pm_runtime_put(core
);
2521 int clk_hw_set_parent(struct clk_hw
*hw
, struct clk_hw
*parent
)
2523 return clk_core_set_parent_nolock(hw
->core
, parent
->core
);
2525 EXPORT_SYMBOL_GPL(clk_hw_set_parent
);
2528 * clk_set_parent - switch the parent of a mux clk
2529 * @clk: the mux clk whose input we are switching
2530 * @parent: the new input to clk
2532 * Re-parent clk to use parent as its new input source. If clk is in
2533 * prepared state, the clk will get enabled for the duration of this call. If
2534 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2535 * that, the reparenting is glitchy in hardware, etc), use the
2536 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2538 * After successfully changing clk's parent clk_set_parent will update the
2539 * clk topology, sysfs topology and propagate rate recalculation via
2540 * __clk_recalc_rates.
2542 * Returns 0 on success, -EERROR otherwise.
2544 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
2553 if (clk
->exclusive_count
)
2554 clk_core_rate_unprotect(clk
->core
);
2556 ret
= clk_core_set_parent_nolock(clk
->core
,
2557 parent
? parent
->core
: NULL
);
2559 if (clk
->exclusive_count
)
2560 clk_core_rate_protect(clk
->core
);
2562 clk_prepare_unlock();
2566 EXPORT_SYMBOL_GPL(clk_set_parent
);
2568 static int clk_core_set_phase_nolock(struct clk_core
*core
, int degrees
)
2572 lockdep_assert_held(&prepare_lock
);
2577 if (clk_core_rate_is_protected(core
))
2580 trace_clk_set_phase(core
, degrees
);
2582 if (core
->ops
->set_phase
) {
2583 ret
= core
->ops
->set_phase(core
->hw
, degrees
);
2585 core
->phase
= degrees
;
2588 trace_clk_set_phase_complete(core
, degrees
);
2594 * clk_set_phase - adjust the phase shift of a clock signal
2595 * @clk: clock signal source
2596 * @degrees: number of degrees the signal is shifted
2598 * Shifts the phase of a clock signal by the specified
2599 * degrees. Returns 0 on success, -EERROR otherwise.
2601 * This function makes no distinction about the input or reference
2602 * signal that we adjust the clock signal phase against. For example
2603 * phase locked-loop clock signal generators we may shift phase with
2604 * respect to feedback clock signal input, but for other cases the
2605 * clock phase may be shifted with respect to some other, unspecified
2608 * Additionally the concept of phase shift does not propagate through
2609 * the clock tree hierarchy, which sets it apart from clock rates and
2610 * clock accuracy. A parent clock phase attribute does not have an
2611 * impact on the phase attribute of a child clock.
2613 int clk_set_phase(struct clk
*clk
, int degrees
)
2620 /* sanity check degrees */
2627 if (clk
->exclusive_count
)
2628 clk_core_rate_unprotect(clk
->core
);
2630 ret
= clk_core_set_phase_nolock(clk
->core
, degrees
);
2632 if (clk
->exclusive_count
)
2633 clk_core_rate_protect(clk
->core
);
2635 clk_prepare_unlock();
2639 EXPORT_SYMBOL_GPL(clk_set_phase
);
2641 static int clk_core_get_phase(struct clk_core
*core
)
2646 /* Always try to update cached phase if possible */
2647 if (core
->ops
->get_phase
)
2648 core
->phase
= core
->ops
->get_phase(core
->hw
);
2650 clk_prepare_unlock();
2656 * clk_get_phase - return the phase shift of a clock signal
2657 * @clk: clock signal source
2659 * Returns the phase shift of a clock node in degrees, otherwise returns
2662 int clk_get_phase(struct clk
*clk
)
2667 return clk_core_get_phase(clk
->core
);
2669 EXPORT_SYMBOL_GPL(clk_get_phase
);
2671 static void clk_core_reset_duty_cycle_nolock(struct clk_core
*core
)
2673 /* Assume a default value of 50% */
2678 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core
*core
);
2680 static int clk_core_update_duty_cycle_nolock(struct clk_core
*core
)
2682 struct clk_duty
*duty
= &core
->duty
;
2685 if (!core
->ops
->get_duty_cycle
)
2686 return clk_core_update_duty_cycle_parent_nolock(core
);
2688 ret
= core
->ops
->get_duty_cycle(core
->hw
, duty
);
2692 /* Don't trust the clock provider too much */
2693 if (duty
->den
== 0 || duty
->num
> duty
->den
) {
2701 clk_core_reset_duty_cycle_nolock(core
);
2705 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core
*core
)
2710 core
->flags
& CLK_DUTY_CYCLE_PARENT
) {
2711 ret
= clk_core_update_duty_cycle_nolock(core
->parent
);
2712 memcpy(&core
->duty
, &core
->parent
->duty
, sizeof(core
->duty
));
2714 clk_core_reset_duty_cycle_nolock(core
);
2720 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core
*core
,
2721 struct clk_duty
*duty
);
2723 static int clk_core_set_duty_cycle_nolock(struct clk_core
*core
,
2724 struct clk_duty
*duty
)
2728 lockdep_assert_held(&prepare_lock
);
2730 if (clk_core_rate_is_protected(core
))
2733 trace_clk_set_duty_cycle(core
, duty
);
2735 if (!core
->ops
->set_duty_cycle
)
2736 return clk_core_set_duty_cycle_parent_nolock(core
, duty
);
2738 ret
= core
->ops
->set_duty_cycle(core
->hw
, duty
);
2740 memcpy(&core
->duty
, duty
, sizeof(*duty
));
2742 trace_clk_set_duty_cycle_complete(core
, duty
);
2747 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core
*core
,
2748 struct clk_duty
*duty
)
2753 core
->flags
& (CLK_DUTY_CYCLE_PARENT
| CLK_SET_RATE_PARENT
)) {
2754 ret
= clk_core_set_duty_cycle_nolock(core
->parent
, duty
);
2755 memcpy(&core
->duty
, &core
->parent
->duty
, sizeof(core
->duty
));
2762 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
2763 * @clk: clock signal source
2764 * @num: numerator of the duty cycle ratio to be applied
2765 * @den: denominator of the duty cycle ratio to be applied
2767 * Apply the duty cycle ratio if the ratio is valid and the clock can
2768 * perform this operation
2770 * Returns (0) on success, a negative errno otherwise.
2772 int clk_set_duty_cycle(struct clk
*clk
, unsigned int num
, unsigned int den
)
2775 struct clk_duty duty
;
2780 /* sanity check the ratio */
2781 if (den
== 0 || num
> den
)
2789 if (clk
->exclusive_count
)
2790 clk_core_rate_unprotect(clk
->core
);
2792 ret
= clk_core_set_duty_cycle_nolock(clk
->core
, &duty
);
2794 if (clk
->exclusive_count
)
2795 clk_core_rate_protect(clk
->core
);
2797 clk_prepare_unlock();
2801 EXPORT_SYMBOL_GPL(clk_set_duty_cycle
);
2803 static int clk_core_get_scaled_duty_cycle(struct clk_core
*core
,
2806 struct clk_duty
*duty
= &core
->duty
;
2811 ret
= clk_core_update_duty_cycle_nolock(core
);
2813 ret
= mult_frac(scale
, duty
->num
, duty
->den
);
2815 clk_prepare_unlock();
2821 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
2822 * @clk: clock signal source
2823 * @scale: scaling factor to be applied to represent the ratio as an integer
2825 * Returns the duty cycle ratio of a clock node multiplied by the provided
2826 * scaling factor, or negative errno on error.
2828 int clk_get_scaled_duty_cycle(struct clk
*clk
, unsigned int scale
)
2833 return clk_core_get_scaled_duty_cycle(clk
->core
, scale
);
2835 EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle
);
2838 * clk_is_match - check if two clk's point to the same hardware clock
2839 * @p: clk compared against q
2840 * @q: clk compared against p
2842 * Returns true if the two struct clk pointers both point to the same hardware
2843 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2844 * share the same struct clk_core object.
2846 * Returns false otherwise. Note that two NULL clks are treated as matching.
2848 bool clk_is_match(const struct clk
*p
, const struct clk
*q
)
2850 /* trivial case: identical struct clk's or both NULL */
2854 /* true if clk->core pointers match. Avoid dereferencing garbage */
2855 if (!IS_ERR_OR_NULL(p
) && !IS_ERR_OR_NULL(q
))
2856 if (p
->core
== q
->core
)
2861 EXPORT_SYMBOL_GPL(clk_is_match
);
2863 /*** debugfs support ***/
2865 #ifdef CONFIG_DEBUG_FS
2866 #include <linux/debugfs.h>
2868 static struct dentry
*rootdir
;
2869 static int inited
= 0;
2870 static DEFINE_MUTEX(clk_debug_lock
);
2871 static HLIST_HEAD(clk_debug_list
);
2873 static struct hlist_head
*orphan_list
[] = {
2878 static void clk_summary_show_one(struct seq_file
*s
, struct clk_core
*c
,
2881 seq_printf(s
, "%*s%-*s %7d %8d %8d %11lu %10lu %5d %6d\n",
2883 30 - level
* 3, c
->name
,
2884 c
->enable_count
, c
->prepare_count
, c
->protect_count
,
2885 clk_core_get_rate(c
), clk_core_get_accuracy(c
),
2886 clk_core_get_phase(c
),
2887 clk_core_get_scaled_duty_cycle(c
, 100000));
2890 static void clk_summary_show_subtree(struct seq_file
*s
, struct clk_core
*c
,
2893 struct clk_core
*child
;
2895 clk_summary_show_one(s
, c
, level
);
2897 hlist_for_each_entry(child
, &c
->children
, child_node
)
2898 clk_summary_show_subtree(s
, child
, level
+ 1);
2901 static int clk_summary_show(struct seq_file
*s
, void *data
)
2904 struct hlist_head
**lists
= (struct hlist_head
**)s
->private;
2906 seq_puts(s
, " enable prepare protect duty\n");
2907 seq_puts(s
, " clock count count count rate accuracy phase cycle\n");
2908 seq_puts(s
, "---------------------------------------------------------------------------------------------\n");
2912 for (; *lists
; lists
++)
2913 hlist_for_each_entry(c
, *lists
, child_node
)
2914 clk_summary_show_subtree(s
, c
, 0);
2916 clk_prepare_unlock();
2920 DEFINE_SHOW_ATTRIBUTE(clk_summary
);
2922 static void clk_dump_one(struct seq_file
*s
, struct clk_core
*c
, int level
)
2924 unsigned long min_rate
, max_rate
;
2926 clk_core_get_boundaries(c
, &min_rate
, &max_rate
);
2928 /* This should be JSON format, i.e. elements separated with a comma */
2929 seq_printf(s
, "\"%s\": { ", c
->name
);
2930 seq_printf(s
, "\"enable_count\": %d,", c
->enable_count
);
2931 seq_printf(s
, "\"prepare_count\": %d,", c
->prepare_count
);
2932 seq_printf(s
, "\"protect_count\": %d,", c
->protect_count
);
2933 seq_printf(s
, "\"rate\": %lu,", clk_core_get_rate(c
));
2934 seq_printf(s
, "\"min_rate\": %lu,", min_rate
);
2935 seq_printf(s
, "\"max_rate\": %lu,", max_rate
);
2936 seq_printf(s
, "\"accuracy\": %lu,", clk_core_get_accuracy(c
));
2937 seq_printf(s
, "\"phase\": %d,", clk_core_get_phase(c
));
2938 seq_printf(s
, "\"duty_cycle\": %u",
2939 clk_core_get_scaled_duty_cycle(c
, 100000));
2942 static void clk_dump_subtree(struct seq_file
*s
, struct clk_core
*c
, int level
)
2944 struct clk_core
*child
;
2946 clk_dump_one(s
, c
, level
);
2948 hlist_for_each_entry(child
, &c
->children
, child_node
) {
2950 clk_dump_subtree(s
, child
, level
+ 1);
2956 static int clk_dump_show(struct seq_file
*s
, void *data
)
2959 bool first_node
= true;
2960 struct hlist_head
**lists
= (struct hlist_head
**)s
->private;
2965 for (; *lists
; lists
++) {
2966 hlist_for_each_entry(c
, *lists
, child_node
) {
2970 clk_dump_subtree(s
, c
, 0);
2974 clk_prepare_unlock();
2979 DEFINE_SHOW_ATTRIBUTE(clk_dump
);
2981 static const struct {
2985 #define ENTRY(f) { f, #f }
2986 ENTRY(CLK_SET_RATE_GATE
),
2987 ENTRY(CLK_SET_PARENT_GATE
),
2988 ENTRY(CLK_SET_RATE_PARENT
),
2989 ENTRY(CLK_IGNORE_UNUSED
),
2990 ENTRY(CLK_GET_RATE_NOCACHE
),
2991 ENTRY(CLK_SET_RATE_NO_REPARENT
),
2992 ENTRY(CLK_GET_ACCURACY_NOCACHE
),
2993 ENTRY(CLK_RECALC_NEW_RATES
),
2994 ENTRY(CLK_SET_RATE_UNGATE
),
2995 ENTRY(CLK_IS_CRITICAL
),
2996 ENTRY(CLK_OPS_PARENT_ENABLE
),
2997 ENTRY(CLK_DUTY_CYCLE_PARENT
),
3001 static int clk_flags_show(struct seq_file
*s
, void *data
)
3003 struct clk_core
*core
= s
->private;
3004 unsigned long flags
= core
->flags
;
3007 for (i
= 0; flags
&& i
< ARRAY_SIZE(clk_flags
); i
++) {
3008 if (flags
& clk_flags
[i
].flag
) {
3009 seq_printf(s
, "%s\n", clk_flags
[i
].name
);
3010 flags
&= ~clk_flags
[i
].flag
;
3015 seq_printf(s
, "0x%lx\n", flags
);
3020 DEFINE_SHOW_ATTRIBUTE(clk_flags
);
3022 static void possible_parent_show(struct seq_file
*s
, struct clk_core
*core
,
3023 unsigned int i
, char terminator
)
3025 struct clk_core
*parent
;
3028 * Go through the following options to fetch a parent's name.
3030 * 1. Fetch the registered parent clock and use its name
3031 * 2. Use the global (fallback) name if specified
3032 * 3. Use the local fw_name if provided
3033 * 4. Fetch parent clock's clock-output-name if DT index was set
3035 * This may still fail in some cases, such as when the parent is
3036 * specified directly via a struct clk_hw pointer, but it isn't
3039 parent
= clk_core_get_parent_by_index(core
, i
);
3041 seq_puts(s
, parent
->name
);
3042 else if (core
->parents
[i
].name
)
3043 seq_puts(s
, core
->parents
[i
].name
);
3044 else if (core
->parents
[i
].fw_name
)
3045 seq_printf(s
, "<%s>(fw)", core
->parents
[i
].fw_name
);
3046 else if (core
->parents
[i
].index
>= 0)
3048 of_clk_get_parent_name(core
->of_node
,
3049 core
->parents
[i
].index
));
3051 seq_puts(s
, "(missing)");
3053 seq_putc(s
, terminator
);
3056 static int possible_parents_show(struct seq_file
*s
, void *data
)
3058 struct clk_core
*core
= s
->private;
3061 for (i
= 0; i
< core
->num_parents
- 1; i
++)
3062 possible_parent_show(s
, core
, i
, ' ');
3064 possible_parent_show(s
, core
, i
, '\n');
3068 DEFINE_SHOW_ATTRIBUTE(possible_parents
);
3070 static int current_parent_show(struct seq_file
*s
, void *data
)
3072 struct clk_core
*core
= s
->private;
3075 seq_printf(s
, "%s\n", core
->parent
->name
);
3079 DEFINE_SHOW_ATTRIBUTE(current_parent
);
3081 static int clk_duty_cycle_show(struct seq_file
*s
, void *data
)
3083 struct clk_core
*core
= s
->private;
3084 struct clk_duty
*duty
= &core
->duty
;
3086 seq_printf(s
, "%u/%u\n", duty
->num
, duty
->den
);
3090 DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle
);
3092 static int clk_min_rate_show(struct seq_file
*s
, void *data
)
3094 struct clk_core
*core
= s
->private;
3095 unsigned long min_rate
, max_rate
;
3098 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
3099 clk_prepare_unlock();
3100 seq_printf(s
, "%lu\n", min_rate
);
3104 DEFINE_SHOW_ATTRIBUTE(clk_min_rate
);
3106 static int clk_max_rate_show(struct seq_file
*s
, void *data
)
3108 struct clk_core
*core
= s
->private;
3109 unsigned long min_rate
, max_rate
;
3112 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
3113 clk_prepare_unlock();
3114 seq_printf(s
, "%lu\n", max_rate
);
3118 DEFINE_SHOW_ATTRIBUTE(clk_max_rate
);
3120 static void clk_debug_create_one(struct clk_core
*core
, struct dentry
*pdentry
)
3122 struct dentry
*root
;
3124 if (!core
|| !pdentry
)
3127 root
= debugfs_create_dir(core
->name
, pdentry
);
3128 core
->dentry
= root
;
3130 debugfs_create_ulong("clk_rate", 0444, root
, &core
->rate
);
3131 debugfs_create_file("clk_min_rate", 0444, root
, core
, &clk_min_rate_fops
);
3132 debugfs_create_file("clk_max_rate", 0444, root
, core
, &clk_max_rate_fops
);
3133 debugfs_create_ulong("clk_accuracy", 0444, root
, &core
->accuracy
);
3134 debugfs_create_u32("clk_phase", 0444, root
, &core
->phase
);
3135 debugfs_create_file("clk_flags", 0444, root
, core
, &clk_flags_fops
);
3136 debugfs_create_u32("clk_prepare_count", 0444, root
, &core
->prepare_count
);
3137 debugfs_create_u32("clk_enable_count", 0444, root
, &core
->enable_count
);
3138 debugfs_create_u32("clk_protect_count", 0444, root
, &core
->protect_count
);
3139 debugfs_create_u32("clk_notifier_count", 0444, root
, &core
->notifier_count
);
3140 debugfs_create_file("clk_duty_cycle", 0444, root
, core
,
3141 &clk_duty_cycle_fops
);
3143 if (core
->num_parents
> 0)
3144 debugfs_create_file("clk_parent", 0444, root
, core
,
3145 ¤t_parent_fops
);
3147 if (core
->num_parents
> 1)
3148 debugfs_create_file("clk_possible_parents", 0444, root
, core
,
3149 &possible_parents_fops
);
3151 if (core
->ops
->debug_init
)
3152 core
->ops
->debug_init(core
->hw
, core
->dentry
);
3156 * clk_debug_register - add a clk node to the debugfs clk directory
3157 * @core: the clk being added to the debugfs clk directory
3159 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3160 * initialized. Otherwise it bails out early since the debugfs clk directory
3161 * will be created lazily by clk_debug_init as part of a late_initcall.
3163 static void clk_debug_register(struct clk_core
*core
)
3165 mutex_lock(&clk_debug_lock
);
3166 hlist_add_head(&core
->debug_node
, &clk_debug_list
);
3168 clk_debug_create_one(core
, rootdir
);
3169 mutex_unlock(&clk_debug_lock
);
3173 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3174 * @core: the clk being removed from the debugfs clk directory
3176 * Dynamically removes a clk and all its child nodes from the
3177 * debugfs clk directory if clk->dentry points to debugfs created by
3178 * clk_debug_register in __clk_core_init.
3180 static void clk_debug_unregister(struct clk_core
*core
)
3182 mutex_lock(&clk_debug_lock
);
3183 hlist_del_init(&core
->debug_node
);
3184 debugfs_remove_recursive(core
->dentry
);
3185 core
->dentry
= NULL
;
3186 mutex_unlock(&clk_debug_lock
);
3190 * clk_debug_init - lazily populate the debugfs clk directory
3192 * clks are often initialized very early during boot before memory can be
3193 * dynamically allocated and well before debugfs is setup. This function
3194 * populates the debugfs clk directory once at boot-time when we know that
3195 * debugfs is setup. It should only be called once at boot-time, all other clks
3196 * added dynamically will be done so with clk_debug_register.
3198 static int __init
clk_debug_init(void)
3200 struct clk_core
*core
;
3202 rootdir
= debugfs_create_dir("clk", NULL
);
3204 debugfs_create_file("clk_summary", 0444, rootdir
, &all_lists
,
3206 debugfs_create_file("clk_dump", 0444, rootdir
, &all_lists
,
3208 debugfs_create_file("clk_orphan_summary", 0444, rootdir
, &orphan_list
,
3210 debugfs_create_file("clk_orphan_dump", 0444, rootdir
, &orphan_list
,
3213 mutex_lock(&clk_debug_lock
);
3214 hlist_for_each_entry(core
, &clk_debug_list
, debug_node
)
3215 clk_debug_create_one(core
, rootdir
);
3218 mutex_unlock(&clk_debug_lock
);
3222 late_initcall(clk_debug_init
);
3224 static inline void clk_debug_register(struct clk_core
*core
) { }
3225 static inline void clk_debug_reparent(struct clk_core
*core
,
3226 struct clk_core
*new_parent
)
3229 static inline void clk_debug_unregister(struct clk_core
*core
)
3235 * __clk_core_init - initialize the data structures in a struct clk_core
3236 * @core: clk_core being initialized
3238 * Initializes the lists in struct clk_core, queries the hardware for the
3239 * parent and rate and sets them both.
3241 static int __clk_core_init(struct clk_core
*core
)
3244 struct clk_core
*orphan
;
3245 struct hlist_node
*tmp2
;
3253 ret
= clk_pm_runtime_get(core
);
3257 /* check to see if a clock with this name is already registered */
3258 if (clk_core_lookup(core
->name
)) {
3259 pr_debug("%s: clk %s already initialized\n",
3260 __func__
, core
->name
);
3265 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
3266 if (core
->ops
->set_rate
&&
3267 !((core
->ops
->round_rate
|| core
->ops
->determine_rate
) &&
3268 core
->ops
->recalc_rate
)) {
3269 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3270 __func__
, core
->name
);
3275 if (core
->ops
->set_parent
&& !core
->ops
->get_parent
) {
3276 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3277 __func__
, core
->name
);
3282 if (core
->num_parents
> 1 && !core
->ops
->get_parent
) {
3283 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3284 __func__
, core
->name
);
3289 if (core
->ops
->set_rate_and_parent
&&
3290 !(core
->ops
->set_parent
&& core
->ops
->set_rate
)) {
3291 pr_err("%s: %s must implement .set_parent & .set_rate\n",
3292 __func__
, core
->name
);
3297 core
->parent
= __clk_init_parent(core
);
3300 * Populate core->parent if parent has already been clk_core_init'd. If
3301 * parent has not yet been clk_core_init'd then place clk in the orphan
3302 * list. If clk doesn't have any parents then place it in the root
3305 * Every time a new clk is clk_init'd then we walk the list of orphan
3306 * clocks and re-parent any that are children of the clock currently
3310 hlist_add_head(&core
->child_node
,
3311 &core
->parent
->children
);
3312 core
->orphan
= core
->parent
->orphan
;
3313 } else if (!core
->num_parents
) {
3314 hlist_add_head(&core
->child_node
, &clk_root_list
);
3315 core
->orphan
= false;
3317 hlist_add_head(&core
->child_node
, &clk_orphan_list
);
3318 core
->orphan
= true;
3322 * optional platform-specific magic
3324 * The .init callback is not used by any of the basic clock types, but
3325 * exists for weird hardware that must perform initialization magic.
3326 * Please consider other ways of solving initialization problems before
3327 * using this callback, as its use is discouraged.
3329 if (core
->ops
->init
)
3330 core
->ops
->init(core
->hw
);
3333 * Set clk's accuracy. The preferred method is to use
3334 * .recalc_accuracy. For simple clocks and lazy developers the default
3335 * fallback is to use the parent's accuracy. If a clock doesn't have a
3336 * parent (or is orphaned) then accuracy is set to zero (perfect
3339 if (core
->ops
->recalc_accuracy
)
3340 core
->accuracy
= core
->ops
->recalc_accuracy(core
->hw
,
3341 __clk_get_accuracy(core
->parent
));
3342 else if (core
->parent
)
3343 core
->accuracy
= core
->parent
->accuracy
;
3349 * Since a phase is by definition relative to its parent, just
3350 * query the current clock phase, or just assume it's in phase.
3352 if (core
->ops
->get_phase
)
3353 core
->phase
= core
->ops
->get_phase(core
->hw
);
3358 * Set clk's duty cycle.
3360 clk_core_update_duty_cycle_nolock(core
);
3363 * Set clk's rate. The preferred method is to use .recalc_rate. For
3364 * simple clocks and lazy developers the default fallback is to use the
3365 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3366 * then rate is set to zero.
3368 if (core
->ops
->recalc_rate
)
3369 rate
= core
->ops
->recalc_rate(core
->hw
,
3370 clk_core_get_rate_nolock(core
->parent
));
3371 else if (core
->parent
)
3372 rate
= core
->parent
->rate
;
3375 core
->rate
= core
->req_rate
= rate
;
3378 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3379 * don't get accidentally disabled when walking the orphan tree and
3380 * reparenting clocks
3382 if (core
->flags
& CLK_IS_CRITICAL
) {
3383 unsigned long flags
;
3385 clk_core_prepare(core
);
3387 flags
= clk_enable_lock();
3388 clk_core_enable(core
);
3389 clk_enable_unlock(flags
);
3393 * walk the list of orphan clocks and reparent any that newly finds a
3396 hlist_for_each_entry_safe(orphan
, tmp2
, &clk_orphan_list
, child_node
) {
3397 struct clk_core
*parent
= __clk_init_parent(orphan
);
3400 * We need to use __clk_set_parent_before() and _after() to
3401 * to properly migrate any prepare/enable count of the orphan
3402 * clock. This is important for CLK_IS_CRITICAL clocks, which
3403 * are enabled during init but might not have a parent yet.
3406 /* update the clk tree topology */
3407 __clk_set_parent_before(orphan
, parent
);
3408 __clk_set_parent_after(orphan
, parent
, NULL
);
3409 __clk_recalc_accuracies(orphan
);
3410 __clk_recalc_rates(orphan
, 0);
3414 kref_init(&core
->ref
);
3416 clk_pm_runtime_put(core
);
3418 clk_prepare_unlock();
3421 clk_debug_register(core
);
3427 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
3428 * @core: clk to add consumer to
3429 * @clk: consumer to link to a clk
3431 static void clk_core_link_consumer(struct clk_core
*core
, struct clk
*clk
)
3434 hlist_add_head(&clk
->clks_node
, &core
->clks
);
3435 clk_prepare_unlock();
3439 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
3440 * @clk: consumer to unlink
3442 static void clk_core_unlink_consumer(struct clk
*clk
)
3444 lockdep_assert_held(&prepare_lock
);
3445 hlist_del(&clk
->clks_node
);
3449 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
3450 * @core: clk to allocate a consumer for
3451 * @dev_id: string describing device name
3452 * @con_id: connection ID string on device
3454 * Returns: clk consumer left unlinked from the consumer list
3456 static struct clk
*alloc_clk(struct clk_core
*core
, const char *dev_id
,
3461 clk
= kzalloc(sizeof(*clk
), GFP_KERNEL
);
3463 return ERR_PTR(-ENOMEM
);
3466 clk
->dev_id
= dev_id
;
3467 clk
->con_id
= kstrdup_const(con_id
, GFP_KERNEL
);
3468 clk
->max_rate
= ULONG_MAX
;
3474 * free_clk - Free a clk consumer
3475 * @clk: clk consumer to free
3477 * Note, this assumes the clk has been unlinked from the clk_core consumer
3480 static void free_clk(struct clk
*clk
)
3482 kfree_const(clk
->con_id
);
3487 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
3489 * @dev: clk consumer device
3490 * @hw: clk_hw associated with the clk being consumed
3491 * @dev_id: string describing device name
3492 * @con_id: connection ID string on device
3494 * This is the main function used to create a clk pointer for use by clk
3495 * consumers. It connects a consumer to the clk_core and clk_hw structures
3496 * used by the framework and clk provider respectively.
3498 struct clk
*clk_hw_create_clk(struct device
*dev
, struct clk_hw
*hw
,
3499 const char *dev_id
, const char *con_id
)
3502 struct clk_core
*core
;
3504 /* This is to allow this function to be chained to others */
3505 if (IS_ERR_OR_NULL(hw
))
3506 return ERR_CAST(hw
);
3509 clk
= alloc_clk(core
, dev_id
, con_id
);
3514 if (!try_module_get(core
->owner
)) {
3516 return ERR_PTR(-ENOENT
);
3519 kref_get(&core
->ref
);
3520 clk_core_link_consumer(core
, clk
);
3525 static int clk_cpy_name(const char **dst_p
, const char *src
, bool must_exist
)
3535 *dst_p
= dst
= kstrdup_const(src
, GFP_KERNEL
);
3542 static int clk_core_populate_parent_map(struct clk_core
*core
,
3543 const struct clk_init_data
*init
)
3545 u8 num_parents
= init
->num_parents
;
3546 const char * const *parent_names
= init
->parent_names
;
3547 const struct clk_hw
**parent_hws
= init
->parent_hws
;
3548 const struct clk_parent_data
*parent_data
= init
->parent_data
;
3550 struct clk_parent_map
*parents
, *parent
;
3556 * Avoid unnecessary string look-ups of clk_core's possible parents by
3557 * having a cache of names/clk_hw pointers to clk_core pointers.
3559 parents
= kcalloc(num_parents
, sizeof(*parents
), GFP_KERNEL
);
3560 core
->parents
= parents
;
3564 /* Copy everything over because it might be __initdata */
3565 for (i
= 0, parent
= parents
; i
< num_parents
; i
++, parent
++) {
3568 /* throw a WARN if any entries are NULL */
3569 WARN(!parent_names
[i
],
3570 "%s: invalid NULL in %s's .parent_names\n",
3571 __func__
, core
->name
);
3572 ret
= clk_cpy_name(&parent
->name
, parent_names
[i
],
3574 } else if (parent_data
) {
3575 parent
->hw
= parent_data
[i
].hw
;
3576 parent
->index
= parent_data
[i
].index
;
3577 ret
= clk_cpy_name(&parent
->fw_name
,
3578 parent_data
[i
].fw_name
, false);
3580 ret
= clk_cpy_name(&parent
->name
,
3581 parent_data
[i
].name
,
3583 } else if (parent_hws
) {
3584 parent
->hw
= parent_hws
[i
];
3587 WARN(1, "Must specify parents if num_parents > 0\n");
3592 kfree_const(parents
[i
].name
);
3593 kfree_const(parents
[i
].fw_name
);
3604 static void clk_core_free_parent_map(struct clk_core
*core
)
3606 int i
= core
->num_parents
;
3608 if (!core
->num_parents
)
3612 kfree_const(core
->parents
[i
].name
);
3613 kfree_const(core
->parents
[i
].fw_name
);
3616 kfree(core
->parents
);
3620 __clk_register(struct device
*dev
, struct device_node
*np
, struct clk_hw
*hw
)
3623 struct clk_core
*core
;
3624 const struct clk_init_data
*init
= hw
->init
;
3627 * The init data is not supposed to be used outside of registration path.
3628 * Set it to NULL so that provider drivers can't use it either and so that
3629 * we catch use of hw->init early on in the core.
3633 core
= kzalloc(sizeof(*core
), GFP_KERNEL
);
3639 core
->name
= kstrdup_const(init
->name
, GFP_KERNEL
);
3645 if (WARN_ON(!init
->ops
)) {
3649 core
->ops
= init
->ops
;
3651 if (dev
&& pm_runtime_enabled(dev
))
3652 core
->rpm_enabled
= true;
3655 if (dev
&& dev
->driver
)
3656 core
->owner
= dev
->driver
->owner
;
3658 core
->flags
= init
->flags
;
3659 core
->num_parents
= init
->num_parents
;
3661 core
->max_rate
= ULONG_MAX
;
3664 ret
= clk_core_populate_parent_map(core
, init
);
3668 INIT_HLIST_HEAD(&core
->clks
);
3671 * Don't call clk_hw_create_clk() here because that would pin the
3672 * provider module to itself and prevent it from ever being removed.
3674 hw
->clk
= alloc_clk(core
, NULL
, NULL
);
3675 if (IS_ERR(hw
->clk
)) {
3676 ret
= PTR_ERR(hw
->clk
);
3677 goto fail_create_clk
;
3680 clk_core_link_consumer(hw
->core
, hw
->clk
);
3682 ret
= __clk_core_init(core
);
3687 clk_core_unlink_consumer(hw
->clk
);
3688 clk_prepare_unlock();
3694 clk_core_free_parent_map(core
);
3697 kfree_const(core
->name
);
3701 return ERR_PTR(ret
);
3705 * clk_register - allocate a new clock, register it and return an opaque cookie
3706 * @dev: device that is registering this clock
3707 * @hw: link to hardware-specific clock data
3709 * clk_register is the *deprecated* interface for populating the clock tree with
3710 * new clock nodes. Use clk_hw_register() instead.
3712 * Returns: a pointer to the newly allocated struct clk which
3713 * cannot be dereferenced by driver code but may be used in conjunction with the
3714 * rest of the clock API. In the event of an error clk_register will return an
3715 * error code; drivers must test for an error code after calling clk_register.
3717 struct clk
*clk_register(struct device
*dev
, struct clk_hw
*hw
)
3719 return __clk_register(dev
, dev_of_node(dev
), hw
);
3721 EXPORT_SYMBOL_GPL(clk_register
);
3724 * clk_hw_register - register a clk_hw and return an error code
3725 * @dev: device that is registering this clock
3726 * @hw: link to hardware-specific clock data
3728 * clk_hw_register is the primary interface for populating the clock tree with
3729 * new clock nodes. It returns an integer equal to zero indicating success or
3730 * less than zero indicating failure. Drivers must test for an error code after
3731 * calling clk_hw_register().
3733 int clk_hw_register(struct device
*dev
, struct clk_hw
*hw
)
3735 return PTR_ERR_OR_ZERO(__clk_register(dev
, dev_of_node(dev
), hw
));
3737 EXPORT_SYMBOL_GPL(clk_hw_register
);
3740 * of_clk_hw_register - register a clk_hw and return an error code
3741 * @node: device_node of device that is registering this clock
3742 * @hw: link to hardware-specific clock data
3744 * of_clk_hw_register() is the primary interface for populating the clock tree
3745 * with new clock nodes when a struct device is not available, but a struct
3746 * device_node is. It returns an integer equal to zero indicating success or
3747 * less than zero indicating failure. Drivers must test for an error code after
3748 * calling of_clk_hw_register().
3750 int of_clk_hw_register(struct device_node
*node
, struct clk_hw
*hw
)
3752 return PTR_ERR_OR_ZERO(__clk_register(NULL
, node
, hw
));
3754 EXPORT_SYMBOL_GPL(of_clk_hw_register
);
3756 /* Free memory allocated for a clock. */
3757 static void __clk_release(struct kref
*ref
)
3759 struct clk_core
*core
= container_of(ref
, struct clk_core
, ref
);
3761 lockdep_assert_held(&prepare_lock
);
3763 clk_core_free_parent_map(core
);
3764 kfree_const(core
->name
);
3769 * Empty clk_ops for unregistered clocks. These are used temporarily
3770 * after clk_unregister() was called on a clock and until last clock
3771 * consumer calls clk_put() and the struct clk object is freed.
3773 static int clk_nodrv_prepare_enable(struct clk_hw
*hw
)
3778 static void clk_nodrv_disable_unprepare(struct clk_hw
*hw
)
3783 static int clk_nodrv_set_rate(struct clk_hw
*hw
, unsigned long rate
,
3784 unsigned long parent_rate
)
3789 static int clk_nodrv_set_parent(struct clk_hw
*hw
, u8 index
)
3794 static const struct clk_ops clk_nodrv_ops
= {
3795 .enable
= clk_nodrv_prepare_enable
,
3796 .disable
= clk_nodrv_disable_unprepare
,
3797 .prepare
= clk_nodrv_prepare_enable
,
3798 .unprepare
= clk_nodrv_disable_unprepare
,
3799 .set_rate
= clk_nodrv_set_rate
,
3800 .set_parent
= clk_nodrv_set_parent
,
3803 static void clk_core_evict_parent_cache_subtree(struct clk_core
*root
,
3804 struct clk_core
*target
)
3807 struct clk_core
*child
;
3809 for (i
= 0; i
< root
->num_parents
; i
++)
3810 if (root
->parents
[i
].core
== target
)
3811 root
->parents
[i
].core
= NULL
;
3813 hlist_for_each_entry(child
, &root
->children
, child_node
)
3814 clk_core_evict_parent_cache_subtree(child
, target
);
3817 /* Remove this clk from all parent caches */
3818 static void clk_core_evict_parent_cache(struct clk_core
*core
)
3820 struct hlist_head
**lists
;
3821 struct clk_core
*root
;
3823 lockdep_assert_held(&prepare_lock
);
3825 for (lists
= all_lists
; *lists
; lists
++)
3826 hlist_for_each_entry(root
, *lists
, child_node
)
3827 clk_core_evict_parent_cache_subtree(root
, core
);
3832 * clk_unregister - unregister a currently registered clock
3833 * @clk: clock to unregister
3835 void clk_unregister(struct clk
*clk
)
3837 unsigned long flags
;
3839 if (!clk
|| WARN_ON_ONCE(IS_ERR(clk
)))
3842 clk_debug_unregister(clk
->core
);
3846 if (clk
->core
->ops
== &clk_nodrv_ops
) {
3847 pr_err("%s: unregistered clock: %s\n", __func__
,
3852 * Assign empty clock ops for consumers that might still hold
3853 * a reference to this clock.
3855 flags
= clk_enable_lock();
3856 clk
->core
->ops
= &clk_nodrv_ops
;
3857 clk_enable_unlock(flags
);
3859 if (!hlist_empty(&clk
->core
->children
)) {
3860 struct clk_core
*child
;
3861 struct hlist_node
*t
;
3863 /* Reparent all children to the orphan list. */
3864 hlist_for_each_entry_safe(child
, t
, &clk
->core
->children
,
3866 clk_core_set_parent_nolock(child
, NULL
);
3869 clk_core_evict_parent_cache(clk
->core
);
3871 hlist_del_init(&clk
->core
->child_node
);
3873 if (clk
->core
->prepare_count
)
3874 pr_warn("%s: unregistering prepared clock: %s\n",
3875 __func__
, clk
->core
->name
);
3877 if (clk
->core
->protect_count
)
3878 pr_warn("%s: unregistering protected clock: %s\n",
3879 __func__
, clk
->core
->name
);
3881 kref_put(&clk
->core
->ref
, __clk_release
);
3883 clk_prepare_unlock();
3885 EXPORT_SYMBOL_GPL(clk_unregister
);
3888 * clk_hw_unregister - unregister a currently registered clk_hw
3889 * @hw: hardware-specific clock data to unregister
3891 void clk_hw_unregister(struct clk_hw
*hw
)
3893 clk_unregister(hw
->clk
);
3895 EXPORT_SYMBOL_GPL(clk_hw_unregister
);
3897 static void devm_clk_release(struct device
*dev
, void *res
)
3899 clk_unregister(*(struct clk
**)res
);
3902 static void devm_clk_hw_release(struct device
*dev
, void *res
)
3904 clk_hw_unregister(*(struct clk_hw
**)res
);
3908 * devm_clk_register - resource managed clk_register()
3909 * @dev: device that is registering this clock
3910 * @hw: link to hardware-specific clock data
3912 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
3914 * Clocks returned from this function are automatically clk_unregister()ed on
3915 * driver detach. See clk_register() for more information.
3917 struct clk
*devm_clk_register(struct device
*dev
, struct clk_hw
*hw
)
3922 clkp
= devres_alloc(devm_clk_release
, sizeof(*clkp
), GFP_KERNEL
);
3924 return ERR_PTR(-ENOMEM
);
3926 clk
= clk_register(dev
, hw
);
3929 devres_add(dev
, clkp
);
3936 EXPORT_SYMBOL_GPL(devm_clk_register
);
3939 * devm_clk_hw_register - resource managed clk_hw_register()
3940 * @dev: device that is registering this clock
3941 * @hw: link to hardware-specific clock data
3943 * Managed clk_hw_register(). Clocks registered by this function are
3944 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
3945 * for more information.
3947 int devm_clk_hw_register(struct device
*dev
, struct clk_hw
*hw
)
3949 struct clk_hw
**hwp
;
3952 hwp
= devres_alloc(devm_clk_hw_release
, sizeof(*hwp
), GFP_KERNEL
);
3956 ret
= clk_hw_register(dev
, hw
);
3959 devres_add(dev
, hwp
);
3966 EXPORT_SYMBOL_GPL(devm_clk_hw_register
);
3968 static int devm_clk_match(struct device
*dev
, void *res
, void *data
)
3970 struct clk
*c
= res
;
3976 static int devm_clk_hw_match(struct device
*dev
, void *res
, void *data
)
3978 struct clk_hw
*hw
= res
;
3986 * devm_clk_unregister - resource managed clk_unregister()
3987 * @clk: clock to unregister
3989 * Deallocate a clock allocated with devm_clk_register(). Normally
3990 * this function will not need to be called and the resource management
3991 * code will ensure that the resource is freed.
3993 void devm_clk_unregister(struct device
*dev
, struct clk
*clk
)
3995 WARN_ON(devres_release(dev
, devm_clk_release
, devm_clk_match
, clk
));
3997 EXPORT_SYMBOL_GPL(devm_clk_unregister
);
4000 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
4001 * @dev: device that is unregistering the hardware-specific clock data
4002 * @hw: link to hardware-specific clock data
4004 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
4005 * this function will not need to be called and the resource management
4006 * code will ensure that the resource is freed.
4008 void devm_clk_hw_unregister(struct device
*dev
, struct clk_hw
*hw
)
4010 WARN_ON(devres_release(dev
, devm_clk_hw_release
, devm_clk_hw_match
,
4013 EXPORT_SYMBOL_GPL(devm_clk_hw_unregister
);
4019 void __clk_put(struct clk
*clk
)
4021 struct module
*owner
;
4023 if (!clk
|| WARN_ON_ONCE(IS_ERR(clk
)))
4029 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4030 * given user should be balanced with calls to clk_rate_exclusive_put()
4031 * and by that same consumer
4033 if (WARN_ON(clk
->exclusive_count
)) {
4034 /* We voiced our concern, let's sanitize the situation */
4035 clk
->core
->protect_count
-= (clk
->exclusive_count
- 1);
4036 clk_core_rate_unprotect(clk
->core
);
4037 clk
->exclusive_count
= 0;
4040 hlist_del(&clk
->clks_node
);
4041 if (clk
->min_rate
> clk
->core
->req_rate
||
4042 clk
->max_rate
< clk
->core
->req_rate
)
4043 clk_core_set_rate_nolock(clk
->core
, clk
->core
->req_rate
);
4045 owner
= clk
->core
->owner
;
4046 kref_put(&clk
->core
->ref
, __clk_release
);
4048 clk_prepare_unlock();
4055 /*** clk rate change notifiers ***/
4058 * clk_notifier_register - add a clk rate change notifier
4059 * @clk: struct clk * to watch
4060 * @nb: struct notifier_block * with callback info
4062 * Request notification when clk's rate changes. This uses an SRCU
4063 * notifier because we want it to block and notifier unregistrations are
4064 * uncommon. The callbacks associated with the notifier must not
4065 * re-enter into the clk framework by calling any top-level clk APIs;
4066 * this will cause a nested prepare_lock mutex.
4068 * In all notification cases (pre, post and abort rate change) the original
4069 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4070 * and the new frequency is passed via struct clk_notifier_data.new_rate.
4072 * clk_notifier_register() must be called from non-atomic context.
4073 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4074 * allocation failure; otherwise, passes along the return value of
4075 * srcu_notifier_chain_register().
4077 int clk_notifier_register(struct clk
*clk
, struct notifier_block
*nb
)
4079 struct clk_notifier
*cn
;
4087 /* search the list of notifiers for this clk */
4088 list_for_each_entry(cn
, &clk_notifier_list
, node
)
4092 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4093 if (cn
->clk
!= clk
) {
4094 cn
= kzalloc(sizeof(*cn
), GFP_KERNEL
);
4099 srcu_init_notifier_head(&cn
->notifier_head
);
4101 list_add(&cn
->node
, &clk_notifier_list
);
4104 ret
= srcu_notifier_chain_register(&cn
->notifier_head
, nb
);
4106 clk
->core
->notifier_count
++;
4109 clk_prepare_unlock();
4113 EXPORT_SYMBOL_GPL(clk_notifier_register
);
4116 * clk_notifier_unregister - remove a clk rate change notifier
4117 * @clk: struct clk *
4118 * @nb: struct notifier_block * with callback info
4120 * Request no further notification for changes to 'clk' and frees memory
4121 * allocated in clk_notifier_register.
4123 * Returns -EINVAL if called with null arguments; otherwise, passes
4124 * along the return value of srcu_notifier_chain_unregister().
4126 int clk_notifier_unregister(struct clk
*clk
, struct notifier_block
*nb
)
4128 struct clk_notifier
*cn
= NULL
;
4136 list_for_each_entry(cn
, &clk_notifier_list
, node
)
4140 if (cn
->clk
== clk
) {
4141 ret
= srcu_notifier_chain_unregister(&cn
->notifier_head
, nb
);
4143 clk
->core
->notifier_count
--;
4145 /* XXX the notifier code should handle this better */
4146 if (!cn
->notifier_head
.head
) {
4147 srcu_cleanup_notifier_head(&cn
->notifier_head
);
4148 list_del(&cn
->node
);
4156 clk_prepare_unlock();
4160 EXPORT_SYMBOL_GPL(clk_notifier_unregister
);
4164 * struct of_clk_provider - Clock provider registration structure
4165 * @link: Entry in global list of clock providers
4166 * @node: Pointer to device tree node of clock provider
4167 * @get: Get clock callback. Returns NULL or a struct clk for the
4168 * given clock specifier
4169 * @data: context pointer to be passed into @get callback
4171 struct of_clk_provider
{
4172 struct list_head link
;
4174 struct device_node
*node
;
4175 struct clk
*(*get
)(struct of_phandle_args
*clkspec
, void *data
);
4176 struct clk_hw
*(*get_hw
)(struct of_phandle_args
*clkspec
, void *data
);
4180 extern struct of_device_id __clk_of_table
;
4181 static const struct of_device_id __clk_of_table_sentinel
4182 __used
__section(__clk_of_table_end
);
4184 static LIST_HEAD(of_clk_providers
);
4185 static DEFINE_MUTEX(of_clk_mutex
);
4187 struct clk
*of_clk_src_simple_get(struct of_phandle_args
*clkspec
,
4192 EXPORT_SYMBOL_GPL(of_clk_src_simple_get
);
4194 struct clk_hw
*of_clk_hw_simple_get(struct of_phandle_args
*clkspec
, void *data
)
4198 EXPORT_SYMBOL_GPL(of_clk_hw_simple_get
);
4200 struct clk
*of_clk_src_onecell_get(struct of_phandle_args
*clkspec
, void *data
)
4202 struct clk_onecell_data
*clk_data
= data
;
4203 unsigned int idx
= clkspec
->args
[0];
4205 if (idx
>= clk_data
->clk_num
) {
4206 pr_err("%s: invalid clock index %u\n", __func__
, idx
);
4207 return ERR_PTR(-EINVAL
);
4210 return clk_data
->clks
[idx
];
4212 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get
);
4215 of_clk_hw_onecell_get(struct of_phandle_args
*clkspec
, void *data
)
4217 struct clk_hw_onecell_data
*hw_data
= data
;
4218 unsigned int idx
= clkspec
->args
[0];
4220 if (idx
>= hw_data
->num
) {
4221 pr_err("%s: invalid index %u\n", __func__
, idx
);
4222 return ERR_PTR(-EINVAL
);
4225 return hw_data
->hws
[idx
];
4227 EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get
);
4230 * of_clk_add_provider() - Register a clock provider for a node
4231 * @np: Device node pointer associated with clock provider
4232 * @clk_src_get: callback for decoding clock
4233 * @data: context pointer for @clk_src_get callback.
4235 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
4237 int of_clk_add_provider(struct device_node
*np
,
4238 struct clk
*(*clk_src_get
)(struct of_phandle_args
*clkspec
,
4242 struct of_clk_provider
*cp
;
4245 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
4249 cp
->node
= of_node_get(np
);
4251 cp
->get
= clk_src_get
;
4253 mutex_lock(&of_clk_mutex
);
4254 list_add(&cp
->link
, &of_clk_providers
);
4255 mutex_unlock(&of_clk_mutex
);
4256 pr_debug("Added clock from %pOF\n", np
);
4258 ret
= of_clk_set_defaults(np
, true);
4260 of_clk_del_provider(np
);
4264 EXPORT_SYMBOL_GPL(of_clk_add_provider
);
4267 * of_clk_add_hw_provider() - Register a clock provider for a node
4268 * @np: Device node pointer associated with clock provider
4269 * @get: callback for decoding clk_hw
4270 * @data: context pointer for @get callback.
4272 int of_clk_add_hw_provider(struct device_node
*np
,
4273 struct clk_hw
*(*get
)(struct of_phandle_args
*clkspec
,
4277 struct of_clk_provider
*cp
;
4280 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
4284 cp
->node
= of_node_get(np
);
4288 mutex_lock(&of_clk_mutex
);
4289 list_add(&cp
->link
, &of_clk_providers
);
4290 mutex_unlock(&of_clk_mutex
);
4291 pr_debug("Added clk_hw provider from %pOF\n", np
);
4293 ret
= of_clk_set_defaults(np
, true);
4295 of_clk_del_provider(np
);
4299 EXPORT_SYMBOL_GPL(of_clk_add_hw_provider
);
4301 static void devm_of_clk_release_provider(struct device
*dev
, void *res
)
4303 of_clk_del_provider(*(struct device_node
**)res
);
4307 * We allow a child device to use its parent device as the clock provider node
4308 * for cases like MFD sub-devices where the child device driver wants to use
4309 * devm_*() APIs but not list the device in DT as a sub-node.
4311 static struct device_node
*get_clk_provider_node(struct device
*dev
)
4313 struct device_node
*np
, *parent_np
;
4316 parent_np
= dev
->parent
? dev
->parent
->of_node
: NULL
;
4318 if (!of_find_property(np
, "#clock-cells", NULL
))
4319 if (of_find_property(parent_np
, "#clock-cells", NULL
))
4326 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
4327 * @dev: Device acting as the clock provider (used for DT node and lifetime)
4328 * @get: callback for decoding clk_hw
4329 * @data: context pointer for @get callback
4331 * Registers clock provider for given device's node. If the device has no DT
4332 * node or if the device node lacks of clock provider information (#clock-cells)
4333 * then the parent device's node is scanned for this information. If parent node
4334 * has the #clock-cells then it is used in registration. Provider is
4335 * automatically released at device exit.
4337 * Return: 0 on success or an errno on failure.
4339 int devm_of_clk_add_hw_provider(struct device
*dev
,
4340 struct clk_hw
*(*get
)(struct of_phandle_args
*clkspec
,
4344 struct device_node
**ptr
, *np
;
4347 ptr
= devres_alloc(devm_of_clk_release_provider
, sizeof(*ptr
),
4352 np
= get_clk_provider_node(dev
);
4353 ret
= of_clk_add_hw_provider(np
, get
, data
);
4356 devres_add(dev
, ptr
);
4363 EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider
);
4366 * of_clk_del_provider() - Remove a previously registered clock provider
4367 * @np: Device node pointer associated with clock provider
4369 void of_clk_del_provider(struct device_node
*np
)
4371 struct of_clk_provider
*cp
;
4373 mutex_lock(&of_clk_mutex
);
4374 list_for_each_entry(cp
, &of_clk_providers
, link
) {
4375 if (cp
->node
== np
) {
4376 list_del(&cp
->link
);
4377 of_node_put(cp
->node
);
4382 mutex_unlock(&of_clk_mutex
);
4384 EXPORT_SYMBOL_GPL(of_clk_del_provider
);
4386 static int devm_clk_provider_match(struct device
*dev
, void *res
, void *data
)
4388 struct device_node
**np
= res
;
4390 if (WARN_ON(!np
|| !*np
))
4397 * devm_of_clk_del_provider() - Remove clock provider registered using devm
4398 * @dev: Device to whose lifetime the clock provider was bound
4400 void devm_of_clk_del_provider(struct device
*dev
)
4403 struct device_node
*np
= get_clk_provider_node(dev
);
4405 ret
= devres_release(dev
, devm_of_clk_release_provider
,
4406 devm_clk_provider_match
, np
);
4410 EXPORT_SYMBOL(devm_of_clk_del_provider
);
4413 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
4414 * @np: device node to parse clock specifier from
4415 * @index: index of phandle to parse clock out of. If index < 0, @name is used
4416 * @name: clock name to find and parse. If name is NULL, the index is used
4417 * @out_args: Result of parsing the clock specifier
4419 * Parses a device node's "clocks" and "clock-names" properties to find the
4420 * phandle and cells for the index or name that is desired. The resulting clock
4421 * specifier is placed into @out_args, or an errno is returned when there's a
4422 * parsing error. The @index argument is ignored if @name is non-NULL.
4426 * phandle1: clock-controller@1 {
4427 * #clock-cells = <2>;
4430 * phandle2: clock-controller@2 {
4431 * #clock-cells = <1>;
4434 * clock-consumer@3 {
4435 * clocks = <&phandle1 1 2 &phandle2 3>;
4436 * clock-names = "name1", "name2";
4439 * To get a device_node for `clock-controller@2' node you may call this
4440 * function a few different ways:
4442 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
4443 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
4444 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
4446 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
4447 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
4448 * the "clock-names" property of @np.
4450 static int of_parse_clkspec(const struct device_node
*np
, int index
,
4451 const char *name
, struct of_phandle_args
*out_args
)
4455 /* Walk up the tree of devices looking for a clock property that matches */
4458 * For named clocks, first look up the name in the
4459 * "clock-names" property. If it cannot be found, then index
4460 * will be an error code and of_parse_phandle_with_args() will
4464 index
= of_property_match_string(np
, "clock-names", name
);
4465 ret
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells",
4469 if (name
&& index
>= 0)
4473 * No matching clock found on this node. If the parent node
4474 * has a "clock-ranges" property, then we can try one of its
4478 if (np
&& !of_get_property(np
, "clock-ranges", NULL
))
4486 static struct clk_hw
*
4487 __of_clk_get_hw_from_provider(struct of_clk_provider
*provider
,
4488 struct of_phandle_args
*clkspec
)
4492 if (provider
->get_hw
)
4493 return provider
->get_hw(clkspec
, provider
->data
);
4495 clk
= provider
->get(clkspec
, provider
->data
);
4497 return ERR_CAST(clk
);
4498 return __clk_get_hw(clk
);
4501 static struct clk_hw
*
4502 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
)
4504 struct of_clk_provider
*provider
;
4505 struct clk_hw
*hw
= ERR_PTR(-EPROBE_DEFER
);
4508 return ERR_PTR(-EINVAL
);
4510 mutex_lock(&of_clk_mutex
);
4511 list_for_each_entry(provider
, &of_clk_providers
, link
) {
4512 if (provider
->node
== clkspec
->np
) {
4513 hw
= __of_clk_get_hw_from_provider(provider
, clkspec
);
4518 mutex_unlock(&of_clk_mutex
);
4524 * of_clk_get_from_provider() - Lookup a clock from a clock provider
4525 * @clkspec: pointer to a clock specifier data structure
4527 * This function looks up a struct clk from the registered list of clock
4528 * providers, an input is a clock specifier data structure as returned
4529 * from the of_parse_phandle_with_args() function call.
4531 struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
)
4533 struct clk_hw
*hw
= of_clk_get_hw_from_clkspec(clkspec
);
4535 return clk_hw_create_clk(NULL
, hw
, NULL
, __func__
);
4537 EXPORT_SYMBOL_GPL(of_clk_get_from_provider
);
4539 struct clk_hw
*of_clk_get_hw(struct device_node
*np
, int index
,
4544 struct of_phandle_args clkspec
;
4546 ret
= of_parse_clkspec(np
, index
, con_id
, &clkspec
);
4548 return ERR_PTR(ret
);
4550 hw
= of_clk_get_hw_from_clkspec(&clkspec
);
4551 of_node_put(clkspec
.np
);
4556 static struct clk
*__of_clk_get(struct device_node
*np
,
4557 int index
, const char *dev_id
,
4560 struct clk_hw
*hw
= of_clk_get_hw(np
, index
, con_id
);
4562 return clk_hw_create_clk(NULL
, hw
, dev_id
, con_id
);
4565 struct clk
*of_clk_get(struct device_node
*np
, int index
)
4567 return __of_clk_get(np
, index
, np
->full_name
, NULL
);
4569 EXPORT_SYMBOL(of_clk_get
);
4572 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
4573 * @np: pointer to clock consumer node
4574 * @name: name of consumer's clock input, or NULL for the first clock reference
4576 * This function parses the clocks and clock-names properties,
4577 * and uses them to look up the struct clk from the registered list of clock
4580 struct clk
*of_clk_get_by_name(struct device_node
*np
, const char *name
)
4583 return ERR_PTR(-ENOENT
);
4585 return __of_clk_get(np
, 0, np
->full_name
, name
);
4587 EXPORT_SYMBOL(of_clk_get_by_name
);
4590 * of_clk_get_parent_count() - Count the number of clocks a device node has
4591 * @np: device node to count
4593 * Returns: The number of clocks that are possible parents of this node
4595 unsigned int of_clk_get_parent_count(struct device_node
*np
)
4599 count
= of_count_phandle_with_args(np
, "clocks", "#clock-cells");
4605 EXPORT_SYMBOL_GPL(of_clk_get_parent_count
);
4607 const char *of_clk_get_parent_name(struct device_node
*np
, int index
)
4609 struct of_phandle_args clkspec
;
4610 struct property
*prop
;
4611 const char *clk_name
;
4618 rc
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells", index
,
4623 index
= clkspec
.args_count
? clkspec
.args
[0] : 0;
4626 /* if there is an indices property, use it to transfer the index
4627 * specified into an array offset for the clock-output-names property.
4629 of_property_for_each_u32(clkspec
.np
, "clock-indices", prop
, vp
, pv
) {
4636 /* We went off the end of 'clock-indices' without finding it */
4640 if (of_property_read_string_index(clkspec
.np
, "clock-output-names",
4644 * Best effort to get the name if the clock has been
4645 * registered with the framework. If the clock isn't
4646 * registered, we return the node name as the name of
4647 * the clock as long as #clock-cells = 0.
4649 clk
= of_clk_get_from_provider(&clkspec
);
4651 if (clkspec
.args_count
== 0)
4652 clk_name
= clkspec
.np
->name
;
4656 clk_name
= __clk_get_name(clk
);
4662 of_node_put(clkspec
.np
);
4665 EXPORT_SYMBOL_GPL(of_clk_get_parent_name
);
4668 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
4670 * @np: Device node pointer associated with clock provider
4671 * @parents: pointer to char array that hold the parents' names
4672 * @size: size of the @parents array
4674 * Return: number of parents for the clock node.
4676 int of_clk_parent_fill(struct device_node
*np
, const char **parents
,
4681 while (i
< size
&& (parents
[i
] = of_clk_get_parent_name(np
, i
)) != NULL
)
4686 EXPORT_SYMBOL_GPL(of_clk_parent_fill
);
4688 struct clock_provider
{
4689 void (*clk_init_cb
)(struct device_node
*);
4690 struct device_node
*np
;
4691 struct list_head node
;
4695 * This function looks for a parent clock. If there is one, then it
4696 * checks that the provider for this parent clock was initialized, in
4697 * this case the parent clock will be ready.
4699 static int parent_ready(struct device_node
*np
)
4704 struct clk
*clk
= of_clk_get(np
, i
);
4706 /* this parent is ready we can check the next one */
4713 /* at least one parent is not ready, we exit now */
4714 if (PTR_ERR(clk
) == -EPROBE_DEFER
)
4718 * Here we make assumption that the device tree is
4719 * written correctly. So an error means that there is
4720 * no more parent. As we didn't exit yet, then the
4721 * previous parent are ready. If there is no clock
4722 * parent, no need to wait for them, then we can
4723 * consider their absence as being ready
4730 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
4731 * @np: Device node pointer associated with clock provider
4732 * @index: clock index
4733 * @flags: pointer to top-level framework flags
4735 * Detects if the clock-critical property exists and, if so, sets the
4736 * corresponding CLK_IS_CRITICAL flag.
4738 * Do not use this function. It exists only for legacy Device Tree
4739 * bindings, such as the one-clock-per-node style that are outdated.
4740 * Those bindings typically put all clock data into .dts and the Linux
4741 * driver has no clock data, thus making it impossible to set this flag
4742 * correctly from the driver. Only those drivers may call
4743 * of_clk_detect_critical from their setup functions.
4745 * Return: error code or zero on success
4747 int of_clk_detect_critical(struct device_node
*np
,
4748 int index
, unsigned long *flags
)
4750 struct property
*prop
;
4757 of_property_for_each_u32(np
, "clock-critical", prop
, cur
, idx
)
4759 *flags
|= CLK_IS_CRITICAL
;
4765 * of_clk_init() - Scan and init clock providers from the DT
4766 * @matches: array of compatible values and init functions for providers.
4768 * This function scans the device tree for matching clock providers
4769 * and calls their initialization functions. It also does it by trying
4770 * to follow the dependencies.
4772 void __init
of_clk_init(const struct of_device_id
*matches
)
4774 const struct of_device_id
*match
;
4775 struct device_node
*np
;
4776 struct clock_provider
*clk_provider
, *next
;
4779 LIST_HEAD(clk_provider_list
);
4782 matches
= &__clk_of_table
;
4784 /* First prepare the list of the clocks providers */
4785 for_each_matching_node_and_match(np
, matches
, &match
) {
4786 struct clock_provider
*parent
;
4788 if (!of_device_is_available(np
))
4791 parent
= kzalloc(sizeof(*parent
), GFP_KERNEL
);
4793 list_for_each_entry_safe(clk_provider
, next
,
4794 &clk_provider_list
, node
) {
4795 list_del(&clk_provider
->node
);
4796 of_node_put(clk_provider
->np
);
4797 kfree(clk_provider
);
4803 parent
->clk_init_cb
= match
->data
;
4804 parent
->np
= of_node_get(np
);
4805 list_add_tail(&parent
->node
, &clk_provider_list
);
4808 while (!list_empty(&clk_provider_list
)) {
4809 is_init_done
= false;
4810 list_for_each_entry_safe(clk_provider
, next
,
4811 &clk_provider_list
, node
) {
4812 if (force
|| parent_ready(clk_provider
->np
)) {
4814 /* Don't populate platform devices */
4815 of_node_set_flag(clk_provider
->np
,
4818 clk_provider
->clk_init_cb(clk_provider
->np
);
4819 of_clk_set_defaults(clk_provider
->np
, true);
4821 list_del(&clk_provider
->node
);
4822 of_node_put(clk_provider
->np
);
4823 kfree(clk_provider
);
4824 is_init_done
= true;
4829 * We didn't manage to initialize any of the
4830 * remaining providers during the last loop, so now we
4831 * initialize all the remaining ones unconditionally
4832 * in case the clock parent was not mandatory