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_is_enabled(const struct clk_hw
*hw
)
613 return clk_core_is_enabled(hw
->core
);
615 EXPORT_SYMBOL_GPL(clk_hw_is_enabled
);
617 bool __clk_is_enabled(struct clk
*clk
)
622 return clk_core_is_enabled(clk
->core
);
624 EXPORT_SYMBOL_GPL(__clk_is_enabled
);
626 static bool mux_is_better_rate(unsigned long rate
, unsigned long now
,
627 unsigned long best
, unsigned long flags
)
629 if (flags
& CLK_MUX_ROUND_CLOSEST
)
630 return abs(now
- rate
) < abs(best
- rate
);
632 return now
<= rate
&& now
> best
;
635 static void clk_core_init_rate_req(struct clk_core
* const core
,
636 struct clk_rate_request
*req
,
639 static int clk_core_round_rate_nolock(struct clk_core
*core
,
640 struct clk_rate_request
*req
);
642 static bool clk_core_has_parent(struct clk_core
*core
, const struct clk_core
*parent
)
644 struct clk_core
*tmp
;
647 /* Optimize for the case where the parent is already the parent. */
648 if (core
->parent
== parent
)
651 for (i
= 0; i
< core
->num_parents
; i
++) {
652 tmp
= clk_core_get_parent_by_index(core
, i
);
664 clk_core_forward_rate_req(struct clk_core
*core
,
665 const struct clk_rate_request
*old_req
,
666 struct clk_core
*parent
,
667 struct clk_rate_request
*req
,
668 unsigned long parent_rate
)
670 if (WARN_ON(!clk_core_has_parent(core
, parent
)))
673 clk_core_init_rate_req(parent
, req
, parent_rate
);
675 if (req
->min_rate
< old_req
->min_rate
)
676 req
->min_rate
= old_req
->min_rate
;
678 if (req
->max_rate
> old_req
->max_rate
)
679 req
->max_rate
= old_req
->max_rate
;
683 clk_core_determine_rate_no_reparent(struct clk_hw
*hw
,
684 struct clk_rate_request
*req
)
686 struct clk_core
*core
= hw
->core
;
687 struct clk_core
*parent
= core
->parent
;
691 if (core
->flags
& CLK_SET_RATE_PARENT
) {
692 struct clk_rate_request parent_req
;
699 clk_core_forward_rate_req(core
, req
, parent
, &parent_req
,
702 trace_clk_rate_request_start(&parent_req
);
704 ret
= clk_core_round_rate_nolock(parent
, &parent_req
);
708 trace_clk_rate_request_done(&parent_req
);
710 best
= parent_req
.rate
;
712 best
= clk_core_get_rate_nolock(parent
);
714 best
= clk_core_get_rate_nolock(core
);
717 req
->best_parent_rate
= best
;
723 int clk_mux_determine_rate_flags(struct clk_hw
*hw
,
724 struct clk_rate_request
*req
,
727 struct clk_core
*core
= hw
->core
, *parent
, *best_parent
= NULL
;
728 int i
, num_parents
, ret
;
729 unsigned long best
= 0;
731 /* if NO_REPARENT flag set, pass through to current parent */
732 if (core
->flags
& CLK_SET_RATE_NO_REPARENT
)
733 return clk_core_determine_rate_no_reparent(hw
, req
);
735 /* find the parent that can provide the fastest rate <= rate */
736 num_parents
= core
->num_parents
;
737 for (i
= 0; i
< num_parents
; i
++) {
738 unsigned long parent_rate
;
740 parent
= clk_core_get_parent_by_index(core
, i
);
744 if (core
->flags
& CLK_SET_RATE_PARENT
) {
745 struct clk_rate_request parent_req
;
747 clk_core_forward_rate_req(core
, req
, parent
, &parent_req
, req
->rate
);
749 trace_clk_rate_request_start(&parent_req
);
751 ret
= clk_core_round_rate_nolock(parent
, &parent_req
);
755 trace_clk_rate_request_done(&parent_req
);
757 parent_rate
= parent_req
.rate
;
759 parent_rate
= clk_core_get_rate_nolock(parent
);
762 if (mux_is_better_rate(req
->rate
, parent_rate
,
764 best_parent
= parent
;
772 req
->best_parent_hw
= best_parent
->hw
;
773 req
->best_parent_rate
= best
;
778 EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags
);
780 struct clk
*__clk_lookup(const char *name
)
782 struct clk_core
*core
= clk_core_lookup(name
);
784 return !core
? NULL
: core
->hw
->clk
;
787 static void clk_core_get_boundaries(struct clk_core
*core
,
788 unsigned long *min_rate
,
789 unsigned long *max_rate
)
791 struct clk
*clk_user
;
793 lockdep_assert_held(&prepare_lock
);
795 *min_rate
= core
->min_rate
;
796 *max_rate
= core
->max_rate
;
798 hlist_for_each_entry(clk_user
, &core
->clks
, clks_node
)
799 *min_rate
= max(*min_rate
, clk_user
->min_rate
);
801 hlist_for_each_entry(clk_user
, &core
->clks
, clks_node
)
802 *max_rate
= min(*max_rate
, clk_user
->max_rate
);
806 * clk_hw_get_rate_range() - returns the clock rate range for a hw clk
807 * @hw: the hw clk we want to get the range from
808 * @min_rate: pointer to the variable that will hold the minimum
809 * @max_rate: pointer to the variable that will hold the maximum
811 * Fills the @min_rate and @max_rate variables with the minimum and
812 * maximum that clock can reach.
814 void clk_hw_get_rate_range(struct clk_hw
*hw
, unsigned long *min_rate
,
815 unsigned long *max_rate
)
817 clk_core_get_boundaries(hw
->core
, min_rate
, max_rate
);
819 EXPORT_SYMBOL_GPL(clk_hw_get_rate_range
);
821 static bool clk_core_check_boundaries(struct clk_core
*core
,
822 unsigned long min_rate
,
823 unsigned long max_rate
)
827 lockdep_assert_held(&prepare_lock
);
829 if (min_rate
> core
->max_rate
|| max_rate
< core
->min_rate
)
832 hlist_for_each_entry(user
, &core
->clks
, clks_node
)
833 if (min_rate
> user
->max_rate
|| max_rate
< user
->min_rate
)
839 void clk_hw_set_rate_range(struct clk_hw
*hw
, unsigned long min_rate
,
840 unsigned long max_rate
)
842 hw
->core
->min_rate
= min_rate
;
843 hw
->core
->max_rate
= max_rate
;
845 EXPORT_SYMBOL_GPL(clk_hw_set_rate_range
);
848 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
849 * @hw: mux type clk to determine rate on
850 * @req: rate request, also used to return preferred parent and frequencies
852 * Helper for finding best parent to provide a given frequency. This can be used
853 * directly as a determine_rate callback (e.g. for a mux), or from a more
854 * complex clock that may combine a mux with other operations.
856 * Returns: 0 on success, -EERROR value on error
858 int __clk_mux_determine_rate(struct clk_hw
*hw
,
859 struct clk_rate_request
*req
)
861 return clk_mux_determine_rate_flags(hw
, req
, 0);
863 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate
);
865 int __clk_mux_determine_rate_closest(struct clk_hw
*hw
,
866 struct clk_rate_request
*req
)
868 return clk_mux_determine_rate_flags(hw
, req
, CLK_MUX_ROUND_CLOSEST
);
870 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest
);
873 * clk_hw_determine_rate_no_reparent - clk_ops::determine_rate implementation for a clk that doesn't reparent
874 * @hw: mux type clk to determine rate on
875 * @req: rate request, also used to return preferred frequency
877 * Helper for finding best parent rate to provide a given frequency.
878 * This can be used directly as a determine_rate callback (e.g. for a
879 * mux), or from a more complex clock that may combine a mux with other
882 * Returns: 0 on success, -EERROR value on error
884 int clk_hw_determine_rate_no_reparent(struct clk_hw
*hw
,
885 struct clk_rate_request
*req
)
887 return clk_core_determine_rate_no_reparent(hw
, req
);
889 EXPORT_SYMBOL_GPL(clk_hw_determine_rate_no_reparent
);
893 static void clk_core_rate_unprotect(struct clk_core
*core
)
895 lockdep_assert_held(&prepare_lock
);
900 if (WARN(core
->protect_count
== 0,
901 "%s already unprotected\n", core
->name
))
904 if (--core
->protect_count
> 0)
907 clk_core_rate_unprotect(core
->parent
);
910 static int clk_core_rate_nuke_protect(struct clk_core
*core
)
914 lockdep_assert_held(&prepare_lock
);
919 if (core
->protect_count
== 0)
922 ret
= core
->protect_count
;
923 core
->protect_count
= 1;
924 clk_core_rate_unprotect(core
);
930 * clk_rate_exclusive_put - release exclusivity over clock rate control
931 * @clk: the clk over which the exclusivity is released
933 * clk_rate_exclusive_put() completes a critical section during which a clock
934 * consumer cannot tolerate any other consumer making any operation on the
935 * clock which could result in a rate change or rate glitch. Exclusive clocks
936 * cannot have their rate changed, either directly or indirectly due to changes
937 * further up the parent chain of clocks. As a result, clocks up parent chain
938 * also get under exclusive control of the calling consumer.
940 * If exlusivity is claimed more than once on clock, even by the same consumer,
941 * the rate effectively gets locked as exclusivity can't be preempted.
943 * Calls to clk_rate_exclusive_put() must be balanced with calls to
944 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
947 void clk_rate_exclusive_put(struct clk
*clk
)
955 * if there is something wrong with this consumer protect count, stop
956 * here before messing with the provider
958 if (WARN_ON(clk
->exclusive_count
<= 0))
961 clk_core_rate_unprotect(clk
->core
);
962 clk
->exclusive_count
--;
964 clk_prepare_unlock();
966 EXPORT_SYMBOL_GPL(clk_rate_exclusive_put
);
968 static void clk_core_rate_protect(struct clk_core
*core
)
970 lockdep_assert_held(&prepare_lock
);
975 if (core
->protect_count
== 0)
976 clk_core_rate_protect(core
->parent
);
978 core
->protect_count
++;
981 static void clk_core_rate_restore_protect(struct clk_core
*core
, int count
)
983 lockdep_assert_held(&prepare_lock
);
991 clk_core_rate_protect(core
);
992 core
->protect_count
= count
;
996 * clk_rate_exclusive_get - get exclusivity over the clk rate control
997 * @clk: the clk over which the exclusity of rate control is requested
999 * clk_rate_exclusive_get() begins a critical section during which a clock
1000 * consumer cannot tolerate any other consumer making any operation on the
1001 * clock which could result in a rate change or rate glitch. Exclusive clocks
1002 * cannot have their rate changed, either directly or indirectly due to changes
1003 * further up the parent chain of clocks. As a result, clocks up parent chain
1004 * also get under exclusive control of the calling consumer.
1006 * If exlusivity is claimed more than once on clock, even by the same consumer,
1007 * the rate effectively gets locked as exclusivity can't be preempted.
1009 * Calls to clk_rate_exclusive_get() should be balanced with calls to
1010 * clk_rate_exclusive_put(). Calls to this function may sleep.
1011 * Returns 0 on success, -EERROR otherwise
1013 int clk_rate_exclusive_get(struct clk
*clk
)
1019 clk_core_rate_protect(clk
->core
);
1020 clk
->exclusive_count
++;
1021 clk_prepare_unlock();
1025 EXPORT_SYMBOL_GPL(clk_rate_exclusive_get
);
1027 static void devm_clk_rate_exclusive_put(void *data
)
1029 struct clk
*clk
= data
;
1031 clk_rate_exclusive_put(clk
);
1034 int devm_clk_rate_exclusive_get(struct device
*dev
, struct clk
*clk
)
1038 ret
= clk_rate_exclusive_get(clk
);
1042 return devm_add_action_or_reset(dev
, devm_clk_rate_exclusive_put
, clk
);
1044 EXPORT_SYMBOL_GPL(devm_clk_rate_exclusive_get
);
1046 static void clk_core_unprepare(struct clk_core
*core
)
1048 lockdep_assert_held(&prepare_lock
);
1053 if (WARN(core
->prepare_count
== 0,
1054 "%s already unprepared\n", core
->name
))
1057 if (WARN(core
->prepare_count
== 1 && core
->flags
& CLK_IS_CRITICAL
,
1058 "Unpreparing critical %s\n", core
->name
))
1061 if (core
->flags
& CLK_SET_RATE_GATE
)
1062 clk_core_rate_unprotect(core
);
1064 if (--core
->prepare_count
> 0)
1067 WARN(core
->enable_count
> 0, "Unpreparing enabled %s\n", core
->name
);
1069 trace_clk_unprepare(core
);
1071 if (core
->ops
->unprepare
)
1072 core
->ops
->unprepare(core
->hw
);
1074 trace_clk_unprepare_complete(core
);
1075 clk_core_unprepare(core
->parent
);
1076 clk_pm_runtime_put(core
);
1079 static void clk_core_unprepare_lock(struct clk_core
*core
)
1082 clk_core_unprepare(core
);
1083 clk_prepare_unlock();
1087 * clk_unprepare - undo preparation of a clock source
1088 * @clk: the clk being unprepared
1090 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
1091 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
1092 * if the operation may sleep. One example is a clk which is accessed over
1093 * I2c. In the complex case a clk gate operation may require a fast and a slow
1094 * part. It is this reason that clk_unprepare and clk_disable are not mutually
1095 * exclusive. In fact clk_disable must be called before clk_unprepare.
1097 void clk_unprepare(struct clk
*clk
)
1099 if (IS_ERR_OR_NULL(clk
))
1102 clk_core_unprepare_lock(clk
->core
);
1104 EXPORT_SYMBOL_GPL(clk_unprepare
);
1106 static int clk_core_prepare(struct clk_core
*core
)
1110 lockdep_assert_held(&prepare_lock
);
1115 if (core
->prepare_count
== 0) {
1116 ret
= clk_pm_runtime_get(core
);
1120 ret
= clk_core_prepare(core
->parent
);
1124 trace_clk_prepare(core
);
1126 if (core
->ops
->prepare
)
1127 ret
= core
->ops
->prepare(core
->hw
);
1129 trace_clk_prepare_complete(core
);
1135 core
->prepare_count
++;
1138 * CLK_SET_RATE_GATE is a special case of clock protection
1139 * Instead of a consumer claiming exclusive rate control, it is
1140 * actually the provider which prevents any consumer from making any
1141 * operation which could result in a rate change or rate glitch while
1142 * the clock is prepared.
1144 if (core
->flags
& CLK_SET_RATE_GATE
)
1145 clk_core_rate_protect(core
);
1149 clk_core_unprepare(core
->parent
);
1151 clk_pm_runtime_put(core
);
1155 static int clk_core_prepare_lock(struct clk_core
*core
)
1160 ret
= clk_core_prepare(core
);
1161 clk_prepare_unlock();
1167 * clk_prepare - prepare a clock source
1168 * @clk: the clk being prepared
1170 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
1171 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
1172 * operation may sleep. One example is a clk which is accessed over I2c. In
1173 * the complex case a clk ungate operation may require a fast and a slow part.
1174 * It is this reason that clk_prepare and clk_enable are not mutually
1175 * exclusive. In fact clk_prepare must be called before clk_enable.
1176 * Returns 0 on success, -EERROR otherwise.
1178 int clk_prepare(struct clk
*clk
)
1183 return clk_core_prepare_lock(clk
->core
);
1185 EXPORT_SYMBOL_GPL(clk_prepare
);
1187 static void clk_core_disable(struct clk_core
*core
)
1189 lockdep_assert_held(&enable_lock
);
1194 if (WARN(core
->enable_count
== 0, "%s already disabled\n", core
->name
))
1197 if (WARN(core
->enable_count
== 1 && core
->flags
& CLK_IS_CRITICAL
,
1198 "Disabling critical %s\n", core
->name
))
1201 if (--core
->enable_count
> 0)
1204 trace_clk_disable(core
);
1206 if (core
->ops
->disable
)
1207 core
->ops
->disable(core
->hw
);
1209 trace_clk_disable_complete(core
);
1211 clk_core_disable(core
->parent
);
1214 static void clk_core_disable_lock(struct clk_core
*core
)
1216 unsigned long flags
;
1218 flags
= clk_enable_lock();
1219 clk_core_disable(core
);
1220 clk_enable_unlock(flags
);
1224 * clk_disable - gate a clock
1225 * @clk: the clk being gated
1227 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1228 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1229 * clk if the operation is fast and will never sleep. One example is a
1230 * SoC-internal clk which is controlled via simple register writes. In the
1231 * complex case a clk gate operation may require a fast and a slow part. It is
1232 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1233 * In fact clk_disable must be called before clk_unprepare.
1235 void clk_disable(struct clk
*clk
)
1237 if (IS_ERR_OR_NULL(clk
))
1240 clk_core_disable_lock(clk
->core
);
1242 EXPORT_SYMBOL_GPL(clk_disable
);
1244 static int clk_core_enable(struct clk_core
*core
)
1248 lockdep_assert_held(&enable_lock
);
1253 if (WARN(core
->prepare_count
== 0,
1254 "Enabling unprepared %s\n", core
->name
))
1257 if (core
->enable_count
== 0) {
1258 ret
= clk_core_enable(core
->parent
);
1263 trace_clk_enable(core
);
1265 if (core
->ops
->enable
)
1266 ret
= core
->ops
->enable(core
->hw
);
1268 trace_clk_enable_complete(core
);
1271 clk_core_disable(core
->parent
);
1276 core
->enable_count
++;
1280 static int clk_core_enable_lock(struct clk_core
*core
)
1282 unsigned long flags
;
1285 flags
= clk_enable_lock();
1286 ret
= clk_core_enable(core
);
1287 clk_enable_unlock(flags
);
1293 * clk_gate_restore_context - restore context for poweroff
1294 * @hw: the clk_hw pointer of clock whose state is to be restored
1296 * The clock gate restore context function enables or disables
1297 * the gate clocks based on the enable_count. This is done in cases
1298 * where the clock context is lost and based on the enable_count
1299 * the clock either needs to be enabled/disabled. This
1300 * helps restore the state of gate clocks.
1302 void clk_gate_restore_context(struct clk_hw
*hw
)
1304 struct clk_core
*core
= hw
->core
;
1306 if (core
->enable_count
)
1307 core
->ops
->enable(hw
);
1309 core
->ops
->disable(hw
);
1311 EXPORT_SYMBOL_GPL(clk_gate_restore_context
);
1313 static int clk_core_save_context(struct clk_core
*core
)
1315 struct clk_core
*child
;
1318 hlist_for_each_entry(child
, &core
->children
, child_node
) {
1319 ret
= clk_core_save_context(child
);
1324 if (core
->ops
&& core
->ops
->save_context
)
1325 ret
= core
->ops
->save_context(core
->hw
);
1330 static void clk_core_restore_context(struct clk_core
*core
)
1332 struct clk_core
*child
;
1334 if (core
->ops
&& core
->ops
->restore_context
)
1335 core
->ops
->restore_context(core
->hw
);
1337 hlist_for_each_entry(child
, &core
->children
, child_node
)
1338 clk_core_restore_context(child
);
1342 * clk_save_context - save clock context for poweroff
1344 * Saves the context of the clock register for powerstates in which the
1345 * contents of the registers will be lost. Occurs deep within the suspend
1346 * code. Returns 0 on success.
1348 int clk_save_context(void)
1350 struct clk_core
*clk
;
1353 hlist_for_each_entry(clk
, &clk_root_list
, child_node
) {
1354 ret
= clk_core_save_context(clk
);
1359 hlist_for_each_entry(clk
, &clk_orphan_list
, child_node
) {
1360 ret
= clk_core_save_context(clk
);
1367 EXPORT_SYMBOL_GPL(clk_save_context
);
1370 * clk_restore_context - restore clock context after poweroff
1372 * Restore the saved clock context upon resume.
1375 void clk_restore_context(void)
1377 struct clk_core
*core
;
1379 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1380 clk_core_restore_context(core
);
1382 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1383 clk_core_restore_context(core
);
1385 EXPORT_SYMBOL_GPL(clk_restore_context
);
1388 * clk_enable - ungate a clock
1389 * @clk: the clk being ungated
1391 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1392 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1393 * if the operation will never sleep. One example is a SoC-internal clk which
1394 * is controlled via simple register writes. In the complex case a clk ungate
1395 * operation may require a fast and a slow part. It is this reason that
1396 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1397 * must be called before clk_enable. Returns 0 on success, -EERROR
1400 int clk_enable(struct clk
*clk
)
1405 return clk_core_enable_lock(clk
->core
);
1407 EXPORT_SYMBOL_GPL(clk_enable
);
1410 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
1411 * @clk: clock source
1413 * Returns true if clk_prepare() implicitly enables the clock, effectively
1414 * making clk_enable()/clk_disable() no-ops, false otherwise.
1416 * This is of interest mainly to power management code where actually
1417 * disabling the clock also requires unpreparing it to have any material
1420 * Regardless of the value returned here, the caller must always invoke
1421 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
1424 bool clk_is_enabled_when_prepared(struct clk
*clk
)
1426 return clk
&& !(clk
->core
->ops
->enable
&& clk
->core
->ops
->disable
);
1428 EXPORT_SYMBOL_GPL(clk_is_enabled_when_prepared
);
1430 static int clk_core_prepare_enable(struct clk_core
*core
)
1434 ret
= clk_core_prepare_lock(core
);
1438 ret
= clk_core_enable_lock(core
);
1440 clk_core_unprepare_lock(core
);
1445 static void clk_core_disable_unprepare(struct clk_core
*core
)
1447 clk_core_disable_lock(core
);
1448 clk_core_unprepare_lock(core
);
1451 static void __init
clk_unprepare_unused_subtree(struct clk_core
*core
)
1453 struct clk_core
*child
;
1455 lockdep_assert_held(&prepare_lock
);
1457 hlist_for_each_entry(child
, &core
->children
, child_node
)
1458 clk_unprepare_unused_subtree(child
);
1460 if (core
->prepare_count
)
1463 if (core
->flags
& CLK_IGNORE_UNUSED
)
1466 if (clk_core_is_prepared(core
)) {
1467 trace_clk_unprepare(core
);
1468 if (core
->ops
->unprepare_unused
)
1469 core
->ops
->unprepare_unused(core
->hw
);
1470 else if (core
->ops
->unprepare
)
1471 core
->ops
->unprepare(core
->hw
);
1472 trace_clk_unprepare_complete(core
);
1476 static void __init
clk_disable_unused_subtree(struct clk_core
*core
)
1478 struct clk_core
*child
;
1479 unsigned long flags
;
1481 lockdep_assert_held(&prepare_lock
);
1483 hlist_for_each_entry(child
, &core
->children
, child_node
)
1484 clk_disable_unused_subtree(child
);
1486 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
1487 clk_core_prepare_enable(core
->parent
);
1489 flags
= clk_enable_lock();
1491 if (core
->enable_count
)
1494 if (core
->flags
& CLK_IGNORE_UNUSED
)
1498 * some gate clocks have special needs during the disable-unused
1499 * sequence. call .disable_unused if available, otherwise fall
1502 if (clk_core_is_enabled(core
)) {
1503 trace_clk_disable(core
);
1504 if (core
->ops
->disable_unused
)
1505 core
->ops
->disable_unused(core
->hw
);
1506 else if (core
->ops
->disable
)
1507 core
->ops
->disable(core
->hw
);
1508 trace_clk_disable_complete(core
);
1512 clk_enable_unlock(flags
);
1513 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
1514 clk_core_disable_unprepare(core
->parent
);
1517 static bool clk_ignore_unused __initdata
;
1518 static int __init
clk_ignore_unused_setup(char *__unused
)
1520 clk_ignore_unused
= true;
1523 __setup("clk_ignore_unused", clk_ignore_unused_setup
);
1525 static int __init
clk_disable_unused(void)
1527 struct clk_core
*core
;
1530 if (clk_ignore_unused
) {
1531 pr_warn("clk: Not disabling unused clocks\n");
1535 pr_info("clk: Disabling unused clocks\n");
1537 ret
= clk_pm_runtime_get_all();
1541 * Grab the prepare lock to keep the clk topology stable while iterating
1546 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1547 clk_disable_unused_subtree(core
);
1549 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1550 clk_disable_unused_subtree(core
);
1552 hlist_for_each_entry(core
, &clk_root_list
, child_node
)
1553 clk_unprepare_unused_subtree(core
);
1555 hlist_for_each_entry(core
, &clk_orphan_list
, child_node
)
1556 clk_unprepare_unused_subtree(core
);
1558 clk_prepare_unlock();
1560 clk_pm_runtime_put_all();
1564 late_initcall_sync(clk_disable_unused
);
1566 static int clk_core_determine_round_nolock(struct clk_core
*core
,
1567 struct clk_rate_request
*req
)
1571 lockdep_assert_held(&prepare_lock
);
1577 * Some clock providers hand-craft their clk_rate_requests and
1578 * might not fill min_rate and max_rate.
1580 * If it's the case, clamping the rate is equivalent to setting
1581 * the rate to 0 which is bad. Skip the clamping but complain so
1582 * that it gets fixed, hopefully.
1584 if (!req
->min_rate
&& !req
->max_rate
)
1585 pr_warn("%s: %s: clk_rate_request has initialized min or max rate.\n",
1586 __func__
, core
->name
);
1588 req
->rate
= clamp(req
->rate
, req
->min_rate
, req
->max_rate
);
1591 * At this point, core protection will be disabled
1592 * - if the provider is not protected at all
1593 * - if the calling consumer is the only one which has exclusivity
1596 if (clk_core_rate_is_protected(core
)) {
1597 req
->rate
= core
->rate
;
1598 } else if (core
->ops
->determine_rate
) {
1599 return core
->ops
->determine_rate(core
->hw
, req
);
1600 } else if (core
->ops
->round_rate
) {
1601 rate
= core
->ops
->round_rate(core
->hw
, req
->rate
,
1602 &req
->best_parent_rate
);
1614 static void clk_core_init_rate_req(struct clk_core
* const core
,
1615 struct clk_rate_request
*req
,
1618 struct clk_core
*parent
;
1623 memset(req
, 0, sizeof(*req
));
1624 req
->max_rate
= ULONG_MAX
;
1631 clk_core_get_boundaries(core
, &req
->min_rate
, &req
->max_rate
);
1633 parent
= core
->parent
;
1635 req
->best_parent_hw
= parent
->hw
;
1636 req
->best_parent_rate
= parent
->rate
;
1638 req
->best_parent_hw
= NULL
;
1639 req
->best_parent_rate
= 0;
1644 * clk_hw_init_rate_request - Initializes a clk_rate_request
1645 * @hw: the clk for which we want to submit a rate request
1646 * @req: the clk_rate_request structure we want to initialise
1647 * @rate: the rate which is to be requested
1649 * Initializes a clk_rate_request structure to submit to
1650 * __clk_determine_rate() or similar functions.
1652 void clk_hw_init_rate_request(const struct clk_hw
*hw
,
1653 struct clk_rate_request
*req
,
1656 if (WARN_ON(!hw
|| !req
))
1659 clk_core_init_rate_req(hw
->core
, req
, rate
);
1661 EXPORT_SYMBOL_GPL(clk_hw_init_rate_request
);
1664 * clk_hw_forward_rate_request - Forwards a clk_rate_request to a clock's parent
1665 * @hw: the original clock that got the rate request
1666 * @old_req: the original clk_rate_request structure we want to forward
1667 * @parent: the clk we want to forward @old_req to
1668 * @req: the clk_rate_request structure we want to initialise
1669 * @parent_rate: The rate which is to be requested to @parent
1671 * Initializes a clk_rate_request structure to submit to a clock parent
1672 * in __clk_determine_rate() or similar functions.
1674 void clk_hw_forward_rate_request(const struct clk_hw
*hw
,
1675 const struct clk_rate_request
*old_req
,
1676 const struct clk_hw
*parent
,
1677 struct clk_rate_request
*req
,
1678 unsigned long parent_rate
)
1680 if (WARN_ON(!hw
|| !old_req
|| !parent
|| !req
))
1683 clk_core_forward_rate_req(hw
->core
, old_req
,
1687 EXPORT_SYMBOL_GPL(clk_hw_forward_rate_request
);
1689 static bool clk_core_can_round(struct clk_core
* const core
)
1691 return core
->ops
->determine_rate
|| core
->ops
->round_rate
;
1694 static int clk_core_round_rate_nolock(struct clk_core
*core
,
1695 struct clk_rate_request
*req
)
1699 lockdep_assert_held(&prepare_lock
);
1706 if (clk_core_can_round(core
))
1707 return clk_core_determine_round_nolock(core
, req
);
1709 if (core
->flags
& CLK_SET_RATE_PARENT
) {
1710 struct clk_rate_request parent_req
;
1712 clk_core_forward_rate_req(core
, req
, core
->parent
, &parent_req
, req
->rate
);
1714 trace_clk_rate_request_start(&parent_req
);
1716 ret
= clk_core_round_rate_nolock(core
->parent
, &parent_req
);
1720 trace_clk_rate_request_done(&parent_req
);
1722 req
->best_parent_rate
= parent_req
.rate
;
1723 req
->rate
= parent_req
.rate
;
1728 req
->rate
= core
->rate
;
1733 * __clk_determine_rate - get the closest rate actually supported by a clock
1734 * @hw: determine the rate of this clock
1735 * @req: target rate request
1737 * Useful for clk_ops such as .set_rate and .determine_rate.
1739 int __clk_determine_rate(struct clk_hw
*hw
, struct clk_rate_request
*req
)
1746 return clk_core_round_rate_nolock(hw
->core
, req
);
1748 EXPORT_SYMBOL_GPL(__clk_determine_rate
);
1751 * clk_hw_round_rate() - round the given rate for a hw clk
1752 * @hw: the hw clk for which we are rounding a rate
1753 * @rate: the rate which is to be rounded
1755 * Takes in a rate as input and rounds it to a rate that the clk can actually
1758 * Context: prepare_lock must be held.
1759 * For clk providers to call from within clk_ops such as .round_rate,
1762 * Return: returns rounded rate of hw clk if clk supports round_rate operation
1763 * else returns the parent rate.
1765 unsigned long clk_hw_round_rate(struct clk_hw
*hw
, unsigned long rate
)
1768 struct clk_rate_request req
;
1770 clk_core_init_rate_req(hw
->core
, &req
, rate
);
1772 trace_clk_rate_request_start(&req
);
1774 ret
= clk_core_round_rate_nolock(hw
->core
, &req
);
1778 trace_clk_rate_request_done(&req
);
1782 EXPORT_SYMBOL_GPL(clk_hw_round_rate
);
1785 * clk_round_rate - round the given rate for a clk
1786 * @clk: the clk for which we are rounding a rate
1787 * @rate: the rate which is to be rounded
1789 * Takes in a rate as input and rounds it to a rate that the clk can actually
1790 * use which is then returned. If clk doesn't support round_rate operation
1791 * then the parent rate is returned.
1793 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
1795 struct clk_rate_request req
;
1803 if (clk
->exclusive_count
)
1804 clk_core_rate_unprotect(clk
->core
);
1806 clk_core_init_rate_req(clk
->core
, &req
, rate
);
1808 trace_clk_rate_request_start(&req
);
1810 ret
= clk_core_round_rate_nolock(clk
->core
, &req
);
1812 trace_clk_rate_request_done(&req
);
1814 if (clk
->exclusive_count
)
1815 clk_core_rate_protect(clk
->core
);
1817 clk_prepare_unlock();
1824 EXPORT_SYMBOL_GPL(clk_round_rate
);
1827 * __clk_notify - call clk notifier chain
1828 * @core: clk that is changing rate
1829 * @msg: clk notifier type (see include/linux/clk.h)
1830 * @old_rate: old clk rate
1831 * @new_rate: new clk rate
1833 * Triggers a notifier call chain on the clk rate-change notification
1834 * for 'clk'. Passes a pointer to the struct clk and the previous
1835 * and current rates to the notifier callback. Intended to be called by
1836 * internal clock code only. Returns NOTIFY_DONE from the last driver
1837 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1838 * a driver returns that.
1840 static int __clk_notify(struct clk_core
*core
, unsigned long msg
,
1841 unsigned long old_rate
, unsigned long new_rate
)
1843 struct clk_notifier
*cn
;
1844 struct clk_notifier_data cnd
;
1845 int ret
= NOTIFY_DONE
;
1847 cnd
.old_rate
= old_rate
;
1848 cnd
.new_rate
= new_rate
;
1850 list_for_each_entry(cn
, &clk_notifier_list
, node
) {
1851 if (cn
->clk
->core
== core
) {
1853 ret
= srcu_notifier_call_chain(&cn
->notifier_head
, msg
,
1855 if (ret
& NOTIFY_STOP_MASK
)
1864 * __clk_recalc_accuracies
1865 * @core: first clk in the subtree
1867 * Walks the subtree of clks starting with clk and recalculates accuracies as
1868 * it goes. Note that if a clk does not implement the .recalc_accuracy
1869 * callback then it is assumed that the clock will take on the accuracy of its
1872 static void __clk_recalc_accuracies(struct clk_core
*core
)
1874 unsigned long parent_accuracy
= 0;
1875 struct clk_core
*child
;
1877 lockdep_assert_held(&prepare_lock
);
1880 parent_accuracy
= core
->parent
->accuracy
;
1882 if (core
->ops
->recalc_accuracy
)
1883 core
->accuracy
= core
->ops
->recalc_accuracy(core
->hw
,
1886 core
->accuracy
= parent_accuracy
;
1888 hlist_for_each_entry(child
, &core
->children
, child_node
)
1889 __clk_recalc_accuracies(child
);
1892 static long clk_core_get_accuracy_recalc(struct clk_core
*core
)
1894 if (core
&& (core
->flags
& CLK_GET_ACCURACY_NOCACHE
))
1895 __clk_recalc_accuracies(core
);
1897 return clk_core_get_accuracy_no_lock(core
);
1901 * clk_get_accuracy - return the accuracy of clk
1902 * @clk: the clk whose accuracy is being returned
1904 * Simply returns the cached accuracy of the clk, unless
1905 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1907 * If clk is NULL then returns 0.
1909 long clk_get_accuracy(struct clk
*clk
)
1917 accuracy
= clk_core_get_accuracy_recalc(clk
->core
);
1918 clk_prepare_unlock();
1922 EXPORT_SYMBOL_GPL(clk_get_accuracy
);
1924 static unsigned long clk_recalc(struct clk_core
*core
,
1925 unsigned long parent_rate
)
1927 unsigned long rate
= parent_rate
;
1929 if (core
->ops
->recalc_rate
&& !clk_pm_runtime_get(core
)) {
1930 rate
= core
->ops
->recalc_rate(core
->hw
, parent_rate
);
1931 clk_pm_runtime_put(core
);
1937 * __clk_recalc_rates
1938 * @core: first clk in the subtree
1939 * @update_req: Whether req_rate should be updated with the new rate
1940 * @msg: notification type (see include/linux/clk.h)
1942 * Walks the subtree of clks starting with clk and recalculates rates as it
1943 * goes. Note that if a clk does not implement the .recalc_rate callback then
1944 * it is assumed that the clock will take on the rate of its parent.
1946 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1949 static void __clk_recalc_rates(struct clk_core
*core
, bool update_req
,
1952 unsigned long old_rate
;
1953 unsigned long parent_rate
= 0;
1954 struct clk_core
*child
;
1956 lockdep_assert_held(&prepare_lock
);
1958 old_rate
= core
->rate
;
1961 parent_rate
= core
->parent
->rate
;
1963 core
->rate
= clk_recalc(core
, parent_rate
);
1965 core
->req_rate
= core
->rate
;
1968 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1969 * & ABORT_RATE_CHANGE notifiers
1971 if (core
->notifier_count
&& msg
)
1972 __clk_notify(core
, msg
, old_rate
, core
->rate
);
1974 hlist_for_each_entry(child
, &core
->children
, child_node
)
1975 __clk_recalc_rates(child
, update_req
, msg
);
1978 static unsigned long clk_core_get_rate_recalc(struct clk_core
*core
)
1980 if (core
&& (core
->flags
& CLK_GET_RATE_NOCACHE
))
1981 __clk_recalc_rates(core
, false, 0);
1983 return clk_core_get_rate_nolock(core
);
1987 * clk_get_rate - return the rate of clk
1988 * @clk: the clk whose rate is being returned
1990 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1991 * is set, which means a recalc_rate will be issued. Can be called regardless of
1992 * the clock enabledness. If clk is NULL, or if an error occurred, then returns
1995 unsigned long clk_get_rate(struct clk
*clk
)
2003 rate
= clk_core_get_rate_recalc(clk
->core
);
2004 clk_prepare_unlock();
2008 EXPORT_SYMBOL_GPL(clk_get_rate
);
2010 static int clk_fetch_parent_index(struct clk_core
*core
,
2011 struct clk_core
*parent
)
2018 for (i
= 0; i
< core
->num_parents
; i
++) {
2019 /* Found it first try! */
2020 if (core
->parents
[i
].core
== parent
)
2023 /* Something else is here, so keep looking */
2024 if (core
->parents
[i
].core
)
2027 /* Maybe core hasn't been cached but the hw is all we know? */
2028 if (core
->parents
[i
].hw
) {
2029 if (core
->parents
[i
].hw
== parent
->hw
)
2032 /* Didn't match, but we're expecting a clk_hw */
2036 /* Maybe it hasn't been cached (clk_set_parent() path) */
2037 if (parent
== clk_core_get(core
, i
))
2040 /* Fallback to comparing globally unique names */
2041 if (core
->parents
[i
].name
&&
2042 !strcmp(parent
->name
, core
->parents
[i
].name
))
2046 if (i
== core
->num_parents
)
2049 core
->parents
[i
].core
= parent
;
2054 * clk_hw_get_parent_index - return the index of the parent clock
2055 * @hw: clk_hw associated with the clk being consumed
2057 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
2058 * clock does not have a current parent.
2060 int clk_hw_get_parent_index(struct clk_hw
*hw
)
2062 struct clk_hw
*parent
= clk_hw_get_parent(hw
);
2064 if (WARN_ON(parent
== NULL
))
2067 return clk_fetch_parent_index(hw
->core
, parent
->core
);
2069 EXPORT_SYMBOL_GPL(clk_hw_get_parent_index
);
2072 * Update the orphan status of @core and all its children.
2074 static void clk_core_update_orphan_status(struct clk_core
*core
, bool is_orphan
)
2076 struct clk_core
*child
;
2078 core
->orphan
= is_orphan
;
2080 hlist_for_each_entry(child
, &core
->children
, child_node
)
2081 clk_core_update_orphan_status(child
, is_orphan
);
2084 static void clk_reparent(struct clk_core
*core
, struct clk_core
*new_parent
)
2086 bool was_orphan
= core
->orphan
;
2088 hlist_del(&core
->child_node
);
2091 bool becomes_orphan
= new_parent
->orphan
;
2093 /* avoid duplicate POST_RATE_CHANGE notifications */
2094 if (new_parent
->new_child
== core
)
2095 new_parent
->new_child
= NULL
;
2097 hlist_add_head(&core
->child_node
, &new_parent
->children
);
2099 if (was_orphan
!= becomes_orphan
)
2100 clk_core_update_orphan_status(core
, becomes_orphan
);
2102 hlist_add_head(&core
->child_node
, &clk_orphan_list
);
2104 clk_core_update_orphan_status(core
, true);
2107 core
->parent
= new_parent
;
2110 static struct clk_core
*__clk_set_parent_before(struct clk_core
*core
,
2111 struct clk_core
*parent
)
2113 unsigned long flags
;
2114 struct clk_core
*old_parent
= core
->parent
;
2117 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
2119 * 2. Migrate prepare state between parents and prevent race with
2122 * If the clock is not prepared, then a race with
2123 * clk_enable/disable() is impossible since we already have the
2124 * prepare lock (future calls to clk_enable() need to be preceded by
2127 * If the clock is prepared, migrate the prepared state to the new
2128 * parent and also protect against a race with clk_enable() by
2129 * forcing the clock and the new parent on. This ensures that all
2130 * future calls to clk_enable() are practically NOPs with respect to
2131 * hardware and software states.
2133 * See also: Comment for clk_set_parent() below.
2136 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
2137 if (core
->flags
& CLK_OPS_PARENT_ENABLE
) {
2138 clk_core_prepare_enable(old_parent
);
2139 clk_core_prepare_enable(parent
);
2142 /* migrate prepare count if > 0 */
2143 if (core
->prepare_count
) {
2144 clk_core_prepare_enable(parent
);
2145 clk_core_enable_lock(core
);
2148 /* update the clk tree topology */
2149 flags
= clk_enable_lock();
2150 clk_reparent(core
, parent
);
2151 clk_enable_unlock(flags
);
2156 static void __clk_set_parent_after(struct clk_core
*core
,
2157 struct clk_core
*parent
,
2158 struct clk_core
*old_parent
)
2161 * Finish the migration of prepare state and undo the changes done
2162 * for preventing a race with clk_enable().
2164 if (core
->prepare_count
) {
2165 clk_core_disable_lock(core
);
2166 clk_core_disable_unprepare(old_parent
);
2169 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
2170 if (core
->flags
& CLK_OPS_PARENT_ENABLE
) {
2171 clk_core_disable_unprepare(parent
);
2172 clk_core_disable_unprepare(old_parent
);
2176 static int __clk_set_parent(struct clk_core
*core
, struct clk_core
*parent
,
2179 unsigned long flags
;
2181 struct clk_core
*old_parent
;
2183 old_parent
= __clk_set_parent_before(core
, parent
);
2185 trace_clk_set_parent(core
, parent
);
2187 /* change clock input source */
2188 if (parent
&& core
->ops
->set_parent
)
2189 ret
= core
->ops
->set_parent(core
->hw
, p_index
);
2191 trace_clk_set_parent_complete(core
, parent
);
2194 flags
= clk_enable_lock();
2195 clk_reparent(core
, old_parent
);
2196 clk_enable_unlock(flags
);
2198 __clk_set_parent_after(core
, old_parent
, parent
);
2203 __clk_set_parent_after(core
, parent
, old_parent
);
2209 * __clk_speculate_rates
2210 * @core: first clk in the subtree
2211 * @parent_rate: the "future" rate of clk's parent
2213 * Walks the subtree of clks starting with clk, speculating rates as it
2214 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
2216 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
2217 * pre-rate change notifications and returns early if no clks in the
2218 * subtree have subscribed to the notifications. Note that if a clk does not
2219 * implement the .recalc_rate callback then it is assumed that the clock will
2220 * take on the rate of its parent.
2222 static int __clk_speculate_rates(struct clk_core
*core
,
2223 unsigned long parent_rate
)
2225 struct clk_core
*child
;
2226 unsigned long new_rate
;
2227 int ret
= NOTIFY_DONE
;
2229 lockdep_assert_held(&prepare_lock
);
2231 new_rate
= clk_recalc(core
, parent_rate
);
2233 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
2234 if (core
->notifier_count
)
2235 ret
= __clk_notify(core
, PRE_RATE_CHANGE
, core
->rate
, new_rate
);
2237 if (ret
& NOTIFY_STOP_MASK
) {
2238 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
2239 __func__
, core
->name
, ret
);
2243 hlist_for_each_entry(child
, &core
->children
, child_node
) {
2244 ret
= __clk_speculate_rates(child
, new_rate
);
2245 if (ret
& NOTIFY_STOP_MASK
)
2253 static void clk_calc_subtree(struct clk_core
*core
, unsigned long new_rate
,
2254 struct clk_core
*new_parent
, u8 p_index
)
2256 struct clk_core
*child
;
2258 core
->new_rate
= new_rate
;
2259 core
->new_parent
= new_parent
;
2260 core
->new_parent_index
= p_index
;
2261 /* include clk in new parent's PRE_RATE_CHANGE notifications */
2262 core
->new_child
= NULL
;
2263 if (new_parent
&& new_parent
!= core
->parent
)
2264 new_parent
->new_child
= core
;
2266 hlist_for_each_entry(child
, &core
->children
, child_node
) {
2267 child
->new_rate
= clk_recalc(child
, new_rate
);
2268 clk_calc_subtree(child
, child
->new_rate
, NULL
, 0);
2273 * calculate the new rates returning the topmost clock that has to be
2276 static struct clk_core
*clk_calc_new_rates(struct clk_core
*core
,
2279 struct clk_core
*top
= core
;
2280 struct clk_core
*old_parent
, *parent
;
2281 unsigned long best_parent_rate
= 0;
2282 unsigned long new_rate
;
2283 unsigned long min_rate
;
2284 unsigned long max_rate
;
2289 if (IS_ERR_OR_NULL(core
))
2292 /* save parent rate, if it exists */
2293 parent
= old_parent
= core
->parent
;
2295 best_parent_rate
= parent
->rate
;
2297 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
2299 /* find the closest rate and parent clk/rate */
2300 if (clk_core_can_round(core
)) {
2301 struct clk_rate_request req
;
2303 clk_core_init_rate_req(core
, &req
, rate
);
2305 trace_clk_rate_request_start(&req
);
2307 ret
= clk_core_determine_round_nolock(core
, &req
);
2311 trace_clk_rate_request_done(&req
);
2313 best_parent_rate
= req
.best_parent_rate
;
2314 new_rate
= req
.rate
;
2315 parent
= req
.best_parent_hw
? req
.best_parent_hw
->core
: NULL
;
2317 if (new_rate
< min_rate
|| new_rate
> max_rate
)
2319 } else if (!parent
|| !(core
->flags
& CLK_SET_RATE_PARENT
)) {
2320 /* pass-through clock without adjustable parent */
2321 core
->new_rate
= core
->rate
;
2324 /* pass-through clock with adjustable parent */
2325 top
= clk_calc_new_rates(parent
, rate
);
2326 new_rate
= parent
->new_rate
;
2330 /* some clocks must be gated to change parent */
2331 if (parent
!= old_parent
&&
2332 (core
->flags
& CLK_SET_PARENT_GATE
) && core
->prepare_count
) {
2333 pr_debug("%s: %s not gated but wants to reparent\n",
2334 __func__
, core
->name
);
2338 /* try finding the new parent index */
2339 if (parent
&& core
->num_parents
> 1) {
2340 p_index
= clk_fetch_parent_index(core
, parent
);
2342 pr_debug("%s: clk %s can not be parent of clk %s\n",
2343 __func__
, parent
->name
, core
->name
);
2348 if ((core
->flags
& CLK_SET_RATE_PARENT
) && parent
&&
2349 best_parent_rate
!= parent
->rate
)
2350 top
= clk_calc_new_rates(parent
, best_parent_rate
);
2353 clk_calc_subtree(core
, new_rate
, parent
, p_index
);
2359 * Notify about rate changes in a subtree. Always walk down the whole tree
2360 * so that in case of an error we can walk down the whole tree again and
2363 static struct clk_core
*clk_propagate_rate_change(struct clk_core
*core
,
2364 unsigned long event
)
2366 struct clk_core
*child
, *tmp_clk
, *fail_clk
= NULL
;
2367 int ret
= NOTIFY_DONE
;
2369 if (core
->rate
== core
->new_rate
)
2372 if (core
->notifier_count
) {
2373 ret
= __clk_notify(core
, event
, core
->rate
, core
->new_rate
);
2374 if (ret
& NOTIFY_STOP_MASK
)
2378 hlist_for_each_entry(child
, &core
->children
, child_node
) {
2379 /* Skip children who will be reparented to another clock */
2380 if (child
->new_parent
&& child
->new_parent
!= core
)
2382 tmp_clk
= clk_propagate_rate_change(child
, event
);
2387 /* handle the new child who might not be in core->children yet */
2388 if (core
->new_child
) {
2389 tmp_clk
= clk_propagate_rate_change(core
->new_child
, event
);
2398 * walk down a subtree and set the new rates notifying the rate
2401 static void clk_change_rate(struct clk_core
*core
)
2403 struct clk_core
*child
;
2404 struct hlist_node
*tmp
;
2405 unsigned long old_rate
;
2406 unsigned long best_parent_rate
= 0;
2407 bool skip_set_rate
= false;
2408 struct clk_core
*old_parent
;
2409 struct clk_core
*parent
= NULL
;
2411 old_rate
= core
->rate
;
2413 if (core
->new_parent
) {
2414 parent
= core
->new_parent
;
2415 best_parent_rate
= core
->new_parent
->rate
;
2416 } else if (core
->parent
) {
2417 parent
= core
->parent
;
2418 best_parent_rate
= core
->parent
->rate
;
2421 if (clk_pm_runtime_get(core
))
2424 if (core
->flags
& CLK_SET_RATE_UNGATE
) {
2425 clk_core_prepare(core
);
2426 clk_core_enable_lock(core
);
2429 if (core
->new_parent
&& core
->new_parent
!= core
->parent
) {
2430 old_parent
= __clk_set_parent_before(core
, core
->new_parent
);
2431 trace_clk_set_parent(core
, core
->new_parent
);
2433 if (core
->ops
->set_rate_and_parent
) {
2434 skip_set_rate
= true;
2435 core
->ops
->set_rate_and_parent(core
->hw
, core
->new_rate
,
2437 core
->new_parent_index
);
2438 } else if (core
->ops
->set_parent
) {
2439 core
->ops
->set_parent(core
->hw
, core
->new_parent_index
);
2442 trace_clk_set_parent_complete(core
, core
->new_parent
);
2443 __clk_set_parent_after(core
, core
->new_parent
, old_parent
);
2446 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
2447 clk_core_prepare_enable(parent
);
2449 trace_clk_set_rate(core
, core
->new_rate
);
2451 if (!skip_set_rate
&& core
->ops
->set_rate
)
2452 core
->ops
->set_rate(core
->hw
, core
->new_rate
, best_parent_rate
);
2454 trace_clk_set_rate_complete(core
, core
->new_rate
);
2456 core
->rate
= clk_recalc(core
, best_parent_rate
);
2458 if (core
->flags
& CLK_SET_RATE_UNGATE
) {
2459 clk_core_disable_lock(core
);
2460 clk_core_unprepare(core
);
2463 if (core
->flags
& CLK_OPS_PARENT_ENABLE
)
2464 clk_core_disable_unprepare(parent
);
2466 if (core
->notifier_count
&& old_rate
!= core
->rate
)
2467 __clk_notify(core
, POST_RATE_CHANGE
, old_rate
, core
->rate
);
2469 if (core
->flags
& CLK_RECALC_NEW_RATES
)
2470 (void)clk_calc_new_rates(core
, core
->new_rate
);
2473 * Use safe iteration, as change_rate can actually swap parents
2474 * for certain clock types.
2476 hlist_for_each_entry_safe(child
, tmp
, &core
->children
, child_node
) {
2477 /* Skip children who will be reparented to another clock */
2478 if (child
->new_parent
&& child
->new_parent
!= core
)
2480 clk_change_rate(child
);
2483 /* handle the new child who might not be in core->children yet */
2484 if (core
->new_child
)
2485 clk_change_rate(core
->new_child
);
2487 clk_pm_runtime_put(core
);
2490 static unsigned long clk_core_req_round_rate_nolock(struct clk_core
*core
,
2491 unsigned long req_rate
)
2494 struct clk_rate_request req
;
2496 lockdep_assert_held(&prepare_lock
);
2501 /* simulate what the rate would be if it could be freely set */
2502 cnt
= clk_core_rate_nuke_protect(core
);
2506 clk_core_init_rate_req(core
, &req
, req_rate
);
2508 trace_clk_rate_request_start(&req
);
2510 ret
= clk_core_round_rate_nolock(core
, &req
);
2512 trace_clk_rate_request_done(&req
);
2514 /* restore the protection */
2515 clk_core_rate_restore_protect(core
, cnt
);
2517 return ret
? 0 : req
.rate
;
2520 static int clk_core_set_rate_nolock(struct clk_core
*core
,
2521 unsigned long req_rate
)
2523 struct clk_core
*top
, *fail_clk
;
2530 rate
= clk_core_req_round_rate_nolock(core
, req_rate
);
2532 /* bail early if nothing to do */
2533 if (rate
== clk_core_get_rate_recalc(core
))
2536 /* fail on a direct rate set of a protected provider */
2537 if (clk_core_rate_is_protected(core
))
2540 /* calculate new rates and get the topmost changed clock */
2541 top
= clk_calc_new_rates(core
, req_rate
);
2545 ret
= clk_pm_runtime_get(core
);
2549 /* notify that we are about to change rates */
2550 fail_clk
= clk_propagate_rate_change(top
, PRE_RATE_CHANGE
);
2552 pr_debug("%s: failed to set %s rate\n", __func__
,
2554 clk_propagate_rate_change(top
, ABORT_RATE_CHANGE
);
2559 /* change the rates */
2560 clk_change_rate(top
);
2562 core
->req_rate
= req_rate
;
2564 clk_pm_runtime_put(core
);
2570 * clk_set_rate - specify a new rate for clk
2571 * @clk: the clk whose rate is being changed
2572 * @rate: the new rate for clk
2574 * In the simplest case clk_set_rate will only adjust the rate of clk.
2576 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2577 * propagate up to clk's parent; whether or not this happens depends on the
2578 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2579 * after calling .round_rate then upstream parent propagation is ignored. If
2580 * *parent_rate comes back with a new rate for clk's parent then we propagate
2581 * up to clk's parent and set its rate. Upward propagation will continue
2582 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2583 * .round_rate stops requesting changes to clk's parent_rate.
2585 * Rate changes are accomplished via tree traversal that also recalculates the
2586 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
2588 * Returns 0 on success, -EERROR otherwise.
2590 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
2597 /* prevent racing with updates to the clock topology */
2600 if (clk
->exclusive_count
)
2601 clk_core_rate_unprotect(clk
->core
);
2603 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2605 if (clk
->exclusive_count
)
2606 clk_core_rate_protect(clk
->core
);
2608 clk_prepare_unlock();
2612 EXPORT_SYMBOL_GPL(clk_set_rate
);
2615 * clk_set_rate_exclusive - specify a new rate and get exclusive control
2616 * @clk: the clk whose rate is being changed
2617 * @rate: the new rate for clk
2619 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2620 * within a critical section
2622 * This can be used initially to ensure that at least 1 consumer is
2623 * satisfied when several consumers are competing for exclusivity over the
2624 * same clock provider.
2626 * The exclusivity is not applied if setting the rate failed.
2628 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2629 * clk_rate_exclusive_put().
2631 * Returns 0 on success, -EERROR otherwise.
2633 int clk_set_rate_exclusive(struct clk
*clk
, unsigned long rate
)
2640 /* prevent racing with updates to the clock topology */
2644 * The temporary protection removal is not here, on purpose
2645 * This function is meant to be used instead of clk_rate_protect,
2646 * so before the consumer code path protect the clock provider
2649 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2651 clk_core_rate_protect(clk
->core
);
2652 clk
->exclusive_count
++;
2655 clk_prepare_unlock();
2659 EXPORT_SYMBOL_GPL(clk_set_rate_exclusive
);
2661 static int clk_set_rate_range_nolock(struct clk
*clk
,
2666 unsigned long old_min
, old_max
, rate
;
2668 lockdep_assert_held(&prepare_lock
);
2673 trace_clk_set_rate_range(clk
->core
, min
, max
);
2676 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2677 __func__
, clk
->core
->name
, clk
->dev_id
, clk
->con_id
,
2682 if (clk
->exclusive_count
)
2683 clk_core_rate_unprotect(clk
->core
);
2685 /* Save the current values in case we need to rollback the change */
2686 old_min
= clk
->min_rate
;
2687 old_max
= clk
->max_rate
;
2688 clk
->min_rate
= min
;
2689 clk
->max_rate
= max
;
2691 if (!clk_core_check_boundaries(clk
->core
, min
, max
)) {
2696 rate
= clk
->core
->req_rate
;
2697 if (clk
->core
->flags
& CLK_GET_RATE_NOCACHE
)
2698 rate
= clk_core_get_rate_recalc(clk
->core
);
2701 * Since the boundaries have been changed, let's give the
2702 * opportunity to the provider to adjust the clock rate based on
2703 * the new boundaries.
2705 * We also need to handle the case where the clock is currently
2706 * outside of the boundaries. Clamping the last requested rate
2707 * to the current minimum and maximum will also handle this.
2710 * There is a catch. It may fail for the usual reason (clock
2711 * broken, clock protected, etc) but also because:
2712 * - round_rate() was not favorable and fell on the wrong
2713 * side of the boundary
2714 * - the determine_rate() callback does not really check for
2715 * this corner case when determining the rate
2717 rate
= clamp(rate
, min
, max
);
2718 ret
= clk_core_set_rate_nolock(clk
->core
, rate
);
2720 /* rollback the changes */
2721 clk
->min_rate
= old_min
;
2722 clk
->max_rate
= old_max
;
2726 if (clk
->exclusive_count
)
2727 clk_core_rate_protect(clk
->core
);
2733 * clk_set_rate_range - set a rate range for a clock source
2734 * @clk: clock source
2735 * @min: desired minimum clock rate in Hz, inclusive
2736 * @max: desired maximum clock rate in Hz, inclusive
2738 * Return: 0 for success or negative errno on failure.
2740 int clk_set_rate_range(struct clk
*clk
, unsigned long min
, unsigned long max
)
2749 ret
= clk_set_rate_range_nolock(clk
, min
, max
);
2751 clk_prepare_unlock();
2755 EXPORT_SYMBOL_GPL(clk_set_rate_range
);
2758 * clk_set_min_rate - set a minimum clock rate for a clock source
2759 * @clk: clock source
2760 * @rate: desired minimum clock rate in Hz, inclusive
2762 * Returns success (0) or negative errno.
2764 int clk_set_min_rate(struct clk
*clk
, unsigned long rate
)
2769 trace_clk_set_min_rate(clk
->core
, rate
);
2771 return clk_set_rate_range(clk
, rate
, clk
->max_rate
);
2773 EXPORT_SYMBOL_GPL(clk_set_min_rate
);
2776 * clk_set_max_rate - set a maximum clock rate for a clock source
2777 * @clk: clock source
2778 * @rate: desired maximum clock rate in Hz, inclusive
2780 * Returns success (0) or negative errno.
2782 int clk_set_max_rate(struct clk
*clk
, unsigned long rate
)
2787 trace_clk_set_max_rate(clk
->core
, rate
);
2789 return clk_set_rate_range(clk
, clk
->min_rate
, rate
);
2791 EXPORT_SYMBOL_GPL(clk_set_max_rate
);
2794 * clk_get_parent - return the parent of a clk
2795 * @clk: the clk whose parent gets returned
2797 * Simply returns clk->parent. Returns NULL if clk is NULL.
2799 struct clk
*clk_get_parent(struct clk
*clk
)
2807 /* TODO: Create a per-user clk and change callers to call clk_put */
2808 parent
= !clk
->core
->parent
? NULL
: clk
->core
->parent
->hw
->clk
;
2809 clk_prepare_unlock();
2813 EXPORT_SYMBOL_GPL(clk_get_parent
);
2815 static struct clk_core
*__clk_init_parent(struct clk_core
*core
)
2819 if (core
->num_parents
> 1 && core
->ops
->get_parent
)
2820 index
= core
->ops
->get_parent(core
->hw
);
2822 return clk_core_get_parent_by_index(core
, index
);
2825 static void clk_core_reparent(struct clk_core
*core
,
2826 struct clk_core
*new_parent
)
2828 clk_reparent(core
, new_parent
);
2829 __clk_recalc_accuracies(core
);
2830 __clk_recalc_rates(core
, true, POST_RATE_CHANGE
);
2833 void clk_hw_reparent(struct clk_hw
*hw
, struct clk_hw
*new_parent
)
2838 clk_core_reparent(hw
->core
, !new_parent
? NULL
: new_parent
->core
);
2842 * clk_has_parent - check if a clock is a possible parent for another
2843 * @clk: clock source
2844 * @parent: parent clock source
2846 * This function can be used in drivers that need to check that a clock can be
2847 * the parent of another without actually changing the parent.
2849 * Returns true if @parent is a possible parent for @clk, false otherwise.
2851 bool clk_has_parent(const struct clk
*clk
, const struct clk
*parent
)
2853 /* NULL clocks should be nops, so return success if either is NULL. */
2854 if (!clk
|| !parent
)
2857 return clk_core_has_parent(clk
->core
, parent
->core
);
2859 EXPORT_SYMBOL_GPL(clk_has_parent
);
2861 static int clk_core_set_parent_nolock(struct clk_core
*core
,
2862 struct clk_core
*parent
)
2866 unsigned long p_rate
= 0;
2868 lockdep_assert_held(&prepare_lock
);
2873 if (core
->parent
== parent
)
2876 /* verify ops for multi-parent clks */
2877 if (core
->num_parents
> 1 && !core
->ops
->set_parent
)
2880 /* check that we are allowed to re-parent if the clock is in use */
2881 if ((core
->flags
& CLK_SET_PARENT_GATE
) && core
->prepare_count
)
2884 if (clk_core_rate_is_protected(core
))
2887 /* try finding the new parent index */
2889 p_index
= clk_fetch_parent_index(core
, parent
);
2891 pr_debug("%s: clk %s can not be parent of clk %s\n",
2892 __func__
, parent
->name
, core
->name
);
2895 p_rate
= parent
->rate
;
2898 ret
= clk_pm_runtime_get(core
);
2902 /* propagate PRE_RATE_CHANGE notifications */
2903 ret
= __clk_speculate_rates(core
, p_rate
);
2905 /* abort if a driver objects */
2906 if (ret
& NOTIFY_STOP_MASK
)
2909 /* do the re-parent */
2910 ret
= __clk_set_parent(core
, parent
, p_index
);
2912 /* propagate rate an accuracy recalculation accordingly */
2914 __clk_recalc_rates(core
, true, ABORT_RATE_CHANGE
);
2916 __clk_recalc_rates(core
, true, POST_RATE_CHANGE
);
2917 __clk_recalc_accuracies(core
);
2921 clk_pm_runtime_put(core
);
2926 int clk_hw_set_parent(struct clk_hw
*hw
, struct clk_hw
*parent
)
2928 return clk_core_set_parent_nolock(hw
->core
, parent
->core
);
2930 EXPORT_SYMBOL_GPL(clk_hw_set_parent
);
2933 * clk_set_parent - switch the parent of a mux clk
2934 * @clk: the mux clk whose input we are switching
2935 * @parent: the new input to clk
2937 * Re-parent clk to use parent as its new input source. If clk is in
2938 * prepared state, the clk will get enabled for the duration of this call. If
2939 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2940 * that, the reparenting is glitchy in hardware, etc), use the
2941 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2943 * After successfully changing clk's parent clk_set_parent will update the
2944 * clk topology, sysfs topology and propagate rate recalculation via
2945 * __clk_recalc_rates.
2947 * Returns 0 on success, -EERROR otherwise.
2949 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
2958 if (clk
->exclusive_count
)
2959 clk_core_rate_unprotect(clk
->core
);
2961 ret
= clk_core_set_parent_nolock(clk
->core
,
2962 parent
? parent
->core
: NULL
);
2964 if (clk
->exclusive_count
)
2965 clk_core_rate_protect(clk
->core
);
2967 clk_prepare_unlock();
2971 EXPORT_SYMBOL_GPL(clk_set_parent
);
2973 static int clk_core_set_phase_nolock(struct clk_core
*core
, int degrees
)
2977 lockdep_assert_held(&prepare_lock
);
2982 if (clk_core_rate_is_protected(core
))
2985 trace_clk_set_phase(core
, degrees
);
2987 if (core
->ops
->set_phase
) {
2988 ret
= core
->ops
->set_phase(core
->hw
, degrees
);
2990 core
->phase
= degrees
;
2993 trace_clk_set_phase_complete(core
, degrees
);
2999 * clk_set_phase - adjust the phase shift of a clock signal
3000 * @clk: clock signal source
3001 * @degrees: number of degrees the signal is shifted
3003 * Shifts the phase of a clock signal by the specified
3004 * degrees. Returns 0 on success, -EERROR otherwise.
3006 * This function makes no distinction about the input or reference
3007 * signal that we adjust the clock signal phase against. For example
3008 * phase locked-loop clock signal generators we may shift phase with
3009 * respect to feedback clock signal input, but for other cases the
3010 * clock phase may be shifted with respect to some other, unspecified
3013 * Additionally the concept of phase shift does not propagate through
3014 * the clock tree hierarchy, which sets it apart from clock rates and
3015 * clock accuracy. A parent clock phase attribute does not have an
3016 * impact on the phase attribute of a child clock.
3018 int clk_set_phase(struct clk
*clk
, int degrees
)
3025 /* sanity check degrees */
3032 if (clk
->exclusive_count
)
3033 clk_core_rate_unprotect(clk
->core
);
3035 ret
= clk_core_set_phase_nolock(clk
->core
, degrees
);
3037 if (clk
->exclusive_count
)
3038 clk_core_rate_protect(clk
->core
);
3040 clk_prepare_unlock();
3044 EXPORT_SYMBOL_GPL(clk_set_phase
);
3046 static int clk_core_get_phase(struct clk_core
*core
)
3050 lockdep_assert_held(&prepare_lock
);
3051 if (!core
->ops
->get_phase
)
3054 /* Always try to update cached phase if possible */
3055 ret
= core
->ops
->get_phase(core
->hw
);
3063 * clk_get_phase - return the phase shift of a clock signal
3064 * @clk: clock signal source
3066 * Returns the phase shift of a clock node in degrees, otherwise returns
3069 int clk_get_phase(struct clk
*clk
)
3077 ret
= clk_core_get_phase(clk
->core
);
3078 clk_prepare_unlock();
3082 EXPORT_SYMBOL_GPL(clk_get_phase
);
3084 static void clk_core_reset_duty_cycle_nolock(struct clk_core
*core
)
3086 /* Assume a default value of 50% */
3091 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core
*core
);
3093 static int clk_core_update_duty_cycle_nolock(struct clk_core
*core
)
3095 struct clk_duty
*duty
= &core
->duty
;
3098 if (!core
->ops
->get_duty_cycle
)
3099 return clk_core_update_duty_cycle_parent_nolock(core
);
3101 ret
= core
->ops
->get_duty_cycle(core
->hw
, duty
);
3105 /* Don't trust the clock provider too much */
3106 if (duty
->den
== 0 || duty
->num
> duty
->den
) {
3114 clk_core_reset_duty_cycle_nolock(core
);
3118 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core
*core
)
3123 core
->flags
& CLK_DUTY_CYCLE_PARENT
) {
3124 ret
= clk_core_update_duty_cycle_nolock(core
->parent
);
3125 memcpy(&core
->duty
, &core
->parent
->duty
, sizeof(core
->duty
));
3127 clk_core_reset_duty_cycle_nolock(core
);
3133 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core
*core
,
3134 struct clk_duty
*duty
);
3136 static int clk_core_set_duty_cycle_nolock(struct clk_core
*core
,
3137 struct clk_duty
*duty
)
3141 lockdep_assert_held(&prepare_lock
);
3143 if (clk_core_rate_is_protected(core
))
3146 trace_clk_set_duty_cycle(core
, duty
);
3148 if (!core
->ops
->set_duty_cycle
)
3149 return clk_core_set_duty_cycle_parent_nolock(core
, duty
);
3151 ret
= core
->ops
->set_duty_cycle(core
->hw
, duty
);
3153 memcpy(&core
->duty
, duty
, sizeof(*duty
));
3155 trace_clk_set_duty_cycle_complete(core
, duty
);
3160 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core
*core
,
3161 struct clk_duty
*duty
)
3166 core
->flags
& (CLK_DUTY_CYCLE_PARENT
| CLK_SET_RATE_PARENT
)) {
3167 ret
= clk_core_set_duty_cycle_nolock(core
->parent
, duty
);
3168 memcpy(&core
->duty
, &core
->parent
->duty
, sizeof(core
->duty
));
3175 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
3176 * @clk: clock signal source
3177 * @num: numerator of the duty cycle ratio to be applied
3178 * @den: denominator of the duty cycle ratio to be applied
3180 * Apply the duty cycle ratio if the ratio is valid and the clock can
3181 * perform this operation
3183 * Returns (0) on success, a negative errno otherwise.
3185 int clk_set_duty_cycle(struct clk
*clk
, unsigned int num
, unsigned int den
)
3188 struct clk_duty duty
;
3193 /* sanity check the ratio */
3194 if (den
== 0 || num
> den
)
3202 if (clk
->exclusive_count
)
3203 clk_core_rate_unprotect(clk
->core
);
3205 ret
= clk_core_set_duty_cycle_nolock(clk
->core
, &duty
);
3207 if (clk
->exclusive_count
)
3208 clk_core_rate_protect(clk
->core
);
3210 clk_prepare_unlock();
3214 EXPORT_SYMBOL_GPL(clk_set_duty_cycle
);
3216 static int clk_core_get_scaled_duty_cycle(struct clk_core
*core
,
3219 struct clk_duty
*duty
= &core
->duty
;
3224 ret
= clk_core_update_duty_cycle_nolock(core
);
3226 ret
= mult_frac(scale
, duty
->num
, duty
->den
);
3228 clk_prepare_unlock();
3234 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
3235 * @clk: clock signal source
3236 * @scale: scaling factor to be applied to represent the ratio as an integer
3238 * Returns the duty cycle ratio of a clock node multiplied by the provided
3239 * scaling factor, or negative errno on error.
3241 int clk_get_scaled_duty_cycle(struct clk
*clk
, unsigned int scale
)
3246 return clk_core_get_scaled_duty_cycle(clk
->core
, scale
);
3248 EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle
);
3251 * clk_is_match - check if two clk's point to the same hardware clock
3252 * @p: clk compared against q
3253 * @q: clk compared against p
3255 * Returns true if the two struct clk pointers both point to the same hardware
3256 * clock node. Put differently, returns true if struct clk *p and struct clk *q
3257 * share the same struct clk_core object.
3259 * Returns false otherwise. Note that two NULL clks are treated as matching.
3261 bool clk_is_match(const struct clk
*p
, const struct clk
*q
)
3263 /* trivial case: identical struct clk's or both NULL */
3267 /* true if clk->core pointers match. Avoid dereferencing garbage */
3268 if (!IS_ERR_OR_NULL(p
) && !IS_ERR_OR_NULL(q
))
3269 if (p
->core
== q
->core
)
3274 EXPORT_SYMBOL_GPL(clk_is_match
);
3276 /*** debugfs support ***/
3278 #ifdef CONFIG_DEBUG_FS
3279 #include <linux/debugfs.h>
3281 static struct dentry
*rootdir
;
3282 static int inited
= 0;
3283 static DEFINE_MUTEX(clk_debug_lock
);
3284 static HLIST_HEAD(clk_debug_list
);
3286 static struct hlist_head
*orphan_list
[] = {
3291 static void clk_summary_show_one(struct seq_file
*s
, struct clk_core
*c
,
3295 struct clk
*clk_user
;
3298 seq_printf(s
, "%*s%-*s %-7d %-8d %-8d %-11lu %-10lu ",
3300 35 - level
* 3, c
->name
,
3301 c
->enable_count
, c
->prepare_count
, c
->protect_count
,
3302 clk_core_get_rate_recalc(c
),
3303 clk_core_get_accuracy_recalc(c
));
3305 phase
= clk_core_get_phase(c
);
3307 seq_printf(s
, "%-5d", phase
);
3309 seq_puts(s
, "-----");
3311 seq_printf(s
, " %-6d", clk_core_get_scaled_duty_cycle(c
, 100000));
3313 if (c
->ops
->is_enabled
)
3314 seq_printf(s
, " %5c ", clk_core_is_enabled(c
) ? 'Y' : 'N');
3315 else if (!c
->ops
->enable
)
3316 seq_printf(s
, " %5c ", 'Y');
3318 seq_printf(s
, " %5c ", '?');
3320 hlist_for_each_entry(clk_user
, &c
->clks
, clks_node
) {
3321 seq_printf(s
, "%*s%-*s %-25s\n",
3322 level
* 3 + 2 + 105 * multi_node
, "",
3324 clk_user
->dev_id
? clk_user
->dev_id
: "deviceless",
3325 clk_user
->con_id
? clk_user
->con_id
: "no_connection_id");
3332 static void clk_summary_show_subtree(struct seq_file
*s
, struct clk_core
*c
,
3335 struct clk_core
*child
;
3337 clk_summary_show_one(s
, c
, level
);
3339 hlist_for_each_entry(child
, &c
->children
, child_node
)
3340 clk_summary_show_subtree(s
, child
, level
+ 1);
3343 static int clk_summary_show(struct seq_file
*s
, void *data
)
3346 struct hlist_head
**lists
= s
->private;
3349 seq_puts(s
, " enable prepare protect duty hardware connection\n");
3350 seq_puts(s
, " clock count count count rate accuracy phase cycle enable consumer id\n");
3351 seq_puts(s
, "---------------------------------------------------------------------------------------------------------------------------------------------\n");
3353 ret
= clk_pm_runtime_get_all();
3359 for (; *lists
; lists
++)
3360 hlist_for_each_entry(c
, *lists
, child_node
)
3361 clk_summary_show_subtree(s
, c
, 0);
3363 clk_prepare_unlock();
3364 clk_pm_runtime_put_all();
3368 DEFINE_SHOW_ATTRIBUTE(clk_summary
);
3370 static void clk_dump_one(struct seq_file
*s
, struct clk_core
*c
, int level
)
3373 unsigned long min_rate
, max_rate
;
3375 clk_core_get_boundaries(c
, &min_rate
, &max_rate
);
3377 /* This should be JSON format, i.e. elements separated with a comma */
3378 seq_printf(s
, "\"%s\": { ", c
->name
);
3379 seq_printf(s
, "\"enable_count\": %d,", c
->enable_count
);
3380 seq_printf(s
, "\"prepare_count\": %d,", c
->prepare_count
);
3381 seq_printf(s
, "\"protect_count\": %d,", c
->protect_count
);
3382 seq_printf(s
, "\"rate\": %lu,", clk_core_get_rate_recalc(c
));
3383 seq_printf(s
, "\"min_rate\": %lu,", min_rate
);
3384 seq_printf(s
, "\"max_rate\": %lu,", max_rate
);
3385 seq_printf(s
, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c
));
3386 phase
= clk_core_get_phase(c
);
3388 seq_printf(s
, "\"phase\": %d,", phase
);
3389 seq_printf(s
, "\"duty_cycle\": %u",
3390 clk_core_get_scaled_duty_cycle(c
, 100000));
3393 static void clk_dump_subtree(struct seq_file
*s
, struct clk_core
*c
, int level
)
3395 struct clk_core
*child
;
3397 clk_dump_one(s
, c
, level
);
3399 hlist_for_each_entry(child
, &c
->children
, child_node
) {
3401 clk_dump_subtree(s
, child
, level
+ 1);
3407 static int clk_dump_show(struct seq_file
*s
, void *data
)
3410 bool first_node
= true;
3411 struct hlist_head
**lists
= s
->private;
3414 ret
= clk_pm_runtime_get_all();
3422 for (; *lists
; lists
++) {
3423 hlist_for_each_entry(c
, *lists
, child_node
) {
3427 clk_dump_subtree(s
, c
, 0);
3431 clk_prepare_unlock();
3432 clk_pm_runtime_put_all();
3437 DEFINE_SHOW_ATTRIBUTE(clk_dump
);
3439 #undef CLOCK_ALLOW_WRITE_DEBUGFS
3440 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3442 * This can be dangerous, therefore don't provide any real compile time
3443 * configuration option for this feature.
3444 * People who want to use this will need to modify the source code directly.
3446 static int clk_rate_set(void *data
, u64 val
)
3448 struct clk_core
*core
= data
;
3452 ret
= clk_core_set_rate_nolock(core
, val
);
3453 clk_prepare_unlock();
3458 #define clk_rate_mode 0644
3460 static int clk_phase_set(void *data
, u64 val
)
3462 struct clk_core
*core
= data
;
3463 int degrees
= do_div(val
, 360);
3467 ret
= clk_core_set_phase_nolock(core
, degrees
);
3468 clk_prepare_unlock();
3473 #define clk_phase_mode 0644
3475 static int clk_prepare_enable_set(void *data
, u64 val
)
3477 struct clk_core
*core
= data
;
3481 ret
= clk_prepare_enable(core
->hw
->clk
);
3483 clk_disable_unprepare(core
->hw
->clk
);
3488 static int clk_prepare_enable_get(void *data
, u64
*val
)
3490 struct clk_core
*core
= data
;
3492 *val
= core
->enable_count
&& core
->prepare_count
;
3496 DEFINE_DEBUGFS_ATTRIBUTE(clk_prepare_enable_fops
, clk_prepare_enable_get
,
3497 clk_prepare_enable_set
, "%llu\n");
3500 #define clk_rate_set NULL
3501 #define clk_rate_mode 0444
3503 #define clk_phase_set NULL
3504 #define clk_phase_mode 0644
3507 static int clk_rate_get(void *data
, u64
*val
)
3509 struct clk_core
*core
= data
;
3512 *val
= clk_core_get_rate_recalc(core
);
3513 clk_prepare_unlock();
3518 DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops
, clk_rate_get
, clk_rate_set
, "%llu\n");
3520 static int clk_phase_get(void *data
, u64
*val
)
3522 struct clk_core
*core
= data
;
3528 DEFINE_DEBUGFS_ATTRIBUTE(clk_phase_fops
, clk_phase_get
, clk_phase_set
, "%llu\n");
3530 static const struct {
3534 #define ENTRY(f) { f, #f }
3535 ENTRY(CLK_SET_RATE_GATE
),
3536 ENTRY(CLK_SET_PARENT_GATE
),
3537 ENTRY(CLK_SET_RATE_PARENT
),
3538 ENTRY(CLK_IGNORE_UNUSED
),
3539 ENTRY(CLK_GET_RATE_NOCACHE
),
3540 ENTRY(CLK_SET_RATE_NO_REPARENT
),
3541 ENTRY(CLK_GET_ACCURACY_NOCACHE
),
3542 ENTRY(CLK_RECALC_NEW_RATES
),
3543 ENTRY(CLK_SET_RATE_UNGATE
),
3544 ENTRY(CLK_IS_CRITICAL
),
3545 ENTRY(CLK_OPS_PARENT_ENABLE
),
3546 ENTRY(CLK_DUTY_CYCLE_PARENT
),
3550 static int clk_flags_show(struct seq_file
*s
, void *data
)
3552 struct clk_core
*core
= s
->private;
3553 unsigned long flags
= core
->flags
;
3556 for (i
= 0; flags
&& i
< ARRAY_SIZE(clk_flags
); i
++) {
3557 if (flags
& clk_flags
[i
].flag
) {
3558 seq_printf(s
, "%s\n", clk_flags
[i
].name
);
3559 flags
&= ~clk_flags
[i
].flag
;
3564 seq_printf(s
, "0x%lx\n", flags
);
3569 DEFINE_SHOW_ATTRIBUTE(clk_flags
);
3571 static void possible_parent_show(struct seq_file
*s
, struct clk_core
*core
,
3572 unsigned int i
, char terminator
)
3574 struct clk_core
*parent
;
3575 const char *name
= NULL
;
3578 * Go through the following options to fetch a parent's name.
3580 * 1. Fetch the registered parent clock and use its name
3581 * 2. Use the global (fallback) name if specified
3582 * 3. Use the local fw_name if provided
3583 * 4. Fetch parent clock's clock-output-name if DT index was set
3585 * This may still fail in some cases, such as when the parent is
3586 * specified directly via a struct clk_hw pointer, but it isn't
3589 parent
= clk_core_get_parent_by_index(core
, i
);
3591 seq_puts(s
, parent
->name
);
3592 } else if (core
->parents
[i
].name
) {
3593 seq_puts(s
, core
->parents
[i
].name
);
3594 } else if (core
->parents
[i
].fw_name
) {
3595 seq_printf(s
, "<%s>(fw)", core
->parents
[i
].fw_name
);
3597 if (core
->parents
[i
].index
>= 0)
3598 name
= of_clk_get_parent_name(core
->of_node
, core
->parents
[i
].index
);
3605 seq_putc(s
, terminator
);
3608 static int possible_parents_show(struct seq_file
*s
, void *data
)
3610 struct clk_core
*core
= s
->private;
3613 for (i
= 0; i
< core
->num_parents
- 1; i
++)
3614 possible_parent_show(s
, core
, i
, ' ');
3616 possible_parent_show(s
, core
, i
, '\n');
3620 DEFINE_SHOW_ATTRIBUTE(possible_parents
);
3622 static int current_parent_show(struct seq_file
*s
, void *data
)
3624 struct clk_core
*core
= s
->private;
3627 seq_printf(s
, "%s\n", core
->parent
->name
);
3631 DEFINE_SHOW_ATTRIBUTE(current_parent
);
3633 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3634 static ssize_t
current_parent_write(struct file
*file
, const char __user
*ubuf
,
3635 size_t count
, loff_t
*ppos
)
3637 struct seq_file
*s
= file
->private_data
;
3638 struct clk_core
*core
= s
->private;
3639 struct clk_core
*parent
;
3643 err
= kstrtou8_from_user(ubuf
, count
, 0, &idx
);
3647 parent
= clk_core_get_parent_by_index(core
, idx
);
3652 err
= clk_core_set_parent_nolock(core
, parent
);
3653 clk_prepare_unlock();
3660 static const struct file_operations current_parent_rw_fops
= {
3661 .open
= current_parent_open
,
3662 .write
= current_parent_write
,
3664 .llseek
= seq_lseek
,
3665 .release
= single_release
,
3669 static int clk_duty_cycle_show(struct seq_file
*s
, void *data
)
3671 struct clk_core
*core
= s
->private;
3672 struct clk_duty
*duty
= &core
->duty
;
3674 seq_printf(s
, "%u/%u\n", duty
->num
, duty
->den
);
3678 DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle
);
3680 static int clk_min_rate_show(struct seq_file
*s
, void *data
)
3682 struct clk_core
*core
= s
->private;
3683 unsigned long min_rate
, max_rate
;
3686 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
3687 clk_prepare_unlock();
3688 seq_printf(s
, "%lu\n", min_rate
);
3692 DEFINE_SHOW_ATTRIBUTE(clk_min_rate
);
3694 static int clk_max_rate_show(struct seq_file
*s
, void *data
)
3696 struct clk_core
*core
= s
->private;
3697 unsigned long min_rate
, max_rate
;
3700 clk_core_get_boundaries(core
, &min_rate
, &max_rate
);
3701 clk_prepare_unlock();
3702 seq_printf(s
, "%lu\n", max_rate
);
3706 DEFINE_SHOW_ATTRIBUTE(clk_max_rate
);
3708 static void clk_debug_create_one(struct clk_core
*core
, struct dentry
*pdentry
)
3710 struct dentry
*root
;
3712 if (!core
|| !pdentry
)
3715 root
= debugfs_create_dir(core
->name
, pdentry
);
3716 core
->dentry
= root
;
3718 debugfs_create_file("clk_rate", clk_rate_mode
, root
, core
,
3720 debugfs_create_file("clk_min_rate", 0444, root
, core
, &clk_min_rate_fops
);
3721 debugfs_create_file("clk_max_rate", 0444, root
, core
, &clk_max_rate_fops
);
3722 debugfs_create_ulong("clk_accuracy", 0444, root
, &core
->accuracy
);
3723 debugfs_create_file("clk_phase", clk_phase_mode
, root
, core
,
3725 debugfs_create_file("clk_flags", 0444, root
, core
, &clk_flags_fops
);
3726 debugfs_create_u32("clk_prepare_count", 0444, root
, &core
->prepare_count
);
3727 debugfs_create_u32("clk_enable_count", 0444, root
, &core
->enable_count
);
3728 debugfs_create_u32("clk_protect_count", 0444, root
, &core
->protect_count
);
3729 debugfs_create_u32("clk_notifier_count", 0444, root
, &core
->notifier_count
);
3730 debugfs_create_file("clk_duty_cycle", 0444, root
, core
,
3731 &clk_duty_cycle_fops
);
3732 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3733 debugfs_create_file("clk_prepare_enable", 0644, root
, core
,
3734 &clk_prepare_enable_fops
);
3736 if (core
->num_parents
> 1)
3737 debugfs_create_file("clk_parent", 0644, root
, core
,
3738 ¤t_parent_rw_fops
);
3741 if (core
->num_parents
> 0)
3742 debugfs_create_file("clk_parent", 0444, root
, core
,
3743 ¤t_parent_fops
);
3745 if (core
->num_parents
> 1)
3746 debugfs_create_file("clk_possible_parents", 0444, root
, core
,
3747 &possible_parents_fops
);
3749 if (core
->ops
->debug_init
)
3750 core
->ops
->debug_init(core
->hw
, core
->dentry
);
3754 * clk_debug_register - add a clk node to the debugfs clk directory
3755 * @core: the clk being added to the debugfs clk directory
3757 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3758 * initialized. Otherwise it bails out early since the debugfs clk directory
3759 * will be created lazily by clk_debug_init as part of a late_initcall.
3761 static void clk_debug_register(struct clk_core
*core
)
3763 mutex_lock(&clk_debug_lock
);
3764 hlist_add_head(&core
->debug_node
, &clk_debug_list
);
3766 clk_debug_create_one(core
, rootdir
);
3767 mutex_unlock(&clk_debug_lock
);
3771 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3772 * @core: the clk being removed from the debugfs clk directory
3774 * Dynamically removes a clk and all its child nodes from the
3775 * debugfs clk directory if clk->dentry points to debugfs created by
3776 * clk_debug_register in __clk_core_init.
3778 static void clk_debug_unregister(struct clk_core
*core
)
3780 mutex_lock(&clk_debug_lock
);
3781 hlist_del_init(&core
->debug_node
);
3782 debugfs_remove_recursive(core
->dentry
);
3783 core
->dentry
= NULL
;
3784 mutex_unlock(&clk_debug_lock
);
3788 * clk_debug_init - lazily populate the debugfs clk directory
3790 * clks are often initialized very early during boot before memory can be
3791 * dynamically allocated and well before debugfs is setup. This function
3792 * populates the debugfs clk directory once at boot-time when we know that
3793 * debugfs is setup. It should only be called once at boot-time, all other clks
3794 * added dynamically will be done so with clk_debug_register.
3796 static int __init
clk_debug_init(void)
3798 struct clk_core
*core
;
3800 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3802 pr_warn("********************************************************************\n");
3803 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3805 pr_warn("** WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **\n");
3807 pr_warn("** This means that this kernel is built to expose clk operations **\n");
3808 pr_warn("** such as parent or rate setting, enabling, disabling, etc. **\n");
3809 pr_warn("** to userspace, which may compromise security on your system. **\n");
3811 pr_warn("** If you see this message and you are not debugging the **\n");
3812 pr_warn("** kernel, report this immediately to your vendor! **\n");
3814 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3815 pr_warn("********************************************************************\n");
3818 rootdir
= debugfs_create_dir("clk", NULL
);
3820 debugfs_create_file("clk_summary", 0444, rootdir
, &all_lists
,
3822 debugfs_create_file("clk_dump", 0444, rootdir
, &all_lists
,
3824 debugfs_create_file("clk_orphan_summary", 0444, rootdir
, &orphan_list
,
3826 debugfs_create_file("clk_orphan_dump", 0444, rootdir
, &orphan_list
,
3829 mutex_lock(&clk_debug_lock
);
3830 hlist_for_each_entry(core
, &clk_debug_list
, debug_node
)
3831 clk_debug_create_one(core
, rootdir
);
3834 mutex_unlock(&clk_debug_lock
);
3838 late_initcall(clk_debug_init
);
3840 static inline void clk_debug_register(struct clk_core
*core
) { }
3841 static inline void clk_debug_unregister(struct clk_core
*core
)
3846 static void clk_core_reparent_orphans_nolock(void)
3848 struct clk_core
*orphan
;
3849 struct hlist_node
*tmp2
;
3852 * walk the list of orphan clocks and reparent any that newly finds a
3855 hlist_for_each_entry_safe(orphan
, tmp2
, &clk_orphan_list
, child_node
) {
3856 struct clk_core
*parent
= __clk_init_parent(orphan
);
3859 * We need to use __clk_set_parent_before() and _after() to
3860 * properly migrate any prepare/enable count of the orphan
3861 * clock. This is important for CLK_IS_CRITICAL clocks, which
3862 * are enabled during init but might not have a parent yet.
3865 /* update the clk tree topology */
3866 __clk_set_parent_before(orphan
, parent
);
3867 __clk_set_parent_after(orphan
, parent
, NULL
);
3868 __clk_recalc_accuracies(orphan
);
3869 __clk_recalc_rates(orphan
, true, 0);
3872 * __clk_init_parent() will set the initial req_rate to
3873 * 0 if the clock doesn't have clk_ops::recalc_rate and
3874 * is an orphan when it's registered.
3876 * 'req_rate' is used by clk_set_rate_range() and
3877 * clk_put() to trigger a clk_set_rate() call whenever
3878 * the boundaries are modified. Let's make sure
3879 * 'req_rate' is set to something non-zero so that
3880 * clk_set_rate_range() doesn't drop the frequency.
3882 orphan
->req_rate
= orphan
->rate
;
3888 * __clk_core_init - initialize the data structures in a struct clk_core
3889 * @core: clk_core being initialized
3891 * Initializes the lists in struct clk_core, queries the hardware for the
3892 * parent and rate and sets them both.
3894 static int __clk_core_init(struct clk_core
*core
)
3897 struct clk_core
*parent
;
3904 * Set hw->core after grabbing the prepare_lock to synchronize with
3905 * callers of clk_core_fill_parent_index() where we treat hw->core
3906 * being NULL as the clk not being registered yet. This is crucial so
3907 * that clks aren't parented until their parent is fully registered.
3909 core
->hw
->core
= core
;
3911 ret
= clk_pm_runtime_get(core
);
3915 /* check to see if a clock with this name is already registered */
3916 if (clk_core_lookup(core
->name
)) {
3917 pr_debug("%s: clk %s already initialized\n",
3918 __func__
, core
->name
);
3923 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
3924 if (core
->ops
->set_rate
&&
3925 !((core
->ops
->round_rate
|| core
->ops
->determine_rate
) &&
3926 core
->ops
->recalc_rate
)) {
3927 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3928 __func__
, core
->name
);
3933 if (core
->ops
->set_parent
&& !core
->ops
->get_parent
) {
3934 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3935 __func__
, core
->name
);
3940 if (core
->ops
->set_parent
&& !core
->ops
->determine_rate
) {
3941 pr_err("%s: %s must implement .set_parent & .determine_rate\n",
3942 __func__
, core
->name
);
3947 if (core
->num_parents
> 1 && !core
->ops
->get_parent
) {
3948 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3949 __func__
, core
->name
);
3954 if (core
->ops
->set_rate_and_parent
&&
3955 !(core
->ops
->set_parent
&& core
->ops
->set_rate
)) {
3956 pr_err("%s: %s must implement .set_parent & .set_rate\n",
3957 __func__
, core
->name
);
3963 * optional platform-specific magic
3965 * The .init callback is not used by any of the basic clock types, but
3966 * exists for weird hardware that must perform initialization magic for
3967 * CCF to get an accurate view of clock for any other callbacks. It may
3968 * also be used needs to perform dynamic allocations. Such allocation
3969 * must be freed in the terminate() callback.
3970 * This callback shall not be used to initialize the parameters state,
3971 * such as rate, parent, etc ...
3973 * If it exist, this callback should called before any other callback of
3976 if (core
->ops
->init
) {
3977 ret
= core
->ops
->init(core
->hw
);
3982 parent
= core
->parent
= __clk_init_parent(core
);
3985 * Populate core->parent if parent has already been clk_core_init'd. If
3986 * parent has not yet been clk_core_init'd then place clk in the orphan
3987 * list. If clk doesn't have any parents then place it in the root
3990 * Every time a new clk is clk_init'd then we walk the list of orphan
3991 * clocks and re-parent any that are children of the clock currently
3995 hlist_add_head(&core
->child_node
, &parent
->children
);
3996 core
->orphan
= parent
->orphan
;
3997 } else if (!core
->num_parents
) {
3998 hlist_add_head(&core
->child_node
, &clk_root_list
);
3999 core
->orphan
= false;
4001 hlist_add_head(&core
->child_node
, &clk_orphan_list
);
4002 core
->orphan
= true;
4006 * Set clk's accuracy. The preferred method is to use
4007 * .recalc_accuracy. For simple clocks and lazy developers the default
4008 * fallback is to use the parent's accuracy. If a clock doesn't have a
4009 * parent (or is orphaned) then accuracy is set to zero (perfect
4012 if (core
->ops
->recalc_accuracy
)
4013 core
->accuracy
= core
->ops
->recalc_accuracy(core
->hw
,
4014 clk_core_get_accuracy_no_lock(parent
));
4016 core
->accuracy
= parent
->accuracy
;
4021 * Set clk's phase by clk_core_get_phase() caching the phase.
4022 * Since a phase is by definition relative to its parent, just
4023 * query the current clock phase, or just assume it's in phase.
4025 phase
= clk_core_get_phase(core
);
4028 pr_warn("%s: Failed to get phase for clk '%s'\n", __func__
,
4034 * Set clk's duty cycle.
4036 clk_core_update_duty_cycle_nolock(core
);
4039 * Set clk's rate. The preferred method is to use .recalc_rate. For
4040 * simple clocks and lazy developers the default fallback is to use the
4041 * parent's rate. If a clock doesn't have a parent (or is orphaned)
4042 * then rate is set to zero.
4044 if (core
->ops
->recalc_rate
)
4045 rate
= core
->ops
->recalc_rate(core
->hw
,
4046 clk_core_get_rate_nolock(parent
));
4048 rate
= parent
->rate
;
4051 core
->rate
= core
->req_rate
= rate
;
4054 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
4055 * don't get accidentally disabled when walking the orphan tree and
4056 * reparenting clocks
4058 if (core
->flags
& CLK_IS_CRITICAL
) {
4059 ret
= clk_core_prepare(core
);
4061 pr_warn("%s: critical clk '%s' failed to prepare\n",
4062 __func__
, core
->name
);
4066 ret
= clk_core_enable_lock(core
);
4068 pr_warn("%s: critical clk '%s' failed to enable\n",
4069 __func__
, core
->name
);
4070 clk_core_unprepare(core
);
4075 clk_core_reparent_orphans_nolock();
4077 clk_pm_runtime_put(core
);
4080 hlist_del_init(&core
->child_node
);
4081 core
->hw
->core
= NULL
;
4084 clk_prepare_unlock();
4087 clk_debug_register(core
);
4093 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
4094 * @core: clk to add consumer to
4095 * @clk: consumer to link to a clk
4097 static void clk_core_link_consumer(struct clk_core
*core
, struct clk
*clk
)
4100 hlist_add_head(&clk
->clks_node
, &core
->clks
);
4101 clk_prepare_unlock();
4105 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
4106 * @clk: consumer to unlink
4108 static void clk_core_unlink_consumer(struct clk
*clk
)
4110 lockdep_assert_held(&prepare_lock
);
4111 hlist_del(&clk
->clks_node
);
4115 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
4116 * @core: clk to allocate a consumer for
4117 * @dev_id: string describing device name
4118 * @con_id: connection ID string on device
4120 * Returns: clk consumer left unlinked from the consumer list
4122 static struct clk
*alloc_clk(struct clk_core
*core
, const char *dev_id
,
4127 clk
= kzalloc(sizeof(*clk
), GFP_KERNEL
);
4129 return ERR_PTR(-ENOMEM
);
4132 clk
->dev_id
= dev_id
;
4133 clk
->con_id
= kstrdup_const(con_id
, GFP_KERNEL
);
4134 clk
->max_rate
= ULONG_MAX
;
4140 * free_clk - Free a clk consumer
4141 * @clk: clk consumer to free
4143 * Note, this assumes the clk has been unlinked from the clk_core consumer
4146 static void free_clk(struct clk
*clk
)
4148 kfree_const(clk
->con_id
);
4153 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
4155 * @dev: clk consumer device
4156 * @hw: clk_hw associated with the clk being consumed
4157 * @dev_id: string describing device name
4158 * @con_id: connection ID string on device
4160 * This is the main function used to create a clk pointer for use by clk
4161 * consumers. It connects a consumer to the clk_core and clk_hw structures
4162 * used by the framework and clk provider respectively.
4164 struct clk
*clk_hw_create_clk(struct device
*dev
, struct clk_hw
*hw
,
4165 const char *dev_id
, const char *con_id
)
4168 struct clk_core
*core
;
4170 /* This is to allow this function to be chained to others */
4171 if (IS_ERR_OR_NULL(hw
))
4172 return ERR_CAST(hw
);
4175 clk
= alloc_clk(core
, dev_id
, con_id
);
4180 if (!try_module_get(core
->owner
)) {
4182 return ERR_PTR(-ENOENT
);
4185 kref_get(&core
->ref
);
4186 clk_core_link_consumer(core
, clk
);
4192 * clk_hw_get_clk - get clk consumer given an clk_hw
4193 * @hw: clk_hw associated with the clk being consumed
4194 * @con_id: connection ID string on device
4196 * Returns: new clk consumer
4197 * This is the function to be used by providers which need
4198 * to get a consumer clk and act on the clock element
4199 * Calls to this function must be balanced with calls clk_put()
4201 struct clk
*clk_hw_get_clk(struct clk_hw
*hw
, const char *con_id
)
4203 struct device
*dev
= hw
->core
->dev
;
4204 const char *name
= dev
? dev_name(dev
) : NULL
;
4206 return clk_hw_create_clk(dev
, hw
, name
, con_id
);
4208 EXPORT_SYMBOL(clk_hw_get_clk
);
4210 static int clk_cpy_name(const char **dst_p
, const char *src
, bool must_exist
)
4220 *dst_p
= dst
= kstrdup_const(src
, GFP_KERNEL
);
4227 static int clk_core_populate_parent_map(struct clk_core
*core
,
4228 const struct clk_init_data
*init
)
4230 u8 num_parents
= init
->num_parents
;
4231 const char * const *parent_names
= init
->parent_names
;
4232 const struct clk_hw
**parent_hws
= init
->parent_hws
;
4233 const struct clk_parent_data
*parent_data
= init
->parent_data
;
4235 struct clk_parent_map
*parents
, *parent
;
4241 * Avoid unnecessary string look-ups of clk_core's possible parents by
4242 * having a cache of names/clk_hw pointers to clk_core pointers.
4244 parents
= kcalloc(num_parents
, sizeof(*parents
), GFP_KERNEL
);
4245 core
->parents
= parents
;
4249 /* Copy everything over because it might be __initdata */
4250 for (i
= 0, parent
= parents
; i
< num_parents
; i
++, parent
++) {
4253 /* throw a WARN if any entries are NULL */
4254 WARN(!parent_names
[i
],
4255 "%s: invalid NULL in %s's .parent_names\n",
4256 __func__
, core
->name
);
4257 ret
= clk_cpy_name(&parent
->name
, parent_names
[i
],
4259 } else if (parent_data
) {
4260 parent
->hw
= parent_data
[i
].hw
;
4261 parent
->index
= parent_data
[i
].index
;
4262 ret
= clk_cpy_name(&parent
->fw_name
,
4263 parent_data
[i
].fw_name
, false);
4265 ret
= clk_cpy_name(&parent
->name
,
4266 parent_data
[i
].name
,
4268 } else if (parent_hws
) {
4269 parent
->hw
= parent_hws
[i
];
4272 WARN(1, "Must specify parents if num_parents > 0\n");
4277 kfree_const(parents
[i
].name
);
4278 kfree_const(parents
[i
].fw_name
);
4289 static void clk_core_free_parent_map(struct clk_core
*core
)
4291 int i
= core
->num_parents
;
4293 if (!core
->num_parents
)
4297 kfree_const(core
->parents
[i
].name
);
4298 kfree_const(core
->parents
[i
].fw_name
);
4301 kfree(core
->parents
);
4304 /* Free memory allocated for a struct clk_core */
4305 static void __clk_release(struct kref
*ref
)
4307 struct clk_core
*core
= container_of(ref
, struct clk_core
, ref
);
4309 if (core
->rpm_enabled
) {
4310 mutex_lock(&clk_rpm_list_lock
);
4311 hlist_del(&core
->rpm_node
);
4312 mutex_unlock(&clk_rpm_list_lock
);
4315 clk_core_free_parent_map(core
);
4316 kfree_const(core
->name
);
4321 __clk_register(struct device
*dev
, struct device_node
*np
, struct clk_hw
*hw
)
4324 struct clk_core
*core
;
4325 const struct clk_init_data
*init
= hw
->init
;
4328 * The init data is not supposed to be used outside of registration path.
4329 * Set it to NULL so that provider drivers can't use it either and so that
4330 * we catch use of hw->init early on in the core.
4334 core
= kzalloc(sizeof(*core
), GFP_KERNEL
);
4340 kref_init(&core
->ref
);
4342 core
->name
= kstrdup_const(init
->name
, GFP_KERNEL
);
4348 if (WARN_ON(!init
->ops
)) {
4352 core
->ops
= init
->ops
;
4355 clk_pm_runtime_init(core
);
4357 if (dev
&& dev
->driver
)
4358 core
->owner
= dev
->driver
->owner
;
4360 core
->flags
= init
->flags
;
4361 core
->num_parents
= init
->num_parents
;
4363 core
->max_rate
= ULONG_MAX
;
4365 ret
= clk_core_populate_parent_map(core
, init
);
4369 INIT_HLIST_HEAD(&core
->clks
);
4372 * Don't call clk_hw_create_clk() here because that would pin the
4373 * provider module to itself and prevent it from ever being removed.
4375 hw
->clk
= alloc_clk(core
, NULL
, NULL
);
4376 if (IS_ERR(hw
->clk
)) {
4377 ret
= PTR_ERR(hw
->clk
);
4378 goto fail_create_clk
;
4381 clk_core_link_consumer(core
, hw
->clk
);
4383 ret
= __clk_core_init(core
);
4388 clk_core_unlink_consumer(hw
->clk
);
4389 clk_prepare_unlock();
4398 kref_put(&core
->ref
, __clk_release
);
4400 return ERR_PTR(ret
);
4404 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
4405 * @dev: Device to get device node of
4407 * Return: device node pointer of @dev, or the device node pointer of
4408 * @dev->parent if dev doesn't have a device node, or NULL if neither
4409 * @dev or @dev->parent have a device node.
4411 static struct device_node
*dev_or_parent_of_node(struct device
*dev
)
4413 struct device_node
*np
;
4418 np
= dev_of_node(dev
);
4420 np
= dev_of_node(dev
->parent
);
4426 * clk_register - allocate a new clock, register it and return an opaque cookie
4427 * @dev: device that is registering this clock
4428 * @hw: link to hardware-specific clock data
4430 * clk_register is the *deprecated* interface for populating the clock tree with
4431 * new clock nodes. Use clk_hw_register() instead.
4433 * Returns: a pointer to the newly allocated struct clk which
4434 * cannot be dereferenced by driver code but may be used in conjunction with the
4435 * rest of the clock API. In the event of an error clk_register will return an
4436 * error code; drivers must test for an error code after calling clk_register.
4438 struct clk
*clk_register(struct device
*dev
, struct clk_hw
*hw
)
4440 return __clk_register(dev
, dev_or_parent_of_node(dev
), hw
);
4442 EXPORT_SYMBOL_GPL(clk_register
);
4445 * clk_hw_register - register a clk_hw and return an error code
4446 * @dev: device that is registering this clock
4447 * @hw: link to hardware-specific clock data
4449 * clk_hw_register is the primary interface for populating the clock tree with
4450 * new clock nodes. It returns an integer equal to zero indicating success or
4451 * less than zero indicating failure. Drivers must test for an error code after
4452 * calling clk_hw_register().
4454 int clk_hw_register(struct device
*dev
, struct clk_hw
*hw
)
4456 return PTR_ERR_OR_ZERO(__clk_register(dev
, dev_or_parent_of_node(dev
),
4459 EXPORT_SYMBOL_GPL(clk_hw_register
);
4462 * of_clk_hw_register - register a clk_hw and return an error code
4463 * @node: device_node of device that is registering this clock
4464 * @hw: link to hardware-specific clock data
4466 * of_clk_hw_register() is the primary interface for populating the clock tree
4467 * with new clock nodes when a struct device is not available, but a struct
4468 * device_node is. It returns an integer equal to zero indicating success or
4469 * less than zero indicating failure. Drivers must test for an error code after
4470 * calling of_clk_hw_register().
4472 int of_clk_hw_register(struct device_node
*node
, struct clk_hw
*hw
)
4474 return PTR_ERR_OR_ZERO(__clk_register(NULL
, node
, hw
));
4476 EXPORT_SYMBOL_GPL(of_clk_hw_register
);
4479 * Empty clk_ops for unregistered clocks. These are used temporarily
4480 * after clk_unregister() was called on a clock and until last clock
4481 * consumer calls clk_put() and the struct clk object is freed.
4483 static int clk_nodrv_prepare_enable(struct clk_hw
*hw
)
4488 static void clk_nodrv_disable_unprepare(struct clk_hw
*hw
)
4493 static int clk_nodrv_set_rate(struct clk_hw
*hw
, unsigned long rate
,
4494 unsigned long parent_rate
)
4499 static int clk_nodrv_set_parent(struct clk_hw
*hw
, u8 index
)
4504 static int clk_nodrv_determine_rate(struct clk_hw
*hw
,
4505 struct clk_rate_request
*req
)
4510 static const struct clk_ops clk_nodrv_ops
= {
4511 .enable
= clk_nodrv_prepare_enable
,
4512 .disable
= clk_nodrv_disable_unprepare
,
4513 .prepare
= clk_nodrv_prepare_enable
,
4514 .unprepare
= clk_nodrv_disable_unprepare
,
4515 .determine_rate
= clk_nodrv_determine_rate
,
4516 .set_rate
= clk_nodrv_set_rate
,
4517 .set_parent
= clk_nodrv_set_parent
,
4520 static void clk_core_evict_parent_cache_subtree(struct clk_core
*root
,
4521 const struct clk_core
*target
)
4524 struct clk_core
*child
;
4526 for (i
= 0; i
< root
->num_parents
; i
++)
4527 if (root
->parents
[i
].core
== target
)
4528 root
->parents
[i
].core
= NULL
;
4530 hlist_for_each_entry(child
, &root
->children
, child_node
)
4531 clk_core_evict_parent_cache_subtree(child
, target
);
4534 /* Remove this clk from all parent caches */
4535 static void clk_core_evict_parent_cache(struct clk_core
*core
)
4537 const struct hlist_head
**lists
;
4538 struct clk_core
*root
;
4540 lockdep_assert_held(&prepare_lock
);
4542 for (lists
= all_lists
; *lists
; lists
++)
4543 hlist_for_each_entry(root
, *lists
, child_node
)
4544 clk_core_evict_parent_cache_subtree(root
, core
);
4549 * clk_unregister - unregister a currently registered clock
4550 * @clk: clock to unregister
4552 void clk_unregister(struct clk
*clk
)
4554 unsigned long flags
;
4555 const struct clk_ops
*ops
;
4557 if (!clk
|| WARN_ON_ONCE(IS_ERR(clk
)))
4560 clk_debug_unregister(clk
->core
);
4564 ops
= clk
->core
->ops
;
4565 if (ops
== &clk_nodrv_ops
) {
4566 pr_err("%s: unregistered clock: %s\n", __func__
,
4568 clk_prepare_unlock();
4572 * Assign empty clock ops for consumers that might still hold
4573 * a reference to this clock.
4575 flags
= clk_enable_lock();
4576 clk
->core
->ops
= &clk_nodrv_ops
;
4577 clk_enable_unlock(flags
);
4580 ops
->terminate(clk
->core
->hw
);
4582 if (!hlist_empty(&clk
->core
->children
)) {
4583 struct clk_core
*child
;
4584 struct hlist_node
*t
;
4586 /* Reparent all children to the orphan list. */
4587 hlist_for_each_entry_safe(child
, t
, &clk
->core
->children
,
4589 clk_core_set_parent_nolock(child
, NULL
);
4592 clk_core_evict_parent_cache(clk
->core
);
4594 hlist_del_init(&clk
->core
->child_node
);
4596 if (clk
->core
->prepare_count
)
4597 pr_warn("%s: unregistering prepared clock: %s\n",
4598 __func__
, clk
->core
->name
);
4600 if (clk
->core
->protect_count
)
4601 pr_warn("%s: unregistering protected clock: %s\n",
4602 __func__
, clk
->core
->name
);
4603 clk_prepare_unlock();
4605 kref_put(&clk
->core
->ref
, __clk_release
);
4608 EXPORT_SYMBOL_GPL(clk_unregister
);
4611 * clk_hw_unregister - unregister a currently registered clk_hw
4612 * @hw: hardware-specific clock data to unregister
4614 void clk_hw_unregister(struct clk_hw
*hw
)
4616 clk_unregister(hw
->clk
);
4618 EXPORT_SYMBOL_GPL(clk_hw_unregister
);
4620 static void devm_clk_unregister_cb(struct device
*dev
, void *res
)
4622 clk_unregister(*(struct clk
**)res
);
4625 static void devm_clk_hw_unregister_cb(struct device
*dev
, void *res
)
4627 clk_hw_unregister(*(struct clk_hw
**)res
);
4631 * devm_clk_register - resource managed clk_register()
4632 * @dev: device that is registering this clock
4633 * @hw: link to hardware-specific clock data
4635 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4637 * Clocks returned from this function are automatically clk_unregister()ed on
4638 * driver detach. See clk_register() for more information.
4640 struct clk
*devm_clk_register(struct device
*dev
, struct clk_hw
*hw
)
4645 clkp
= devres_alloc(devm_clk_unregister_cb
, sizeof(*clkp
), GFP_KERNEL
);
4647 return ERR_PTR(-ENOMEM
);
4649 clk
= clk_register(dev
, hw
);
4652 devres_add(dev
, clkp
);
4659 EXPORT_SYMBOL_GPL(devm_clk_register
);
4662 * devm_clk_hw_register - resource managed clk_hw_register()
4663 * @dev: device that is registering this clock
4664 * @hw: link to hardware-specific clock data
4666 * Managed clk_hw_register(). Clocks registered by this function are
4667 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4668 * for more information.
4670 int devm_clk_hw_register(struct device
*dev
, struct clk_hw
*hw
)
4672 struct clk_hw
**hwp
;
4675 hwp
= devres_alloc(devm_clk_hw_unregister_cb
, sizeof(*hwp
), GFP_KERNEL
);
4679 ret
= clk_hw_register(dev
, hw
);
4682 devres_add(dev
, hwp
);
4689 EXPORT_SYMBOL_GPL(devm_clk_hw_register
);
4691 static void devm_clk_release(struct device
*dev
, void *res
)
4693 clk_put(*(struct clk
**)res
);
4697 * devm_clk_hw_get_clk - resource managed clk_hw_get_clk()
4698 * @dev: device that is registering this clock
4699 * @hw: clk_hw associated with the clk being consumed
4700 * @con_id: connection ID string on device
4702 * Managed clk_hw_get_clk(). Clocks got with this function are
4703 * automatically clk_put() on driver detach. See clk_put()
4704 * for more information.
4706 struct clk
*devm_clk_hw_get_clk(struct device
*dev
, struct clk_hw
*hw
,
4712 /* This should not happen because it would mean we have drivers
4713 * passing around clk_hw pointers instead of having the caller use
4714 * proper clk_get() style APIs
4716 WARN_ON_ONCE(dev
!= hw
->core
->dev
);
4718 clkp
= devres_alloc(devm_clk_release
, sizeof(*clkp
), GFP_KERNEL
);
4720 return ERR_PTR(-ENOMEM
);
4722 clk
= clk_hw_get_clk(hw
, con_id
);
4725 devres_add(dev
, clkp
);
4732 EXPORT_SYMBOL_GPL(devm_clk_hw_get_clk
);
4738 void __clk_put(struct clk
*clk
)
4740 struct module
*owner
;
4742 if (!clk
|| WARN_ON_ONCE(IS_ERR(clk
)))
4748 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4749 * given user should be balanced with calls to clk_rate_exclusive_put()
4750 * and by that same consumer
4752 if (WARN_ON(clk
->exclusive_count
)) {
4753 /* We voiced our concern, let's sanitize the situation */
4754 clk
->core
->protect_count
-= (clk
->exclusive_count
- 1);
4755 clk_core_rate_unprotect(clk
->core
);
4756 clk
->exclusive_count
= 0;
4759 clk_core_unlink_consumer(clk
);
4761 /* If we had any boundaries on that clock, let's drop them. */
4762 if (clk
->min_rate
> 0 || clk
->max_rate
< ULONG_MAX
)
4763 clk_set_rate_range_nolock(clk
, 0, ULONG_MAX
);
4765 clk_prepare_unlock();
4767 owner
= clk
->core
->owner
;
4768 kref_put(&clk
->core
->ref
, __clk_release
);
4773 /*** clk rate change notifiers ***/
4776 * clk_notifier_register - add a clk rate change notifier
4777 * @clk: struct clk * to watch
4778 * @nb: struct notifier_block * with callback info
4780 * Request notification when clk's rate changes. This uses an SRCU
4781 * notifier because we want it to block and notifier unregistrations are
4782 * uncommon. The callbacks associated with the notifier must not
4783 * re-enter into the clk framework by calling any top-level clk APIs;
4784 * this will cause a nested prepare_lock mutex.
4786 * In all notification cases (pre, post and abort rate change) the original
4787 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4788 * and the new frequency is passed via struct clk_notifier_data.new_rate.
4790 * clk_notifier_register() must be called from non-atomic context.
4791 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4792 * allocation failure; otherwise, passes along the return value of
4793 * srcu_notifier_chain_register().
4795 int clk_notifier_register(struct clk
*clk
, struct notifier_block
*nb
)
4797 struct clk_notifier
*cn
;
4805 /* search the list of notifiers for this clk */
4806 list_for_each_entry(cn
, &clk_notifier_list
, node
)
4810 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4811 cn
= kzalloc(sizeof(*cn
), GFP_KERNEL
);
4816 srcu_init_notifier_head(&cn
->notifier_head
);
4818 list_add(&cn
->node
, &clk_notifier_list
);
4821 ret
= srcu_notifier_chain_register(&cn
->notifier_head
, nb
);
4823 clk
->core
->notifier_count
++;
4826 clk_prepare_unlock();
4830 EXPORT_SYMBOL_GPL(clk_notifier_register
);
4833 * clk_notifier_unregister - remove a clk rate change notifier
4834 * @clk: struct clk *
4835 * @nb: struct notifier_block * with callback info
4837 * Request no further notification for changes to 'clk' and frees memory
4838 * allocated in clk_notifier_register.
4840 * Returns -EINVAL if called with null arguments; otherwise, passes
4841 * along the return value of srcu_notifier_chain_unregister().
4843 int clk_notifier_unregister(struct clk
*clk
, struct notifier_block
*nb
)
4845 struct clk_notifier
*cn
;
4853 list_for_each_entry(cn
, &clk_notifier_list
, node
) {
4854 if (cn
->clk
== clk
) {
4855 ret
= srcu_notifier_chain_unregister(&cn
->notifier_head
, nb
);
4857 clk
->core
->notifier_count
--;
4859 /* XXX the notifier code should handle this better */
4860 if (!cn
->notifier_head
.head
) {
4861 srcu_cleanup_notifier_head(&cn
->notifier_head
);
4862 list_del(&cn
->node
);
4869 clk_prepare_unlock();
4873 EXPORT_SYMBOL_GPL(clk_notifier_unregister
);
4875 struct clk_notifier_devres
{
4877 struct notifier_block
*nb
;
4880 static void devm_clk_notifier_release(struct device
*dev
, void *res
)
4882 struct clk_notifier_devres
*devres
= res
;
4884 clk_notifier_unregister(devres
->clk
, devres
->nb
);
4887 int devm_clk_notifier_register(struct device
*dev
, struct clk
*clk
,
4888 struct notifier_block
*nb
)
4890 struct clk_notifier_devres
*devres
;
4893 devres
= devres_alloc(devm_clk_notifier_release
,
4894 sizeof(*devres
), GFP_KERNEL
);
4899 ret
= clk_notifier_register(clk
, nb
);
4903 devres_add(dev
, devres
);
4905 devres_free(devres
);
4910 EXPORT_SYMBOL_GPL(devm_clk_notifier_register
);
4913 static void clk_core_reparent_orphans(void)
4916 clk_core_reparent_orphans_nolock();
4917 clk_prepare_unlock();
4921 * struct of_clk_provider - Clock provider registration structure
4922 * @link: Entry in global list of clock providers
4923 * @node: Pointer to device tree node of clock provider
4924 * @get: Get clock callback. Returns NULL or a struct clk for the
4925 * given clock specifier
4926 * @get_hw: Get clk_hw callback. Returns NULL, ERR_PTR or a
4927 * struct clk_hw for the given clock specifier
4928 * @data: context pointer to be passed into @get callback
4930 struct of_clk_provider
{
4931 struct list_head link
;
4933 struct device_node
*node
;
4934 struct clk
*(*get
)(struct of_phandle_args
*clkspec
, void *data
);
4935 struct clk_hw
*(*get_hw
)(struct of_phandle_args
*clkspec
, void *data
);
4939 extern struct of_device_id __clk_of_table
;
4940 static const struct of_device_id __clk_of_table_sentinel
4941 __used
__section("__clk_of_table_end");
4943 static LIST_HEAD(of_clk_providers
);
4944 static DEFINE_MUTEX(of_clk_mutex
);
4946 struct clk
*of_clk_src_simple_get(struct of_phandle_args
*clkspec
,
4951 EXPORT_SYMBOL_GPL(of_clk_src_simple_get
);
4953 struct clk_hw
*of_clk_hw_simple_get(struct of_phandle_args
*clkspec
, void *data
)
4957 EXPORT_SYMBOL_GPL(of_clk_hw_simple_get
);
4959 struct clk
*of_clk_src_onecell_get(struct of_phandle_args
*clkspec
, void *data
)
4961 struct clk_onecell_data
*clk_data
= data
;
4962 unsigned int idx
= clkspec
->args
[0];
4964 if (idx
>= clk_data
->clk_num
) {
4965 pr_err("%s: invalid clock index %u\n", __func__
, idx
);
4966 return ERR_PTR(-EINVAL
);
4969 return clk_data
->clks
[idx
];
4971 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get
);
4974 of_clk_hw_onecell_get(struct of_phandle_args
*clkspec
, void *data
)
4976 struct clk_hw_onecell_data
*hw_data
= data
;
4977 unsigned int idx
= clkspec
->args
[0];
4979 if (idx
>= hw_data
->num
) {
4980 pr_err("%s: invalid index %u\n", __func__
, idx
);
4981 return ERR_PTR(-EINVAL
);
4984 return hw_data
->hws
[idx
];
4986 EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get
);
4989 * of_clk_add_provider() - Register a clock provider for a node
4990 * @np: Device node pointer associated with clock provider
4991 * @clk_src_get: callback for decoding clock
4992 * @data: context pointer for @clk_src_get callback.
4994 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
4996 int of_clk_add_provider(struct device_node
*np
,
4997 struct clk
*(*clk_src_get
)(struct of_phandle_args
*clkspec
,
5001 struct of_clk_provider
*cp
;
5007 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
5011 cp
->node
= of_node_get(np
);
5013 cp
->get
= clk_src_get
;
5015 mutex_lock(&of_clk_mutex
);
5016 list_add(&cp
->link
, &of_clk_providers
);
5017 mutex_unlock(&of_clk_mutex
);
5018 pr_debug("Added clock from %pOF\n", np
);
5020 clk_core_reparent_orphans();
5022 ret
= of_clk_set_defaults(np
, true);
5024 of_clk_del_provider(np
);
5026 fwnode_dev_initialized(&np
->fwnode
, true);
5030 EXPORT_SYMBOL_GPL(of_clk_add_provider
);
5033 * of_clk_add_hw_provider() - Register a clock provider for a node
5034 * @np: Device node pointer associated with clock provider
5035 * @get: callback for decoding clk_hw
5036 * @data: context pointer for @get callback.
5038 int of_clk_add_hw_provider(struct device_node
*np
,
5039 struct clk_hw
*(*get
)(struct of_phandle_args
*clkspec
,
5043 struct of_clk_provider
*cp
;
5049 cp
= kzalloc(sizeof(*cp
), GFP_KERNEL
);
5053 cp
->node
= of_node_get(np
);
5057 mutex_lock(&of_clk_mutex
);
5058 list_add(&cp
->link
, &of_clk_providers
);
5059 mutex_unlock(&of_clk_mutex
);
5060 pr_debug("Added clk_hw provider from %pOF\n", np
);
5062 clk_core_reparent_orphans();
5064 ret
= of_clk_set_defaults(np
, true);
5066 of_clk_del_provider(np
);
5068 fwnode_dev_initialized(&np
->fwnode
, true);
5072 EXPORT_SYMBOL_GPL(of_clk_add_hw_provider
);
5074 static void devm_of_clk_release_provider(struct device
*dev
, void *res
)
5076 of_clk_del_provider(*(struct device_node
**)res
);
5080 * We allow a child device to use its parent device as the clock provider node
5081 * for cases like MFD sub-devices where the child device driver wants to use
5082 * devm_*() APIs but not list the device in DT as a sub-node.
5084 static struct device_node
*get_clk_provider_node(struct device
*dev
)
5086 struct device_node
*np
, *parent_np
;
5089 parent_np
= dev
->parent
? dev
->parent
->of_node
: NULL
;
5091 if (!of_property_present(np
, "#clock-cells"))
5092 if (of_property_present(parent_np
, "#clock-cells"))
5099 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
5100 * @dev: Device acting as the clock provider (used for DT node and lifetime)
5101 * @get: callback for decoding clk_hw
5102 * @data: context pointer for @get callback
5104 * Registers clock provider for given device's node. If the device has no DT
5105 * node or if the device node lacks of clock provider information (#clock-cells)
5106 * then the parent device's node is scanned for this information. If parent node
5107 * has the #clock-cells then it is used in registration. Provider is
5108 * automatically released at device exit.
5110 * Return: 0 on success or an errno on failure.
5112 int devm_of_clk_add_hw_provider(struct device
*dev
,
5113 struct clk_hw
*(*get
)(struct of_phandle_args
*clkspec
,
5117 struct device_node
**ptr
, *np
;
5120 ptr
= devres_alloc(devm_of_clk_release_provider
, sizeof(*ptr
),
5125 np
= get_clk_provider_node(dev
);
5126 ret
= of_clk_add_hw_provider(np
, get
, data
);
5129 devres_add(dev
, ptr
);
5136 EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider
);
5139 * of_clk_del_provider() - Remove a previously registered clock provider
5140 * @np: Device node pointer associated with clock provider
5142 void of_clk_del_provider(struct device_node
*np
)
5144 struct of_clk_provider
*cp
;
5149 mutex_lock(&of_clk_mutex
);
5150 list_for_each_entry(cp
, &of_clk_providers
, link
) {
5151 if (cp
->node
== np
) {
5152 list_del(&cp
->link
);
5153 fwnode_dev_initialized(&np
->fwnode
, false);
5154 of_node_put(cp
->node
);
5159 mutex_unlock(&of_clk_mutex
);
5161 EXPORT_SYMBOL_GPL(of_clk_del_provider
);
5164 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
5165 * @np: device node to parse clock specifier from
5166 * @index: index of phandle to parse clock out of. If index < 0, @name is used
5167 * @name: clock name to find and parse. If name is NULL, the index is used
5168 * @out_args: Result of parsing the clock specifier
5170 * Parses a device node's "clocks" and "clock-names" properties to find the
5171 * phandle and cells for the index or name that is desired. The resulting clock
5172 * specifier is placed into @out_args, or an errno is returned when there's a
5173 * parsing error. The @index argument is ignored if @name is non-NULL.
5177 * phandle1: clock-controller@1 {
5178 * #clock-cells = <2>;
5181 * phandle2: clock-controller@2 {
5182 * #clock-cells = <1>;
5185 * clock-consumer@3 {
5186 * clocks = <&phandle1 1 2 &phandle2 3>;
5187 * clock-names = "name1", "name2";
5190 * To get a device_node for `clock-controller@2' node you may call this
5191 * function a few different ways:
5193 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
5194 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
5195 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
5197 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
5198 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
5199 * the "clock-names" property of @np.
5201 static int of_parse_clkspec(const struct device_node
*np
, int index
,
5202 const char *name
, struct of_phandle_args
*out_args
)
5206 /* Walk up the tree of devices looking for a clock property that matches */
5209 * For named clocks, first look up the name in the
5210 * "clock-names" property. If it cannot be found, then index
5211 * will be an error code and of_parse_phandle_with_args() will
5215 index
= of_property_match_string(np
, "clock-names", name
);
5216 ret
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells",
5220 if (name
&& index
>= 0)
5224 * No matching clock found on this node. If the parent node
5225 * has a "clock-ranges" property, then we can try one of its
5229 if (np
&& !of_property_present(np
, "clock-ranges"))
5237 static struct clk_hw
*
5238 __of_clk_get_hw_from_provider(struct of_clk_provider
*provider
,
5239 struct of_phandle_args
*clkspec
)
5243 if (provider
->get_hw
)
5244 return provider
->get_hw(clkspec
, provider
->data
);
5246 clk
= provider
->get(clkspec
, provider
->data
);
5248 return ERR_CAST(clk
);
5249 return __clk_get_hw(clk
);
5252 static struct clk_hw
*
5253 of_clk_get_hw_from_clkspec(struct of_phandle_args
*clkspec
)
5255 struct of_clk_provider
*provider
;
5256 struct clk_hw
*hw
= ERR_PTR(-EPROBE_DEFER
);
5259 return ERR_PTR(-EINVAL
);
5261 mutex_lock(&of_clk_mutex
);
5262 list_for_each_entry(provider
, &of_clk_providers
, link
) {
5263 if (provider
->node
== clkspec
->np
) {
5264 hw
= __of_clk_get_hw_from_provider(provider
, clkspec
);
5269 mutex_unlock(&of_clk_mutex
);
5275 * of_clk_get_from_provider() - Lookup a clock from a clock provider
5276 * @clkspec: pointer to a clock specifier data structure
5278 * This function looks up a struct clk from the registered list of clock
5279 * providers, an input is a clock specifier data structure as returned
5280 * from the of_parse_phandle_with_args() function call.
5282 struct clk
*of_clk_get_from_provider(struct of_phandle_args
*clkspec
)
5284 struct clk_hw
*hw
= of_clk_get_hw_from_clkspec(clkspec
);
5286 return clk_hw_create_clk(NULL
, hw
, NULL
, __func__
);
5288 EXPORT_SYMBOL_GPL(of_clk_get_from_provider
);
5290 struct clk_hw
*of_clk_get_hw(struct device_node
*np
, int index
,
5295 struct of_phandle_args clkspec
;
5297 ret
= of_parse_clkspec(np
, index
, con_id
, &clkspec
);
5299 return ERR_PTR(ret
);
5301 hw
= of_clk_get_hw_from_clkspec(&clkspec
);
5302 of_node_put(clkspec
.np
);
5307 static struct clk
*__of_clk_get(struct device_node
*np
,
5308 int index
, const char *dev_id
,
5311 struct clk_hw
*hw
= of_clk_get_hw(np
, index
, con_id
);
5313 return clk_hw_create_clk(NULL
, hw
, dev_id
, con_id
);
5316 struct clk
*of_clk_get(struct device_node
*np
, int index
)
5318 return __of_clk_get(np
, index
, np
->full_name
, NULL
);
5320 EXPORT_SYMBOL(of_clk_get
);
5323 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
5324 * @np: pointer to clock consumer node
5325 * @name: name of consumer's clock input, or NULL for the first clock reference
5327 * This function parses the clocks and clock-names properties,
5328 * and uses them to look up the struct clk from the registered list of clock
5331 struct clk
*of_clk_get_by_name(struct device_node
*np
, const char *name
)
5334 return ERR_PTR(-ENOENT
);
5336 return __of_clk_get(np
, 0, np
->full_name
, name
);
5338 EXPORT_SYMBOL(of_clk_get_by_name
);
5341 * of_clk_get_parent_count() - Count the number of clocks a device node has
5342 * @np: device node to count
5344 * Returns: The number of clocks that are possible parents of this node
5346 unsigned int of_clk_get_parent_count(const struct device_node
*np
)
5350 count
= of_count_phandle_with_args(np
, "clocks", "#clock-cells");
5356 EXPORT_SYMBOL_GPL(of_clk_get_parent_count
);
5358 const char *of_clk_get_parent_name(const struct device_node
*np
, int index
)
5360 struct of_phandle_args clkspec
;
5361 const char *clk_name
;
5368 rc
= of_parse_phandle_with_args(np
, "clocks", "#clock-cells", index
,
5373 index
= clkspec
.args_count
? clkspec
.args
[0] : 0;
5376 /* if there is an indices property, use it to transfer the index
5377 * specified into an array offset for the clock-output-names property.
5379 of_property_for_each_u32(clkspec
.np
, "clock-indices", pv
) {
5387 /* We went off the end of 'clock-indices' without finding it */
5388 if (of_property_present(clkspec
.np
, "clock-indices") && !found
)
5391 if (of_property_read_string_index(clkspec
.np
, "clock-output-names",
5395 * Best effort to get the name if the clock has been
5396 * registered with the framework. If the clock isn't
5397 * registered, we return the node name as the name of
5398 * the clock as long as #clock-cells = 0.
5400 clk
= of_clk_get_from_provider(&clkspec
);
5402 if (clkspec
.args_count
== 0)
5403 clk_name
= clkspec
.np
->name
;
5407 clk_name
= __clk_get_name(clk
);
5413 of_node_put(clkspec
.np
);
5416 EXPORT_SYMBOL_GPL(of_clk_get_parent_name
);
5419 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
5421 * @np: Device node pointer associated with clock provider
5422 * @parents: pointer to char array that hold the parents' names
5423 * @size: size of the @parents array
5425 * Return: number of parents for the clock node.
5427 int of_clk_parent_fill(struct device_node
*np
, const char **parents
,
5432 while (i
< size
&& (parents
[i
] = of_clk_get_parent_name(np
, i
)) != NULL
)
5437 EXPORT_SYMBOL_GPL(of_clk_parent_fill
);
5439 struct clock_provider
{
5440 void (*clk_init_cb
)(struct device_node
*);
5441 struct device_node
*np
;
5442 struct list_head node
;
5446 * This function looks for a parent clock. If there is one, then it
5447 * checks that the provider for this parent clock was initialized, in
5448 * this case the parent clock will be ready.
5450 static int parent_ready(struct device_node
*np
)
5455 struct clk
*clk
= of_clk_get(np
, i
);
5457 /* this parent is ready we can check the next one */
5464 /* at least one parent is not ready, we exit now */
5465 if (PTR_ERR(clk
) == -EPROBE_DEFER
)
5469 * Here we make assumption that the device tree is
5470 * written correctly. So an error means that there is
5471 * no more parent. As we didn't exit yet, then the
5472 * previous parent are ready. If there is no clock
5473 * parent, no need to wait for them, then we can
5474 * consider their absence as being ready
5481 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
5482 * @np: Device node pointer associated with clock provider
5483 * @index: clock index
5484 * @flags: pointer to top-level framework flags
5486 * Detects if the clock-critical property exists and, if so, sets the
5487 * corresponding CLK_IS_CRITICAL flag.
5489 * Do not use this function. It exists only for legacy Device Tree
5490 * bindings, such as the one-clock-per-node style that are outdated.
5491 * Those bindings typically put all clock data into .dts and the Linux
5492 * driver has no clock data, thus making it impossible to set this flag
5493 * correctly from the driver. Only those drivers may call
5494 * of_clk_detect_critical from their setup functions.
5496 * Return: error code or zero on success
5498 int of_clk_detect_critical(struct device_node
*np
, int index
,
5499 unsigned long *flags
)
5506 of_property_for_each_u32(np
, "clock-critical", idx
)
5508 *flags
|= CLK_IS_CRITICAL
;
5514 * of_clk_init() - Scan and init clock providers from the DT
5515 * @matches: array of compatible values and init functions for providers.
5517 * This function scans the device tree for matching clock providers
5518 * and calls their initialization functions. It also does it by trying
5519 * to follow the dependencies.
5521 void __init
of_clk_init(const struct of_device_id
*matches
)
5523 const struct of_device_id
*match
;
5524 struct device_node
*np
;
5525 struct clock_provider
*clk_provider
, *next
;
5528 LIST_HEAD(clk_provider_list
);
5531 matches
= &__clk_of_table
;
5533 /* First prepare the list of the clocks providers */
5534 for_each_matching_node_and_match(np
, matches
, &match
) {
5535 struct clock_provider
*parent
;
5537 if (!of_device_is_available(np
))
5540 parent
= kzalloc(sizeof(*parent
), GFP_KERNEL
);
5542 list_for_each_entry_safe(clk_provider
, next
,
5543 &clk_provider_list
, node
) {
5544 list_del(&clk_provider
->node
);
5545 of_node_put(clk_provider
->np
);
5546 kfree(clk_provider
);
5552 parent
->clk_init_cb
= match
->data
;
5553 parent
->np
= of_node_get(np
);
5554 list_add_tail(&parent
->node
, &clk_provider_list
);
5557 while (!list_empty(&clk_provider_list
)) {
5558 is_init_done
= false;
5559 list_for_each_entry_safe(clk_provider
, next
,
5560 &clk_provider_list
, node
) {
5561 if (force
|| parent_ready(clk_provider
->np
)) {
5563 /* Don't populate platform devices */
5564 of_node_set_flag(clk_provider
->np
,
5567 clk_provider
->clk_init_cb(clk_provider
->np
);
5568 of_clk_set_defaults(clk_provider
->np
, true);
5570 list_del(&clk_provider
->node
);
5571 of_node_put(clk_provider
->np
);
5572 kfree(clk_provider
);
5573 is_init_done
= true;
5578 * We didn't manage to initialize any of the
5579 * remaining providers during the last loop, so now we
5580 * initialize all the remaining ones unconditionally
5581 * in case the clock parent was not mandatory