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 /* List of registered clks that use runtime PM */
41 static HLIST_HEAD(clk_rpm_list
);
42 static DEFINE_MUTEX(clk_rpm_list_lock
);
44 static const struct hlist_head
*all_lists
[] = {
50 /*** private data structures ***/
52 struct clk_parent_map
{
53 const struct clk_hw
*hw
;
54 struct clk_core
*core
;
62 const struct clk_ops
*ops
;
66 struct hlist_node rpm_node
;
67 struct device_node
*of_node
;
68 struct clk_core
*parent
;
69 struct clk_parent_map
*parents
;
73 unsigned long req_rate
;
74 unsigned long new_rate
;
75 struct clk_core
*new_parent
;
76 struct clk_core
*new_child
;
80 unsigned int enable_count
;
81 unsigned int prepare_count
;
82 unsigned int protect_count
;
83 unsigned long min_rate
;
84 unsigned long max_rate
;
85 unsigned long accuracy
;
88 struct hlist_head children
;
89 struct hlist_node child_node
;
90 struct hlist_head clks
;
91 unsigned int notifier_count
;
92 #ifdef CONFIG_DEBUG_FS
93 struct dentry
*dentry
;
94 struct hlist_node debug_node
;
99 #define CREATE_TRACE_POINTS
100 #include <trace/events/clk.h>
103 struct clk_core
*core
;
107 unsigned long min_rate
;
108 unsigned long max_rate
;
109 unsigned int exclusive_count
;
110 struct hlist_node clks_node
;
114 static int clk_pm_runtime_get(struct clk_core
*core
)
116 if (!core
->rpm_enabled
)
119 return pm_runtime_resume_and_get(core
->dev
);
122 static void clk_pm_runtime_put(struct clk_core
*core
)
124 if (!core
->rpm_enabled
)
127 pm_runtime_put_sync(core
->dev
);
131 * clk_pm_runtime_get_all() - Runtime "get" all clk provider devices
133 * Call clk_pm_runtime_get() on all runtime PM enabled clks in the clk tree so
134 * that disabling unused clks avoids a deadlock where a device is runtime PM
135 * resuming/suspending and the runtime PM callback is trying to grab the
136 * prepare_lock for something like clk_prepare_enable() while
137 * clk_disable_unused_subtree() holds the prepare_lock and is trying to runtime
138 * PM resume/suspend the device as well.
140 * Context: Acquires the 'clk_rpm_list_lock' and returns with the lock held on
141 * success. Otherwise the lock is released on failure.
143 * Return: 0 on success, negative errno otherwise.
145 static int clk_pm_runtime_get_all(void)
148 struct clk_core
*core
, *failed
;
151 * Grab the list lock to prevent any new clks from being registered
152 * or unregistered until clk_pm_runtime_put_all().
154 mutex_lock(&clk_rpm_list_lock
);
157 * Runtime PM "get" all the devices that are needed for the clks
158 * currently registered. Do this without holding the prepare_lock, to
159 * avoid the deadlock.
161 hlist_for_each_entry(core
, &clk_rpm_list
, rpm_node
) {
162 ret
= clk_pm_runtime_get(core
);
165 pr_err("clk: Failed to runtime PM get '%s' for clk '%s'\n",
166 dev_name(failed
->dev
), failed
->name
);
174 hlist_for_each_entry(core
, &clk_rpm_list
, rpm_node
) {
178 clk_pm_runtime_put(core
);
180 mutex_unlock(&clk_rpm_list_lock
);
186 * clk_pm_runtime_put_all() - Runtime "put" all clk provider devices
188 * Put the runtime PM references taken in clk_pm_runtime_get_all() and release
189 * the 'clk_rpm_list_lock'.
191 static void clk_pm_runtime_put_all(void)
193 struct clk_core
*core
;
195 hlist_for_each_entry(core
, &clk_rpm_list
, rpm_node
)
196 clk_pm_runtime_put(core
);
197 mutex_unlock(&clk_rpm_list_lock
);
200 static void clk_pm_runtime_init(struct clk_core
*core
)
202 struct device
*dev
= core
->dev
;
204 if (dev
&& pm_runtime_enabled(dev
)) {
205 core
->rpm_enabled
= true;
207 mutex_lock(&clk_rpm_list_lock
);
208 hlist_add_head(&core
->rpm_node
, &clk_rpm_list
);
209 mutex_unlock(&clk_rpm_list_lock
);
214 static void clk_prepare_lock(void)
216 if (!mutex_trylock(&prepare_lock
)) {
217 if (prepare_owner
== current
) {
221 mutex_lock(&prepare_lock
);
223 WARN_ON_ONCE(prepare_owner
!= NULL
);
224 WARN_ON_ONCE(prepare_refcnt
!= 0);
225 prepare_owner
= current
;
229 static void clk_prepare_unlock(void)
231 WARN_ON_ONCE(prepare_owner
!= current
);
232 WARN_ON_ONCE(prepare_refcnt
== 0);
234 if (--prepare_refcnt
)
236 prepare_owner
= NULL
;
237 mutex_unlock(&prepare_lock
);
240 static unsigned long clk_enable_lock(void)
241 __acquires(enable_lock
)
246 * On UP systems, spin_trylock_irqsave() always returns true, even if
247 * we already hold the lock. So, in that case, we rely only on
248 * reference counting.
250 if (!IS_ENABLED(CONFIG_SMP
) ||
251 !spin_trylock_irqsave(&enable_lock
, flags
)) {
252 if (enable_owner
== current
) {
254 __acquire(enable_lock
);
255 if (!IS_ENABLED(CONFIG_SMP
))
256 local_save_flags(flags
);
259 spin_lock_irqsave(&enable_lock
, flags
);
261 WARN_ON_ONCE(enable_owner
!= NULL
);
262 WARN_ON_ONCE(enable_refcnt
!= 0);
263 enable_owner
= current
;
268 static void clk_enable_unlock(unsigned long flags
)
269 __releases(enable_lock
)
271 WARN_ON_ONCE(enable_owner
!= current
);
272 WARN_ON_ONCE(enable_refcnt
== 0);
274 if (--enable_refcnt
) {
275 __release(enable_lock
);
279 spin_unlock_irqrestore(&enable_lock
, flags
);
282 static bool clk_core_rate_is_protected(struct clk_core
*core
)
284 return core
->protect_count
;
287 static bool clk_core_is_prepared(struct clk_core
*core
)
292 * .is_prepared is optional for clocks that can prepare
293 * fall back to software usage counter if it is missing
295 if (!core
->ops
->is_prepared
)
296 return core
->prepare_count
;
298 if (!clk_pm_runtime_get(core
)) {
299 ret
= core
->ops
->is_prepared(core
->hw
);
300 clk_pm_runtime_put(core
);
306 static bool clk_core_is_enabled(struct clk_core
*core
)
311 * .is_enabled is only mandatory for clocks that gate
312 * fall back to software usage counter if .is_enabled is missing
314 if (!core
->ops
->is_enabled
)
315 return core
->enable_count
;
318 * Check if clock controller's device is runtime active before
319 * calling .is_enabled callback. If not, assume that clock is
320 * disabled, because we might be called from atomic context, from
321 * which pm_runtime_get() is not allowed.
322 * This function is called mainly from clk_disable_unused_subtree,
323 * which ensures proper runtime pm activation of controller before
324 * taking enable spinlock, but the below check is needed if one tries
325 * to call it from other places.
327 if (core
->rpm_enabled
) {
328 pm_runtime_get_noresume(core
->dev
);
329 if (!pm_runtime_active(core
->dev
)) {
336 * This could be called with the enable lock held, or from atomic
337 * context. If the parent isn't enabled already, we can't do
338 * anything here. We can also assume this clock isn't enabled.
340 if ((core
->flags
& CLK_OPS_PARENT_ENABLE
) && core
->parent
)
341 if (!clk_core_is_enabled(core
->parent
)) {
346 ret
= core
->ops
->is_enabled(core
->hw
);
348 if (core
->rpm_enabled
)
349 pm_runtime_put(core
->dev
);
354 /*** helper functions ***/
356 const char *__clk_get_name(const struct clk
*clk
)
358 return !clk
? NULL
: clk
->core
->name
;
360 EXPORT_SYMBOL_GPL(__clk_get_name
);
362 const char *clk_hw_get_name(const struct clk_hw
*hw
)
364 return hw
->core
->name
;
366 EXPORT_SYMBOL_GPL(clk_hw_get_name
);
368 struct clk_hw
*__clk_get_hw(struct clk
*clk
)
370 return !clk
? NULL
: clk
->core
->hw
;
372 EXPORT_SYMBOL_GPL(__clk_get_hw
);
374 unsigned int clk_hw_get_num_parents(const struct clk_hw
*hw
)
376 return hw
->core
->num_parents
;
378 EXPORT_SYMBOL_GPL(clk_hw_get_num_parents
);
380 struct clk_hw
*clk_hw_get_parent(const struct clk_hw
*hw
)
382 return hw
->core
->parent
? hw
->core
->parent
->hw
: NULL
;
384 EXPORT_SYMBOL_GPL(clk_hw_get_parent
);
386 static struct clk_core
*__clk_lookup_subtree(const char *name
,
387 struct clk_core
*core
)
389 struct clk_core
*child
;
390 struct clk_core
*ret
;
392 if (!strcmp(core
->name
, name
))
395 hlist_for_each_entry(child
, &core
->children
, child_node
) {
396 ret
= __clk_lookup_subtree(name
, child
);
404 static struct clk_core
*clk_core_lookup(const char *name
)
406 struct clk_core
*root_clk
;
407 struct clk_core
*ret
;
412 /* search the 'proper' clk tree first */
413 hlist_for_each_entry(root_clk
, &clk_root_list
, child_node
) {
414 ret
= __clk_lookup_subtree(name
, root_clk
);
419 /* if not found, then search the orphan tree */
420 hlist_for_each_entry(root_clk
, &clk_orphan_list
, child_node
) {
421 ret
= __clk_lookup_subtree(name
, root_clk
);
430 static int of_parse_clkspec(const struct device_node
*np
, int index
,
431 const char *name
, struct of_phandle_args
*out_args
);
432 static struct clk_hw
*
433 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
);
435 static inline int of_parse_clkspec(const struct device_node
*np
, int index
,
437 struct of_phandle_args
*out_args
)
441 static inline struct clk_hw
*
442 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
)
444 return ERR_PTR(-ENOENT
);
449 * clk_core_get - Find the clk_core parent of a clk
450 * @core: clk to find parent of
451 * @p_index: parent index to search for
453 * This is the preferred method for clk providers to find the parent of a
454 * clk when that parent is external to the clk controller. The parent_names
455 * array is indexed and treated as a local name matching a string in the device
456 * node's 'clock-names' property or as the 'con_id' matching the device's
457 * dev_name() in a clk_lookup. This allows clk providers to use their own
458 * namespace instead of looking for a globally unique parent string.
460 * For example the following DT snippet would allow a clock registered by the
461 * clock-controller@c001 that has a clk_init_data::parent_data array
462 * with 'xtal' in the 'name' member to find the clock provided by the
463 * clock-controller@f00abcd without needing to get the globally unique name of
466 * parent: clock-controller@f00abcd {
467 * reg = <0xf00abcd 0xabcd>;
468 * #clock-cells = <0>;
471 * clock-controller@c001 {
472 * reg = <0xc001 0xf00d>;
473 * clocks = <&parent>;
474 * clock-names = "xtal";
475 * #clock-cells = <1>;
478 * Returns: -ENOENT when the provider can't be found or the clk doesn't
479 * exist in the provider or the name can't be found in the DT node or
480 * in a clkdev lookup. NULL when the provider knows about the clk but it
481 * isn't provided on this system.
482 * A valid clk_core pointer when the clk can be found in the provider.
484 static struct clk_core
*clk_core_get(struct clk_core
*core
, u8 p_index
)
486 const char *name
= core
->parents
[p_index
].fw_name
;
487 int index
= core
->parents
[p_index
].index
;
488 struct clk_hw
*hw
= ERR_PTR(-ENOENT
);
489 struct device
*dev
= core
->dev
;
490 const char *dev_id
= dev
? dev_name(dev
) : NULL
;
491 struct device_node
*np
= core
->of_node
;
492 struct of_phandle_args clkspec
;
494 if (np
&& (name
|| index
>= 0) &&
495 !of_parse_clkspec(np
, index
, name
, &clkspec
)) {
496 hw
= of_clk_get_hw_from_clkspec(&clkspec
);
497 of_node_put(clkspec
.np
);
500 * If the DT search above couldn't find the provider fallback to
501 * looking up via clkdev based clk_lookups.
503 hw
= clk_find_hw(dev_id
, name
);
515 static void clk_core_fill_parent_index(struct clk_core
*core
, u8 index
)
517 struct clk_parent_map
*entry
= &core
->parents
[index
];
518 struct clk_core
*parent
;
521 parent
= entry
->hw
->core
;
523 parent
= clk_core_get(core
, index
);
524 if (PTR_ERR(parent
) == -ENOENT
&& entry
->name
)
525 parent
= clk_core_lookup(entry
->name
);
529 * We have a direct reference but it isn't registered yet?
530 * Orphan it and let clk_reparent() update the orphan status
531 * when the parent is registered.
534 parent
= ERR_PTR(-EPROBE_DEFER
);
536 /* Only cache it if it's not an error */
538 entry
->core
= parent
;
541 static struct clk_core
*clk_core_get_parent_by_index(struct clk_core
*core
,
544 if (!core
|| index
>= core
->num_parents
|| !core
->parents
)
547 if (!core
->parents
[index
].core
)
548 clk_core_fill_parent_index(core
, index
);
550 return core
->parents
[index
].core
;
554 clk_hw_get_parent_by_index(const struct clk_hw
*hw
, unsigned int index
)
556 struct clk_core
*parent
;
558 parent
= clk_core_get_parent_by_index(hw
->core
, index
);
560 return !parent
? NULL
: parent
->hw
;
562 EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index
);
564 unsigned int __clk_get_enable_count(struct clk
*clk
)
566 return !clk
? 0 : clk
->core
->enable_count
;
569 static unsigned long clk_core_get_rate_nolock(struct clk_core
*core
)
574 if (!core
->num_parents
|| core
->parent
)
578 * Clk must have a parent because num_parents > 0 but the parent isn't
579 * known yet. Best to return 0 as the rate of this clk until we can
580 * properly recalc the rate based on the parent's rate.
585 unsigned long clk_hw_get_rate(const struct clk_hw
*hw
)
587 return clk_core_get_rate_nolock(hw
->core
);
589 EXPORT_SYMBOL_GPL(clk_hw_get_rate
);
591 static unsigned long clk_core_get_accuracy_no_lock(struct clk_core
*core
)
596 return core
->accuracy
;
599 unsigned long clk_hw_get_flags(const struct clk_hw
*hw
)
601 return hw
->core
->flags
;
603 EXPORT_SYMBOL_GPL(clk_hw_get_flags
);
605 bool clk_hw_is_prepared(const struct clk_hw
*hw
)
607 return clk_core_is_prepared(hw
->core
);
609 EXPORT_SYMBOL_GPL(clk_hw_is_prepared
);
611 bool clk_hw_rate_is_protected(const struct clk_hw
*hw
)
613 return clk_core_rate_is_protected(hw
->core
);
615 EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected
);
617 bool clk_hw_is_enabled(const struct clk_hw
*hw
)
619 return clk_core_is_enabled(hw
->core
);
621 EXPORT_SYMBOL_GPL(clk_hw_is_enabled
);
623 bool __clk_is_enabled(struct clk
*clk
)
628 return clk_core_is_enabled(clk
->core
);
630 EXPORT_SYMBOL_GPL(__clk_is_enabled
);
632 static bool mux_is_better_rate(unsigned long rate
, unsigned long now
,
633 unsigned long best
, unsigned long flags
)
635 if (flags
& CLK_MUX_ROUND_CLOSEST
)
636 return abs(now
- rate
) < abs(best
- rate
);
638 return now
<= rate
&& now
> best
;
641 static void clk_core_init_rate_req(struct clk_core
* const core
,
642 struct clk_rate_request
*req
,
645 static int clk_core_round_rate_nolock(struct clk_core
*core
,
646 struct clk_rate_request
*req
);
648 static bool clk_core_has_parent(struct clk_core
*core
, const struct clk_core
*parent
)
650 struct clk_core
*tmp
;
653 /* Optimize for the case where the parent is already the parent. */
654 if (core
->parent
== parent
)
657 for (i
= 0; i
< core
->num_parents
; i
++) {
658 tmp
= clk_core_get_parent_by_index(core
, i
);
670 clk_core_forward_rate_req(struct clk_core
*core
,
671 const struct clk_rate_request
*old_req
,
672 struct clk_core
*parent
,
673 struct clk_rate_request
*req
,
674 unsigned long parent_rate
)
676 if (WARN_ON(!clk_core_has_parent(core
, parent
)))
679 clk_core_init_rate_req(parent
, req
, parent_rate
);
681 if (req
->min_rate
< old_req
->min_rate
)
682 req
->min_rate
= old_req
->min_rate
;
684 if (req
->max_rate
> old_req
->max_rate
)
685 req
->max_rate
= old_req
->max_rate
;
689 clk_core_determine_rate_no_reparent(struct clk_hw
*hw
,
690 struct clk_rate_request
*req
)
692 struct clk_core
*core
= hw
->core
;
693 struct clk_core
*parent
= core
->parent
;
697 if (core
->flags
& CLK_SET_RATE_PARENT
) {
698 struct clk_rate_request parent_req
;
705 clk_core_forward_rate_req(core
, req
, parent
, &parent_req
,
708 trace_clk_rate_request_start(&parent_req
);
710 ret
= clk_core_round_rate_nolock(parent
, &parent_req
);
714 trace_clk_rate_request_done(&parent_req
);
716 best
= parent_req
.rate
;
718 best
= clk_core_get_rate_nolock(parent
);
720 best
= clk_core_get_rate_nolock(core
);
723 req
->best_parent_rate
= best
;
729 int clk_mux_determine_rate_flags(struct clk_hw
*hw
,
730 struct clk_rate_request
*req
,
733 struct clk_core
*core
= hw
->core
, *parent
, *best_parent
= NULL
;
734 int i
, num_parents
, ret
;
735 unsigned long best
= 0;
737 /* if NO_REPARENT flag set, pass through to current parent */
738 if (core
->flags
& CLK_SET_RATE_NO_REPARENT
)
739 return clk_core_determine_rate_no_reparent(hw
, req
);
741 /* find the parent that can provide the fastest rate <= rate */
742 num_parents
= core
->num_parents
;
743 for (i
= 0; i
< num_parents
; i
++) {
744 unsigned long parent_rate
;
746 parent
= clk_core_get_parent_by_index(core
, i
);
750 if (core
->flags
& CLK_SET_RATE_PARENT
) {
751 struct clk_rate_request parent_req
;
753 clk_core_forward_rate_req(core
, req
, parent
, &parent_req
, req
->rate
);
755 trace_clk_rate_request_start(&parent_req
);
757 ret
= clk_core_round_rate_nolock(parent
, &parent_req
);
761 trace_clk_rate_request_done(&parent_req
);
763 parent_rate
= parent_req
.rate
;
765 parent_rate
= clk_core_get_rate_nolock(parent
);
768 if (mux_is_better_rate(req
->rate
, parent_rate
,
770 best_parent
= parent
;
778 req
->best_parent_hw
= best_parent
->hw
;
779 req
->best_parent_rate
= best
;
784 EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags
);
786 struct clk
*__clk_lookup(const char *name
)
788 struct clk_core
*core
= clk_core_lookup(name
);
790 return !core
? NULL
: core
->hw
->clk
;
793 static void clk_core_get_boundaries(struct clk_core
*core
,
794 unsigned long *min_rate
,
795 unsigned long *max_rate
)
797 struct clk
*clk_user
;
799 lockdep_assert_held(&prepare_lock
);
801 *min_rate
= core
->min_rate
;
802 *max_rate
= core
->max_rate
;
804 hlist_for_each_entry(clk_user
, &core
->clks
, clks_node
)
805 *min_rate
= max(*min_rate
, clk_user
->min_rate
);
807 hlist_for_each_entry(clk_user
, &core
->clks
, clks_node
)
808 *max_rate
= min(*max_rate
, clk_user
->max_rate
);
812 * clk_hw_get_rate_range() - returns the clock rate range for a hw clk
813 * @hw: the hw clk we want to get the range from
814 * @min_rate: pointer to the variable that will hold the minimum
815 * @max_rate: pointer to the variable that will hold the maximum
817 * Fills the @min_rate and @max_rate variables with the minimum and
818 * maximum that clock can reach.
820 void clk_hw_get_rate_range(struct clk_hw
*hw
, unsigned long *min_rate
,
821 unsigned long *max_rate
)
823 clk_core_get_boundaries(hw
->core
, min_rate
, max_rate
);
825 EXPORT_SYMBOL_GPL(clk_hw_get_rate_range
);
827 static bool clk_core_check_boundaries(struct clk_core
*core
,
828 unsigned long min_rate
,
829 unsigned long max_rate
)
833 lockdep_assert_held(&prepare_lock
);
835 if (min_rate
> core
->max_rate
|| max_rate
< core
->min_rate
)
838 hlist_for_each_entry(user
, &core
->clks
, clks_node
)
839 if (min_rate
> user
->max_rate
|| max_rate
< user
->min_rate
)
845 void clk_hw_set_rate_range(struct clk_hw
*hw
, unsigned long min_rate
,
846 unsigned long max_rate
)
848 hw
->core
->min_rate
= min_rate
;
849 hw
->core
->max_rate
= max_rate
;
851 EXPORT_SYMBOL_GPL(clk_hw_set_rate_range
);
854 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
855 * @hw: mux type clk to determine rate on
856 * @req: rate request, also used to return preferred parent and frequencies
858 * Helper for finding best parent to provide a given frequency. This can be used
859 * directly as a determine_rate callback (e.g. for a mux), or from a more
860 * complex clock that may combine a mux with other operations.
862 * Returns: 0 on success, -EERROR value on error
864 int __clk_mux_determine_rate(struct clk_hw
*hw
,
865 struct clk_rate_request
*req
)
867 return clk_mux_determine_rate_flags(hw
, req
, 0);
869 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate
);
871 int __clk_mux_determine_rate_closest(struct clk_hw
*hw
,
872 struct clk_rate_request
*req
)
874 return clk_mux_determine_rate_flags(hw
, req
, CLK_MUX_ROUND_CLOSEST
);
876 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest
);
879 * clk_hw_determine_rate_no_reparent - clk_ops::determine_rate implementation for a clk that doesn't reparent
880 * @hw: mux type clk to determine rate on
881 * @req: rate request, also used to return preferred frequency
883 * Helper for finding best parent rate to provide a given frequency.
884 * This can be used directly as a determine_rate callback (e.g. for a
885 * mux), or from a more complex clock that may combine a mux with other
888 * Returns: 0 on success, -EERROR value on error
890 int clk_hw_determine_rate_no_reparent(struct clk_hw
*hw
,
891 struct clk_rate_request
*req
)
893 return clk_core_determine_rate_no_reparent(hw
, req
);
895 EXPORT_SYMBOL_GPL(clk_hw_determine_rate_no_reparent
);
899 static void clk_core_rate_unprotect(struct clk_core
*core
)
901 lockdep_assert_held(&prepare_lock
);
906 if (WARN(core
->protect_count
== 0,
907 "%s already unprotected\n", core
->name
))
910 if (--core
->protect_count
> 0)
913 clk_core_rate_unprotect(core
->parent
);
916 static int clk_core_rate_nuke_protect(struct clk_core
*core
)
920 lockdep_assert_held(&prepare_lock
);
925 if (core
->protect_count
== 0)
928 ret
= core
->protect_count
;
929 core
->protect_count
= 1;
930 clk_core_rate_unprotect(core
);
936 * clk_rate_exclusive_put - release exclusivity over clock rate control
937 * @clk: the clk over which the exclusivity is released
939 * clk_rate_exclusive_put() completes a critical section during which a clock
940 * consumer cannot tolerate any other consumer making any operation on the
941 * clock which could result in a rate change or rate glitch. Exclusive clocks
942 * cannot have their rate changed, either directly or indirectly due to changes
943 * further up the parent chain of clocks. As a result, clocks up parent chain
944 * also get under exclusive control of the calling consumer.
946 * If exlusivity is claimed more than once on clock, even by the same consumer,
947 * the rate effectively gets locked as exclusivity can't be preempted.
949 * Calls to clk_rate_exclusive_put() must be balanced with calls to
950 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
953 void clk_rate_exclusive_put(struct clk
*clk
)
961 * if there is something wrong with this consumer protect count, stop
962 * here before messing with the provider
964 if (WARN_ON(clk
->exclusive_count
<= 0))
967 clk_core_rate_unprotect(clk
->core
);
968 clk
->exclusive_count
--;
970 clk_prepare_unlock();
972 EXPORT_SYMBOL_GPL(clk_rate_exclusive_put
);
974 static void clk_core_rate_protect(struct clk_core
*core
)
976 lockdep_assert_held(&prepare_lock
);
981 if (core
->protect_count
== 0)
982 clk_core_rate_protect(core
->parent
);
984 core
->protect_count
++;
987 static void clk_core_rate_restore_protect(struct clk_core
*core
, int count
)
989 lockdep_assert_held(&prepare_lock
);
997 clk_core_rate_protect(core
);
998 core
->protect_count
= count
;
1002 * clk_rate_exclusive_get - get exclusivity over the clk rate control
1003 * @clk: the clk over which the exclusity of rate control is requested
1005 * clk_rate_exclusive_get() begins a critical section during which a clock
1006 * consumer cannot tolerate any other consumer making any operation on the
1007 * clock which could result in a rate change or rate glitch. Exclusive clocks
1008 * cannot have their rate changed, either directly or indirectly due to changes
1009 * further up the parent chain of clocks. As a result, clocks up parent chain
1010 * also get under exclusive control of the calling consumer.
1012 * If exlusivity is claimed more than once on clock, even by the same consumer,
1013 * the rate effectively gets locked as exclusivity can't be preempted.
1015 * Calls to clk_rate_exclusive_get() should be balanced with calls to
1016 * clk_rate_exclusive_put(). Calls to this function may sleep.
1017 * Returns 0 on success, -EERROR otherwise
1019 int clk_rate_exclusive_get(struct clk
*clk
)
1025 clk_core_rate_protect(clk
->core
);
1026 clk
->exclusive_count
++;
1027 clk_prepare_unlock();
1031 EXPORT_SYMBOL_GPL(clk_rate_exclusive_get
);
1033 static void devm_clk_rate_exclusive_put(void *data
)
1035 struct clk
*clk
= data
;
1037 clk_rate_exclusive_put(clk
);
1040 int devm_clk_rate_exclusive_get(struct device
*dev
, struct clk
*clk
)
1044 ret
= clk_rate_exclusive_get(clk
);
1048 return devm_add_action_or_reset(dev
, devm_clk_rate_exclusive_put
, clk
);
1050 EXPORT_SYMBOL_GPL(devm_clk_rate_exclusive_get
);
1052 static void clk_core_unprepare(struct clk_core
*core
)
1054 lockdep_assert_held(&prepare_lock
);
1059 if (WARN(core
->prepare_count
== 0,
1060 "%s already unprepared\n", core
->name
))
1063 if (WARN(core
->prepare_count
== 1 && core
->flags
& CLK_IS_CRITICAL
,
1064 "Unpreparing critical %s\n", core
->name
))
1067 if (core
->flags
& CLK_SET_RATE_GATE
)
1068 clk_core_rate_unprotect(core
);
1070 if (--core
->prepare_count
> 0)
1073 WARN(core
->enable_count
> 0, "Unpreparing enabled %s\n", core
->name
);
1075 trace_clk_unprepare(core
);
1077 if (core
->ops
->unprepare
)
1078 core
->ops
->unprepare(core
->hw
);
1080 trace_clk_unprepare_complete(core
);
1081 clk_core_unprepare(core
->parent
);
1082 clk_pm_runtime_put(core
);
1085 static void clk_core_unprepare_lock(struct clk_core
*core
)
1088 clk_core_unprepare(core
);
1089 clk_prepare_unlock();
1093 * clk_unprepare - undo preparation of a clock source
1094 * @clk: the clk being unprepared
1096 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
1097 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
1098 * if the operation may sleep. One example is a clk which is accessed over
1099 * I2c. In the complex case a clk gate operation may require a fast and a slow
1100 * part. It is this reason that clk_unprepare and clk_disable are not mutually
1101 * exclusive. In fact clk_disable must be called before clk_unprepare.
1103 void clk_unprepare(struct clk
*clk
)
1105 if (IS_ERR_OR_NULL(clk
))
1108 clk_core_unprepare_lock(clk
->core
);
1110 EXPORT_SYMBOL_GPL(clk_unprepare
);
1112 static int clk_core_prepare(struct clk_core
*core
)
1116 lockdep_assert_held(&prepare_lock
);
1121 if (core
->prepare_count
== 0) {
1122 ret
= clk_pm_runtime_get(core
);
1126 ret
= clk_core_prepare(core
->parent
);
1130 trace_clk_prepare(core
);
1132 if (core
->ops
->prepare
)
1133 ret
= core
->ops
->prepare(core
->hw
);
1135 trace_clk_prepare_complete(core
);
1141 core
->prepare_count
++;
1144 * CLK_SET_RATE_GATE is a special case of clock protection
1145 * Instead of a consumer claiming exclusive rate control, it is
1146 * actually the provider which prevents any consumer from making any
1147 * operation which could result in a rate change or rate glitch while
1148 * the clock is prepared.
1150 if (core
->flags
& CLK_SET_RATE_GATE
)
1151 clk_core_rate_protect(core
);
1155 clk_core_unprepare(core
->parent
);
1157 clk_pm_runtime_put(core
);
1161 static int clk_core_prepare_lock(struct clk_core
*core
)
1166 ret
= clk_core_prepare(core
);
1167 clk_prepare_unlock();
1173 * clk_prepare - prepare a clock source
1174 * @clk: the clk being prepared
1176 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
1177 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
1178 * operation may sleep. One example is a clk which is accessed over I2c. In
1179 * the complex case a clk ungate operation may require a fast and a slow part.
1180 * It is this reason that clk_prepare and clk_enable are not mutually
1181 * exclusive. In fact clk_prepare must be called before clk_enable.
1182 * Returns 0 on success, -EERROR otherwise.
1184 int clk_prepare(struct clk
*clk
)
1189 return clk_core_prepare_lock(clk
->core
);
1191 EXPORT_SYMBOL_GPL(clk_prepare
);
1193 static void clk_core_disable(struct clk_core
*core
)
1195 lockdep_assert_held(&enable_lock
);
1200 if (WARN(core
->enable_count
== 0, "%s already disabled\n", core
->name
))
1203 if (WARN(core
->enable_count
== 1 && core
->flags
& CLK_IS_CRITICAL
,
1204 "Disabling critical %s\n", core
->name
))
1207 if (--core
->enable_count
> 0)
1210 trace_clk_disable(core
);
1212 if (core
->ops
->disable
)
1213 core
->ops
->disable(core
->hw
);
1215 trace_clk_disable_complete(core
);
1217 clk_core_disable(core
->parent
);
1220 static void clk_core_disable_lock(struct clk_core
*core
)
1222 unsigned long flags
;
1224 flags
= clk_enable_lock();
1225 clk_core_disable(core
);
1226 clk_enable_unlock(flags
);
1230 * clk_disable - gate a clock
1231 * @clk: the clk being gated
1233 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1234 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1235 * clk if the operation is fast and will never sleep. One example is a
1236 * SoC-internal clk which is controlled via simple register writes. In the
1237 * complex case a clk gate operation may require a fast and a slow part. It is
1238 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1239 * In fact clk_disable must be called before clk_unprepare.
1241 void clk_disable(struct clk
*clk
)
1243 if (IS_ERR_OR_NULL(clk
))
1246 clk_core_disable_lock(clk
->core
);
1248 EXPORT_SYMBOL_GPL(clk_disable
);
1250 static int clk_core_enable(struct clk_core
*core
)
1254 lockdep_assert_held(&enable_lock
);
1259 if (WARN(core
->prepare_count
== 0,
1260 "Enabling unprepared %s\n", core
->name
))
1263 if (core
->enable_count
== 0) {
1264 ret
= clk_core_enable(core
->parent
);
1269 trace_clk_enable(core
);
1271 if (core
->ops
->enable
)
1272 ret
= core
->ops
->enable(core
->hw
);
1274 trace_clk_enable_complete(core
);
1277 clk_core_disable(core
->parent
);
1282 core
->enable_count
++;
1286 static int clk_core_enable_lock(struct clk_core
*core
)
1288 unsigned long flags
;
1291 flags
= clk_enable_lock();
1292 ret
= clk_core_enable(core
);
1293 clk_enable_unlock(flags
);
1299 * clk_gate_restore_context - restore context for poweroff
1300 * @hw: the clk_hw pointer of clock whose state is to be restored
1302 * The clock gate restore context function enables or disables
1303 * the gate clocks based on the enable_count. This is done in cases
1304 * where the clock context is lost and based on the enable_count
1305 * the clock either needs to be enabled/disabled. This
1306 * helps restore the state of gate clocks.
1308 void clk_gate_restore_context(struct clk_hw
*hw
)
1310 struct clk_core
*core
= hw
->core
;
1312 if (core
->enable_count
)
1313 core
->ops
->enable(hw
);
1315 core
->ops
->disable(hw
);
1317 EXPORT_SYMBOL_GPL(clk_gate_restore_context
);
1319 static int clk_core_save_context(struct clk_core
*core
)
1321 struct clk_core
*child
;
1324 hlist_for_each_entry(child
, &core
->children
, child_node
) {
1325 ret
= clk_core_save_context(child
);
1330 if (core
->ops
&& core
->ops
->save_context
)
1331 ret
= core
->ops
->save_context(core
->hw
);
1336 static void clk_core_restore_context(struct clk_core
*core
)
1338 struct clk_core
*child
;
1340 if (core
->ops
&& core
->ops
->restore_context
)
1341 core
->ops
->restore_context(core
->hw
);
1343 hlist_for_each_entry(child
, &core
->children
, child_node
)
1344 clk_core_restore_context(child
);
1348 * clk_save_context - save clock context for poweroff
1350 * Saves the context of the clock register for powerstates in which the
1351 * contents of the registers will be lost. Occurs deep within the suspend
1352 * code. Returns 0 on success.
1354 int clk_save_context(void)
1356 struct clk_core
*clk
;
1359 hlist_for_each_entry(clk
, &clk_root_list
, child_node
) {
1360 ret
= clk_core_save_context(clk
);
1365 hlist_for_each_entry(clk
, &clk_orphan_list
, child_node
) {
1366 ret
= clk_core_save_context(clk
);
1373 EXPORT_SYMBOL_GPL(clk_save_context
);
1376 * clk_restore_context - restore clock context after poweroff
1378 * Restore the saved clock context upon resume.
1381 void clk_restore_context(void)
1383 struct clk_core
*core
;
1385 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1386 clk_core_restore_context(core
);
1388 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1389 clk_core_restore_context(core
);
1391 EXPORT_SYMBOL_GPL(clk_restore_context
);
1394 * clk_enable - ungate a clock
1395 * @clk: the clk being ungated
1397 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1398 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1399 * if the operation will never sleep. One example is a SoC-internal clk which
1400 * is controlled via simple register writes. In the complex case a clk ungate
1401 * operation may require a fast and a slow part. It is this reason that
1402 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1403 * must be called before clk_enable. Returns 0 on success, -EERROR
1406 int clk_enable(struct clk
*clk
)
1411 return clk_core_enable_lock(clk
->core
);
1413 EXPORT_SYMBOL_GPL(clk_enable
);
1416 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
1417 * @clk: clock source
1419 * Returns true if clk_prepare() implicitly enables the clock, effectively
1420 * making clk_enable()/clk_disable() no-ops, false otherwise.
1422 * This is of interest mainly to power management code where actually
1423 * disabling the clock also requires unpreparing it to have any material
1426 * Regardless of the value returned here, the caller must always invoke
1427 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
1430 bool clk_is_enabled_when_prepared(struct clk
*clk
)
1432 return clk
&& !(clk
->core
->ops
->enable
&& clk
->core
->ops
->disable
);
1434 EXPORT_SYMBOL_GPL(clk_is_enabled_when_prepared
);
1436 static int clk_core_prepare_enable(struct clk_core
*core
)
1440 ret
= clk_core_prepare_lock(core
);
1444 ret
= clk_core_enable_lock(core
);
1446 clk_core_unprepare_lock(core
);
1451 static void clk_core_disable_unprepare(struct clk_core
*core
)
1453 clk_core_disable_lock(core
);
1454 clk_core_unprepare_lock(core
);
1457 static void __init
clk_unprepare_unused_subtree(struct clk_core
*core
)
1459 struct clk_core
*child
;
1461 lockdep_assert_held(&prepare_lock
);
1463 hlist_for_each_entry(child
, &core
->children
, child_node
)
1464 clk_unprepare_unused_subtree(child
);
1466 if (core
->prepare_count
)
1469 if (core
->flags
& CLK_IGNORE_UNUSED
)
1472 if (clk_core_is_prepared(core
)) {
1473 trace_clk_unprepare(core
);
1474 if (core
->ops
->unprepare_unused
)
1475 core
->ops
->unprepare_unused(core
->hw
);
1476 else if (core
->ops
->unprepare
)
1477 core
->ops
->unprepare(core
->hw
);
1478 trace_clk_unprepare_complete(core
);
1482 static void __init
clk_disable_unused_subtree(struct clk_core
*core
)
1484 struct clk_core
*child
;
1485 unsigned long flags
;
1487 lockdep_assert_held(&prepare_lock
);
1489 hlist_for_each_entry(child
, &core
->children
, child_node
)
1490 clk_disable_unused_subtree(child
);
1492 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
1493 clk_core_prepare_enable(core
->parent
);
1495 flags
= clk_enable_lock();
1497 if (core
->enable_count
)
1500 if (core
->flags
& CLK_IGNORE_UNUSED
)
1504 * some gate clocks have special needs during the disable-unused
1505 * sequence. call .disable_unused if available, otherwise fall
1508 if (clk_core_is_enabled(core
)) {
1509 trace_clk_disable(core
);
1510 if (core
->ops
->disable_unused
)
1511 core
->ops
->disable_unused(core
->hw
);
1512 else if (core
->ops
->disable
)
1513 core
->ops
->disable(core
->hw
);
1514 trace_clk_disable_complete(core
);
1518 clk_enable_unlock(flags
);
1519 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
1520 clk_core_disable_unprepare(core
->parent
);
1523 static bool clk_ignore_unused __initdata
;
1524 static int __init
clk_ignore_unused_setup(char *__unused
)
1526 clk_ignore_unused
= true;
1529 __setup("clk_ignore_unused", clk_ignore_unused_setup
);
1531 static int __init
clk_disable_unused(void)
1533 struct clk_core
*core
;
1536 if (clk_ignore_unused
) {
1537 pr_warn("clk: Not disabling unused clocks\n");
1541 pr_info("clk: Disabling unused clocks\n");
1543 ret
= clk_pm_runtime_get_all();
1547 * Grab the prepare lock to keep the clk topology stable while iterating
1552 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1553 clk_disable_unused_subtree(core
);
1555 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1556 clk_disable_unused_subtree(core
);
1558 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1559 clk_unprepare_unused_subtree(core
);
1561 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1562 clk_unprepare_unused_subtree(core
);
1564 clk_prepare_unlock();
1566 clk_pm_runtime_put_all();
1570 late_initcall_sync(clk_disable_unused
);
1572 static int clk_core_determine_round_nolock(struct clk_core
*core
,
1573 struct clk_rate_request
*req
)
1577 lockdep_assert_held(&prepare_lock
);
1583 * Some clock providers hand-craft their clk_rate_requests and
1584 * might not fill min_rate and max_rate.
1586 * If it's the case, clamping the rate is equivalent to setting
1587 * the rate to 0 which is bad. Skip the clamping but complain so
1588 * that it gets fixed, hopefully.
1590 if (!req
->min_rate
&& !req
->max_rate
)
1591 pr_warn("%s: %s: clk_rate_request has initialized min or max rate.\n",
1592 __func__
, core
->name
);
1594 req
->rate
= clamp(req
->rate
, req
->min_rate
, req
->max_rate
);
1597 * At this point, core protection will be disabled
1598 * - if the provider is not protected at all
1599 * - if the calling consumer is the only one which has exclusivity
1602 if (clk_core_rate_is_protected(core
)) {
1603 req
->rate
= core
->rate
;
1604 } else if (core
->ops
->determine_rate
) {
1605 return core
->ops
->determine_rate(core
->hw
, req
);
1606 } else if (core
->ops
->round_rate
) {
1607 rate
= core
->ops
->round_rate(core
->hw
, req
->rate
,
1608 &req
->best_parent_rate
);
1620 static void clk_core_init_rate_req(struct clk_core
* const core
,
1621 struct clk_rate_request
*req
,
1624 struct clk_core
*parent
;
1629 memset(req
, 0, sizeof(*req
));
1630 req
->max_rate
= ULONG_MAX
;
1637 clk_core_get_boundaries(core
, &req
->min_rate
, &req
->max_rate
);
1639 parent
= core
->parent
;
1641 req
->best_parent_hw
= parent
->hw
;
1642 req
->best_parent_rate
= parent
->rate
;
1644 req
->best_parent_hw
= NULL
;
1645 req
->best_parent_rate
= 0;
1650 * clk_hw_init_rate_request - Initializes a clk_rate_request
1651 * @hw: the clk for which we want to submit a rate request
1652 * @req: the clk_rate_request structure we want to initialise
1653 * @rate: the rate which is to be requested
1655 * Initializes a clk_rate_request structure to submit to
1656 * __clk_determine_rate() or similar functions.
1658 void clk_hw_init_rate_request(const struct clk_hw
*hw
,
1659 struct clk_rate_request
*req
,
1662 if (WARN_ON(!hw
|| !req
))
1665 clk_core_init_rate_req(hw
->core
, req
, rate
);
1667 EXPORT_SYMBOL_GPL(clk_hw_init_rate_request
);
1670 * clk_hw_forward_rate_request - Forwards a clk_rate_request to a clock's parent
1671 * @hw: the original clock that got the rate request
1672 * @old_req: the original clk_rate_request structure we want to forward
1673 * @parent: the clk we want to forward @old_req to
1674 * @req: the clk_rate_request structure we want to initialise
1675 * @parent_rate: The rate which is to be requested to @parent
1677 * Initializes a clk_rate_request structure to submit to a clock parent
1678 * in __clk_determine_rate() or similar functions.
1680 void clk_hw_forward_rate_request(const struct clk_hw
*hw
,
1681 const struct clk_rate_request
*old_req
,
1682 const struct clk_hw
*parent
,
1683 struct clk_rate_request
*req
,
1684 unsigned long parent_rate
)
1686 if (WARN_ON(!hw
|| !old_req
|| !parent
|| !req
))
1689 clk_core_forward_rate_req(hw
->core
, old_req
,
1693 EXPORT_SYMBOL_GPL(clk_hw_forward_rate_request
);
1695 static bool clk_core_can_round(struct clk_core
* const core
)
1697 return core
->ops
->determine_rate
|| core
->ops
->round_rate
;
1700 static int clk_core_round_rate_nolock(struct clk_core
*core
,
1701 struct clk_rate_request
*req
)
1705 lockdep_assert_held(&prepare_lock
);
1712 if (clk_core_can_round(core
))
1713 return clk_core_determine_round_nolock(core
, req
);
1715 if (core
->flags
& CLK_SET_RATE_PARENT
) {
1716 struct clk_rate_request parent_req
;
1718 clk_core_forward_rate_req(core
, req
, core
->parent
, &parent_req
, req
->rate
);
1720 trace_clk_rate_request_start(&parent_req
);
1722 ret
= clk_core_round_rate_nolock(core
->parent
, &parent_req
);
1726 trace_clk_rate_request_done(&parent_req
);
1728 req
->best_parent_rate
= parent_req
.rate
;
1729 req
->rate
= parent_req
.rate
;
1734 req
->rate
= core
->rate
;
1739 * __clk_determine_rate - get the closest rate actually supported by a clock
1740 * @hw: determine the rate of this clock
1741 * @req: target rate request
1743 * Useful for clk_ops such as .set_rate and .determine_rate.
1745 int __clk_determine_rate(struct clk_hw
*hw
, struct clk_rate_request
*req
)
1752 return clk_core_round_rate_nolock(hw
->core
, req
);
1754 EXPORT_SYMBOL_GPL(__clk_determine_rate
);
1757 * clk_hw_round_rate() - round the given rate for a hw clk
1758 * @hw: the hw clk for which we are rounding a rate
1759 * @rate: the rate which is to be rounded
1761 * Takes in a rate as input and rounds it to a rate that the clk can actually
1764 * Context: prepare_lock must be held.
1765 * For clk providers to call from within clk_ops such as .round_rate,
1768 * Return: returns rounded rate of hw clk if clk supports round_rate operation
1769 * else returns the parent rate.
1771 unsigned long clk_hw_round_rate(struct clk_hw
*hw
, unsigned long rate
)
1774 struct clk_rate_request req
;
1776 clk_core_init_rate_req(hw
->core
, &req
, rate
);
1778 trace_clk_rate_request_start(&req
);
1780 ret
= clk_core_round_rate_nolock(hw
->core
, &req
);
1784 trace_clk_rate_request_done(&req
);
1788 EXPORT_SYMBOL_GPL(clk_hw_round_rate
);
1791 * clk_round_rate - round the given rate for a clk
1792 * @clk: the clk for which we are rounding a rate
1793 * @rate: the rate which is to be rounded
1795 * Takes in a rate as input and rounds it to a rate that the clk can actually
1796 * use which is then returned. If clk doesn't support round_rate operation
1797 * then the parent rate is returned.
1799 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
1801 struct clk_rate_request req
;
1809 if (clk
->exclusive_count
)
1810 clk_core_rate_unprotect(clk
->core
);
1812 clk_core_init_rate_req(clk
->core
, &req
, rate
);
1814 trace_clk_rate_request_start(&req
);
1816 ret
= clk_core_round_rate_nolock(clk
->core
, &req
);
1818 trace_clk_rate_request_done(&req
);
1820 if (clk
->exclusive_count
)
1821 clk_core_rate_protect(clk
->core
);
1823 clk_prepare_unlock();
1830 EXPORT_SYMBOL_GPL(clk_round_rate
);
1833 * __clk_notify - call clk notifier chain
1834 * @core: clk that is changing rate
1835 * @msg: clk notifier type (see include/linux/clk.h)
1836 * @old_rate: old clk rate
1837 * @new_rate: new clk rate
1839 * Triggers a notifier call chain on the clk rate-change notification
1840 * for 'clk'. Passes a pointer to the struct clk and the previous
1841 * and current rates to the notifier callback. Intended to be called by
1842 * internal clock code only. Returns NOTIFY_DONE from the last driver
1843 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1844 * a driver returns that.
1846 static int __clk_notify(struct clk_core
*core
, unsigned long msg
,
1847 unsigned long old_rate
, unsigned long new_rate
)
1849 struct clk_notifier
*cn
;
1850 struct clk_notifier_data cnd
;
1851 int ret
= NOTIFY_DONE
;
1853 cnd
.old_rate
= old_rate
;
1854 cnd
.new_rate
= new_rate
;
1856 list_for_each_entry(cn
, &clk_notifier_list
, node
) {
1857 if (cn
->clk
->core
== core
) {
1859 ret
= srcu_notifier_call_chain(&cn
->notifier_head
, msg
,
1861 if (ret
& NOTIFY_STOP_MASK
)
1870 * __clk_recalc_accuracies
1871 * @core: first clk in the subtree
1873 * Walks the subtree of clks starting with clk and recalculates accuracies as
1874 * it goes. Note that if a clk does not implement the .recalc_accuracy
1875 * callback then it is assumed that the clock will take on the accuracy of its
1878 static void __clk_recalc_accuracies(struct clk_core
*core
)
1880 unsigned long parent_accuracy
= 0;
1881 struct clk_core
*child
;
1883 lockdep_assert_held(&prepare_lock
);
1886 parent_accuracy
= core
->parent
->accuracy
;
1888 if (core
->ops
->recalc_accuracy
)
1889 core
->accuracy
= core
->ops
->recalc_accuracy(core
->hw
,
1892 core
->accuracy
= parent_accuracy
;
1894 hlist_for_each_entry(child
, &core
->children
, child_node
)
1895 __clk_recalc_accuracies(child
);
1898 static long clk_core_get_accuracy_recalc(struct clk_core
*core
)
1900 if (core
&& (core
->flags
& CLK_GET_ACCURACY_NOCACHE
))
1901 __clk_recalc_accuracies(core
);
1903 return clk_core_get_accuracy_no_lock(core
);
1907 * clk_get_accuracy - return the accuracy of clk
1908 * @clk: the clk whose accuracy is being returned
1910 * Simply returns the cached accuracy of the clk, unless
1911 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1913 * If clk is NULL then returns 0.
1915 long clk_get_accuracy(struct clk
*clk
)
1923 accuracy
= clk_core_get_accuracy_recalc(clk
->core
);
1924 clk_prepare_unlock();
1928 EXPORT_SYMBOL_GPL(clk_get_accuracy
);
1930 static unsigned long clk_recalc(struct clk_core
*core
,
1931 unsigned long parent_rate
)
1933 unsigned long rate
= parent_rate
;
1935 if (core
->ops
->recalc_rate
&& !clk_pm_runtime_get(core
)) {
1936 rate
= core
->ops
->recalc_rate(core
->hw
, parent_rate
);
1937 clk_pm_runtime_put(core
);
1943 * __clk_recalc_rates
1944 * @core: first clk in the subtree
1945 * @update_req: Whether req_rate should be updated with the new rate
1946 * @msg: notification type (see include/linux/clk.h)
1948 * Walks the subtree of clks starting with clk and recalculates rates as it
1949 * goes. Note that if a clk does not implement the .recalc_rate callback then
1950 * it is assumed that the clock will take on the rate of its parent.
1952 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1955 static void __clk_recalc_rates(struct clk_core
*core
, bool update_req
,
1958 unsigned long old_rate
;
1959 unsigned long parent_rate
= 0;
1960 struct clk_core
*child
;
1962 lockdep_assert_held(&prepare_lock
);
1964 old_rate
= core
->rate
;
1967 parent_rate
= core
->parent
->rate
;
1969 core
->rate
= clk_recalc(core
, parent_rate
);
1971 core
->req_rate
= core
->rate
;
1974 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1975 * & ABORT_RATE_CHANGE notifiers
1977 if (core
->notifier_count
&& msg
)
1978 __clk_notify(core
, msg
, old_rate
, core
->rate
);
1980 hlist_for_each_entry(child
, &core
->children
, child_node
)
1981 __clk_recalc_rates(child
, update_req
, msg
);
1984 static unsigned long clk_core_get_rate_recalc(struct clk_core
*core
)
1986 if (core
&& (core
->flags
& CLK_GET_RATE_NOCACHE
))
1987 __clk_recalc_rates(core
, false, 0);
1989 return clk_core_get_rate_nolock(core
);
1993 * clk_get_rate - return the rate of clk
1994 * @clk: the clk whose rate is being returned
1996 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1997 * is set, which means a recalc_rate will be issued. Can be called regardless of
1998 * the clock enabledness. If clk is NULL, or if an error occurred, then returns
2001 unsigned long clk_get_rate(struct clk
*clk
)
2009 rate
= clk_core_get_rate_recalc(clk
->core
);
2010 clk_prepare_unlock();
2014 EXPORT_SYMBOL_GPL(clk_get_rate
);
2016 static int clk_fetch_parent_index(struct clk_core
*core
,
2017 struct clk_core
*parent
)
2024 for (i
= 0; i
< core
->num_parents
; i
++) {
2025 /* Found it first try! */
2026 if (core
->parents
[i
].core
== parent
)
2029 /* Something else is here, so keep looking */
2030 if (core
->parents
[i
].core
)
2033 /* Maybe core hasn't been cached but the hw is all we know? */
2034 if (core
->parents
[i
].hw
) {
2035 if (core
->parents
[i
].hw
== parent
->hw
)
2038 /* Didn't match, but we're expecting a clk_hw */
2042 /* Maybe it hasn't been cached (clk_set_parent() path) */
2043 if (parent
== clk_core_get(core
, i
))
2046 /* Fallback to comparing globally unique names */
2047 if (core
->parents
[i
].name
&&
2048 !strcmp(parent
->name
, core
->parents
[i
].name
))
2052 if (i
== core
->num_parents
)
2055 core
->parents
[i
].core
= parent
;
2060 * clk_hw_get_parent_index - return the index of the parent clock
2061 * @hw: clk_hw associated with the clk being consumed
2063 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
2064 * clock does not have a current parent.
2066 int clk_hw_get_parent_index(struct clk_hw
*hw
)
2068 struct clk_hw
*parent
= clk_hw_get_parent(hw
);
2070 if (WARN_ON(parent
== NULL
))
2073 return clk_fetch_parent_index(hw
->core
, parent
->core
);
2075 EXPORT_SYMBOL_GPL(clk_hw_get_parent_index
);
2078 * Update the orphan status of @core and all its children.
2080 static void clk_core_update_orphan_status(struct clk_core
*core
, bool is_orphan
)
2082 struct clk_core
*child
;
2084 core
->orphan
= is_orphan
;
2086 hlist_for_each_entry(child
, &core
->children
, child_node
)
2087 clk_core_update_orphan_status(child
, is_orphan
);
2090 static void clk_reparent(struct clk_core
*core
, struct clk_core
*new_parent
)
2092 bool was_orphan
= core
->orphan
;
2094 hlist_del(&core
->child_node
);
2097 bool becomes_orphan
= new_parent
->orphan
;
2099 /* avoid duplicate POST_RATE_CHANGE notifications */
2100 if (new_parent
->new_child
== core
)
2101 new_parent
->new_child
= NULL
;
2103 hlist_add_head(&core
->child_node
, &new_parent
->children
);
2105 if (was_orphan
!= becomes_orphan
)
2106 clk_core_update_orphan_status(core
, becomes_orphan
);
2108 hlist_add_head(&core
->child_node
, &clk_orphan_list
);
2110 clk_core_update_orphan_status(core
, true);
2113 core
->parent
= new_parent
;
2116 static struct clk_core
*__clk_set_parent_before(struct clk_core
*core
,
2117 struct clk_core
*parent
)
2119 unsigned long flags
;
2120 struct clk_core
*old_parent
= core
->parent
;
2123 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
2125 * 2. Migrate prepare state between parents and prevent race with
2128 * If the clock is not prepared, then a race with
2129 * clk_enable/disable() is impossible since we already have the
2130 * prepare lock (future calls to clk_enable() need to be preceded by
2133 * If the clock is prepared, migrate the prepared state to the new
2134 * parent and also protect against a race with clk_enable() by
2135 * forcing the clock and the new parent on. This ensures that all
2136 * future calls to clk_enable() are practically NOPs with respect to
2137 * hardware and software states.
2139 * See also: Comment for clk_set_parent() below.
2142 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
2143 if (core
->flags
& CLK_OPS_PARENT_ENABLE
) {
2144 clk_core_prepare_enable(old_parent
);
2145 clk_core_prepare_enable(parent
);
2148 /* migrate prepare count if > 0 */
2149 if (core
->prepare_count
) {
2150 clk_core_prepare_enable(parent
);
2151 clk_core_enable_lock(core
);
2154 /* update the clk tree topology */
2155 flags
= clk_enable_lock();
2156 clk_reparent(core
, parent
);
2157 clk_enable_unlock(flags
);
2162 static void __clk_set_parent_after(struct clk_core
*core
,
2163 struct clk_core
*parent
,
2164 struct clk_core
*old_parent
)
2167 * Finish the migration of prepare state and undo the changes done
2168 * for preventing a race with clk_enable().
2170 if (core
->prepare_count
) {
2171 clk_core_disable_lock(core
);
2172 clk_core_disable_unprepare(old_parent
);
2175 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
2176 if (core
->flags
& CLK_OPS_PARENT_ENABLE
) {
2177 clk_core_disable_unprepare(parent
);
2178 clk_core_disable_unprepare(old_parent
);
2182 static int __clk_set_parent(struct clk_core
*core
, struct clk_core
*parent
,
2185 unsigned long flags
;
2187 struct clk_core
*old_parent
;
2189 old_parent
= __clk_set_parent_before(core
, parent
);
2191 trace_clk_set_parent(core
, parent
);
2193 /* change clock input source */
2194 if (parent
&& core
->ops
->set_parent
)
2195 ret
= core
->ops
->set_parent(core
->hw
, p_index
);
2197 trace_clk_set_parent_complete(core
, parent
);
2200 flags
= clk_enable_lock();
2201 clk_reparent(core
, old_parent
);
2202 clk_enable_unlock(flags
);
2204 __clk_set_parent_after(core
, old_parent
, parent
);
2209 __clk_set_parent_after(core
, parent
, old_parent
);
2215 * __clk_speculate_rates
2216 * @core: first clk in the subtree
2217 * @parent_rate: the "future" rate of clk's parent
2219 * Walks the subtree of clks starting with clk, speculating rates as it
2220 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
2222 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
2223 * pre-rate change notifications and returns early if no clks in the
2224 * subtree have subscribed to the notifications. Note that if a clk does not
2225 * implement the .recalc_rate callback then it is assumed that the clock will
2226 * take on the rate of its parent.
2228 static int __clk_speculate_rates(struct clk_core
*core
,
2229 unsigned long parent_rate
)
2231 struct clk_core
*child
;
2232 unsigned long new_rate
;
2233 int ret
= NOTIFY_DONE
;
2235 lockdep_assert_held(&prepare_lock
);
2237 new_rate
= clk_recalc(core
, parent_rate
);
2239 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
2240 if (core
->notifier_count
)
2241 ret
= __clk_notify(core
, PRE_RATE_CHANGE
, core
->rate
, new_rate
);
2243 if (ret
& NOTIFY_STOP_MASK
) {
2244 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
2245 __func__
, core
->name
, ret
);
2249 hlist_for_each_entry(child
, &core
->children
, child_node
) {
2250 ret
= __clk_speculate_rates(child
, new_rate
);
2251 if (ret
& NOTIFY_STOP_MASK
)
2259 static void clk_calc_subtree(struct clk_core
*core
, unsigned long new_rate
,
2260 struct clk_core
*new_parent
, u8 p_index
)
2262 struct clk_core
*child
;
2264 core
->new_rate
= new_rate
;
2265 core
->new_parent
= new_parent
;
2266 core
->new_parent_index
= p_index
;
2267 /* include clk in new parent's PRE_RATE_CHANGE notifications */
2268 core
->new_child
= NULL
;
2269 if (new_parent
&& new_parent
!= core
->parent
)
2270 new_parent
->new_child
= core
;
2272 hlist_for_each_entry(child
, &core
->children
, child_node
) {
2273 child
->new_rate
= clk_recalc(child
, new_rate
);
2274 clk_calc_subtree(child
, child
->new_rate
, NULL
, 0);
2279 * calculate the new rates returning the topmost clock that has to be
2282 static struct clk_core
*clk_calc_new_rates(struct clk_core
*core
,
2285 struct clk_core
*top
= core
;
2286 struct clk_core
*old_parent
, *parent
;
2287 unsigned long best_parent_rate
= 0;
2288 unsigned long new_rate
;
2289 unsigned long min_rate
;
2290 unsigned long max_rate
;
2295 if (IS_ERR_OR_NULL(core
))
2298 /* save parent rate, if it exists */
2299 parent
= old_parent
= core
->parent
;
2301 best_parent_rate
= parent
->rate
;
2303 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
2305 /* find the closest rate and parent clk/rate */
2306 if (clk_core_can_round(core
)) {
2307 struct clk_rate_request req
;
2309 clk_core_init_rate_req(core
, &req
, rate
);
2311 trace_clk_rate_request_start(&req
);
2313 ret
= clk_core_determine_round_nolock(core
, &req
);
2317 trace_clk_rate_request_done(&req
);
2319 best_parent_rate
= req
.best_parent_rate
;
2320 new_rate
= req
.rate
;
2321 parent
= req
.best_parent_hw
? req
.best_parent_hw
->core
: NULL
;
2323 if (new_rate
< min_rate
|| new_rate
> max_rate
)
2325 } else if (!parent
|| !(core
->flags
& CLK_SET_RATE_PARENT
)) {
2326 /* pass-through clock without adjustable parent */
2327 core
->new_rate
= core
->rate
;
2330 /* pass-through clock with adjustable parent */
2331 top
= clk_calc_new_rates(parent
, rate
);
2332 new_rate
= parent
->new_rate
;
2336 /* some clocks must be gated to change parent */
2337 if (parent
!= old_parent
&&
2338 (core
->flags
& CLK_SET_PARENT_GATE
) && core
->prepare_count
) {
2339 pr_debug("%s: %s not gated but wants to reparent\n",
2340 __func__
, core
->name
);
2344 /* try finding the new parent index */
2345 if (parent
&& core
->num_parents
> 1) {
2346 p_index
= clk_fetch_parent_index(core
, parent
);
2348 pr_debug("%s: clk %s can not be parent of clk %s\n",
2349 __func__
, parent
->name
, core
->name
);
2354 if ((core
->flags
& CLK_SET_RATE_PARENT
) && parent
&&
2355 best_parent_rate
!= parent
->rate
)
2356 top
= clk_calc_new_rates(parent
, best_parent_rate
);
2359 clk_calc_subtree(core
, new_rate
, parent
, p_index
);
2365 * Notify about rate changes in a subtree. Always walk down the whole tree
2366 * so that in case of an error we can walk down the whole tree again and
2369 static struct clk_core
*clk_propagate_rate_change(struct clk_core
*core
,
2370 unsigned long event
)
2372 struct clk_core
*child
, *tmp_clk
, *fail_clk
= NULL
;
2373 int ret
= NOTIFY_DONE
;
2375 if (core
->rate
== core
->new_rate
)
2378 if (core
->notifier_count
) {
2379 ret
= __clk_notify(core
, event
, core
->rate
, core
->new_rate
);
2380 if (ret
& NOTIFY_STOP_MASK
)
2384 hlist_for_each_entry(child
, &core
->children
, child_node
) {
2385 /* Skip children who will be reparented to another clock */
2386 if (child
->new_parent
&& child
->new_parent
!= core
)
2388 tmp_clk
= clk_propagate_rate_change(child
, event
);
2393 /* handle the new child who might not be in core->children yet */
2394 if (core
->new_child
) {
2395 tmp_clk
= clk_propagate_rate_change(core
->new_child
, event
);
2404 * walk down a subtree and set the new rates notifying the rate
2407 static void clk_change_rate(struct clk_core
*core
)
2409 struct clk_core
*child
;
2410 struct hlist_node
*tmp
;
2411 unsigned long old_rate
;
2412 unsigned long best_parent_rate
= 0;
2413 bool skip_set_rate
= false;
2414 struct clk_core
*old_parent
;
2415 struct clk_core
*parent
= NULL
;
2417 old_rate
= core
->rate
;
2419 if (core
->new_parent
) {
2420 parent
= core
->new_parent
;
2421 best_parent_rate
= core
->new_parent
->rate
;
2422 } else if (core
->parent
) {
2423 parent
= core
->parent
;
2424 best_parent_rate
= core
->parent
->rate
;
2427 if (clk_pm_runtime_get(core
))
2430 if (core
->flags
& CLK_SET_RATE_UNGATE
) {
2431 clk_core_prepare(core
);
2432 clk_core_enable_lock(core
);
2435 if (core
->new_parent
&& core
->new_parent
!= core
->parent
) {
2436 old_parent
= __clk_set_parent_before(core
, core
->new_parent
);
2437 trace_clk_set_parent(core
, core
->new_parent
);
2439 if (core
->ops
->set_rate_and_parent
) {
2440 skip_set_rate
= true;
2441 core
->ops
->set_rate_and_parent(core
->hw
, core
->new_rate
,
2443 core
->new_parent_index
);
2444 } else if (core
->ops
->set_parent
) {
2445 core
->ops
->set_parent(core
->hw
, core
->new_parent_index
);
2448 trace_clk_set_parent_complete(core
, core
->new_parent
);
2449 __clk_set_parent_after(core
, core
->new_parent
, old_parent
);
2452 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
2453 clk_core_prepare_enable(parent
);
2455 trace_clk_set_rate(core
, core
->new_rate
);
2457 if (!skip_set_rate
&& core
->ops
->set_rate
)
2458 core
->ops
->set_rate(core
->hw
, core
->new_rate
, best_parent_rate
);
2460 trace_clk_set_rate_complete(core
, core
->new_rate
);
2462 core
->rate
= clk_recalc(core
, best_parent_rate
);
2464 if (core
->flags
& CLK_SET_RATE_UNGATE
) {
2465 clk_core_disable_lock(core
);
2466 clk_core_unprepare(core
);
2469 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
2470 clk_core_disable_unprepare(parent
);
2472 if (core
->notifier_count
&& old_rate
!= core
->rate
)
2473 __clk_notify(core
, POST_RATE_CHANGE
, old_rate
, core
->rate
);
2475 if (core
->flags
& CLK_RECALC_NEW_RATES
)
2476 (void)clk_calc_new_rates(core
, core
->new_rate
);
2479 * Use safe iteration, as change_rate can actually swap parents
2480 * for certain clock types.
2482 hlist_for_each_entry_safe(child
, tmp
, &core
->children
, child_node
) {
2483 /* Skip children who will be reparented to another clock */
2484 if (child
->new_parent
&& child
->new_parent
!= core
)
2486 clk_change_rate(child
);
2489 /* handle the new child who might not be in core->children yet */
2490 if (core
->new_child
)
2491 clk_change_rate(core
->new_child
);
2493 clk_pm_runtime_put(core
);
2496 static unsigned long clk_core_req_round_rate_nolock(struct clk_core
*core
,
2497 unsigned long req_rate
)
2500 struct clk_rate_request req
;
2502 lockdep_assert_held(&prepare_lock
);
2507 /* simulate what the rate would be if it could be freely set */
2508 cnt
= clk_core_rate_nuke_protect(core
);
2512 clk_core_init_rate_req(core
, &req
, req_rate
);
2514 trace_clk_rate_request_start(&req
);
2516 ret
= clk_core_round_rate_nolock(core
, &req
);
2518 trace_clk_rate_request_done(&req
);
2520 /* restore the protection */
2521 clk_core_rate_restore_protect(core
, cnt
);
2523 return ret
? 0 : req
.rate
;
2526 static int clk_core_set_rate_nolock(struct clk_core
*core
,
2527 unsigned long req_rate
)
2529 struct clk_core
*top
, *fail_clk
;
2536 rate
= clk_core_req_round_rate_nolock(core
, req_rate
);
2538 /* bail early if nothing to do */
2539 if (rate
== clk_core_get_rate_nolock(core
))
2542 /* fail on a direct rate set of a protected provider */
2543 if (clk_core_rate_is_protected(core
))
2546 /* calculate new rates and get the topmost changed clock */
2547 top
= clk_calc_new_rates(core
, req_rate
);
2551 ret
= clk_pm_runtime_get(core
);
2555 /* notify that we are about to change rates */
2556 fail_clk
= clk_propagate_rate_change(top
, PRE_RATE_CHANGE
);
2558 pr_debug("%s: failed to set %s rate\n", __func__
,
2560 clk_propagate_rate_change(top
, ABORT_RATE_CHANGE
);
2565 /* change the rates */
2566 clk_change_rate(top
);
2568 core
->req_rate
= req_rate
;
2570 clk_pm_runtime_put(core
);
2576 * clk_set_rate - specify a new rate for clk
2577 * @clk: the clk whose rate is being changed
2578 * @rate: the new rate for clk
2580 * In the simplest case clk_set_rate will only adjust the rate of clk.
2582 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2583 * propagate up to clk's parent; whether or not this happens depends on the
2584 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2585 * after calling .round_rate then upstream parent propagation is ignored. If
2586 * *parent_rate comes back with a new rate for clk's parent then we propagate
2587 * up to clk's parent and set its rate. Upward propagation will continue
2588 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2589 * .round_rate stops requesting changes to clk's parent_rate.
2591 * Rate changes are accomplished via tree traversal that also recalculates the
2592 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
2594 * Returns 0 on success, -EERROR otherwise.
2596 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
2603 /* prevent racing with updates to the clock topology */
2606 if (clk
->exclusive_count
)
2607 clk_core_rate_unprotect(clk
->core
);
2609 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2611 if (clk
->exclusive_count
)
2612 clk_core_rate_protect(clk
->core
);
2614 clk_prepare_unlock();
2618 EXPORT_SYMBOL_GPL(clk_set_rate
);
2621 * clk_set_rate_exclusive - specify a new rate and get exclusive control
2622 * @clk: the clk whose rate is being changed
2623 * @rate: the new rate for clk
2625 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2626 * within a critical section
2628 * This can be used initially to ensure that at least 1 consumer is
2629 * satisfied when several consumers are competing for exclusivity over the
2630 * same clock provider.
2632 * The exclusivity is not applied if setting the rate failed.
2634 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2635 * clk_rate_exclusive_put().
2637 * Returns 0 on success, -EERROR otherwise.
2639 int clk_set_rate_exclusive(struct clk
*clk
, unsigned long rate
)
2646 /* prevent racing with updates to the clock topology */
2650 * The temporary protection removal is not here, on purpose
2651 * This function is meant to be used instead of clk_rate_protect,
2652 * so before the consumer code path protect the clock provider
2655 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2657 clk_core_rate_protect(clk
->core
);
2658 clk
->exclusive_count
++;
2661 clk_prepare_unlock();
2665 EXPORT_SYMBOL_GPL(clk_set_rate_exclusive
);
2667 static int clk_set_rate_range_nolock(struct clk
*clk
,
2672 unsigned long old_min
, old_max
, rate
;
2674 lockdep_assert_held(&prepare_lock
);
2679 trace_clk_set_rate_range(clk
->core
, min
, max
);
2682 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2683 __func__
, clk
->core
->name
, clk
->dev_id
, clk
->con_id
,
2688 if (clk
->exclusive_count
)
2689 clk_core_rate_unprotect(clk
->core
);
2691 /* Save the current values in case we need to rollback the change */
2692 old_min
= clk
->min_rate
;
2693 old_max
= clk
->max_rate
;
2694 clk
->min_rate
= min
;
2695 clk
->max_rate
= max
;
2697 if (!clk_core_check_boundaries(clk
->core
, min
, max
)) {
2702 rate
= clk
->core
->req_rate
;
2703 if (clk
->core
->flags
& CLK_GET_RATE_NOCACHE
)
2704 rate
= clk_core_get_rate_recalc(clk
->core
);
2707 * Since the boundaries have been changed, let's give the
2708 * opportunity to the provider to adjust the clock rate based on
2709 * the new boundaries.
2711 * We also need to handle the case where the clock is currently
2712 * outside of the boundaries. Clamping the last requested rate
2713 * to the current minimum and maximum will also handle this.
2716 * There is a catch. It may fail for the usual reason (clock
2717 * broken, clock protected, etc) but also because:
2718 * - round_rate() was not favorable and fell on the wrong
2719 * side of the boundary
2720 * - the determine_rate() callback does not really check for
2721 * this corner case when determining the rate
2723 rate
= clamp(rate
, min
, max
);
2724 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2726 /* rollback the changes */
2727 clk
->min_rate
= old_min
;
2728 clk
->max_rate
= old_max
;
2732 if (clk
->exclusive_count
)
2733 clk_core_rate_protect(clk
->core
);
2739 * clk_set_rate_range - set a rate range for a clock source
2740 * @clk: clock source
2741 * @min: desired minimum clock rate in Hz, inclusive
2742 * @max: desired maximum clock rate in Hz, inclusive
2744 * Return: 0 for success or negative errno on failure.
2746 int clk_set_rate_range(struct clk
*clk
, unsigned long min
, unsigned long max
)
2755 ret
= clk_set_rate_range_nolock(clk
, min
, max
);
2757 clk_prepare_unlock();
2761 EXPORT_SYMBOL_GPL(clk_set_rate_range
);
2764 * clk_set_min_rate - set a minimum clock rate for a clock source
2765 * @clk: clock source
2766 * @rate: desired minimum clock rate in Hz, inclusive
2768 * Returns success (0) or negative errno.
2770 int clk_set_min_rate(struct clk
*clk
, unsigned long rate
)
2775 trace_clk_set_min_rate(clk
->core
, rate
);
2777 return clk_set_rate_range(clk
, rate
, clk
->max_rate
);
2779 EXPORT_SYMBOL_GPL(clk_set_min_rate
);
2782 * clk_set_max_rate - set a maximum clock rate for a clock source
2783 * @clk: clock source
2784 * @rate: desired maximum clock rate in Hz, inclusive
2786 * Returns success (0) or negative errno.
2788 int clk_set_max_rate(struct clk
*clk
, unsigned long rate
)
2793 trace_clk_set_max_rate(clk
->core
, rate
);
2795 return clk_set_rate_range(clk
, clk
->min_rate
, rate
);
2797 EXPORT_SYMBOL_GPL(clk_set_max_rate
);
2800 * clk_get_parent - return the parent of a clk
2801 * @clk: the clk whose parent gets returned
2803 * Simply returns clk->parent. Returns NULL if clk is NULL.
2805 struct clk
*clk_get_parent(struct clk
*clk
)
2813 /* TODO: Create a per-user clk and change callers to call clk_put */
2814 parent
= !clk
->core
->parent
? NULL
: clk
->core
->parent
->hw
->clk
;
2815 clk_prepare_unlock();
2819 EXPORT_SYMBOL_GPL(clk_get_parent
);
2821 static struct clk_core
*__clk_init_parent(struct clk_core
*core
)
2825 if (core
->num_parents
> 1 && core
->ops
->get_parent
)
2826 index
= core
->ops
->get_parent(core
->hw
);
2828 return clk_core_get_parent_by_index(core
, index
);
2831 static void clk_core_reparent(struct clk_core
*core
,
2832 struct clk_core
*new_parent
)
2834 clk_reparent(core
, new_parent
);
2835 __clk_recalc_accuracies(core
);
2836 __clk_recalc_rates(core
, true, POST_RATE_CHANGE
);
2839 void clk_hw_reparent(struct clk_hw
*hw
, struct clk_hw
*new_parent
)
2844 clk_core_reparent(hw
->core
, !new_parent
? NULL
: new_parent
->core
);
2848 * clk_has_parent - check if a clock is a possible parent for another
2849 * @clk: clock source
2850 * @parent: parent clock source
2852 * This function can be used in drivers that need to check that a clock can be
2853 * the parent of another without actually changing the parent.
2855 * Returns true if @parent is a possible parent for @clk, false otherwise.
2857 bool clk_has_parent(const struct clk
*clk
, const struct clk
*parent
)
2859 /* NULL clocks should be nops, so return success if either is NULL. */
2860 if (!clk
|| !parent
)
2863 return clk_core_has_parent(clk
->core
, parent
->core
);
2865 EXPORT_SYMBOL_GPL(clk_has_parent
);
2867 static int clk_core_set_parent_nolock(struct clk_core
*core
,
2868 struct clk_core
*parent
)
2872 unsigned long p_rate
= 0;
2874 lockdep_assert_held(&prepare_lock
);
2879 if (core
->parent
== parent
)
2882 /* verify ops for multi-parent clks */
2883 if (core
->num_parents
> 1 && !core
->ops
->set_parent
)
2886 /* check that we are allowed to re-parent if the clock is in use */
2887 if ((core
->flags
& CLK_SET_PARENT_GATE
) && core
->prepare_count
)
2890 if (clk_core_rate_is_protected(core
))
2893 /* try finding the new parent index */
2895 p_index
= clk_fetch_parent_index(core
, parent
);
2897 pr_debug("%s: clk %s can not be parent of clk %s\n",
2898 __func__
, parent
->name
, core
->name
);
2901 p_rate
= parent
->rate
;
2904 ret
= clk_pm_runtime_get(core
);
2908 /* propagate PRE_RATE_CHANGE notifications */
2909 ret
= __clk_speculate_rates(core
, p_rate
);
2911 /* abort if a driver objects */
2912 if (ret
& NOTIFY_STOP_MASK
)
2915 /* do the re-parent */
2916 ret
= __clk_set_parent(core
, parent
, p_index
);
2918 /* propagate rate an accuracy recalculation accordingly */
2920 __clk_recalc_rates(core
, true, ABORT_RATE_CHANGE
);
2922 __clk_recalc_rates(core
, true, POST_RATE_CHANGE
);
2923 __clk_recalc_accuracies(core
);
2927 clk_pm_runtime_put(core
);
2932 int clk_hw_set_parent(struct clk_hw
*hw
, struct clk_hw
*parent
)
2934 return clk_core_set_parent_nolock(hw
->core
, parent
->core
);
2936 EXPORT_SYMBOL_GPL(clk_hw_set_parent
);
2939 * clk_set_parent - switch the parent of a mux clk
2940 * @clk: the mux clk whose input we are switching
2941 * @parent: the new input to clk
2943 * Re-parent clk to use parent as its new input source. If clk is in
2944 * prepared state, the clk will get enabled for the duration of this call. If
2945 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2946 * that, the reparenting is glitchy in hardware, etc), use the
2947 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2949 * After successfully changing clk's parent clk_set_parent will update the
2950 * clk topology, sysfs topology and propagate rate recalculation via
2951 * __clk_recalc_rates.
2953 * Returns 0 on success, -EERROR otherwise.
2955 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
2964 if (clk
->exclusive_count
)
2965 clk_core_rate_unprotect(clk
->core
);
2967 ret
= clk_core_set_parent_nolock(clk
->core
,
2968 parent
? parent
->core
: NULL
);
2970 if (clk
->exclusive_count
)
2971 clk_core_rate_protect(clk
->core
);
2973 clk_prepare_unlock();
2977 EXPORT_SYMBOL_GPL(clk_set_parent
);
2979 static int clk_core_set_phase_nolock(struct clk_core
*core
, int degrees
)
2983 lockdep_assert_held(&prepare_lock
);
2988 if (clk_core_rate_is_protected(core
))
2991 trace_clk_set_phase(core
, degrees
);
2993 if (core
->ops
->set_phase
) {
2994 ret
= core
->ops
->set_phase(core
->hw
, degrees
);
2996 core
->phase
= degrees
;
2999 trace_clk_set_phase_complete(core
, degrees
);
3005 * clk_set_phase - adjust the phase shift of a clock signal
3006 * @clk: clock signal source
3007 * @degrees: number of degrees the signal is shifted
3009 * Shifts the phase of a clock signal by the specified
3010 * degrees. Returns 0 on success, -EERROR otherwise.
3012 * This function makes no distinction about the input or reference
3013 * signal that we adjust the clock signal phase against. For example
3014 * phase locked-loop clock signal generators we may shift phase with
3015 * respect to feedback clock signal input, but for other cases the
3016 * clock phase may be shifted with respect to some other, unspecified
3019 * Additionally the concept of phase shift does not propagate through
3020 * the clock tree hierarchy, which sets it apart from clock rates and
3021 * clock accuracy. A parent clock phase attribute does not have an
3022 * impact on the phase attribute of a child clock.
3024 int clk_set_phase(struct clk
*clk
, int degrees
)
3031 /* sanity check degrees */
3038 if (clk
->exclusive_count
)
3039 clk_core_rate_unprotect(clk
->core
);
3041 ret
= clk_core_set_phase_nolock(clk
->core
, degrees
);
3043 if (clk
->exclusive_count
)
3044 clk_core_rate_protect(clk
->core
);
3046 clk_prepare_unlock();
3050 EXPORT_SYMBOL_GPL(clk_set_phase
);
3052 static int clk_core_get_phase(struct clk_core
*core
)
3056 lockdep_assert_held(&prepare_lock
);
3057 if (!core
->ops
->get_phase
)
3060 /* Always try to update cached phase if possible */
3061 ret
= core
->ops
->get_phase(core
->hw
);
3069 * clk_get_phase - return the phase shift of a clock signal
3070 * @clk: clock signal source
3072 * Returns the phase shift of a clock node in degrees, otherwise returns
3075 int clk_get_phase(struct clk
*clk
)
3083 ret
= clk_core_get_phase(clk
->core
);
3084 clk_prepare_unlock();
3088 EXPORT_SYMBOL_GPL(clk_get_phase
);
3090 static void clk_core_reset_duty_cycle_nolock(struct clk_core
*core
)
3092 /* Assume a default value of 50% */
3097 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core
*core
);
3099 static int clk_core_update_duty_cycle_nolock(struct clk_core
*core
)
3101 struct clk_duty
*duty
= &core
->duty
;
3104 if (!core
->ops
->get_duty_cycle
)
3105 return clk_core_update_duty_cycle_parent_nolock(core
);
3107 ret
= core
->ops
->get_duty_cycle(core
->hw
, duty
);
3111 /* Don't trust the clock provider too much */
3112 if (duty
->den
== 0 || duty
->num
> duty
->den
) {
3120 clk_core_reset_duty_cycle_nolock(core
);
3124 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core
*core
)
3129 core
->flags
& CLK_DUTY_CYCLE_PARENT
) {
3130 ret
= clk_core_update_duty_cycle_nolock(core
->parent
);
3131 memcpy(&core
->duty
, &core
->parent
->duty
, sizeof(core
->duty
));
3133 clk_core_reset_duty_cycle_nolock(core
);
3139 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core
*core
,
3140 struct clk_duty
*duty
);
3142 static int clk_core_set_duty_cycle_nolock(struct clk_core
*core
,
3143 struct clk_duty
*duty
)
3147 lockdep_assert_held(&prepare_lock
);
3149 if (clk_core_rate_is_protected(core
))
3152 trace_clk_set_duty_cycle(core
, duty
);
3154 if (!core
->ops
->set_duty_cycle
)
3155 return clk_core_set_duty_cycle_parent_nolock(core
, duty
);
3157 ret
= core
->ops
->set_duty_cycle(core
->hw
, duty
);
3159 memcpy(&core
->duty
, duty
, sizeof(*duty
));
3161 trace_clk_set_duty_cycle_complete(core
, duty
);
3166 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core
*core
,
3167 struct clk_duty
*duty
)
3172 core
->flags
& (CLK_DUTY_CYCLE_PARENT
| CLK_SET_RATE_PARENT
)) {
3173 ret
= clk_core_set_duty_cycle_nolock(core
->parent
, duty
);
3174 memcpy(&core
->duty
, &core
->parent
->duty
, sizeof(core
->duty
));
3181 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
3182 * @clk: clock signal source
3183 * @num: numerator of the duty cycle ratio to be applied
3184 * @den: denominator of the duty cycle ratio to be applied
3186 * Apply the duty cycle ratio if the ratio is valid and the clock can
3187 * perform this operation
3189 * Returns (0) on success, a negative errno otherwise.
3191 int clk_set_duty_cycle(struct clk
*clk
, unsigned int num
, unsigned int den
)
3194 struct clk_duty duty
;
3199 /* sanity check the ratio */
3200 if (den
== 0 || num
> den
)
3208 if (clk
->exclusive_count
)
3209 clk_core_rate_unprotect(clk
->core
);
3211 ret
= clk_core_set_duty_cycle_nolock(clk
->core
, &duty
);
3213 if (clk
->exclusive_count
)
3214 clk_core_rate_protect(clk
->core
);
3216 clk_prepare_unlock();
3220 EXPORT_SYMBOL_GPL(clk_set_duty_cycle
);
3222 static int clk_core_get_scaled_duty_cycle(struct clk_core
*core
,
3225 struct clk_duty
*duty
= &core
->duty
;
3230 ret
= clk_core_update_duty_cycle_nolock(core
);
3232 ret
= mult_frac(scale
, duty
->num
, duty
->den
);
3234 clk_prepare_unlock();
3240 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
3241 * @clk: clock signal source
3242 * @scale: scaling factor to be applied to represent the ratio as an integer
3244 * Returns the duty cycle ratio of a clock node multiplied by the provided
3245 * scaling factor, or negative errno on error.
3247 int clk_get_scaled_duty_cycle(struct clk
*clk
, unsigned int scale
)
3252 return clk_core_get_scaled_duty_cycle(clk
->core
, scale
);
3254 EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle
);
3257 * clk_is_match - check if two clk's point to the same hardware clock
3258 * @p: clk compared against q
3259 * @q: clk compared against p
3261 * Returns true if the two struct clk pointers both point to the same hardware
3262 * clock node. Put differently, returns true if struct clk *p and struct clk *q
3263 * share the same struct clk_core object.
3265 * Returns false otherwise. Note that two NULL clks are treated as matching.
3267 bool clk_is_match(const struct clk
*p
, const struct clk
*q
)
3269 /* trivial case: identical struct clk's or both NULL */
3273 /* true if clk->core pointers match. Avoid dereferencing garbage */
3274 if (!IS_ERR_OR_NULL(p
) && !IS_ERR_OR_NULL(q
))
3275 if (p
->core
== q
->core
)
3280 EXPORT_SYMBOL_GPL(clk_is_match
);
3282 /*** debugfs support ***/
3284 #ifdef CONFIG_DEBUG_FS
3285 #include <linux/debugfs.h>
3287 static struct dentry
*rootdir
;
3288 static int inited
= 0;
3289 static DEFINE_MUTEX(clk_debug_lock
);
3290 static HLIST_HEAD(clk_debug_list
);
3292 static struct hlist_head
*orphan_list
[] = {
3297 static void clk_summary_show_one(struct seq_file
*s
, struct clk_core
*c
,
3301 struct clk
*clk_user
;
3304 seq_printf(s
, "%*s%-*s %-7d %-8d %-8d %-11lu %-10lu ",
3306 35 - level
* 3, c
->name
,
3307 c
->enable_count
, c
->prepare_count
, c
->protect_count
,
3308 clk_core_get_rate_recalc(c
),
3309 clk_core_get_accuracy_recalc(c
));
3311 phase
= clk_core_get_phase(c
);
3313 seq_printf(s
, "%-5d", phase
);
3315 seq_puts(s
, "-----");
3317 seq_printf(s
, " %-6d", clk_core_get_scaled_duty_cycle(c
, 100000));
3319 if (c
->ops
->is_enabled
)
3320 seq_printf(s
, " %5c ", clk_core_is_enabled(c
) ? 'Y' : 'N');
3321 else if (!c
->ops
->enable
)
3322 seq_printf(s
, " %5c ", 'Y');
3324 seq_printf(s
, " %5c ", '?');
3326 hlist_for_each_entry(clk_user
, &c
->clks
, clks_node
) {
3327 seq_printf(s
, "%*s%-*s %-25s\n",
3328 level
* 3 + 2 + 105 * multi_node
, "",
3330 clk_user
->dev_id
? clk_user
->dev_id
: "deviceless",
3331 clk_user
->con_id
? clk_user
->con_id
: "no_connection_id");
3338 static void clk_summary_show_subtree(struct seq_file
*s
, struct clk_core
*c
,
3341 struct clk_core
*child
;
3343 clk_summary_show_one(s
, c
, level
);
3345 hlist_for_each_entry(child
, &c
->children
, child_node
)
3346 clk_summary_show_subtree(s
, child
, level
+ 1);
3349 static int clk_summary_show(struct seq_file
*s
, void *data
)
3352 struct hlist_head
**lists
= s
->private;
3355 seq_puts(s
, " enable prepare protect duty hardware connection\n");
3356 seq_puts(s
, " clock count count count rate accuracy phase cycle enable consumer id\n");
3357 seq_puts(s
, "---------------------------------------------------------------------------------------------------------------------------------------------\n");
3359 ret
= clk_pm_runtime_get_all();
3365 for (; *lists
; lists
++)
3366 hlist_for_each_entry(c
, *lists
, child_node
)
3367 clk_summary_show_subtree(s
, c
, 0);
3369 clk_prepare_unlock();
3370 clk_pm_runtime_put_all();
3374 DEFINE_SHOW_ATTRIBUTE(clk_summary
);
3376 static void clk_dump_one(struct seq_file
*s
, struct clk_core
*c
, int level
)
3379 unsigned long min_rate
, max_rate
;
3381 clk_core_get_boundaries(c
, &min_rate
, &max_rate
);
3383 /* This should be JSON format, i.e. elements separated with a comma */
3384 seq_printf(s
, "\"%s\": { ", c
->name
);
3385 seq_printf(s
, "\"enable_count\": %d,", c
->enable_count
);
3386 seq_printf(s
, "\"prepare_count\": %d,", c
->prepare_count
);
3387 seq_printf(s
, "\"protect_count\": %d,", c
->protect_count
);
3388 seq_printf(s
, "\"rate\": %lu,", clk_core_get_rate_recalc(c
));
3389 seq_printf(s
, "\"min_rate\": %lu,", min_rate
);
3390 seq_printf(s
, "\"max_rate\": %lu,", max_rate
);
3391 seq_printf(s
, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c
));
3392 phase
= clk_core_get_phase(c
);
3394 seq_printf(s
, "\"phase\": %d,", phase
);
3395 seq_printf(s
, "\"duty_cycle\": %u",
3396 clk_core_get_scaled_duty_cycle(c
, 100000));
3399 static void clk_dump_subtree(struct seq_file
*s
, struct clk_core
*c
, int level
)
3401 struct clk_core
*child
;
3403 clk_dump_one(s
, c
, level
);
3405 hlist_for_each_entry(child
, &c
->children
, child_node
) {
3407 clk_dump_subtree(s
, child
, level
+ 1);
3413 static int clk_dump_show(struct seq_file
*s
, void *data
)
3416 bool first_node
= true;
3417 struct hlist_head
**lists
= s
->private;
3420 ret
= clk_pm_runtime_get_all();
3428 for (; *lists
; lists
++) {
3429 hlist_for_each_entry(c
, *lists
, child_node
) {
3433 clk_dump_subtree(s
, c
, 0);
3437 clk_prepare_unlock();
3438 clk_pm_runtime_put_all();
3443 DEFINE_SHOW_ATTRIBUTE(clk_dump
);
3445 #undef CLOCK_ALLOW_WRITE_DEBUGFS
3446 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3448 * This can be dangerous, therefore don't provide any real compile time
3449 * configuration option for this feature.
3450 * People who want to use this will need to modify the source code directly.
3452 static int clk_rate_set(void *data
, u64 val
)
3454 struct clk_core
*core
= data
;
3458 ret
= clk_core_set_rate_nolock(core
, val
);
3459 clk_prepare_unlock();
3464 #define clk_rate_mode 0644
3466 static int clk_phase_set(void *data
, u64 val
)
3468 struct clk_core
*core
= data
;
3469 int degrees
= do_div(val
, 360);
3473 ret
= clk_core_set_phase_nolock(core
, degrees
);
3474 clk_prepare_unlock();
3479 #define clk_phase_mode 0644
3481 static int clk_prepare_enable_set(void *data
, u64 val
)
3483 struct clk_core
*core
= data
;
3487 ret
= clk_prepare_enable(core
->hw
->clk
);
3489 clk_disable_unprepare(core
->hw
->clk
);
3494 static int clk_prepare_enable_get(void *data
, u64
*val
)
3496 struct clk_core
*core
= data
;
3498 *val
= core
->enable_count
&& core
->prepare_count
;
3502 DEFINE_DEBUGFS_ATTRIBUTE(clk_prepare_enable_fops
, clk_prepare_enable_get
,
3503 clk_prepare_enable_set
, "%llu\n");
3506 #define clk_rate_set NULL
3507 #define clk_rate_mode 0444
3509 #define clk_phase_set NULL
3510 #define clk_phase_mode 0644
3513 static int clk_rate_get(void *data
, u64
*val
)
3515 struct clk_core
*core
= data
;
3518 *val
= clk_core_get_rate_recalc(core
);
3519 clk_prepare_unlock();
3524 DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops
, clk_rate_get
, clk_rate_set
, "%llu\n");
3526 static int clk_phase_get(void *data
, u64
*val
)
3528 struct clk_core
*core
= data
;
3534 DEFINE_DEBUGFS_ATTRIBUTE(clk_phase_fops
, clk_phase_get
, clk_phase_set
, "%llu\n");
3536 static const struct {
3540 #define ENTRY(f) { f, #f }
3541 ENTRY(CLK_SET_RATE_GATE
),
3542 ENTRY(CLK_SET_PARENT_GATE
),
3543 ENTRY(CLK_SET_RATE_PARENT
),
3544 ENTRY(CLK_IGNORE_UNUSED
),
3545 ENTRY(CLK_GET_RATE_NOCACHE
),
3546 ENTRY(CLK_SET_RATE_NO_REPARENT
),
3547 ENTRY(CLK_GET_ACCURACY_NOCACHE
),
3548 ENTRY(CLK_RECALC_NEW_RATES
),
3549 ENTRY(CLK_SET_RATE_UNGATE
),
3550 ENTRY(CLK_IS_CRITICAL
),
3551 ENTRY(CLK_OPS_PARENT_ENABLE
),
3552 ENTRY(CLK_DUTY_CYCLE_PARENT
),
3556 static int clk_flags_show(struct seq_file
*s
, void *data
)
3558 struct clk_core
*core
= s
->private;
3559 unsigned long flags
= core
->flags
;
3562 for (i
= 0; flags
&& i
< ARRAY_SIZE(clk_flags
); i
++) {
3563 if (flags
& clk_flags
[i
].flag
) {
3564 seq_printf(s
, "%s\n", clk_flags
[i
].name
);
3565 flags
&= ~clk_flags
[i
].flag
;
3570 seq_printf(s
, "0x%lx\n", flags
);
3575 DEFINE_SHOW_ATTRIBUTE(clk_flags
);
3577 static void possible_parent_show(struct seq_file
*s
, struct clk_core
*core
,
3578 unsigned int i
, char terminator
)
3580 struct clk_core
*parent
;
3581 const char *name
= NULL
;
3584 * Go through the following options to fetch a parent's name.
3586 * 1. Fetch the registered parent clock and use its name
3587 * 2. Use the global (fallback) name if specified
3588 * 3. Use the local fw_name if provided
3589 * 4. Fetch parent clock's clock-output-name if DT index was set
3591 * This may still fail in some cases, such as when the parent is
3592 * specified directly via a struct clk_hw pointer, but it isn't
3595 parent
= clk_core_get_parent_by_index(core
, i
);
3597 seq_puts(s
, parent
->name
);
3598 } else if (core
->parents
[i
].name
) {
3599 seq_puts(s
, core
->parents
[i
].name
);
3600 } else if (core
->parents
[i
].fw_name
) {
3601 seq_printf(s
, "<%s>(fw)", core
->parents
[i
].fw_name
);
3603 if (core
->parents
[i
].index
>= 0)
3604 name
= of_clk_get_parent_name(core
->of_node
, core
->parents
[i
].index
);
3611 seq_putc(s
, terminator
);
3614 static int possible_parents_show(struct seq_file
*s
, void *data
)
3616 struct clk_core
*core
= s
->private;
3619 for (i
= 0; i
< core
->num_parents
- 1; i
++)
3620 possible_parent_show(s
, core
, i
, ' ');
3622 possible_parent_show(s
, core
, i
, '\n');
3626 DEFINE_SHOW_ATTRIBUTE(possible_parents
);
3628 static int current_parent_show(struct seq_file
*s
, void *data
)
3630 struct clk_core
*core
= s
->private;
3633 seq_printf(s
, "%s\n", core
->parent
->name
);
3637 DEFINE_SHOW_ATTRIBUTE(current_parent
);
3639 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3640 static ssize_t
current_parent_write(struct file
*file
, const char __user
*ubuf
,
3641 size_t count
, loff_t
*ppos
)
3643 struct seq_file
*s
= file
->private_data
;
3644 struct clk_core
*core
= s
->private;
3645 struct clk_core
*parent
;
3649 err
= kstrtou8_from_user(ubuf
, count
, 0, &idx
);
3653 parent
= clk_core_get_parent_by_index(core
, idx
);
3658 err
= clk_core_set_parent_nolock(core
, parent
);
3659 clk_prepare_unlock();
3666 static const struct file_operations current_parent_rw_fops
= {
3667 .open
= current_parent_open
,
3668 .write
= current_parent_write
,
3670 .llseek
= seq_lseek
,
3671 .release
= single_release
,
3675 static int clk_duty_cycle_show(struct seq_file
*s
, void *data
)
3677 struct clk_core
*core
= s
->private;
3678 struct clk_duty
*duty
= &core
->duty
;
3680 seq_printf(s
, "%u/%u\n", duty
->num
, duty
->den
);
3684 DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle
);
3686 static int clk_min_rate_show(struct seq_file
*s
, void *data
)
3688 struct clk_core
*core
= s
->private;
3689 unsigned long min_rate
, max_rate
;
3692 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
3693 clk_prepare_unlock();
3694 seq_printf(s
, "%lu\n", min_rate
);
3698 DEFINE_SHOW_ATTRIBUTE(clk_min_rate
);
3700 static int clk_max_rate_show(struct seq_file
*s
, void *data
)
3702 struct clk_core
*core
= s
->private;
3703 unsigned long min_rate
, max_rate
;
3706 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
3707 clk_prepare_unlock();
3708 seq_printf(s
, "%lu\n", max_rate
);
3712 DEFINE_SHOW_ATTRIBUTE(clk_max_rate
);
3714 static void clk_debug_create_one(struct clk_core
*core
, struct dentry
*pdentry
)
3716 struct dentry
*root
;
3718 if (!core
|| !pdentry
)
3721 root
= debugfs_create_dir(core
->name
, pdentry
);
3722 core
->dentry
= root
;
3724 debugfs_create_file("clk_rate", clk_rate_mode
, root
, core
,
3726 debugfs_create_file("clk_min_rate", 0444, root
, core
, &clk_min_rate_fops
);
3727 debugfs_create_file("clk_max_rate", 0444, root
, core
, &clk_max_rate_fops
);
3728 debugfs_create_ulong("clk_accuracy", 0444, root
, &core
->accuracy
);
3729 debugfs_create_file("clk_phase", clk_phase_mode
, root
, core
,
3731 debugfs_create_file("clk_flags", 0444, root
, core
, &clk_flags_fops
);
3732 debugfs_create_u32("clk_prepare_count", 0444, root
, &core
->prepare_count
);
3733 debugfs_create_u32("clk_enable_count", 0444, root
, &core
->enable_count
);
3734 debugfs_create_u32("clk_protect_count", 0444, root
, &core
->protect_count
);
3735 debugfs_create_u32("clk_notifier_count", 0444, root
, &core
->notifier_count
);
3736 debugfs_create_file("clk_duty_cycle", 0444, root
, core
,
3737 &clk_duty_cycle_fops
);
3738 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3739 debugfs_create_file("clk_prepare_enable", 0644, root
, core
,
3740 &clk_prepare_enable_fops
);
3742 if (core
->num_parents
> 1)
3743 debugfs_create_file("clk_parent", 0644, root
, core
,
3744 ¤t_parent_rw_fops
);
3747 if (core
->num_parents
> 0)
3748 debugfs_create_file("clk_parent", 0444, root
, core
,
3749 ¤t_parent_fops
);
3751 if (core
->num_parents
> 1)
3752 debugfs_create_file("clk_possible_parents", 0444, root
, core
,
3753 &possible_parents_fops
);
3755 if (core
->ops
->debug_init
)
3756 core
->ops
->debug_init(core
->hw
, core
->dentry
);
3760 * clk_debug_register - add a clk node to the debugfs clk directory
3761 * @core: the clk being added to the debugfs clk directory
3763 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3764 * initialized. Otherwise it bails out early since the debugfs clk directory
3765 * will be created lazily by clk_debug_init as part of a late_initcall.
3767 static void clk_debug_register(struct clk_core
*core
)
3769 mutex_lock(&clk_debug_lock
);
3770 hlist_add_head(&core
->debug_node
, &clk_debug_list
);
3772 clk_debug_create_one(core
, rootdir
);
3773 mutex_unlock(&clk_debug_lock
);
3777 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3778 * @core: the clk being removed from the debugfs clk directory
3780 * Dynamically removes a clk and all its child nodes from the
3781 * debugfs clk directory if clk->dentry points to debugfs created by
3782 * clk_debug_register in __clk_core_init.
3784 static void clk_debug_unregister(struct clk_core
*core
)
3786 mutex_lock(&clk_debug_lock
);
3787 hlist_del_init(&core
->debug_node
);
3788 debugfs_remove_recursive(core
->dentry
);
3789 core
->dentry
= NULL
;
3790 mutex_unlock(&clk_debug_lock
);
3794 * clk_debug_init - lazily populate the debugfs clk directory
3796 * clks are often initialized very early during boot before memory can be
3797 * dynamically allocated and well before debugfs is setup. This function
3798 * populates the debugfs clk directory once at boot-time when we know that
3799 * debugfs is setup. It should only be called once at boot-time, all other clks
3800 * added dynamically will be done so with clk_debug_register.
3802 static int __init
clk_debug_init(void)
3804 struct clk_core
*core
;
3806 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3808 pr_warn("********************************************************************\n");
3809 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3811 pr_warn("** WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **\n");
3813 pr_warn("** This means that this kernel is built to expose clk operations **\n");
3814 pr_warn("** such as parent or rate setting, enabling, disabling, etc. **\n");
3815 pr_warn("** to userspace, which may compromise security on your system. **\n");
3817 pr_warn("** If you see this message and you are not debugging the **\n");
3818 pr_warn("** kernel, report this immediately to your vendor! **\n");
3820 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3821 pr_warn("********************************************************************\n");
3824 rootdir
= debugfs_create_dir("clk", NULL
);
3826 debugfs_create_file("clk_summary", 0444, rootdir
, &all_lists
,
3828 debugfs_create_file("clk_dump", 0444, rootdir
, &all_lists
,
3830 debugfs_create_file("clk_orphan_summary", 0444, rootdir
, &orphan_list
,
3832 debugfs_create_file("clk_orphan_dump", 0444, rootdir
, &orphan_list
,
3835 mutex_lock(&clk_debug_lock
);
3836 hlist_for_each_entry(core
, &clk_debug_list
, debug_node
)
3837 clk_debug_create_one(core
, rootdir
);
3840 mutex_unlock(&clk_debug_lock
);
3844 late_initcall(clk_debug_init
);
3846 static inline void clk_debug_register(struct clk_core
*core
) { }
3847 static inline void clk_debug_unregister(struct clk_core
*core
)
3852 static void clk_core_reparent_orphans_nolock(void)
3854 struct clk_core
*orphan
;
3855 struct hlist_node
*tmp2
;
3858 * walk the list of orphan clocks and reparent any that newly finds a
3861 hlist_for_each_entry_safe(orphan
, tmp2
, &clk_orphan_list
, child_node
) {
3862 struct clk_core
*parent
= __clk_init_parent(orphan
);
3865 * We need to use __clk_set_parent_before() and _after() to
3866 * properly migrate any prepare/enable count of the orphan
3867 * clock. This is important for CLK_IS_CRITICAL clocks, which
3868 * are enabled during init but might not have a parent yet.
3871 /* update the clk tree topology */
3872 __clk_set_parent_before(orphan
, parent
);
3873 __clk_set_parent_after(orphan
, parent
, NULL
);
3874 __clk_recalc_accuracies(orphan
);
3875 __clk_recalc_rates(orphan
, true, 0);
3878 * __clk_init_parent() will set the initial req_rate to
3879 * 0 if the clock doesn't have clk_ops::recalc_rate and
3880 * is an orphan when it's registered.
3882 * 'req_rate' is used by clk_set_rate_range() and
3883 * clk_put() to trigger a clk_set_rate() call whenever
3884 * the boundaries are modified. Let's make sure
3885 * 'req_rate' is set to something non-zero so that
3886 * clk_set_rate_range() doesn't drop the frequency.
3888 orphan
->req_rate
= orphan
->rate
;
3894 * __clk_core_init - initialize the data structures in a struct clk_core
3895 * @core: clk_core being initialized
3897 * Initializes the lists in struct clk_core, queries the hardware for the
3898 * parent and rate and sets them both.
3900 static int __clk_core_init(struct clk_core
*core
)
3903 struct clk_core
*parent
;
3910 * Set hw->core after grabbing the prepare_lock to synchronize with
3911 * callers of clk_core_fill_parent_index() where we treat hw->core
3912 * being NULL as the clk not being registered yet. This is crucial so
3913 * that clks aren't parented until their parent is fully registered.
3915 core
->hw
->core
= core
;
3917 ret
= clk_pm_runtime_get(core
);
3921 /* check to see if a clock with this name is already registered */
3922 if (clk_core_lookup(core
->name
)) {
3923 pr_debug("%s: clk %s already initialized\n",
3924 __func__
, core
->name
);
3929 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
3930 if (core
->ops
->set_rate
&&
3931 !((core
->ops
->round_rate
|| core
->ops
->determine_rate
) &&
3932 core
->ops
->recalc_rate
)) {
3933 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3934 __func__
, core
->name
);
3939 if (core
->ops
->set_parent
&& !core
->ops
->get_parent
) {
3940 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3941 __func__
, core
->name
);
3946 if (core
->ops
->set_parent
&& !core
->ops
->determine_rate
) {
3947 pr_err("%s: %s must implement .set_parent & .determine_rate\n",
3948 __func__
, core
->name
);
3953 if (core
->num_parents
> 1 && !core
->ops
->get_parent
) {
3954 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3955 __func__
, core
->name
);
3960 if (core
->ops
->set_rate_and_parent
&&
3961 !(core
->ops
->set_parent
&& core
->ops
->set_rate
)) {
3962 pr_err("%s: %s must implement .set_parent & .set_rate\n",
3963 __func__
, core
->name
);
3969 * optional platform-specific magic
3971 * The .init callback is not used by any of the basic clock types, but
3972 * exists for weird hardware that must perform initialization magic for
3973 * CCF to get an accurate view of clock for any other callbacks. It may
3974 * also be used needs to perform dynamic allocations. Such allocation
3975 * must be freed in the terminate() callback.
3976 * This callback shall not be used to initialize the parameters state,
3977 * such as rate, parent, etc ...
3979 * If it exist, this callback should called before any other callback of
3982 if (core
->ops
->init
) {
3983 ret
= core
->ops
->init(core
->hw
);
3988 parent
= core
->parent
= __clk_init_parent(core
);
3991 * Populate core->parent if parent has already been clk_core_init'd. If
3992 * parent has not yet been clk_core_init'd then place clk in the orphan
3993 * list. If clk doesn't have any parents then place it in the root
3996 * Every time a new clk is clk_init'd then we walk the list of orphan
3997 * clocks and re-parent any that are children of the clock currently
4001 hlist_add_head(&core
->child_node
, &parent
->children
);
4002 core
->orphan
= parent
->orphan
;
4003 } else if (!core
->num_parents
) {
4004 hlist_add_head(&core
->child_node
, &clk_root_list
);
4005 core
->orphan
= false;
4007 hlist_add_head(&core
->child_node
, &clk_orphan_list
);
4008 core
->orphan
= true;
4012 * Set clk's accuracy. The preferred method is to use
4013 * .recalc_accuracy. For simple clocks and lazy developers the default
4014 * fallback is to use the parent's accuracy. If a clock doesn't have a
4015 * parent (or is orphaned) then accuracy is set to zero (perfect
4018 if (core
->ops
->recalc_accuracy
)
4019 core
->accuracy
= core
->ops
->recalc_accuracy(core
->hw
,
4020 clk_core_get_accuracy_no_lock(parent
));
4022 core
->accuracy
= parent
->accuracy
;
4027 * Set clk's phase by clk_core_get_phase() caching the phase.
4028 * Since a phase is by definition relative to its parent, just
4029 * query the current clock phase, or just assume it's in phase.
4031 phase
= clk_core_get_phase(core
);
4034 pr_warn("%s: Failed to get phase for clk '%s'\n", __func__
,
4040 * Set clk's duty cycle.
4042 clk_core_update_duty_cycle_nolock(core
);
4045 * Set clk's rate. The preferred method is to use .recalc_rate. For
4046 * simple clocks and lazy developers the default fallback is to use the
4047 * parent's rate. If a clock doesn't have a parent (or is orphaned)
4048 * then rate is set to zero.
4050 if (core
->ops
->recalc_rate
)
4051 rate
= core
->ops
->recalc_rate(core
->hw
,
4052 clk_core_get_rate_nolock(parent
));
4054 rate
= parent
->rate
;
4057 core
->rate
= core
->req_rate
= rate
;
4060 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
4061 * don't get accidentally disabled when walking the orphan tree and
4062 * reparenting clocks
4064 if (core
->flags
& CLK_IS_CRITICAL
) {
4065 ret
= clk_core_prepare(core
);
4067 pr_warn("%s: critical clk '%s' failed to prepare\n",
4068 __func__
, core
->name
);
4072 ret
= clk_core_enable_lock(core
);
4074 pr_warn("%s: critical clk '%s' failed to enable\n",
4075 __func__
, core
->name
);
4076 clk_core_unprepare(core
);
4081 clk_core_reparent_orphans_nolock();
4083 clk_pm_runtime_put(core
);
4086 hlist_del_init(&core
->child_node
);
4087 core
->hw
->core
= NULL
;
4090 clk_prepare_unlock();
4093 clk_debug_register(core
);
4099 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
4100 * @core: clk to add consumer to
4101 * @clk: consumer to link to a clk
4103 static void clk_core_link_consumer(struct clk_core
*core
, struct clk
*clk
)
4106 hlist_add_head(&clk
->clks_node
, &core
->clks
);
4107 clk_prepare_unlock();
4111 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
4112 * @clk: consumer to unlink
4114 static void clk_core_unlink_consumer(struct clk
*clk
)
4116 lockdep_assert_held(&prepare_lock
);
4117 hlist_del(&clk
->clks_node
);
4121 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
4122 * @core: clk to allocate a consumer for
4123 * @dev_id: string describing device name
4124 * @con_id: connection ID string on device
4126 * Returns: clk consumer left unlinked from the consumer list
4128 static struct clk
*alloc_clk(struct clk_core
*core
, const char *dev_id
,
4133 clk
= kzalloc(sizeof(*clk
), GFP_KERNEL
);
4135 return ERR_PTR(-ENOMEM
);
4138 clk
->dev_id
= dev_id
;
4139 clk
->con_id
= kstrdup_const(con_id
, GFP_KERNEL
);
4140 clk
->max_rate
= ULONG_MAX
;
4146 * free_clk - Free a clk consumer
4147 * @clk: clk consumer to free
4149 * Note, this assumes the clk has been unlinked from the clk_core consumer
4152 static void free_clk(struct clk
*clk
)
4154 kfree_const(clk
->con_id
);
4159 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
4161 * @dev: clk consumer device
4162 * @hw: clk_hw associated with the clk being consumed
4163 * @dev_id: string describing device name
4164 * @con_id: connection ID string on device
4166 * This is the main function used to create a clk pointer for use by clk
4167 * consumers. It connects a consumer to the clk_core and clk_hw structures
4168 * used by the framework and clk provider respectively.
4170 struct clk
*clk_hw_create_clk(struct device
*dev
, struct clk_hw
*hw
,
4171 const char *dev_id
, const char *con_id
)
4174 struct clk_core
*core
;
4176 /* This is to allow this function to be chained to others */
4177 if (IS_ERR_OR_NULL(hw
))
4178 return ERR_CAST(hw
);
4181 clk
= alloc_clk(core
, dev_id
, con_id
);
4186 if (!try_module_get(core
->owner
)) {
4188 return ERR_PTR(-ENOENT
);
4191 kref_get(&core
->ref
);
4192 clk_core_link_consumer(core
, clk
);
4198 * clk_hw_get_clk - get clk consumer given an clk_hw
4199 * @hw: clk_hw associated with the clk being consumed
4200 * @con_id: connection ID string on device
4202 * Returns: new clk consumer
4203 * This is the function to be used by providers which need
4204 * to get a consumer clk and act on the clock element
4205 * Calls to this function must be balanced with calls clk_put()
4207 struct clk
*clk_hw_get_clk(struct clk_hw
*hw
, const char *con_id
)
4209 struct device
*dev
= hw
->core
->dev
;
4210 const char *name
= dev
? dev_name(dev
) : NULL
;
4212 return clk_hw_create_clk(dev
, hw
, name
, con_id
);
4214 EXPORT_SYMBOL(clk_hw_get_clk
);
4216 static int clk_cpy_name(const char **dst_p
, const char *src
, bool must_exist
)
4226 *dst_p
= dst
= kstrdup_const(src
, GFP_KERNEL
);
4233 static int clk_core_populate_parent_map(struct clk_core
*core
,
4234 const struct clk_init_data
*init
)
4236 u8 num_parents
= init
->num_parents
;
4237 const char * const *parent_names
= init
->parent_names
;
4238 const struct clk_hw
**parent_hws
= init
->parent_hws
;
4239 const struct clk_parent_data
*parent_data
= init
->parent_data
;
4241 struct clk_parent_map
*parents
, *parent
;
4247 * Avoid unnecessary string look-ups of clk_core's possible parents by
4248 * having a cache of names/clk_hw pointers to clk_core pointers.
4250 parents
= kcalloc(num_parents
, sizeof(*parents
), GFP_KERNEL
);
4251 core
->parents
= parents
;
4255 /* Copy everything over because it might be __initdata */
4256 for (i
= 0, parent
= parents
; i
< num_parents
; i
++, parent
++) {
4259 /* throw a WARN if any entries are NULL */
4260 WARN(!parent_names
[i
],
4261 "%s: invalid NULL in %s's .parent_names\n",
4262 __func__
, core
->name
);
4263 ret
= clk_cpy_name(&parent
->name
, parent_names
[i
],
4265 } else if (parent_data
) {
4266 parent
->hw
= parent_data
[i
].hw
;
4267 parent
->index
= parent_data
[i
].index
;
4268 ret
= clk_cpy_name(&parent
->fw_name
,
4269 parent_data
[i
].fw_name
, false);
4271 ret
= clk_cpy_name(&parent
->name
,
4272 parent_data
[i
].name
,
4274 } else if (parent_hws
) {
4275 parent
->hw
= parent_hws
[i
];
4278 WARN(1, "Must specify parents if num_parents > 0\n");
4283 kfree_const(parents
[i
].name
);
4284 kfree_const(parents
[i
].fw_name
);
4295 static void clk_core_free_parent_map(struct clk_core
*core
)
4297 int i
= core
->num_parents
;
4299 if (!core
->num_parents
)
4303 kfree_const(core
->parents
[i
].name
);
4304 kfree_const(core
->parents
[i
].fw_name
);
4307 kfree(core
->parents
);
4310 /* Free memory allocated for a struct clk_core */
4311 static void __clk_release(struct kref
*ref
)
4313 struct clk_core
*core
= container_of(ref
, struct clk_core
, ref
);
4315 if (core
->rpm_enabled
) {
4316 mutex_lock(&clk_rpm_list_lock
);
4317 hlist_del(&core
->rpm_node
);
4318 mutex_unlock(&clk_rpm_list_lock
);
4321 clk_core_free_parent_map(core
);
4322 kfree_const(core
->name
);
4327 __clk_register(struct device
*dev
, struct device_node
*np
, struct clk_hw
*hw
)
4330 struct clk_core
*core
;
4331 const struct clk_init_data
*init
= hw
->init
;
4334 * The init data is not supposed to be used outside of registration path.
4335 * Set it to NULL so that provider drivers can't use it either and so that
4336 * we catch use of hw->init early on in the core.
4340 core
= kzalloc(sizeof(*core
), GFP_KERNEL
);
4346 kref_init(&core
->ref
);
4348 core
->name
= kstrdup_const(init
->name
, GFP_KERNEL
);
4354 if (WARN_ON(!init
->ops
)) {
4358 core
->ops
= init
->ops
;
4361 clk_pm_runtime_init(core
);
4363 if (dev
&& dev
->driver
)
4364 core
->owner
= dev
->driver
->owner
;
4366 core
->flags
= init
->flags
;
4367 core
->num_parents
= init
->num_parents
;
4369 core
->max_rate
= ULONG_MAX
;
4371 ret
= clk_core_populate_parent_map(core
, init
);
4375 INIT_HLIST_HEAD(&core
->clks
);
4378 * Don't call clk_hw_create_clk() here because that would pin the
4379 * provider module to itself and prevent it from ever being removed.
4381 hw
->clk
= alloc_clk(core
, NULL
, NULL
);
4382 if (IS_ERR(hw
->clk
)) {
4383 ret
= PTR_ERR(hw
->clk
);
4384 goto fail_create_clk
;
4387 clk_core_link_consumer(core
, hw
->clk
);
4389 ret
= __clk_core_init(core
);
4394 clk_core_unlink_consumer(hw
->clk
);
4395 clk_prepare_unlock();
4404 kref_put(&core
->ref
, __clk_release
);
4406 return ERR_PTR(ret
);
4410 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
4411 * @dev: Device to get device node of
4413 * Return: device node pointer of @dev, or the device node pointer of
4414 * @dev->parent if dev doesn't have a device node, or NULL if neither
4415 * @dev or @dev->parent have a device node.
4417 static struct device_node
*dev_or_parent_of_node(struct device
*dev
)
4419 struct device_node
*np
;
4424 np
= dev_of_node(dev
);
4426 np
= dev_of_node(dev
->parent
);
4432 * clk_register - allocate a new clock, register it and return an opaque cookie
4433 * @dev: device that is registering this clock
4434 * @hw: link to hardware-specific clock data
4436 * clk_register is the *deprecated* interface for populating the clock tree with
4437 * new clock nodes. Use clk_hw_register() instead.
4439 * Returns: a pointer to the newly allocated struct clk which
4440 * cannot be dereferenced by driver code but may be used in conjunction with the
4441 * rest of the clock API. In the event of an error clk_register will return an
4442 * error code; drivers must test for an error code after calling clk_register.
4444 struct clk
*clk_register(struct device
*dev
, struct clk_hw
*hw
)
4446 return __clk_register(dev
, dev_or_parent_of_node(dev
), hw
);
4448 EXPORT_SYMBOL_GPL(clk_register
);
4451 * clk_hw_register - register a clk_hw and return an error code
4452 * @dev: device that is registering this clock
4453 * @hw: link to hardware-specific clock data
4455 * clk_hw_register is the primary interface for populating the clock tree with
4456 * new clock nodes. It returns an integer equal to zero indicating success or
4457 * less than zero indicating failure. Drivers must test for an error code after
4458 * calling clk_hw_register().
4460 int clk_hw_register(struct device
*dev
, struct clk_hw
*hw
)
4462 return PTR_ERR_OR_ZERO(__clk_register(dev
, dev_or_parent_of_node(dev
),
4465 EXPORT_SYMBOL_GPL(clk_hw_register
);
4468 * of_clk_hw_register - register a clk_hw and return an error code
4469 * @node: device_node of device that is registering this clock
4470 * @hw: link to hardware-specific clock data
4472 * of_clk_hw_register() is the primary interface for populating the clock tree
4473 * with new clock nodes when a struct device is not available, but a struct
4474 * device_node is. It returns an integer equal to zero indicating success or
4475 * less than zero indicating failure. Drivers must test for an error code after
4476 * calling of_clk_hw_register().
4478 int of_clk_hw_register(struct device_node
*node
, struct clk_hw
*hw
)
4480 return PTR_ERR_OR_ZERO(__clk_register(NULL
, node
, hw
));
4482 EXPORT_SYMBOL_GPL(of_clk_hw_register
);
4485 * Empty clk_ops for unregistered clocks. These are used temporarily
4486 * after clk_unregister() was called on a clock and until last clock
4487 * consumer calls clk_put() and the struct clk object is freed.
4489 static int clk_nodrv_prepare_enable(struct clk_hw
*hw
)
4494 static void clk_nodrv_disable_unprepare(struct clk_hw
*hw
)
4499 static int clk_nodrv_set_rate(struct clk_hw
*hw
, unsigned long rate
,
4500 unsigned long parent_rate
)
4505 static int clk_nodrv_set_parent(struct clk_hw
*hw
, u8 index
)
4510 static int clk_nodrv_determine_rate(struct clk_hw
*hw
,
4511 struct clk_rate_request
*req
)
4516 static const struct clk_ops clk_nodrv_ops
= {
4517 .enable
= clk_nodrv_prepare_enable
,
4518 .disable
= clk_nodrv_disable_unprepare
,
4519 .prepare
= clk_nodrv_prepare_enable
,
4520 .unprepare
= clk_nodrv_disable_unprepare
,
4521 .determine_rate
= clk_nodrv_determine_rate
,
4522 .set_rate
= clk_nodrv_set_rate
,
4523 .set_parent
= clk_nodrv_set_parent
,
4526 static void clk_core_evict_parent_cache_subtree(struct clk_core
*root
,
4527 const struct clk_core
*target
)
4530 struct clk_core
*child
;
4532 for (i
= 0; i
< root
->num_parents
; i
++)
4533 if (root
->parents
[i
].core
== target
)
4534 root
->parents
[i
].core
= NULL
;
4536 hlist_for_each_entry(child
, &root
->children
, child_node
)
4537 clk_core_evict_parent_cache_subtree(child
, target
);
4540 /* Remove this clk from all parent caches */
4541 static void clk_core_evict_parent_cache(struct clk_core
*core
)
4543 const struct hlist_head
**lists
;
4544 struct clk_core
*root
;
4546 lockdep_assert_held(&prepare_lock
);
4548 for (lists
= all_lists
; *lists
; lists
++)
4549 hlist_for_each_entry(root
, *lists
, child_node
)
4550 clk_core_evict_parent_cache_subtree(root
, core
);
4555 * clk_unregister - unregister a currently registered clock
4556 * @clk: clock to unregister
4558 void clk_unregister(struct clk
*clk
)
4560 unsigned long flags
;
4561 const struct clk_ops
*ops
;
4563 if (!clk
|| WARN_ON_ONCE(IS_ERR(clk
)))
4566 clk_debug_unregister(clk
->core
);
4570 ops
= clk
->core
->ops
;
4571 if (ops
== &clk_nodrv_ops
) {
4572 pr_err("%s: unregistered clock: %s\n", __func__
,
4574 clk_prepare_unlock();
4578 * Assign empty clock ops for consumers that might still hold
4579 * a reference to this clock.
4581 flags
= clk_enable_lock();
4582 clk
->core
->ops
= &clk_nodrv_ops
;
4583 clk_enable_unlock(flags
);
4586 ops
->terminate(clk
->core
->hw
);
4588 if (!hlist_empty(&clk
->core
->children
)) {
4589 struct clk_core
*child
;
4590 struct hlist_node
*t
;
4592 /* Reparent all children to the orphan list. */
4593 hlist_for_each_entry_safe(child
, t
, &clk
->core
->children
,
4595 clk_core_set_parent_nolock(child
, NULL
);
4598 clk_core_evict_parent_cache(clk
->core
);
4600 hlist_del_init(&clk
->core
->child_node
);
4602 if (clk
->core
->prepare_count
)
4603 pr_warn("%s: unregistering prepared clock: %s\n",
4604 __func__
, clk
->core
->name
);
4606 if (clk
->core
->protect_count
)
4607 pr_warn("%s: unregistering protected clock: %s\n",
4608 __func__
, clk
->core
->name
);
4609 clk_prepare_unlock();
4611 kref_put(&clk
->core
->ref
, __clk_release
);
4614 EXPORT_SYMBOL_GPL(clk_unregister
);
4617 * clk_hw_unregister - unregister a currently registered clk_hw
4618 * @hw: hardware-specific clock data to unregister
4620 void clk_hw_unregister(struct clk_hw
*hw
)
4622 clk_unregister(hw
->clk
);
4624 EXPORT_SYMBOL_GPL(clk_hw_unregister
);
4626 static void devm_clk_unregister_cb(struct device
*dev
, void *res
)
4628 clk_unregister(*(struct clk
**)res
);
4631 static void devm_clk_hw_unregister_cb(struct device
*dev
, void *res
)
4633 clk_hw_unregister(*(struct clk_hw
**)res
);
4637 * devm_clk_register - resource managed clk_register()
4638 * @dev: device that is registering this clock
4639 * @hw: link to hardware-specific clock data
4641 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4643 * Clocks returned from this function are automatically clk_unregister()ed on
4644 * driver detach. See clk_register() for more information.
4646 struct clk
*devm_clk_register(struct device
*dev
, struct clk_hw
*hw
)
4651 clkp
= devres_alloc(devm_clk_unregister_cb
, sizeof(*clkp
), GFP_KERNEL
);
4653 return ERR_PTR(-ENOMEM
);
4655 clk
= clk_register(dev
, hw
);
4658 devres_add(dev
, clkp
);
4665 EXPORT_SYMBOL_GPL(devm_clk_register
);
4668 * devm_clk_hw_register - resource managed clk_hw_register()
4669 * @dev: device that is registering this clock
4670 * @hw: link to hardware-specific clock data
4672 * Managed clk_hw_register(). Clocks registered by this function are
4673 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4674 * for more information.
4676 int devm_clk_hw_register(struct device
*dev
, struct clk_hw
*hw
)
4678 struct clk_hw
**hwp
;
4681 hwp
= devres_alloc(devm_clk_hw_unregister_cb
, sizeof(*hwp
), GFP_KERNEL
);
4685 ret
= clk_hw_register(dev
, hw
);
4688 devres_add(dev
, hwp
);
4695 EXPORT_SYMBOL_GPL(devm_clk_hw_register
);
4697 static void devm_clk_release(struct device
*dev
, void *res
)
4699 clk_put(*(struct clk
**)res
);
4703 * devm_clk_hw_get_clk - resource managed clk_hw_get_clk()
4704 * @dev: device that is registering this clock
4705 * @hw: clk_hw associated with the clk being consumed
4706 * @con_id: connection ID string on device
4708 * Managed clk_hw_get_clk(). Clocks got with this function are
4709 * automatically clk_put() on driver detach. See clk_put()
4710 * for more information.
4712 struct clk
*devm_clk_hw_get_clk(struct device
*dev
, struct clk_hw
*hw
,
4718 /* This should not happen because it would mean we have drivers
4719 * passing around clk_hw pointers instead of having the caller use
4720 * proper clk_get() style APIs
4722 WARN_ON_ONCE(dev
!= hw
->core
->dev
);
4724 clkp
= devres_alloc(devm_clk_release
, sizeof(*clkp
), GFP_KERNEL
);
4726 return ERR_PTR(-ENOMEM
);
4728 clk
= clk_hw_get_clk(hw
, con_id
);
4731 devres_add(dev
, clkp
);
4738 EXPORT_SYMBOL_GPL(devm_clk_hw_get_clk
);
4744 void __clk_put(struct clk
*clk
)
4746 struct module
*owner
;
4748 if (!clk
|| WARN_ON_ONCE(IS_ERR(clk
)))
4754 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4755 * given user should be balanced with calls to clk_rate_exclusive_put()
4756 * and by that same consumer
4758 if (WARN_ON(clk
->exclusive_count
)) {
4759 /* We voiced our concern, let's sanitize the situation */
4760 clk
->core
->protect_count
-= (clk
->exclusive_count
- 1);
4761 clk_core_rate_unprotect(clk
->core
);
4762 clk
->exclusive_count
= 0;
4765 clk_core_unlink_consumer(clk
);
4767 /* If we had any boundaries on that clock, let's drop them. */
4768 if (clk
->min_rate
> 0 || clk
->max_rate
< ULONG_MAX
)
4769 clk_set_rate_range_nolock(clk
, 0, ULONG_MAX
);
4771 clk_prepare_unlock();
4773 owner
= clk
->core
->owner
;
4774 kref_put(&clk
->core
->ref
, __clk_release
);
4779 /*** clk rate change notifiers ***/
4782 * clk_notifier_register - add a clk rate change notifier
4783 * @clk: struct clk * to watch
4784 * @nb: struct notifier_block * with callback info
4786 * Request notification when clk's rate changes. This uses an SRCU
4787 * notifier because we want it to block and notifier unregistrations are
4788 * uncommon. The callbacks associated with the notifier must not
4789 * re-enter into the clk framework by calling any top-level clk APIs;
4790 * this will cause a nested prepare_lock mutex.
4792 * In all notification cases (pre, post and abort rate change) the original
4793 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4794 * and the new frequency is passed via struct clk_notifier_data.new_rate.
4796 * clk_notifier_register() must be called from non-atomic context.
4797 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4798 * allocation failure; otherwise, passes along the return value of
4799 * srcu_notifier_chain_register().
4801 int clk_notifier_register(struct clk
*clk
, struct notifier_block
*nb
)
4803 struct clk_notifier
*cn
;
4811 /* search the list of notifiers for this clk */
4812 list_for_each_entry(cn
, &clk_notifier_list
, node
)
4816 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4817 cn
= kzalloc(sizeof(*cn
), GFP_KERNEL
);
4822 srcu_init_notifier_head(&cn
->notifier_head
);
4824 list_add(&cn
->node
, &clk_notifier_list
);
4827 ret
= srcu_notifier_chain_register(&cn
->notifier_head
, nb
);
4829 clk
->core
->notifier_count
++;
4832 clk_prepare_unlock();
4836 EXPORT_SYMBOL_GPL(clk_notifier_register
);
4839 * clk_notifier_unregister - remove a clk rate change notifier
4840 * @clk: struct clk *
4841 * @nb: struct notifier_block * with callback info
4843 * Request no further notification for changes to 'clk' and frees memory
4844 * allocated in clk_notifier_register.
4846 * Returns -EINVAL if called with null arguments; otherwise, passes
4847 * along the return value of srcu_notifier_chain_unregister().
4849 int clk_notifier_unregister(struct clk
*clk
, struct notifier_block
*nb
)
4851 struct clk_notifier
*cn
;
4859 list_for_each_entry(cn
, &clk_notifier_list
, node
) {
4860 if (cn
->clk
== clk
) {
4861 ret
= srcu_notifier_chain_unregister(&cn
->notifier_head
, nb
);
4863 clk
->core
->notifier_count
--;
4865 /* XXX the notifier code should handle this better */
4866 if (!cn
->notifier_head
.head
) {
4867 srcu_cleanup_notifier_head(&cn
->notifier_head
);
4868 list_del(&cn
->node
);
4875 clk_prepare_unlock();
4879 EXPORT_SYMBOL_GPL(clk_notifier_unregister
);
4881 struct clk_notifier_devres
{
4883 struct notifier_block
*nb
;
4886 static void devm_clk_notifier_release(struct device
*dev
, void *res
)
4888 struct clk_notifier_devres
*devres
= res
;
4890 clk_notifier_unregister(devres
->clk
, devres
->nb
);
4893 int devm_clk_notifier_register(struct device
*dev
, struct clk
*clk
,
4894 struct notifier_block
*nb
)
4896 struct clk_notifier_devres
*devres
;
4899 devres
= devres_alloc(devm_clk_notifier_release
,
4900 sizeof(*devres
), GFP_KERNEL
);
4905 ret
= clk_notifier_register(clk
, nb
);
4909 devres_add(dev
, devres
);
4911 devres_free(devres
);
4916 EXPORT_SYMBOL_GPL(devm_clk_notifier_register
);
4919 static void clk_core_reparent_orphans(void)
4922 clk_core_reparent_orphans_nolock();
4923 clk_prepare_unlock();
4927 * struct of_clk_provider - Clock provider registration structure
4928 * @link: Entry in global list of clock providers
4929 * @node: Pointer to device tree node of clock provider
4930 * @get: Get clock callback. Returns NULL or a struct clk for the
4931 * given clock specifier
4932 * @get_hw: Get clk_hw callback. Returns NULL, ERR_PTR or a
4933 * struct clk_hw for the given clock specifier
4934 * @data: context pointer to be passed into @get callback
4936 struct of_clk_provider
{
4937 struct list_head link
;
4939 struct device_node
*node
;
4940 struct clk
*(*get
)(struct of_phandle_args
*clkspec
, void *data
);
4941 struct clk_hw
*(*get_hw
)(struct of_phandle_args
*clkspec
, void *data
);
4945 extern struct of_device_id __clk_of_table
;
4946 static const struct of_device_id __clk_of_table_sentinel
4947 __used
__section("__clk_of_table_end");
4949 static LIST_HEAD(of_clk_providers
);
4950 static DEFINE_MUTEX(of_clk_mutex
);
4952 struct clk
*of_clk_src_simple_get(struct of_phandle_args
*clkspec
,
4957 EXPORT_SYMBOL_GPL(of_clk_src_simple_get
);
4959 struct clk_hw
*of_clk_hw_simple_get(struct of_phandle_args
*clkspec
, void *data
)
4963 EXPORT_SYMBOL_GPL(of_clk_hw_simple_get
);
4965 struct clk
*of_clk_src_onecell_get(struct of_phandle_args
*clkspec
, void *data
)
4967 struct clk_onecell_data
*clk_data
= data
;
4968 unsigned int idx
= clkspec
->args
[0];
4970 if (idx
>= clk_data
->clk_num
) {
4971 pr_err("%s: invalid clock index %u\n", __func__
, idx
);
4972 return ERR_PTR(-EINVAL
);
4975 return clk_data
->clks
[idx
];
4977 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get
);
4980 of_clk_hw_onecell_get(struct of_phandle_args
*clkspec
, void *data
)
4982 struct clk_hw_onecell_data
*hw_data
= data
;
4983 unsigned int idx
= clkspec
->args
[0];
4985 if (idx
>= hw_data
->num
) {
4986 pr_err("%s: invalid index %u\n", __func__
, idx
);
4987 return ERR_PTR(-EINVAL
);
4990 return hw_data
->hws
[idx
];
4992 EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get
);
4995 * of_clk_add_provider() - Register a clock provider for a node
4996 * @np: Device node pointer associated with clock provider
4997 * @clk_src_get: callback for decoding clock
4998 * @data: context pointer for @clk_src_get callback.
5000 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
5002 int of_clk_add_provider(struct device_node
*np
,
5003 struct clk
*(*clk_src_get
)(struct of_phandle_args
*clkspec
,
5007 struct of_clk_provider
*cp
;
5013 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
5017 cp
->node
= of_node_get(np
);
5019 cp
->get
= clk_src_get
;
5021 mutex_lock(&of_clk_mutex
);
5022 list_add(&cp
->link
, &of_clk_providers
);
5023 mutex_unlock(&of_clk_mutex
);
5024 pr_debug("Added clock from %pOF\n", np
);
5026 clk_core_reparent_orphans();
5028 ret
= of_clk_set_defaults(np
, true);
5030 of_clk_del_provider(np
);
5032 fwnode_dev_initialized(&np
->fwnode
, true);
5036 EXPORT_SYMBOL_GPL(of_clk_add_provider
);
5039 * of_clk_add_hw_provider() - Register a clock provider for a node
5040 * @np: Device node pointer associated with clock provider
5041 * @get: callback for decoding clk_hw
5042 * @data: context pointer for @get callback.
5044 int of_clk_add_hw_provider(struct device_node
*np
,
5045 struct clk_hw
*(*get
)(struct of_phandle_args
*clkspec
,
5049 struct of_clk_provider
*cp
;
5055 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
5059 cp
->node
= of_node_get(np
);
5063 mutex_lock(&of_clk_mutex
);
5064 list_add(&cp
->link
, &of_clk_providers
);
5065 mutex_unlock(&of_clk_mutex
);
5066 pr_debug("Added clk_hw provider from %pOF\n", np
);
5068 clk_core_reparent_orphans();
5070 ret
= of_clk_set_defaults(np
, true);
5072 of_clk_del_provider(np
);
5074 fwnode_dev_initialized(&np
->fwnode
, true);
5078 EXPORT_SYMBOL_GPL(of_clk_add_hw_provider
);
5080 static void devm_of_clk_release_provider(struct device
*dev
, void *res
)
5082 of_clk_del_provider(*(struct device_node
**)res
);
5086 * We allow a child device to use its parent device as the clock provider node
5087 * for cases like MFD sub-devices where the child device driver wants to use
5088 * devm_*() APIs but not list the device in DT as a sub-node.
5090 static struct device_node
*get_clk_provider_node(struct device
*dev
)
5092 struct device_node
*np
, *parent_np
;
5095 parent_np
= dev
->parent
? dev
->parent
->of_node
: NULL
;
5097 if (!of_property_present(np
, "#clock-cells"))
5098 if (of_property_present(parent_np
, "#clock-cells"))
5105 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
5106 * @dev: Device acting as the clock provider (used for DT node and lifetime)
5107 * @get: callback for decoding clk_hw
5108 * @data: context pointer for @get callback
5110 * Registers clock provider for given device's node. If the device has no DT
5111 * node or if the device node lacks of clock provider information (#clock-cells)
5112 * then the parent device's node is scanned for this information. If parent node
5113 * has the #clock-cells then it is used in registration. Provider is
5114 * automatically released at device exit.
5116 * Return: 0 on success or an errno on failure.
5118 int devm_of_clk_add_hw_provider(struct device
*dev
,
5119 struct clk_hw
*(*get
)(struct of_phandle_args
*clkspec
,
5123 struct device_node
**ptr
, *np
;
5126 ptr
= devres_alloc(devm_of_clk_release_provider
, sizeof(*ptr
),
5131 np
= get_clk_provider_node(dev
);
5132 ret
= of_clk_add_hw_provider(np
, get
, data
);
5135 devres_add(dev
, ptr
);
5142 EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider
);
5145 * of_clk_del_provider() - Remove a previously registered clock provider
5146 * @np: Device node pointer associated with clock provider
5148 void of_clk_del_provider(struct device_node
*np
)
5150 struct of_clk_provider
*cp
;
5155 mutex_lock(&of_clk_mutex
);
5156 list_for_each_entry(cp
, &of_clk_providers
, link
) {
5157 if (cp
->node
== np
) {
5158 list_del(&cp
->link
);
5159 fwnode_dev_initialized(&np
->fwnode
, false);
5160 of_node_put(cp
->node
);
5165 mutex_unlock(&of_clk_mutex
);
5167 EXPORT_SYMBOL_GPL(of_clk_del_provider
);
5170 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
5171 * @np: device node to parse clock specifier from
5172 * @index: index of phandle to parse clock out of. If index < 0, @name is used
5173 * @name: clock name to find and parse. If name is NULL, the index is used
5174 * @out_args: Result of parsing the clock specifier
5176 * Parses a device node's "clocks" and "clock-names" properties to find the
5177 * phandle and cells for the index or name that is desired. The resulting clock
5178 * specifier is placed into @out_args, or an errno is returned when there's a
5179 * parsing error. The @index argument is ignored if @name is non-NULL.
5183 * phandle1: clock-controller@1 {
5184 * #clock-cells = <2>;
5187 * phandle2: clock-controller@2 {
5188 * #clock-cells = <1>;
5191 * clock-consumer@3 {
5192 * clocks = <&phandle1 1 2 &phandle2 3>;
5193 * clock-names = "name1", "name2";
5196 * To get a device_node for `clock-controller@2' node you may call this
5197 * function a few different ways:
5199 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
5200 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
5201 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
5203 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
5204 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
5205 * the "clock-names" property of @np.
5207 static int of_parse_clkspec(const struct device_node
*np
, int index
,
5208 const char *name
, struct of_phandle_args
*out_args
)
5212 /* Walk up the tree of devices looking for a clock property that matches */
5215 * For named clocks, first look up the name in the
5216 * "clock-names" property. If it cannot be found, then index
5217 * will be an error code and of_parse_phandle_with_args() will
5221 index
= of_property_match_string(np
, "clock-names", name
);
5222 ret
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells",
5226 if (name
&& index
>= 0)
5230 * No matching clock found on this node. If the parent node
5231 * has a "clock-ranges" property, then we can try one of its
5235 if (np
&& !of_property_present(np
, "clock-ranges"))
5243 static struct clk_hw
*
5244 __of_clk_get_hw_from_provider(struct of_clk_provider
*provider
,
5245 struct of_phandle_args
*clkspec
)
5249 if (provider
->get_hw
)
5250 return provider
->get_hw(clkspec
, provider
->data
);
5252 clk
= provider
->get(clkspec
, provider
->data
);
5254 return ERR_CAST(clk
);
5255 return __clk_get_hw(clk
);
5258 static struct clk_hw
*
5259 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
)
5261 struct of_clk_provider
*provider
;
5262 struct clk_hw
*hw
= ERR_PTR(-EPROBE_DEFER
);
5265 return ERR_PTR(-EINVAL
);
5267 mutex_lock(&of_clk_mutex
);
5268 list_for_each_entry(provider
, &of_clk_providers
, link
) {
5269 if (provider
->node
== clkspec
->np
) {
5270 hw
= __of_clk_get_hw_from_provider(provider
, clkspec
);
5275 mutex_unlock(&of_clk_mutex
);
5281 * of_clk_get_from_provider() - Lookup a clock from a clock provider
5282 * @clkspec: pointer to a clock specifier data structure
5284 * This function looks up a struct clk from the registered list of clock
5285 * providers, an input is a clock specifier data structure as returned
5286 * from the of_parse_phandle_with_args() function call.
5288 struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
)
5290 struct clk_hw
*hw
= of_clk_get_hw_from_clkspec(clkspec
);
5292 return clk_hw_create_clk(NULL
, hw
, NULL
, __func__
);
5294 EXPORT_SYMBOL_GPL(of_clk_get_from_provider
);
5296 struct clk_hw
*of_clk_get_hw(struct device_node
*np
, int index
,
5301 struct of_phandle_args clkspec
;
5303 ret
= of_parse_clkspec(np
, index
, con_id
, &clkspec
);
5305 return ERR_PTR(ret
);
5307 hw
= of_clk_get_hw_from_clkspec(&clkspec
);
5308 of_node_put(clkspec
.np
);
5313 static struct clk
*__of_clk_get(struct device_node
*np
,
5314 int index
, const char *dev_id
,
5317 struct clk_hw
*hw
= of_clk_get_hw(np
, index
, con_id
);
5319 return clk_hw_create_clk(NULL
, hw
, dev_id
, con_id
);
5322 struct clk
*of_clk_get(struct device_node
*np
, int index
)
5324 return __of_clk_get(np
, index
, np
->full_name
, NULL
);
5326 EXPORT_SYMBOL(of_clk_get
);
5329 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
5330 * @np: pointer to clock consumer node
5331 * @name: name of consumer's clock input, or NULL for the first clock reference
5333 * This function parses the clocks and clock-names properties,
5334 * and uses them to look up the struct clk from the registered list of clock
5337 struct clk
*of_clk_get_by_name(struct device_node
*np
, const char *name
)
5340 return ERR_PTR(-ENOENT
);
5342 return __of_clk_get(np
, 0, np
->full_name
, name
);
5344 EXPORT_SYMBOL(of_clk_get_by_name
);
5347 * of_clk_get_parent_count() - Count the number of clocks a device node has
5348 * @np: device node to count
5350 * Returns: The number of clocks that are possible parents of this node
5352 unsigned int of_clk_get_parent_count(const struct device_node
*np
)
5356 count
= of_count_phandle_with_args(np
, "clocks", "#clock-cells");
5362 EXPORT_SYMBOL_GPL(of_clk_get_parent_count
);
5364 const char *of_clk_get_parent_name(const struct device_node
*np
, int index
)
5366 struct of_phandle_args clkspec
;
5367 const char *clk_name
;
5374 rc
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells", index
,
5379 index
= clkspec
.args_count
? clkspec
.args
[0] : 0;
5382 /* if there is an indices property, use it to transfer the index
5383 * specified into an array offset for the clock-output-names property.
5385 of_property_for_each_u32(clkspec
.np
, "clock-indices", pv
) {
5393 /* We went off the end of 'clock-indices' without finding it */
5394 if (of_property_present(clkspec
.np
, "clock-indices") && !found
)
5397 if (of_property_read_string_index(clkspec
.np
, "clock-output-names",
5401 * Best effort to get the name if the clock has been
5402 * registered with the framework. If the clock isn't
5403 * registered, we return the node name as the name of
5404 * the clock as long as #clock-cells = 0.
5406 clk
= of_clk_get_from_provider(&clkspec
);
5408 if (clkspec
.args_count
== 0)
5409 clk_name
= clkspec
.np
->name
;
5413 clk_name
= __clk_get_name(clk
);
5419 of_node_put(clkspec
.np
);
5422 EXPORT_SYMBOL_GPL(of_clk_get_parent_name
);
5425 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
5427 * @np: Device node pointer associated with clock provider
5428 * @parents: pointer to char array that hold the parents' names
5429 * @size: size of the @parents array
5431 * Return: number of parents for the clock node.
5433 int of_clk_parent_fill(struct device_node
*np
, const char **parents
,
5438 while (i
< size
&& (parents
[i
] = of_clk_get_parent_name(np
, i
)) != NULL
)
5443 EXPORT_SYMBOL_GPL(of_clk_parent_fill
);
5445 struct clock_provider
{
5446 void (*clk_init_cb
)(struct device_node
*);
5447 struct device_node
*np
;
5448 struct list_head node
;
5452 * This function looks for a parent clock. If there is one, then it
5453 * checks that the provider for this parent clock was initialized, in
5454 * this case the parent clock will be ready.
5456 static int parent_ready(struct device_node
*np
)
5461 struct clk
*clk
= of_clk_get(np
, i
);
5463 /* this parent is ready we can check the next one */
5470 /* at least one parent is not ready, we exit now */
5471 if (PTR_ERR(clk
) == -EPROBE_DEFER
)
5475 * Here we make assumption that the device tree is
5476 * written correctly. So an error means that there is
5477 * no more parent. As we didn't exit yet, then the
5478 * previous parent are ready. If there is no clock
5479 * parent, no need to wait for them, then we can
5480 * consider their absence as being ready
5487 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
5488 * @np: Device node pointer associated with clock provider
5489 * @index: clock index
5490 * @flags: pointer to top-level framework flags
5492 * Detects if the clock-critical property exists and, if so, sets the
5493 * corresponding CLK_IS_CRITICAL flag.
5495 * Do not use this function. It exists only for legacy Device Tree
5496 * bindings, such as the one-clock-per-node style that are outdated.
5497 * Those bindings typically put all clock data into .dts and the Linux
5498 * driver has no clock data, thus making it impossible to set this flag
5499 * correctly from the driver. Only those drivers may call
5500 * of_clk_detect_critical from their setup functions.
5502 * Return: error code or zero on success
5504 int of_clk_detect_critical(struct device_node
*np
, int index
,
5505 unsigned long *flags
)
5512 of_property_for_each_u32(np
, "clock-critical", idx
)
5514 *flags
|= CLK_IS_CRITICAL
;
5520 * of_clk_init() - Scan and init clock providers from the DT
5521 * @matches: array of compatible values and init functions for providers.
5523 * This function scans the device tree for matching clock providers
5524 * and calls their initialization functions. It also does it by trying
5525 * to follow the dependencies.
5527 void __init
of_clk_init(const struct of_device_id
*matches
)
5529 const struct of_device_id
*match
;
5530 struct device_node
*np
;
5531 struct clock_provider
*clk_provider
, *next
;
5534 LIST_HEAD(clk_provider_list
);
5537 matches
= &__clk_of_table
;
5539 /* First prepare the list of the clocks providers */
5540 for_each_matching_node_and_match(np
, matches
, &match
) {
5541 struct clock_provider
*parent
;
5543 if (!of_device_is_available(np
))
5546 parent
= kzalloc(sizeof(*parent
), GFP_KERNEL
);
5548 list_for_each_entry_safe(clk_provider
, next
,
5549 &clk_provider_list
, node
) {
5550 list_del(&clk_provider
->node
);
5551 of_node_put(clk_provider
->np
);
5552 kfree(clk_provider
);
5558 parent
->clk_init_cb
= match
->data
;
5559 parent
->np
= of_node_get(np
);
5560 list_add_tail(&parent
->node
, &clk_provider_list
);
5563 while (!list_empty(&clk_provider_list
)) {
5564 is_init_done
= false;
5565 list_for_each_entry_safe(clk_provider
, next
,
5566 &clk_provider_list
, node
) {
5567 if (force
|| parent_ready(clk_provider
->np
)) {
5569 /* Don't populate platform devices */
5570 of_node_set_flag(clk_provider
->np
,
5573 clk_provider
->clk_init_cb(clk_provider
->np
);
5574 of_clk_set_defaults(clk_provider
->np
, true);
5576 list_del(&clk_provider
->node
);
5577 of_node_put(clk_provider
->np
);
5578 kfree(clk_provider
);
5579 is_init_done
= true;
5584 * We didn't manage to initialize any of the
5585 * remaining providers during the last loop, so now we
5586 * initialize all the remaining ones unconditionally
5587 * in case the clock parent was not mandatory