1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
6 * Standard functionality for the common clock API. See Documentation/driver-api/clk.rst
10 #include <linux/clk-provider.h>
11 #include <linux/clk/clk-conf.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/spinlock.h>
15 #include <linux/err.h>
16 #include <linux/list.h>
17 #include <linux/slab.h>
19 #include <linux/device.h>
20 #include <linux/init.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/sched.h>
23 #include <linux/clkdev.h>
27 static DEFINE_SPINLOCK(enable_lock);
28 static DEFINE_MUTEX(prepare_lock);
30 static struct task_struct *prepare_owner;
31 static struct task_struct *enable_owner;
33 static int prepare_refcnt;
34 static int enable_refcnt;
36 static HLIST_HEAD(clk_root_list);
37 static HLIST_HEAD(clk_orphan_list);
38 static LIST_HEAD(clk_notifier_list);
40 static struct hlist_head *all_lists[] = {
46 /*** private data structures ***/
48 struct clk_parent_map {
49 const struct clk_hw *hw;
50 struct clk_core *core;
58 const struct clk_ops *ops;
62 struct device_node *of_node;
63 struct clk_core *parent;
64 struct clk_parent_map *parents;
68 unsigned long req_rate;
69 unsigned long new_rate;
70 struct clk_core *new_parent;
71 struct clk_core *new_child;
75 unsigned int enable_count;
76 unsigned int prepare_count;
77 unsigned int protect_count;
78 unsigned long min_rate;
79 unsigned long max_rate;
80 unsigned long accuracy;
83 struct hlist_head children;
84 struct hlist_node child_node;
85 struct hlist_head clks;
86 unsigned int notifier_count;
87 #ifdef CONFIG_DEBUG_FS
88 struct dentry *dentry;
89 struct hlist_node debug_node;
94 #define CREATE_TRACE_POINTS
95 #include <trace/events/clk.h>
98 struct clk_core *core;
102 unsigned long min_rate;
103 unsigned long max_rate;
104 unsigned int exclusive_count;
105 struct hlist_node clks_node;
109 static int clk_pm_runtime_get(struct clk_core *core)
113 if (!core->rpm_enabled)
116 ret = pm_runtime_get_sync(core->dev);
118 pm_runtime_put_noidle(core->dev);
124 static void clk_pm_runtime_put(struct clk_core *core)
126 if (!core->rpm_enabled)
129 pm_runtime_put_sync(core->dev);
133 static void clk_prepare_lock(void)
135 if (!mutex_trylock(&prepare_lock)) {
136 if (prepare_owner == current) {
140 mutex_lock(&prepare_lock);
142 WARN_ON_ONCE(prepare_owner != NULL);
143 WARN_ON_ONCE(prepare_refcnt != 0);
144 prepare_owner = current;
148 static void clk_prepare_unlock(void)
150 WARN_ON_ONCE(prepare_owner != current);
151 WARN_ON_ONCE(prepare_refcnt == 0);
153 if (--prepare_refcnt)
155 prepare_owner = NULL;
156 mutex_unlock(&prepare_lock);
159 static unsigned long clk_enable_lock(void)
160 __acquires(enable_lock)
165 * On UP systems, spin_trylock_irqsave() always returns true, even if
166 * we already hold the lock. So, in that case, we rely only on
167 * reference counting.
169 if (!IS_ENABLED(CONFIG_SMP) ||
170 !spin_trylock_irqsave(&enable_lock, flags)) {
171 if (enable_owner == current) {
173 __acquire(enable_lock);
174 if (!IS_ENABLED(CONFIG_SMP))
175 local_save_flags(flags);
178 spin_lock_irqsave(&enable_lock, flags);
180 WARN_ON_ONCE(enable_owner != NULL);
181 WARN_ON_ONCE(enable_refcnt != 0);
182 enable_owner = current;
187 static void clk_enable_unlock(unsigned long flags)
188 __releases(enable_lock)
190 WARN_ON_ONCE(enable_owner != current);
191 WARN_ON_ONCE(enable_refcnt == 0);
193 if (--enable_refcnt) {
194 __release(enable_lock);
198 spin_unlock_irqrestore(&enable_lock, flags);
201 static bool clk_core_rate_is_protected(struct clk_core *core)
203 return core->protect_count;
206 static bool clk_core_is_prepared(struct clk_core *core)
211 * .is_prepared is optional for clocks that can prepare
212 * fall back to software usage counter if it is missing
214 if (!core->ops->is_prepared)
215 return core->prepare_count;
217 if (!clk_pm_runtime_get(core)) {
218 ret = core->ops->is_prepared(core->hw);
219 clk_pm_runtime_put(core);
225 static bool clk_core_is_enabled(struct clk_core *core)
230 * .is_enabled is only mandatory for clocks that gate
231 * fall back to software usage counter if .is_enabled is missing
233 if (!core->ops->is_enabled)
234 return core->enable_count;
237 * Check if clock controller's device is runtime active before
238 * calling .is_enabled callback. If not, assume that clock is
239 * disabled, because we might be called from atomic context, from
240 * which pm_runtime_get() is not allowed.
241 * This function is called mainly from clk_disable_unused_subtree,
242 * which ensures proper runtime pm activation of controller before
243 * taking enable spinlock, but the below check is needed if one tries
244 * to call it from other places.
246 if (core->rpm_enabled) {
247 pm_runtime_get_noresume(core->dev);
248 if (!pm_runtime_active(core->dev)) {
254 ret = core->ops->is_enabled(core->hw);
256 if (core->rpm_enabled)
257 pm_runtime_put(core->dev);
262 /*** helper functions ***/
264 const char *__clk_get_name(const struct clk *clk)
266 return !clk ? NULL : clk->core->name;
268 EXPORT_SYMBOL_GPL(__clk_get_name);
270 const char *clk_hw_get_name(const struct clk_hw *hw)
272 return hw->core->name;
274 EXPORT_SYMBOL_GPL(clk_hw_get_name);
276 struct clk_hw *__clk_get_hw(struct clk *clk)
278 return !clk ? NULL : clk->core->hw;
280 EXPORT_SYMBOL_GPL(__clk_get_hw);
282 unsigned int clk_hw_get_num_parents(const struct clk_hw *hw)
284 return hw->core->num_parents;
286 EXPORT_SYMBOL_GPL(clk_hw_get_num_parents);
288 struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw)
290 return hw->core->parent ? hw->core->parent->hw : NULL;
292 EXPORT_SYMBOL_GPL(clk_hw_get_parent);
294 static struct clk_core *__clk_lookup_subtree(const char *name,
295 struct clk_core *core)
297 struct clk_core *child;
298 struct clk_core *ret;
300 if (!strcmp(core->name, name))
303 hlist_for_each_entry(child, &core->children, child_node) {
304 ret = __clk_lookup_subtree(name, child);
312 static struct clk_core *clk_core_lookup(const char *name)
314 struct clk_core *root_clk;
315 struct clk_core *ret;
320 /* search the 'proper' clk tree first */
321 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
322 ret = __clk_lookup_subtree(name, root_clk);
327 /* if not found, then search the orphan tree */
328 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
329 ret = __clk_lookup_subtree(name, root_clk);
338 static int of_parse_clkspec(const struct device_node *np, int index,
339 const char *name, struct of_phandle_args *out_args);
340 static struct clk_hw *
341 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec);
343 static inline int of_parse_clkspec(const struct device_node *np, int index,
345 struct of_phandle_args *out_args)
349 static inline struct clk_hw *
350 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
352 return ERR_PTR(-ENOENT);
357 * clk_core_get - Find the clk_core parent of a clk
358 * @core: clk to find parent of
359 * @p_index: parent index to search for
361 * This is the preferred method for clk providers to find the parent of a
362 * clk when that parent is external to the clk controller. The parent_names
363 * array is indexed and treated as a local name matching a string in the device
364 * node's 'clock-names' property or as the 'con_id' matching the device's
365 * dev_name() in a clk_lookup. This allows clk providers to use their own
366 * namespace instead of looking for a globally unique parent string.
368 * For example the following DT snippet would allow a clock registered by the
369 * clock-controller@c001 that has a clk_init_data::parent_data array
370 * with 'xtal' in the 'name' member to find the clock provided by the
371 * clock-controller@f00abcd without needing to get the globally unique name of
374 * parent: clock-controller@f00abcd {
375 * reg = <0xf00abcd 0xabcd>;
376 * #clock-cells = <0>;
379 * clock-controller@c001 {
380 * reg = <0xc001 0xf00d>;
381 * clocks = <&parent>;
382 * clock-names = "xtal";
383 * #clock-cells = <1>;
386 * Returns: -ENOENT when the provider can't be found or the clk doesn't
387 * exist in the provider or the name can't be found in the DT node or
388 * in a clkdev lookup. NULL when the provider knows about the clk but it
389 * isn't provided on this system.
390 * A valid clk_core pointer when the clk can be found in the provider.
392 static struct clk_core *clk_core_get(struct clk_core *core, u8 p_index)
394 const char *name = core->parents[p_index].fw_name;
395 int index = core->parents[p_index].index;
396 struct clk_hw *hw = ERR_PTR(-ENOENT);
397 struct device *dev = core->dev;
398 const char *dev_id = dev ? dev_name(dev) : NULL;
399 struct device_node *np = core->of_node;
400 struct of_phandle_args clkspec;
402 if (np && (name || index >= 0) &&
403 !of_parse_clkspec(np, index, name, &clkspec)) {
404 hw = of_clk_get_hw_from_clkspec(&clkspec);
405 of_node_put(clkspec.np);
408 * If the DT search above couldn't find the provider fallback to
409 * looking up via clkdev based clk_lookups.
411 hw = clk_find_hw(dev_id, name);
420 static void clk_core_fill_parent_index(struct clk_core *core, u8 index)
422 struct clk_parent_map *entry = &core->parents[index];
423 struct clk_core *parent;
426 parent = entry->hw->core;
428 * We have a direct reference but it isn't registered yet?
429 * Orphan it and let clk_reparent() update the orphan status
430 * when the parent is registered.
433 parent = ERR_PTR(-EPROBE_DEFER);
435 parent = clk_core_get(core, index);
436 if (PTR_ERR(parent) == -ENOENT && entry->name)
437 parent = clk_core_lookup(entry->name);
440 /* Only cache it if it's not an error */
442 entry->core = parent;
445 static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
448 if (!core || index >= core->num_parents || !core->parents)
451 if (!core->parents[index].core)
452 clk_core_fill_parent_index(core, index);
454 return core->parents[index].core;
458 clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
460 struct clk_core *parent;
462 parent = clk_core_get_parent_by_index(hw->core, index);
464 return !parent ? NULL : parent->hw;
466 EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
468 unsigned int __clk_get_enable_count(struct clk *clk)
470 return !clk ? 0 : clk->core->enable_count;
473 static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
478 if (!core->num_parents || core->parent)
482 * Clk must have a parent because num_parents > 0 but the parent isn't
483 * known yet. Best to return 0 as the rate of this clk until we can
484 * properly recalc the rate based on the parent's rate.
489 unsigned long clk_hw_get_rate(const struct clk_hw *hw)
491 return clk_core_get_rate_nolock(hw->core);
493 EXPORT_SYMBOL_GPL(clk_hw_get_rate);
495 static unsigned long clk_core_get_accuracy_no_lock(struct clk_core *core)
500 return core->accuracy;
503 unsigned long clk_hw_get_flags(const struct clk_hw *hw)
505 return hw->core->flags;
507 EXPORT_SYMBOL_GPL(clk_hw_get_flags);
509 bool clk_hw_is_prepared(const struct clk_hw *hw)
511 return clk_core_is_prepared(hw->core);
513 EXPORT_SYMBOL_GPL(clk_hw_is_prepared);
515 bool clk_hw_rate_is_protected(const struct clk_hw *hw)
517 return clk_core_rate_is_protected(hw->core);
519 EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected);
521 bool clk_hw_is_enabled(const struct clk_hw *hw)
523 return clk_core_is_enabled(hw->core);
525 EXPORT_SYMBOL_GPL(clk_hw_is_enabled);
527 bool __clk_is_enabled(struct clk *clk)
532 return clk_core_is_enabled(clk->core);
534 EXPORT_SYMBOL_GPL(__clk_is_enabled);
536 static bool mux_is_better_rate(unsigned long rate, unsigned long now,
537 unsigned long best, unsigned long flags)
539 if (flags & CLK_MUX_ROUND_CLOSEST)
540 return abs(now - rate) < abs(best - rate);
542 return now <= rate && now > best;
545 int clk_mux_determine_rate_flags(struct clk_hw *hw,
546 struct clk_rate_request *req,
549 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
550 int i, num_parents, ret;
551 unsigned long best = 0;
552 struct clk_rate_request parent_req = *req;
554 /* if NO_REPARENT flag set, pass through to current parent */
555 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
556 parent = core->parent;
557 if (core->flags & CLK_SET_RATE_PARENT) {
558 ret = __clk_determine_rate(parent ? parent->hw : NULL,
563 best = parent_req.rate;
565 best = clk_core_get_rate_nolock(parent);
567 best = clk_core_get_rate_nolock(core);
573 /* find the parent that can provide the fastest rate <= rate */
574 num_parents = core->num_parents;
575 for (i = 0; i < num_parents; i++) {
576 parent = clk_core_get_parent_by_index(core, i);
580 if (core->flags & CLK_SET_RATE_PARENT) {
582 ret = __clk_determine_rate(parent->hw, &parent_req);
586 parent_req.rate = clk_core_get_rate_nolock(parent);
589 if (mux_is_better_rate(req->rate, parent_req.rate,
591 best_parent = parent;
592 best = parent_req.rate;
601 req->best_parent_hw = best_parent->hw;
602 req->best_parent_rate = best;
607 EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags);
609 struct clk *__clk_lookup(const char *name)
611 struct clk_core *core = clk_core_lookup(name);
613 return !core ? NULL : core->hw->clk;
616 static void clk_core_get_boundaries(struct clk_core *core,
617 unsigned long *min_rate,
618 unsigned long *max_rate)
620 struct clk *clk_user;
622 lockdep_assert_held(&prepare_lock);
624 *min_rate = core->min_rate;
625 *max_rate = core->max_rate;
627 hlist_for_each_entry(clk_user, &core->clks, clks_node)
628 *min_rate = max(*min_rate, clk_user->min_rate);
630 hlist_for_each_entry(clk_user, &core->clks, clks_node)
631 *max_rate = min(*max_rate, clk_user->max_rate);
634 static bool clk_core_check_boundaries(struct clk_core *core,
635 unsigned long min_rate,
636 unsigned long max_rate)
640 lockdep_assert_held(&prepare_lock);
642 if (min_rate > core->max_rate || max_rate < core->min_rate)
645 hlist_for_each_entry(user, &core->clks, clks_node)
646 if (min_rate > user->max_rate || max_rate < user->min_rate)
652 void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
653 unsigned long max_rate)
655 hw->core->min_rate = min_rate;
656 hw->core->max_rate = max_rate;
658 EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
661 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
662 * @hw: mux type clk to determine rate on
663 * @req: rate request, also used to return preferred parent and frequencies
665 * Helper for finding best parent to provide a given frequency. This can be used
666 * directly as a determine_rate callback (e.g. for a mux), or from a more
667 * complex clock that may combine a mux with other operations.
669 * Returns: 0 on success, -EERROR value on error
671 int __clk_mux_determine_rate(struct clk_hw *hw,
672 struct clk_rate_request *req)
674 return clk_mux_determine_rate_flags(hw, req, 0);
676 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
678 int __clk_mux_determine_rate_closest(struct clk_hw *hw,
679 struct clk_rate_request *req)
681 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
683 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
687 static void clk_core_rate_unprotect(struct clk_core *core)
689 lockdep_assert_held(&prepare_lock);
694 if (WARN(core->protect_count == 0,
695 "%s already unprotected\n", core->name))
698 if (--core->protect_count > 0)
701 clk_core_rate_unprotect(core->parent);
704 static int clk_core_rate_nuke_protect(struct clk_core *core)
708 lockdep_assert_held(&prepare_lock);
713 if (core->protect_count == 0)
716 ret = core->protect_count;
717 core->protect_count = 1;
718 clk_core_rate_unprotect(core);
724 * clk_rate_exclusive_put - release exclusivity over clock rate control
725 * @clk: the clk over which the exclusivity is released
727 * clk_rate_exclusive_put() completes a critical section during which a clock
728 * consumer cannot tolerate any other consumer making any operation on the
729 * clock which could result in a rate change or rate glitch. Exclusive clocks
730 * cannot have their rate changed, either directly or indirectly due to changes
731 * further up the parent chain of clocks. As a result, clocks up parent chain
732 * also get under exclusive control of the calling consumer.
734 * If exlusivity is claimed more than once on clock, even by the same consumer,
735 * the rate effectively gets locked as exclusivity can't be preempted.
737 * Calls to clk_rate_exclusive_put() must be balanced with calls to
738 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
741 void clk_rate_exclusive_put(struct clk *clk)
749 * if there is something wrong with this consumer protect count, stop
750 * here before messing with the provider
752 if (WARN_ON(clk->exclusive_count <= 0))
755 clk_core_rate_unprotect(clk->core);
756 clk->exclusive_count--;
758 clk_prepare_unlock();
760 EXPORT_SYMBOL_GPL(clk_rate_exclusive_put);
762 static void clk_core_rate_protect(struct clk_core *core)
764 lockdep_assert_held(&prepare_lock);
769 if (core->protect_count == 0)
770 clk_core_rate_protect(core->parent);
772 core->protect_count++;
775 static void clk_core_rate_restore_protect(struct clk_core *core, int count)
777 lockdep_assert_held(&prepare_lock);
785 clk_core_rate_protect(core);
786 core->protect_count = count;
790 * clk_rate_exclusive_get - get exclusivity over the clk rate control
791 * @clk: the clk over which the exclusity of rate control is requested
793 * clk_rate_exclusive_get() begins a critical section during which a clock
794 * consumer cannot tolerate any other consumer making any operation on the
795 * clock which could result in a rate change or rate glitch. Exclusive clocks
796 * cannot have their rate changed, either directly or indirectly due to changes
797 * further up the parent chain of clocks. As a result, clocks up parent chain
798 * also get under exclusive control of the calling consumer.
800 * If exlusivity is claimed more than once on clock, even by the same consumer,
801 * the rate effectively gets locked as exclusivity can't be preempted.
803 * Calls to clk_rate_exclusive_get() should be balanced with calls to
804 * clk_rate_exclusive_put(). Calls to this function may sleep.
805 * Returns 0 on success, -EERROR otherwise
807 int clk_rate_exclusive_get(struct clk *clk)
813 clk_core_rate_protect(clk->core);
814 clk->exclusive_count++;
815 clk_prepare_unlock();
819 EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);
821 static void clk_core_unprepare(struct clk_core *core)
823 lockdep_assert_held(&prepare_lock);
828 if (WARN(core->prepare_count == 0,
829 "%s already unprepared\n", core->name))
832 if (WARN(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL,
833 "Unpreparing critical %s\n", core->name))
836 if (core->flags & CLK_SET_RATE_GATE)
837 clk_core_rate_unprotect(core);
839 if (--core->prepare_count > 0)
842 WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name);
844 trace_clk_unprepare(core);
846 if (core->ops->unprepare)
847 core->ops->unprepare(core->hw);
849 clk_pm_runtime_put(core);
851 trace_clk_unprepare_complete(core);
852 clk_core_unprepare(core->parent);
855 static void clk_core_unprepare_lock(struct clk_core *core)
858 clk_core_unprepare(core);
859 clk_prepare_unlock();
863 * clk_unprepare - undo preparation of a clock source
864 * @clk: the clk being unprepared
866 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
867 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
868 * if the operation may sleep. One example is a clk which is accessed over
869 * I2c. In the complex case a clk gate operation may require a fast and a slow
870 * part. It is this reason that clk_unprepare and clk_disable are not mutually
871 * exclusive. In fact clk_disable must be called before clk_unprepare.
873 void clk_unprepare(struct clk *clk)
875 if (IS_ERR_OR_NULL(clk))
878 clk_core_unprepare_lock(clk->core);
880 EXPORT_SYMBOL_GPL(clk_unprepare);
882 static int clk_core_prepare(struct clk_core *core)
886 lockdep_assert_held(&prepare_lock);
891 if (core->prepare_count == 0) {
892 ret = clk_pm_runtime_get(core);
896 ret = clk_core_prepare(core->parent);
900 trace_clk_prepare(core);
902 if (core->ops->prepare)
903 ret = core->ops->prepare(core->hw);
905 trace_clk_prepare_complete(core);
911 core->prepare_count++;
914 * CLK_SET_RATE_GATE is a special case of clock protection
915 * Instead of a consumer claiming exclusive rate control, it is
916 * actually the provider which prevents any consumer from making any
917 * operation which could result in a rate change or rate glitch while
918 * the clock is prepared.
920 if (core->flags & CLK_SET_RATE_GATE)
921 clk_core_rate_protect(core);
925 clk_core_unprepare(core->parent);
927 clk_pm_runtime_put(core);
931 static int clk_core_prepare_lock(struct clk_core *core)
936 ret = clk_core_prepare(core);
937 clk_prepare_unlock();
943 * clk_prepare - prepare a clock source
944 * @clk: the clk being prepared
946 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
947 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
948 * operation may sleep. One example is a clk which is accessed over I2c. In
949 * the complex case a clk ungate operation may require a fast and a slow part.
950 * It is this reason that clk_prepare and clk_enable are not mutually
951 * exclusive. In fact clk_prepare must be called before clk_enable.
952 * Returns 0 on success, -EERROR otherwise.
954 int clk_prepare(struct clk *clk)
959 return clk_core_prepare_lock(clk->core);
961 EXPORT_SYMBOL_GPL(clk_prepare);
963 static void clk_core_disable(struct clk_core *core)
965 lockdep_assert_held(&enable_lock);
970 if (WARN(core->enable_count == 0, "%s already disabled\n", core->name))
973 if (WARN(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL,
974 "Disabling critical %s\n", core->name))
977 if (--core->enable_count > 0)
980 trace_clk_disable_rcuidle(core);
982 if (core->ops->disable)
983 core->ops->disable(core->hw);
985 trace_clk_disable_complete_rcuidle(core);
987 clk_core_disable(core->parent);
990 static void clk_core_disable_lock(struct clk_core *core)
994 flags = clk_enable_lock();
995 clk_core_disable(core);
996 clk_enable_unlock(flags);
1000 * clk_disable - gate a clock
1001 * @clk: the clk being gated
1003 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1004 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1005 * clk if the operation is fast and will never sleep. One example is a
1006 * SoC-internal clk which is controlled via simple register writes. In the
1007 * complex case a clk gate operation may require a fast and a slow part. It is
1008 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1009 * In fact clk_disable must be called before clk_unprepare.
1011 void clk_disable(struct clk *clk)
1013 if (IS_ERR_OR_NULL(clk))
1016 clk_core_disable_lock(clk->core);
1018 EXPORT_SYMBOL_GPL(clk_disable);
1020 static int clk_core_enable(struct clk_core *core)
1024 lockdep_assert_held(&enable_lock);
1029 if (WARN(core->prepare_count == 0,
1030 "Enabling unprepared %s\n", core->name))
1033 if (core->enable_count == 0) {
1034 ret = clk_core_enable(core->parent);
1039 trace_clk_enable_rcuidle(core);
1041 if (core->ops->enable)
1042 ret = core->ops->enable(core->hw);
1044 trace_clk_enable_complete_rcuidle(core);
1047 clk_core_disable(core->parent);
1052 core->enable_count++;
1056 static int clk_core_enable_lock(struct clk_core *core)
1058 unsigned long flags;
1061 flags = clk_enable_lock();
1062 ret = clk_core_enable(core);
1063 clk_enable_unlock(flags);
1069 * clk_gate_restore_context - restore context for poweroff
1070 * @hw: the clk_hw pointer of clock whose state is to be restored
1072 * The clock gate restore context function enables or disables
1073 * the gate clocks based on the enable_count. This is done in cases
1074 * where the clock context is lost and based on the enable_count
1075 * the clock either needs to be enabled/disabled. This
1076 * helps restore the state of gate clocks.
1078 void clk_gate_restore_context(struct clk_hw *hw)
1080 struct clk_core *core = hw->core;
1082 if (core->enable_count)
1083 core->ops->enable(hw);
1085 core->ops->disable(hw);
1087 EXPORT_SYMBOL_GPL(clk_gate_restore_context);
1089 static int clk_core_save_context(struct clk_core *core)
1091 struct clk_core *child;
1094 hlist_for_each_entry(child, &core->children, child_node) {
1095 ret = clk_core_save_context(child);
1100 if (core->ops && core->ops->save_context)
1101 ret = core->ops->save_context(core->hw);
1106 static void clk_core_restore_context(struct clk_core *core)
1108 struct clk_core *child;
1110 if (core->ops && core->ops->restore_context)
1111 core->ops->restore_context(core->hw);
1113 hlist_for_each_entry(child, &core->children, child_node)
1114 clk_core_restore_context(child);
1118 * clk_save_context - save clock context for poweroff
1120 * Saves the context of the clock register for powerstates in which the
1121 * contents of the registers will be lost. Occurs deep within the suspend
1122 * code. Returns 0 on success.
1124 int clk_save_context(void)
1126 struct clk_core *clk;
1129 hlist_for_each_entry(clk, &clk_root_list, child_node) {
1130 ret = clk_core_save_context(clk);
1135 hlist_for_each_entry(clk, &clk_orphan_list, child_node) {
1136 ret = clk_core_save_context(clk);
1143 EXPORT_SYMBOL_GPL(clk_save_context);
1146 * clk_restore_context - restore clock context after poweroff
1148 * Restore the saved clock context upon resume.
1151 void clk_restore_context(void)
1153 struct clk_core *core;
1155 hlist_for_each_entry(core, &clk_root_list, child_node)
1156 clk_core_restore_context(core);
1158 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1159 clk_core_restore_context(core);
1161 EXPORT_SYMBOL_GPL(clk_restore_context);
1164 * clk_enable - ungate a clock
1165 * @clk: the clk being ungated
1167 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1168 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1169 * if the operation will never sleep. One example is a SoC-internal clk which
1170 * is controlled via simple register writes. In the complex case a clk ungate
1171 * operation may require a fast and a slow part. It is this reason that
1172 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1173 * must be called before clk_enable. Returns 0 on success, -EERROR
1176 int clk_enable(struct clk *clk)
1181 return clk_core_enable_lock(clk->core);
1183 EXPORT_SYMBOL_GPL(clk_enable);
1186 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
1187 * @clk: clock source
1189 * Returns true if clk_prepare() implicitly enables the clock, effectively
1190 * making clk_enable()/clk_disable() no-ops, false otherwise.
1192 * This is of interest mainly to power management code where actually
1193 * disabling the clock also requires unpreparing it to have any material
1196 * Regardless of the value returned here, the caller must always invoke
1197 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
1200 bool clk_is_enabled_when_prepared(struct clk *clk)
1202 return clk && !(clk->core->ops->enable && clk->core->ops->disable);
1204 EXPORT_SYMBOL_GPL(clk_is_enabled_when_prepared);
1206 static int clk_core_prepare_enable(struct clk_core *core)
1210 ret = clk_core_prepare_lock(core);
1214 ret = clk_core_enable_lock(core);
1216 clk_core_unprepare_lock(core);
1221 static void clk_core_disable_unprepare(struct clk_core *core)
1223 clk_core_disable_lock(core);
1224 clk_core_unprepare_lock(core);
1227 static void __init clk_unprepare_unused_subtree(struct clk_core *core)
1229 struct clk_core *child;
1231 lockdep_assert_held(&prepare_lock);
1233 hlist_for_each_entry(child, &core->children, child_node)
1234 clk_unprepare_unused_subtree(child);
1236 if (core->prepare_count)
1239 if (core->flags & CLK_IGNORE_UNUSED)
1242 if (clk_pm_runtime_get(core))
1245 if (clk_core_is_prepared(core)) {
1246 trace_clk_unprepare(core);
1247 if (core->ops->unprepare_unused)
1248 core->ops->unprepare_unused(core->hw);
1249 else if (core->ops->unprepare)
1250 core->ops->unprepare(core->hw);
1251 trace_clk_unprepare_complete(core);
1254 clk_pm_runtime_put(core);
1257 static void __init clk_disable_unused_subtree(struct clk_core *core)
1259 struct clk_core *child;
1260 unsigned long flags;
1262 lockdep_assert_held(&prepare_lock);
1264 hlist_for_each_entry(child, &core->children, child_node)
1265 clk_disable_unused_subtree(child);
1267 if (core->flags & CLK_OPS_PARENT_ENABLE)
1268 clk_core_prepare_enable(core->parent);
1270 if (clk_pm_runtime_get(core))
1273 flags = clk_enable_lock();
1275 if (core->enable_count)
1278 if (core->flags & CLK_IGNORE_UNUSED)
1282 * some gate clocks have special needs during the disable-unused
1283 * sequence. call .disable_unused if available, otherwise fall
1286 if (clk_core_is_enabled(core)) {
1287 trace_clk_disable(core);
1288 if (core->ops->disable_unused)
1289 core->ops->disable_unused(core->hw);
1290 else if (core->ops->disable)
1291 core->ops->disable(core->hw);
1292 trace_clk_disable_complete(core);
1296 clk_enable_unlock(flags);
1297 clk_pm_runtime_put(core);
1299 if (core->flags & CLK_OPS_PARENT_ENABLE)
1300 clk_core_disable_unprepare(core->parent);
1303 static bool clk_ignore_unused __initdata;
1304 static int __init clk_ignore_unused_setup(char *__unused)
1306 clk_ignore_unused = true;
1309 __setup("clk_ignore_unused", clk_ignore_unused_setup);
1311 static int __init clk_disable_unused(void)
1313 struct clk_core *core;
1315 if (clk_ignore_unused) {
1316 pr_warn("clk: Not disabling unused clocks\n");
1322 hlist_for_each_entry(core, &clk_root_list, child_node)
1323 clk_disable_unused_subtree(core);
1325 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1326 clk_disable_unused_subtree(core);
1328 hlist_for_each_entry(core, &clk_root_list, child_node)
1329 clk_unprepare_unused_subtree(core);
1331 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1332 clk_unprepare_unused_subtree(core);
1334 clk_prepare_unlock();
1338 late_initcall_sync(clk_disable_unused);
1340 static int clk_core_determine_round_nolock(struct clk_core *core,
1341 struct clk_rate_request *req)
1345 lockdep_assert_held(&prepare_lock);
1351 * At this point, core protection will be disabled
1352 * - if the provider is not protected at all
1353 * - if the calling consumer is the only one which has exclusivity
1356 if (clk_core_rate_is_protected(core)) {
1357 req->rate = core->rate;
1358 } else if (core->ops->determine_rate) {
1359 return core->ops->determine_rate(core->hw, req);
1360 } else if (core->ops->round_rate) {
1361 rate = core->ops->round_rate(core->hw, req->rate,
1362 &req->best_parent_rate);
1374 static void clk_core_init_rate_req(struct clk_core * const core,
1375 struct clk_rate_request *req)
1377 struct clk_core *parent;
1379 if (WARN_ON(!core || !req))
1382 parent = core->parent;
1384 req->best_parent_hw = parent->hw;
1385 req->best_parent_rate = parent->rate;
1387 req->best_parent_hw = NULL;
1388 req->best_parent_rate = 0;
1392 static bool clk_core_can_round(struct clk_core * const core)
1394 return core->ops->determine_rate || core->ops->round_rate;
1397 static int clk_core_round_rate_nolock(struct clk_core *core,
1398 struct clk_rate_request *req)
1400 lockdep_assert_held(&prepare_lock);
1407 clk_core_init_rate_req(core, req);
1409 if (clk_core_can_round(core))
1410 return clk_core_determine_round_nolock(core, req);
1411 else if (core->flags & CLK_SET_RATE_PARENT)
1412 return clk_core_round_rate_nolock(core->parent, req);
1414 req->rate = core->rate;
1419 * __clk_determine_rate - get the closest rate actually supported by a clock
1420 * @hw: determine the rate of this clock
1421 * @req: target rate request
1423 * Useful for clk_ops such as .set_rate and .determine_rate.
1425 int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
1432 return clk_core_round_rate_nolock(hw->core, req);
1434 EXPORT_SYMBOL_GPL(__clk_determine_rate);
1437 * clk_hw_round_rate() - round the given rate for a hw clk
1438 * @hw: the hw clk for which we are rounding a rate
1439 * @rate: the rate which is to be rounded
1441 * Takes in a rate as input and rounds it to a rate that the clk can actually
1444 * Context: prepare_lock must be held.
1445 * For clk providers to call from within clk_ops such as .round_rate,
1448 * Return: returns rounded rate of hw clk if clk supports round_rate operation
1449 * else returns the parent rate.
1451 unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1454 struct clk_rate_request req;
1456 clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate);
1459 ret = clk_core_round_rate_nolock(hw->core, &req);
1465 EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1468 * clk_round_rate - round the given rate for a clk
1469 * @clk: the clk for which we are rounding a rate
1470 * @rate: the rate which is to be rounded
1472 * Takes in a rate as input and rounds it to a rate that the clk can actually
1473 * use which is then returned. If clk doesn't support round_rate operation
1474 * then the parent rate is returned.
1476 long clk_round_rate(struct clk *clk, unsigned long rate)
1478 struct clk_rate_request req;
1486 if (clk->exclusive_count)
1487 clk_core_rate_unprotect(clk->core);
1489 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
1492 ret = clk_core_round_rate_nolock(clk->core, &req);
1494 if (clk->exclusive_count)
1495 clk_core_rate_protect(clk->core);
1497 clk_prepare_unlock();
1504 EXPORT_SYMBOL_GPL(clk_round_rate);
1507 * __clk_notify - call clk notifier chain
1508 * @core: clk that is changing rate
1509 * @msg: clk notifier type (see include/linux/clk.h)
1510 * @old_rate: old clk rate
1511 * @new_rate: new clk rate
1513 * Triggers a notifier call chain on the clk rate-change notification
1514 * for 'clk'. Passes a pointer to the struct clk and the previous
1515 * and current rates to the notifier callback. Intended to be called by
1516 * internal clock code only. Returns NOTIFY_DONE from the last driver
1517 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1518 * a driver returns that.
1520 static int __clk_notify(struct clk_core *core, unsigned long msg,
1521 unsigned long old_rate, unsigned long new_rate)
1523 struct clk_notifier *cn;
1524 struct clk_notifier_data cnd;
1525 int ret = NOTIFY_DONE;
1527 cnd.old_rate = old_rate;
1528 cnd.new_rate = new_rate;
1530 list_for_each_entry(cn, &clk_notifier_list, node) {
1531 if (cn->clk->core == core) {
1533 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1535 if (ret & NOTIFY_STOP_MASK)
1544 * __clk_recalc_accuracies
1545 * @core: first clk in the subtree
1547 * Walks the subtree of clks starting with clk and recalculates accuracies as
1548 * it goes. Note that if a clk does not implement the .recalc_accuracy
1549 * callback then it is assumed that the clock will take on the accuracy of its
1552 static void __clk_recalc_accuracies(struct clk_core *core)
1554 unsigned long parent_accuracy = 0;
1555 struct clk_core *child;
1557 lockdep_assert_held(&prepare_lock);
1560 parent_accuracy = core->parent->accuracy;
1562 if (core->ops->recalc_accuracy)
1563 core->accuracy = core->ops->recalc_accuracy(core->hw,
1566 core->accuracy = parent_accuracy;
1568 hlist_for_each_entry(child, &core->children, child_node)
1569 __clk_recalc_accuracies(child);
1572 static long clk_core_get_accuracy_recalc(struct clk_core *core)
1574 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1575 __clk_recalc_accuracies(core);
1577 return clk_core_get_accuracy_no_lock(core);
1581 * clk_get_accuracy - return the accuracy of clk
1582 * @clk: the clk whose accuracy is being returned
1584 * Simply returns the cached accuracy of the clk, unless
1585 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1587 * If clk is NULL then returns 0.
1589 long clk_get_accuracy(struct clk *clk)
1597 accuracy = clk_core_get_accuracy_recalc(clk->core);
1598 clk_prepare_unlock();
1602 EXPORT_SYMBOL_GPL(clk_get_accuracy);
1604 static unsigned long clk_recalc(struct clk_core *core,
1605 unsigned long parent_rate)
1607 unsigned long rate = parent_rate;
1609 if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) {
1610 rate = core->ops->recalc_rate(core->hw, parent_rate);
1611 clk_pm_runtime_put(core);
1617 * __clk_recalc_rates
1618 * @core: first clk in the subtree
1619 * @msg: notification type (see include/linux/clk.h)
1621 * Walks the subtree of clks starting with clk and recalculates rates as it
1622 * goes. Note that if a clk does not implement the .recalc_rate callback then
1623 * it is assumed that the clock will take on the rate of its parent.
1625 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1628 static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
1630 unsigned long old_rate;
1631 unsigned long parent_rate = 0;
1632 struct clk_core *child;
1634 lockdep_assert_held(&prepare_lock);
1636 old_rate = core->rate;
1639 parent_rate = core->parent->rate;
1641 core->rate = clk_recalc(core, parent_rate);
1644 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1645 * & ABORT_RATE_CHANGE notifiers
1647 if (core->notifier_count && msg)
1648 __clk_notify(core, msg, old_rate, core->rate);
1650 hlist_for_each_entry(child, &core->children, child_node)
1651 __clk_recalc_rates(child, msg);
1654 static unsigned long clk_core_get_rate_recalc(struct clk_core *core)
1656 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1657 __clk_recalc_rates(core, 0);
1659 return clk_core_get_rate_nolock(core);
1663 * clk_get_rate - return the rate of clk
1664 * @clk: the clk whose rate is being returned
1666 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1667 * is set, which means a recalc_rate will be issued.
1668 * If clk is NULL then returns 0.
1670 unsigned long clk_get_rate(struct clk *clk)
1678 rate = clk_core_get_rate_recalc(clk->core);
1679 clk_prepare_unlock();
1683 EXPORT_SYMBOL_GPL(clk_get_rate);
1685 static int clk_fetch_parent_index(struct clk_core *core,
1686 struct clk_core *parent)
1693 for (i = 0; i < core->num_parents; i++) {
1694 /* Found it first try! */
1695 if (core->parents[i].core == parent)
1698 /* Something else is here, so keep looking */
1699 if (core->parents[i].core)
1702 /* Maybe core hasn't been cached but the hw is all we know? */
1703 if (core->parents[i].hw) {
1704 if (core->parents[i].hw == parent->hw)
1707 /* Didn't match, but we're expecting a clk_hw */
1711 /* Maybe it hasn't been cached (clk_set_parent() path) */
1712 if (parent == clk_core_get(core, i))
1715 /* Fallback to comparing globally unique names */
1716 if (core->parents[i].name &&
1717 !strcmp(parent->name, core->parents[i].name))
1721 if (i == core->num_parents)
1724 core->parents[i].core = parent;
1729 * clk_hw_get_parent_index - return the index of the parent clock
1730 * @hw: clk_hw associated with the clk being consumed
1732 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
1733 * clock does not have a current parent.
1735 int clk_hw_get_parent_index(struct clk_hw *hw)
1737 struct clk_hw *parent = clk_hw_get_parent(hw);
1739 if (WARN_ON(parent == NULL))
1742 return clk_fetch_parent_index(hw->core, parent->core);
1744 EXPORT_SYMBOL_GPL(clk_hw_get_parent_index);
1747 * Update the orphan status of @core and all its children.
1749 static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1751 struct clk_core *child;
1753 core->orphan = is_orphan;
1755 hlist_for_each_entry(child, &core->children, child_node)
1756 clk_core_update_orphan_status(child, is_orphan);
1759 static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
1761 bool was_orphan = core->orphan;
1763 hlist_del(&core->child_node);
1766 bool becomes_orphan = new_parent->orphan;
1768 /* avoid duplicate POST_RATE_CHANGE notifications */
1769 if (new_parent->new_child == core)
1770 new_parent->new_child = NULL;
1772 hlist_add_head(&core->child_node, &new_parent->children);
1774 if (was_orphan != becomes_orphan)
1775 clk_core_update_orphan_status(core, becomes_orphan);
1777 hlist_add_head(&core->child_node, &clk_orphan_list);
1779 clk_core_update_orphan_status(core, true);
1782 core->parent = new_parent;
1785 static struct clk_core *__clk_set_parent_before(struct clk_core *core,
1786 struct clk_core *parent)
1788 unsigned long flags;
1789 struct clk_core *old_parent = core->parent;
1792 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1794 * 2. Migrate prepare state between parents and prevent race with
1797 * If the clock is not prepared, then a race with
1798 * clk_enable/disable() is impossible since we already have the
1799 * prepare lock (future calls to clk_enable() need to be preceded by
1802 * If the clock is prepared, migrate the prepared state to the new
1803 * parent and also protect against a race with clk_enable() by
1804 * forcing the clock and the new parent on. This ensures that all
1805 * future calls to clk_enable() are practically NOPs with respect to
1806 * hardware and software states.
1808 * See also: Comment for clk_set_parent() below.
1811 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1812 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1813 clk_core_prepare_enable(old_parent);
1814 clk_core_prepare_enable(parent);
1817 /* migrate prepare count if > 0 */
1818 if (core->prepare_count) {
1819 clk_core_prepare_enable(parent);
1820 clk_core_enable_lock(core);
1823 /* update the clk tree topology */
1824 flags = clk_enable_lock();
1825 clk_reparent(core, parent);
1826 clk_enable_unlock(flags);
1831 static void __clk_set_parent_after(struct clk_core *core,
1832 struct clk_core *parent,
1833 struct clk_core *old_parent)
1836 * Finish the migration of prepare state and undo the changes done
1837 * for preventing a race with clk_enable().
1839 if (core->prepare_count) {
1840 clk_core_disable_lock(core);
1841 clk_core_disable_unprepare(old_parent);
1844 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1845 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1846 clk_core_disable_unprepare(parent);
1847 clk_core_disable_unprepare(old_parent);
1851 static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
1854 unsigned long flags;
1856 struct clk_core *old_parent;
1858 old_parent = __clk_set_parent_before(core, parent);
1860 trace_clk_set_parent(core, parent);
1862 /* change clock input source */
1863 if (parent && core->ops->set_parent)
1864 ret = core->ops->set_parent(core->hw, p_index);
1866 trace_clk_set_parent_complete(core, parent);
1869 flags = clk_enable_lock();
1870 clk_reparent(core, old_parent);
1871 clk_enable_unlock(flags);
1872 __clk_set_parent_after(core, old_parent, parent);
1877 __clk_set_parent_after(core, parent, old_parent);
1883 * __clk_speculate_rates
1884 * @core: first clk in the subtree
1885 * @parent_rate: the "future" rate of clk's parent
1887 * Walks the subtree of clks starting with clk, speculating rates as it
1888 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1890 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1891 * pre-rate change notifications and returns early if no clks in the
1892 * subtree have subscribed to the notifications. Note that if a clk does not
1893 * implement the .recalc_rate callback then it is assumed that the clock will
1894 * take on the rate of its parent.
1896 static int __clk_speculate_rates(struct clk_core *core,
1897 unsigned long parent_rate)
1899 struct clk_core *child;
1900 unsigned long new_rate;
1901 int ret = NOTIFY_DONE;
1903 lockdep_assert_held(&prepare_lock);
1905 new_rate = clk_recalc(core, parent_rate);
1907 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
1908 if (core->notifier_count)
1909 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
1911 if (ret & NOTIFY_STOP_MASK) {
1912 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
1913 __func__, core->name, ret);
1917 hlist_for_each_entry(child, &core->children, child_node) {
1918 ret = __clk_speculate_rates(child, new_rate);
1919 if (ret & NOTIFY_STOP_MASK)
1927 static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
1928 struct clk_core *new_parent, u8 p_index)
1930 struct clk_core *child;
1932 core->new_rate = new_rate;
1933 core->new_parent = new_parent;
1934 core->new_parent_index = p_index;
1935 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1936 core->new_child = NULL;
1937 if (new_parent && new_parent != core->parent)
1938 new_parent->new_child = core;
1940 hlist_for_each_entry(child, &core->children, child_node) {
1941 child->new_rate = clk_recalc(child, new_rate);
1942 clk_calc_subtree(child, child->new_rate, NULL, 0);
1947 * calculate the new rates returning the topmost clock that has to be
1950 static struct clk_core *clk_calc_new_rates(struct clk_core *core,
1953 struct clk_core *top = core;
1954 struct clk_core *old_parent, *parent;
1955 unsigned long best_parent_rate = 0;
1956 unsigned long new_rate;
1957 unsigned long min_rate;
1958 unsigned long max_rate;
1963 if (IS_ERR_OR_NULL(core))
1966 /* save parent rate, if it exists */
1967 parent = old_parent = core->parent;
1969 best_parent_rate = parent->rate;
1971 clk_core_get_boundaries(core, &min_rate, &max_rate);
1973 /* find the closest rate and parent clk/rate */
1974 if (clk_core_can_round(core)) {
1975 struct clk_rate_request req;
1978 req.min_rate = min_rate;
1979 req.max_rate = max_rate;
1981 clk_core_init_rate_req(core, &req);
1983 ret = clk_core_determine_round_nolock(core, &req);
1987 best_parent_rate = req.best_parent_rate;
1988 new_rate = req.rate;
1989 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
1991 if (new_rate < min_rate || new_rate > max_rate)
1993 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
1994 /* pass-through clock without adjustable parent */
1995 core->new_rate = core->rate;
1998 /* pass-through clock with adjustable parent */
1999 top = clk_calc_new_rates(parent, rate);
2000 new_rate = parent->new_rate;
2004 /* some clocks must be gated to change parent */
2005 if (parent != old_parent &&
2006 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
2007 pr_debug("%s: %s not gated but wants to reparent\n",
2008 __func__, core->name);
2012 /* try finding the new parent index */
2013 if (parent && core->num_parents > 1) {
2014 p_index = clk_fetch_parent_index(core, parent);
2016 pr_debug("%s: clk %s can not be parent of clk %s\n",
2017 __func__, parent->name, core->name);
2022 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
2023 best_parent_rate != parent->rate)
2024 top = clk_calc_new_rates(parent, best_parent_rate);
2027 clk_calc_subtree(core, new_rate, parent, p_index);
2033 * Notify about rate changes in a subtree. Always walk down the whole tree
2034 * so that in case of an error we can walk down the whole tree again and
2037 static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
2038 unsigned long event)
2040 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
2041 int ret = NOTIFY_DONE;
2043 if (core->rate == core->new_rate)
2046 if (core->notifier_count) {
2047 ret = __clk_notify(core, event, core->rate, core->new_rate);
2048 if (ret & NOTIFY_STOP_MASK)
2052 hlist_for_each_entry(child, &core->children, child_node) {
2053 /* Skip children who will be reparented to another clock */
2054 if (child->new_parent && child->new_parent != core)
2056 tmp_clk = clk_propagate_rate_change(child, event);
2061 /* handle the new child who might not be in core->children yet */
2062 if (core->new_child) {
2063 tmp_clk = clk_propagate_rate_change(core->new_child, event);
2072 * walk down a subtree and set the new rates notifying the rate
2075 static void clk_change_rate(struct clk_core *core)
2077 struct clk_core *child;
2078 struct hlist_node *tmp;
2079 unsigned long old_rate;
2080 unsigned long best_parent_rate = 0;
2081 bool skip_set_rate = false;
2082 struct clk_core *old_parent;
2083 struct clk_core *parent = NULL;
2085 old_rate = core->rate;
2087 if (core->new_parent) {
2088 parent = core->new_parent;
2089 best_parent_rate = core->new_parent->rate;
2090 } else if (core->parent) {
2091 parent = core->parent;
2092 best_parent_rate = core->parent->rate;
2095 if (clk_pm_runtime_get(core))
2098 if (core->flags & CLK_SET_RATE_UNGATE) {
2099 clk_core_prepare(core);
2100 clk_core_enable_lock(core);
2103 if (core->new_parent && core->new_parent != core->parent) {
2104 old_parent = __clk_set_parent_before(core, core->new_parent);
2105 trace_clk_set_parent(core, core->new_parent);
2107 if (core->ops->set_rate_and_parent) {
2108 skip_set_rate = true;
2109 core->ops->set_rate_and_parent(core->hw, core->new_rate,
2111 core->new_parent_index);
2112 } else if (core->ops->set_parent) {
2113 core->ops->set_parent(core->hw, core->new_parent_index);
2116 trace_clk_set_parent_complete(core, core->new_parent);
2117 __clk_set_parent_after(core, core->new_parent, old_parent);
2120 if (core->flags & CLK_OPS_PARENT_ENABLE)
2121 clk_core_prepare_enable(parent);
2123 trace_clk_set_rate(core, core->new_rate);
2125 if (!skip_set_rate && core->ops->set_rate)
2126 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
2128 trace_clk_set_rate_complete(core, core->new_rate);
2130 core->rate = clk_recalc(core, best_parent_rate);
2132 if (core->flags & CLK_SET_RATE_UNGATE) {
2133 clk_core_disable_lock(core);
2134 clk_core_unprepare(core);
2137 if (core->flags & CLK_OPS_PARENT_ENABLE)
2138 clk_core_disable_unprepare(parent);
2140 if (core->notifier_count && old_rate != core->rate)
2141 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
2143 if (core->flags & CLK_RECALC_NEW_RATES)
2144 (void)clk_calc_new_rates(core, core->new_rate);
2147 * Use safe iteration, as change_rate can actually swap parents
2148 * for certain clock types.
2150 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
2151 /* Skip children who will be reparented to another clock */
2152 if (child->new_parent && child->new_parent != core)
2154 clk_change_rate(child);
2157 /* handle the new child who might not be in core->children yet */
2158 if (core->new_child)
2159 clk_change_rate(core->new_child);
2161 clk_pm_runtime_put(core);
2164 static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core,
2165 unsigned long req_rate)
2168 struct clk_rate_request req;
2170 lockdep_assert_held(&prepare_lock);
2175 /* simulate what the rate would be if it could be freely set */
2176 cnt = clk_core_rate_nuke_protect(core);
2180 clk_core_get_boundaries(core, &req.min_rate, &req.max_rate);
2181 req.rate = req_rate;
2183 ret = clk_core_round_rate_nolock(core, &req);
2185 /* restore the protection */
2186 clk_core_rate_restore_protect(core, cnt);
2188 return ret ? 0 : req.rate;
2191 static int clk_core_set_rate_nolock(struct clk_core *core,
2192 unsigned long req_rate)
2194 struct clk_core *top, *fail_clk;
2201 rate = clk_core_req_round_rate_nolock(core, req_rate);
2203 /* bail early if nothing to do */
2204 if (rate == clk_core_get_rate_nolock(core))
2207 /* fail on a direct rate set of a protected provider */
2208 if (clk_core_rate_is_protected(core))
2211 /* calculate new rates and get the topmost changed clock */
2212 top = clk_calc_new_rates(core, req_rate);
2216 ret = clk_pm_runtime_get(core);
2220 /* notify that we are about to change rates */
2221 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
2223 pr_debug("%s: failed to set %s rate\n", __func__,
2225 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
2230 /* change the rates */
2231 clk_change_rate(top);
2233 core->req_rate = req_rate;
2235 clk_pm_runtime_put(core);
2241 * clk_set_rate - specify a new rate for clk
2242 * @clk: the clk whose rate is being changed
2243 * @rate: the new rate for clk
2245 * In the simplest case clk_set_rate will only adjust the rate of clk.
2247 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2248 * propagate up to clk's parent; whether or not this happens depends on the
2249 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2250 * after calling .round_rate then upstream parent propagation is ignored. If
2251 * *parent_rate comes back with a new rate for clk's parent then we propagate
2252 * up to clk's parent and set its rate. Upward propagation will continue
2253 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2254 * .round_rate stops requesting changes to clk's parent_rate.
2256 * Rate changes are accomplished via tree traversal that also recalculates the
2257 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
2259 * Returns 0 on success, -EERROR otherwise.
2261 int clk_set_rate(struct clk *clk, unsigned long rate)
2268 /* prevent racing with updates to the clock topology */
2271 if (clk->exclusive_count)
2272 clk_core_rate_unprotect(clk->core);
2274 ret = clk_core_set_rate_nolock(clk->core, rate);
2276 if (clk->exclusive_count)
2277 clk_core_rate_protect(clk->core);
2279 clk_prepare_unlock();
2283 EXPORT_SYMBOL_GPL(clk_set_rate);
2286 * clk_set_rate_exclusive - specify a new rate and get exclusive control
2287 * @clk: the clk whose rate is being changed
2288 * @rate: the new rate for clk
2290 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2291 * within a critical section
2293 * This can be used initially to ensure that at least 1 consumer is
2294 * satisfied when several consumers are competing for exclusivity over the
2295 * same clock provider.
2297 * The exclusivity is not applied if setting the rate failed.
2299 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2300 * clk_rate_exclusive_put().
2302 * Returns 0 on success, -EERROR otherwise.
2304 int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
2311 /* prevent racing with updates to the clock topology */
2315 * The temporary protection removal is not here, on purpose
2316 * This function is meant to be used instead of clk_rate_protect,
2317 * so before the consumer code path protect the clock provider
2320 ret = clk_core_set_rate_nolock(clk->core, rate);
2322 clk_core_rate_protect(clk->core);
2323 clk->exclusive_count++;
2326 clk_prepare_unlock();
2330 EXPORT_SYMBOL_GPL(clk_set_rate_exclusive);
2333 * clk_set_rate_range - set a rate range for a clock source
2334 * @clk: clock source
2335 * @min: desired minimum clock rate in Hz, inclusive
2336 * @max: desired maximum clock rate in Hz, inclusive
2338 * Returns success (0) or negative errno.
2340 int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
2343 unsigned long old_min, old_max, rate;
2348 trace_clk_set_rate_range(clk->core, min, max);
2351 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2352 __func__, clk->core->name, clk->dev_id, clk->con_id,
2359 if (clk->exclusive_count)
2360 clk_core_rate_unprotect(clk->core);
2362 /* Save the current values in case we need to rollback the change */
2363 old_min = clk->min_rate;
2364 old_max = clk->max_rate;
2365 clk->min_rate = min;
2366 clk->max_rate = max;
2368 if (!clk_core_check_boundaries(clk->core, min, max)) {
2373 rate = clk_core_get_rate_nolock(clk->core);
2374 if (rate < min || rate > max) {
2377 * We are in bit of trouble here, current rate is outside the
2378 * the requested range. We are going try to request appropriate
2379 * range boundary but there is a catch. It may fail for the
2380 * usual reason (clock broken, clock protected, etc) but also
2382 * - round_rate() was not favorable and fell on the wrong
2383 * side of the boundary
2384 * - the determine_rate() callback does not really check for
2385 * this corner case when determining the rate
2393 ret = clk_core_set_rate_nolock(clk->core, rate);
2395 /* rollback the changes */
2396 clk->min_rate = old_min;
2397 clk->max_rate = old_max;
2402 if (clk->exclusive_count)
2403 clk_core_rate_protect(clk->core);
2405 clk_prepare_unlock();
2409 EXPORT_SYMBOL_GPL(clk_set_rate_range);
2412 * clk_set_min_rate - set a minimum clock rate for a clock source
2413 * @clk: clock source
2414 * @rate: desired minimum clock rate in Hz, inclusive
2416 * Returns success (0) or negative errno.
2418 int clk_set_min_rate(struct clk *clk, unsigned long rate)
2423 trace_clk_set_min_rate(clk->core, rate);
2425 return clk_set_rate_range(clk, rate, clk->max_rate);
2427 EXPORT_SYMBOL_GPL(clk_set_min_rate);
2430 * clk_set_max_rate - set a maximum clock rate for a clock source
2431 * @clk: clock source
2432 * @rate: desired maximum clock rate in Hz, inclusive
2434 * Returns success (0) or negative errno.
2436 int clk_set_max_rate(struct clk *clk, unsigned long rate)
2441 trace_clk_set_max_rate(clk->core, rate);
2443 return clk_set_rate_range(clk, clk->min_rate, rate);
2445 EXPORT_SYMBOL_GPL(clk_set_max_rate);
2448 * clk_get_parent - return the parent of a clk
2449 * @clk: the clk whose parent gets returned
2451 * Simply returns clk->parent. Returns NULL if clk is NULL.
2453 struct clk *clk_get_parent(struct clk *clk)
2461 /* TODO: Create a per-user clk and change callers to call clk_put */
2462 parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk;
2463 clk_prepare_unlock();
2467 EXPORT_SYMBOL_GPL(clk_get_parent);
2469 static struct clk_core *__clk_init_parent(struct clk_core *core)
2473 if (core->num_parents > 1 && core->ops->get_parent)
2474 index = core->ops->get_parent(core->hw);
2476 return clk_core_get_parent_by_index(core, index);
2479 static void clk_core_reparent(struct clk_core *core,
2480 struct clk_core *new_parent)
2482 clk_reparent(core, new_parent);
2483 __clk_recalc_accuracies(core);
2484 __clk_recalc_rates(core, POST_RATE_CHANGE);
2487 void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
2492 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
2496 * clk_has_parent - check if a clock is a possible parent for another
2497 * @clk: clock source
2498 * @parent: parent clock source
2500 * This function can be used in drivers that need to check that a clock can be
2501 * the parent of another without actually changing the parent.
2503 * Returns true if @parent is a possible parent for @clk, false otherwise.
2505 bool clk_has_parent(struct clk *clk, struct clk *parent)
2507 struct clk_core *core, *parent_core;
2510 /* NULL clocks should be nops, so return success if either is NULL. */
2511 if (!clk || !parent)
2515 parent_core = parent->core;
2517 /* Optimize for the case where the parent is already the parent. */
2518 if (core->parent == parent_core)
2521 for (i = 0; i < core->num_parents; i++)
2522 if (!strcmp(core->parents[i].name, parent_core->name))
2527 EXPORT_SYMBOL_GPL(clk_has_parent);
2529 static int clk_core_set_parent_nolock(struct clk_core *core,
2530 struct clk_core *parent)
2534 unsigned long p_rate = 0;
2536 lockdep_assert_held(&prepare_lock);
2541 if (core->parent == parent)
2544 /* verify ops for multi-parent clks */
2545 if (core->num_parents > 1 && !core->ops->set_parent)
2548 /* check that we are allowed to re-parent if the clock is in use */
2549 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count)
2552 if (clk_core_rate_is_protected(core))
2555 /* try finding the new parent index */
2557 p_index = clk_fetch_parent_index(core, parent);
2559 pr_debug("%s: clk %s can not be parent of clk %s\n",
2560 __func__, parent->name, core->name);
2563 p_rate = parent->rate;
2566 ret = clk_pm_runtime_get(core);
2570 /* propagate PRE_RATE_CHANGE notifications */
2571 ret = __clk_speculate_rates(core, p_rate);
2573 /* abort if a driver objects */
2574 if (ret & NOTIFY_STOP_MASK)
2577 /* do the re-parent */
2578 ret = __clk_set_parent(core, parent, p_index);
2580 /* propagate rate an accuracy recalculation accordingly */
2582 __clk_recalc_rates(core, ABORT_RATE_CHANGE);
2584 __clk_recalc_rates(core, POST_RATE_CHANGE);
2585 __clk_recalc_accuracies(core);
2589 clk_pm_runtime_put(core);
2594 int clk_hw_set_parent(struct clk_hw *hw, struct clk_hw *parent)
2596 return clk_core_set_parent_nolock(hw->core, parent->core);
2598 EXPORT_SYMBOL_GPL(clk_hw_set_parent);
2601 * clk_set_parent - switch the parent of a mux clk
2602 * @clk: the mux clk whose input we are switching
2603 * @parent: the new input to clk
2605 * Re-parent clk to use parent as its new input source. If clk is in
2606 * prepared state, the clk will get enabled for the duration of this call. If
2607 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2608 * that, the reparenting is glitchy in hardware, etc), use the
2609 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2611 * After successfully changing clk's parent clk_set_parent will update the
2612 * clk topology, sysfs topology and propagate rate recalculation via
2613 * __clk_recalc_rates.
2615 * Returns 0 on success, -EERROR otherwise.
2617 int clk_set_parent(struct clk *clk, struct clk *parent)
2626 if (clk->exclusive_count)
2627 clk_core_rate_unprotect(clk->core);
2629 ret = clk_core_set_parent_nolock(clk->core,
2630 parent ? parent->core : NULL);
2632 if (clk->exclusive_count)
2633 clk_core_rate_protect(clk->core);
2635 clk_prepare_unlock();
2639 EXPORT_SYMBOL_GPL(clk_set_parent);
2641 static int clk_core_set_phase_nolock(struct clk_core *core, int degrees)
2645 lockdep_assert_held(&prepare_lock);
2650 if (clk_core_rate_is_protected(core))
2653 trace_clk_set_phase(core, degrees);
2655 if (core->ops->set_phase) {
2656 ret = core->ops->set_phase(core->hw, degrees);
2658 core->phase = degrees;
2661 trace_clk_set_phase_complete(core, degrees);
2667 * clk_set_phase - adjust the phase shift of a clock signal
2668 * @clk: clock signal source
2669 * @degrees: number of degrees the signal is shifted
2671 * Shifts the phase of a clock signal by the specified
2672 * degrees. Returns 0 on success, -EERROR otherwise.
2674 * This function makes no distinction about the input or reference
2675 * signal that we adjust the clock signal phase against. For example
2676 * phase locked-loop clock signal generators we may shift phase with
2677 * respect to feedback clock signal input, but for other cases the
2678 * clock phase may be shifted with respect to some other, unspecified
2681 * Additionally the concept of phase shift does not propagate through
2682 * the clock tree hierarchy, which sets it apart from clock rates and
2683 * clock accuracy. A parent clock phase attribute does not have an
2684 * impact on the phase attribute of a child clock.
2686 int clk_set_phase(struct clk *clk, int degrees)
2693 /* sanity check degrees */
2700 if (clk->exclusive_count)
2701 clk_core_rate_unprotect(clk->core);
2703 ret = clk_core_set_phase_nolock(clk->core, degrees);
2705 if (clk->exclusive_count)
2706 clk_core_rate_protect(clk->core);
2708 clk_prepare_unlock();
2712 EXPORT_SYMBOL_GPL(clk_set_phase);
2714 static int clk_core_get_phase(struct clk_core *core)
2718 lockdep_assert_held(&prepare_lock);
2719 if (!core->ops->get_phase)
2722 /* Always try to update cached phase if possible */
2723 ret = core->ops->get_phase(core->hw);
2731 * clk_get_phase - return the phase shift of a clock signal
2732 * @clk: clock signal source
2734 * Returns the phase shift of a clock node in degrees, otherwise returns
2737 int clk_get_phase(struct clk *clk)
2745 ret = clk_core_get_phase(clk->core);
2746 clk_prepare_unlock();
2750 EXPORT_SYMBOL_GPL(clk_get_phase);
2752 static void clk_core_reset_duty_cycle_nolock(struct clk_core *core)
2754 /* Assume a default value of 50% */
2759 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core);
2761 static int clk_core_update_duty_cycle_nolock(struct clk_core *core)
2763 struct clk_duty *duty = &core->duty;
2766 if (!core->ops->get_duty_cycle)
2767 return clk_core_update_duty_cycle_parent_nolock(core);
2769 ret = core->ops->get_duty_cycle(core->hw, duty);
2773 /* Don't trust the clock provider too much */
2774 if (duty->den == 0 || duty->num > duty->den) {
2782 clk_core_reset_duty_cycle_nolock(core);
2786 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core)
2791 core->flags & CLK_DUTY_CYCLE_PARENT) {
2792 ret = clk_core_update_duty_cycle_nolock(core->parent);
2793 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2795 clk_core_reset_duty_cycle_nolock(core);
2801 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2802 struct clk_duty *duty);
2804 static int clk_core_set_duty_cycle_nolock(struct clk_core *core,
2805 struct clk_duty *duty)
2809 lockdep_assert_held(&prepare_lock);
2811 if (clk_core_rate_is_protected(core))
2814 trace_clk_set_duty_cycle(core, duty);
2816 if (!core->ops->set_duty_cycle)
2817 return clk_core_set_duty_cycle_parent_nolock(core, duty);
2819 ret = core->ops->set_duty_cycle(core->hw, duty);
2821 memcpy(&core->duty, duty, sizeof(*duty));
2823 trace_clk_set_duty_cycle_complete(core, duty);
2828 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2829 struct clk_duty *duty)
2834 core->flags & (CLK_DUTY_CYCLE_PARENT | CLK_SET_RATE_PARENT)) {
2835 ret = clk_core_set_duty_cycle_nolock(core->parent, duty);
2836 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2843 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
2844 * @clk: clock signal source
2845 * @num: numerator of the duty cycle ratio to be applied
2846 * @den: denominator of the duty cycle ratio to be applied
2848 * Apply the duty cycle ratio if the ratio is valid and the clock can
2849 * perform this operation
2851 * Returns (0) on success, a negative errno otherwise.
2853 int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den)
2856 struct clk_duty duty;
2861 /* sanity check the ratio */
2862 if (den == 0 || num > den)
2870 if (clk->exclusive_count)
2871 clk_core_rate_unprotect(clk->core);
2873 ret = clk_core_set_duty_cycle_nolock(clk->core, &duty);
2875 if (clk->exclusive_count)
2876 clk_core_rate_protect(clk->core);
2878 clk_prepare_unlock();
2882 EXPORT_SYMBOL_GPL(clk_set_duty_cycle);
2884 static int clk_core_get_scaled_duty_cycle(struct clk_core *core,
2887 struct clk_duty *duty = &core->duty;
2892 ret = clk_core_update_duty_cycle_nolock(core);
2894 ret = mult_frac(scale, duty->num, duty->den);
2896 clk_prepare_unlock();
2902 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
2903 * @clk: clock signal source
2904 * @scale: scaling factor to be applied to represent the ratio as an integer
2906 * Returns the duty cycle ratio of a clock node multiplied by the provided
2907 * scaling factor, or negative errno on error.
2909 int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale)
2914 return clk_core_get_scaled_duty_cycle(clk->core, scale);
2916 EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle);
2919 * clk_is_match - check if two clk's point to the same hardware clock
2920 * @p: clk compared against q
2921 * @q: clk compared against p
2923 * Returns true if the two struct clk pointers both point to the same hardware
2924 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2925 * share the same struct clk_core object.
2927 * Returns false otherwise. Note that two NULL clks are treated as matching.
2929 bool clk_is_match(const struct clk *p, const struct clk *q)
2931 /* trivial case: identical struct clk's or both NULL */
2935 /* true if clk->core pointers match. Avoid dereferencing garbage */
2936 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
2937 if (p->core == q->core)
2942 EXPORT_SYMBOL_GPL(clk_is_match);
2944 /*** debugfs support ***/
2946 #ifdef CONFIG_DEBUG_FS
2947 #include <linux/debugfs.h>
2949 static struct dentry *rootdir;
2950 static int inited = 0;
2951 static DEFINE_MUTEX(clk_debug_lock);
2952 static HLIST_HEAD(clk_debug_list);
2954 static struct hlist_head *orphan_list[] = {
2959 static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
2964 seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu ",
2966 30 - level * 3, c->name,
2967 c->enable_count, c->prepare_count, c->protect_count,
2968 clk_core_get_rate_recalc(c),
2969 clk_core_get_accuracy_recalc(c));
2971 phase = clk_core_get_phase(c);
2973 seq_printf(s, "%5d", phase);
2975 seq_puts(s, "-----");
2977 seq_printf(s, " %6d", clk_core_get_scaled_duty_cycle(c, 100000));
2979 if (c->ops->is_enabled)
2980 seq_printf(s, " %9c\n", clk_core_is_enabled(c) ? 'Y' : 'N');
2981 else if (!c->ops->enable)
2982 seq_printf(s, " %9c\n", 'Y');
2984 seq_printf(s, " %9c\n", '?');
2987 static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
2990 struct clk_core *child;
2992 clk_summary_show_one(s, c, level);
2994 hlist_for_each_entry(child, &c->children, child_node)
2995 clk_summary_show_subtree(s, child, level + 1);
2998 static int clk_summary_show(struct seq_file *s, void *data)
3001 struct hlist_head **lists = (struct hlist_head **)s->private;
3003 seq_puts(s, " enable prepare protect duty hardware\n");
3004 seq_puts(s, " clock count count count rate accuracy phase cycle enable\n");
3005 seq_puts(s, "-------------------------------------------------------------------------------------------------------\n");
3009 for (; *lists; lists++)
3010 hlist_for_each_entry(c, *lists, child_node)
3011 clk_summary_show_subtree(s, c, 0);
3013 clk_prepare_unlock();
3017 DEFINE_SHOW_ATTRIBUTE(clk_summary);
3019 static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
3022 unsigned long min_rate, max_rate;
3024 clk_core_get_boundaries(c, &min_rate, &max_rate);
3026 /* This should be JSON format, i.e. elements separated with a comma */
3027 seq_printf(s, "\"%s\": { ", c->name);
3028 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
3029 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
3030 seq_printf(s, "\"protect_count\": %d,", c->protect_count);
3031 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate_recalc(c));
3032 seq_printf(s, "\"min_rate\": %lu,", min_rate);
3033 seq_printf(s, "\"max_rate\": %lu,", max_rate);
3034 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c));
3035 phase = clk_core_get_phase(c);
3037 seq_printf(s, "\"phase\": %d,", phase);
3038 seq_printf(s, "\"duty_cycle\": %u",
3039 clk_core_get_scaled_duty_cycle(c, 100000));
3042 static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
3044 struct clk_core *child;
3046 clk_dump_one(s, c, level);
3048 hlist_for_each_entry(child, &c->children, child_node) {
3050 clk_dump_subtree(s, child, level + 1);
3056 static int clk_dump_show(struct seq_file *s, void *data)
3059 bool first_node = true;
3060 struct hlist_head **lists = (struct hlist_head **)s->private;
3065 for (; *lists; lists++) {
3066 hlist_for_each_entry(c, *lists, child_node) {
3070 clk_dump_subtree(s, c, 0);
3074 clk_prepare_unlock();
3079 DEFINE_SHOW_ATTRIBUTE(clk_dump);
3081 #undef CLOCK_ALLOW_WRITE_DEBUGFS
3082 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3084 * This can be dangerous, therefore don't provide any real compile time
3085 * configuration option for this feature.
3086 * People who want to use this will need to modify the source code directly.
3088 static int clk_rate_set(void *data, u64 val)
3090 struct clk_core *core = data;
3094 ret = clk_core_set_rate_nolock(core, val);
3095 clk_prepare_unlock();
3100 #define clk_rate_mode 0644
3102 static int clk_prepare_enable_set(void *data, u64 val)
3104 struct clk_core *core = data;
3108 ret = clk_prepare_enable(core->hw->clk);
3110 clk_disable_unprepare(core->hw->clk);
3115 static int clk_prepare_enable_get(void *data, u64 *val)
3117 struct clk_core *core = data;
3119 *val = core->enable_count && core->prepare_count;
3123 DEFINE_DEBUGFS_ATTRIBUTE(clk_prepare_enable_fops, clk_prepare_enable_get,
3124 clk_prepare_enable_set, "%llu\n");
3127 #define clk_rate_set NULL
3128 #define clk_rate_mode 0444
3131 static int clk_rate_get(void *data, u64 *val)
3133 struct clk_core *core = data;
3139 DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, clk_rate_get, clk_rate_set, "%llu\n");
3141 static const struct {
3145 #define ENTRY(f) { f, #f }
3146 ENTRY(CLK_SET_RATE_GATE),
3147 ENTRY(CLK_SET_PARENT_GATE),
3148 ENTRY(CLK_SET_RATE_PARENT),
3149 ENTRY(CLK_IGNORE_UNUSED),
3150 ENTRY(CLK_GET_RATE_NOCACHE),
3151 ENTRY(CLK_SET_RATE_NO_REPARENT),
3152 ENTRY(CLK_GET_ACCURACY_NOCACHE),
3153 ENTRY(CLK_RECALC_NEW_RATES),
3154 ENTRY(CLK_SET_RATE_UNGATE),
3155 ENTRY(CLK_IS_CRITICAL),
3156 ENTRY(CLK_OPS_PARENT_ENABLE),
3157 ENTRY(CLK_DUTY_CYCLE_PARENT),
3161 static int clk_flags_show(struct seq_file *s, void *data)
3163 struct clk_core *core = s->private;
3164 unsigned long flags = core->flags;
3167 for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) {
3168 if (flags & clk_flags[i].flag) {
3169 seq_printf(s, "%s\n", clk_flags[i].name);
3170 flags &= ~clk_flags[i].flag;
3175 seq_printf(s, "0x%lx\n", flags);
3180 DEFINE_SHOW_ATTRIBUTE(clk_flags);
3182 static void possible_parent_show(struct seq_file *s, struct clk_core *core,
3183 unsigned int i, char terminator)
3185 struct clk_core *parent;
3188 * Go through the following options to fetch a parent's name.
3190 * 1. Fetch the registered parent clock and use its name
3191 * 2. Use the global (fallback) name if specified
3192 * 3. Use the local fw_name if provided
3193 * 4. Fetch parent clock's clock-output-name if DT index was set
3195 * This may still fail in some cases, such as when the parent is
3196 * specified directly via a struct clk_hw pointer, but it isn't
3199 parent = clk_core_get_parent_by_index(core, i);
3201 seq_puts(s, parent->name);
3202 else if (core->parents[i].name)
3203 seq_puts(s, core->parents[i].name);
3204 else if (core->parents[i].fw_name)
3205 seq_printf(s, "<%s>(fw)", core->parents[i].fw_name);
3206 else if (core->parents[i].index >= 0)
3208 of_clk_get_parent_name(core->of_node,
3209 core->parents[i].index));
3211 seq_puts(s, "(missing)");
3213 seq_putc(s, terminator);
3216 static int possible_parents_show(struct seq_file *s, void *data)
3218 struct clk_core *core = s->private;
3221 for (i = 0; i < core->num_parents - 1; i++)
3222 possible_parent_show(s, core, i, ' ');
3224 possible_parent_show(s, core, i, '\n');
3228 DEFINE_SHOW_ATTRIBUTE(possible_parents);
3230 static int current_parent_show(struct seq_file *s, void *data)
3232 struct clk_core *core = s->private;
3235 seq_printf(s, "%s\n", core->parent->name);
3239 DEFINE_SHOW_ATTRIBUTE(current_parent);
3241 static int clk_duty_cycle_show(struct seq_file *s, void *data)
3243 struct clk_core *core = s->private;
3244 struct clk_duty *duty = &core->duty;
3246 seq_printf(s, "%u/%u\n", duty->num, duty->den);
3250 DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle);
3252 static int clk_min_rate_show(struct seq_file *s, void *data)
3254 struct clk_core *core = s->private;
3255 unsigned long min_rate, max_rate;
3258 clk_core_get_boundaries(core, &min_rate, &max_rate);
3259 clk_prepare_unlock();
3260 seq_printf(s, "%lu\n", min_rate);
3264 DEFINE_SHOW_ATTRIBUTE(clk_min_rate);
3266 static int clk_max_rate_show(struct seq_file *s, void *data)
3268 struct clk_core *core = s->private;
3269 unsigned long min_rate, max_rate;
3272 clk_core_get_boundaries(core, &min_rate, &max_rate);
3273 clk_prepare_unlock();
3274 seq_printf(s, "%lu\n", max_rate);
3278 DEFINE_SHOW_ATTRIBUTE(clk_max_rate);
3280 static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
3282 struct dentry *root;
3284 if (!core || !pdentry)
3287 root = debugfs_create_dir(core->name, pdentry);
3288 core->dentry = root;
3290 debugfs_create_file("clk_rate", clk_rate_mode, root, core,
3292 debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
3293 debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
3294 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3295 debugfs_create_u32("clk_phase", 0444, root, &core->phase);
3296 debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
3297 debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
3298 debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
3299 debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count);
3300 debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count);
3301 debugfs_create_file("clk_duty_cycle", 0444, root, core,
3302 &clk_duty_cycle_fops);
3303 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3304 debugfs_create_file("clk_prepare_enable", 0644, root, core,
3305 &clk_prepare_enable_fops);
3308 if (core->num_parents > 0)
3309 debugfs_create_file("clk_parent", 0444, root, core,
3310 ¤t_parent_fops);
3312 if (core->num_parents > 1)
3313 debugfs_create_file("clk_possible_parents", 0444, root, core,
3314 &possible_parents_fops);
3316 if (core->ops->debug_init)
3317 core->ops->debug_init(core->hw, core->dentry);
3321 * clk_debug_register - add a clk node to the debugfs clk directory
3322 * @core: the clk being added to the debugfs clk directory
3324 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3325 * initialized. Otherwise it bails out early since the debugfs clk directory
3326 * will be created lazily by clk_debug_init as part of a late_initcall.
3328 static void clk_debug_register(struct clk_core *core)
3330 mutex_lock(&clk_debug_lock);
3331 hlist_add_head(&core->debug_node, &clk_debug_list);
3333 clk_debug_create_one(core, rootdir);
3334 mutex_unlock(&clk_debug_lock);
3338 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3339 * @core: the clk being removed from the debugfs clk directory
3341 * Dynamically removes a clk and all its child nodes from the
3342 * debugfs clk directory if clk->dentry points to debugfs created by
3343 * clk_debug_register in __clk_core_init.
3345 static void clk_debug_unregister(struct clk_core *core)
3347 mutex_lock(&clk_debug_lock);
3348 hlist_del_init(&core->debug_node);
3349 debugfs_remove_recursive(core->dentry);
3350 core->dentry = NULL;
3351 mutex_unlock(&clk_debug_lock);
3355 * clk_debug_init - lazily populate the debugfs clk directory
3357 * clks are often initialized very early during boot before memory can be
3358 * dynamically allocated and well before debugfs is setup. This function
3359 * populates the debugfs clk directory once at boot-time when we know that
3360 * debugfs is setup. It should only be called once at boot-time, all other clks
3361 * added dynamically will be done so with clk_debug_register.
3363 static int __init clk_debug_init(void)
3365 struct clk_core *core;
3367 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3369 pr_warn("********************************************************************\n");
3370 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3372 pr_warn("** WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **\n");
3374 pr_warn("** This means that this kernel is built to expose clk operations **\n");
3375 pr_warn("** such as parent or rate setting, enabling, disabling, etc. **\n");
3376 pr_warn("** to userspace, which may compromise security on your system. **\n");
3378 pr_warn("** If you see this message and you are not debugging the **\n");
3379 pr_warn("** kernel, report this immediately to your vendor! **\n");
3381 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3382 pr_warn("********************************************************************\n");
3385 rootdir = debugfs_create_dir("clk", NULL);
3387 debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
3389 debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
3391 debugfs_create_file("clk_orphan_summary", 0444, rootdir, &orphan_list,
3393 debugfs_create_file("clk_orphan_dump", 0444, rootdir, &orphan_list,
3396 mutex_lock(&clk_debug_lock);
3397 hlist_for_each_entry(core, &clk_debug_list, debug_node)
3398 clk_debug_create_one(core, rootdir);
3401 mutex_unlock(&clk_debug_lock);
3405 late_initcall(clk_debug_init);
3407 static inline void clk_debug_register(struct clk_core *core) { }
3408 static inline void clk_debug_unregister(struct clk_core *core)
3413 static void clk_core_reparent_orphans_nolock(void)
3415 struct clk_core *orphan;
3416 struct hlist_node *tmp2;
3419 * walk the list of orphan clocks and reparent any that newly finds a
3422 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
3423 struct clk_core *parent = __clk_init_parent(orphan);
3426 * We need to use __clk_set_parent_before() and _after() to
3427 * to properly migrate any prepare/enable count of the orphan
3428 * clock. This is important for CLK_IS_CRITICAL clocks, which
3429 * are enabled during init but might not have a parent yet.
3432 /* update the clk tree topology */
3433 __clk_set_parent_before(orphan, parent);
3434 __clk_set_parent_after(orphan, parent, NULL);
3435 __clk_recalc_accuracies(orphan);
3436 __clk_recalc_rates(orphan, 0);
3439 * __clk_init_parent() will set the initial req_rate to
3440 * 0 if the clock doesn't have clk_ops::recalc_rate and
3441 * is an orphan when it's registered.
3443 * 'req_rate' is used by clk_set_rate_range() and
3444 * clk_put() to trigger a clk_set_rate() call whenever
3445 * the boundaries are modified. Let's make sure
3446 * 'req_rate' is set to something non-zero so that
3447 * clk_set_rate_range() doesn't drop the frequency.
3449 orphan->req_rate = orphan->rate;
3455 * __clk_core_init - initialize the data structures in a struct clk_core
3456 * @core: clk_core being initialized
3458 * Initializes the lists in struct clk_core, queries the hardware for the
3459 * parent and rate and sets them both.
3461 static int __clk_core_init(struct clk_core *core)
3464 struct clk_core *parent;
3474 * Set hw->core after grabbing the prepare_lock to synchronize with
3475 * callers of clk_core_fill_parent_index() where we treat hw->core
3476 * being NULL as the clk not being registered yet. This is crucial so
3477 * that clks aren't parented until their parent is fully registered.
3479 core->hw->core = core;
3481 ret = clk_pm_runtime_get(core);
3485 /* check to see if a clock with this name is already registered */
3486 if (clk_core_lookup(core->name)) {
3487 pr_debug("%s: clk %s already initialized\n",
3488 __func__, core->name);
3493 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
3494 if (core->ops->set_rate &&
3495 !((core->ops->round_rate || core->ops->determine_rate) &&
3496 core->ops->recalc_rate)) {
3497 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3498 __func__, core->name);
3503 if (core->ops->set_parent && !core->ops->get_parent) {
3504 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3505 __func__, core->name);
3510 if (core->num_parents > 1 && !core->ops->get_parent) {
3511 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3512 __func__, core->name);
3517 if (core->ops->set_rate_and_parent &&
3518 !(core->ops->set_parent && core->ops->set_rate)) {
3519 pr_err("%s: %s must implement .set_parent & .set_rate\n",
3520 __func__, core->name);
3526 * optional platform-specific magic
3528 * The .init callback is not used by any of the basic clock types, but
3529 * exists for weird hardware that must perform initialization magic for
3530 * CCF to get an accurate view of clock for any other callbacks. It may
3531 * also be used needs to perform dynamic allocations. Such allocation
3532 * must be freed in the terminate() callback.
3533 * This callback shall not be used to initialize the parameters state,
3534 * such as rate, parent, etc ...
3536 * If it exist, this callback should called before any other callback of
3539 if (core->ops->init) {
3540 ret = core->ops->init(core->hw);
3545 parent = core->parent = __clk_init_parent(core);
3548 * Populate core->parent if parent has already been clk_core_init'd. If
3549 * parent has not yet been clk_core_init'd then place clk in the orphan
3550 * list. If clk doesn't have any parents then place it in the root
3553 * Every time a new clk is clk_init'd then we walk the list of orphan
3554 * clocks and re-parent any that are children of the clock currently
3558 hlist_add_head(&core->child_node, &parent->children);
3559 core->orphan = parent->orphan;
3560 } else if (!core->num_parents) {
3561 hlist_add_head(&core->child_node, &clk_root_list);
3562 core->orphan = false;
3564 hlist_add_head(&core->child_node, &clk_orphan_list);
3565 core->orphan = true;
3569 * Set clk's accuracy. The preferred method is to use
3570 * .recalc_accuracy. For simple clocks and lazy developers the default
3571 * fallback is to use the parent's accuracy. If a clock doesn't have a
3572 * parent (or is orphaned) then accuracy is set to zero (perfect
3575 if (core->ops->recalc_accuracy)
3576 core->accuracy = core->ops->recalc_accuracy(core->hw,
3577 clk_core_get_accuracy_no_lock(parent));
3579 core->accuracy = parent->accuracy;
3584 * Set clk's phase by clk_core_get_phase() caching the phase.
3585 * Since a phase is by definition relative to its parent, just
3586 * query the current clock phase, or just assume it's in phase.
3588 phase = clk_core_get_phase(core);
3591 pr_warn("%s: Failed to get phase for clk '%s'\n", __func__,
3597 * Set clk's duty cycle.
3599 clk_core_update_duty_cycle_nolock(core);
3602 * Set clk's rate. The preferred method is to use .recalc_rate. For
3603 * simple clocks and lazy developers the default fallback is to use the
3604 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3605 * then rate is set to zero.
3607 if (core->ops->recalc_rate)
3608 rate = core->ops->recalc_rate(core->hw,
3609 clk_core_get_rate_nolock(parent));
3611 rate = parent->rate;
3614 core->rate = core->req_rate = rate;
3617 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3618 * don't get accidentally disabled when walking the orphan tree and
3619 * reparenting clocks
3621 if (core->flags & CLK_IS_CRITICAL) {
3622 ret = clk_core_prepare(core);
3624 pr_warn("%s: critical clk '%s' failed to prepare\n",
3625 __func__, core->name);
3629 ret = clk_core_enable_lock(core);
3631 pr_warn("%s: critical clk '%s' failed to enable\n",
3632 __func__, core->name);
3633 clk_core_unprepare(core);
3638 clk_core_reparent_orphans_nolock();
3641 kref_init(&core->ref);
3643 clk_pm_runtime_put(core);
3646 hlist_del_init(&core->child_node);
3647 core->hw->core = NULL;
3650 clk_prepare_unlock();
3653 clk_debug_register(core);
3659 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
3660 * @core: clk to add consumer to
3661 * @clk: consumer to link to a clk
3663 static void clk_core_link_consumer(struct clk_core *core, struct clk *clk)
3666 hlist_add_head(&clk->clks_node, &core->clks);
3667 clk_prepare_unlock();
3671 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
3672 * @clk: consumer to unlink
3674 static void clk_core_unlink_consumer(struct clk *clk)
3676 lockdep_assert_held(&prepare_lock);
3677 hlist_del(&clk->clks_node);
3681 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
3682 * @core: clk to allocate a consumer for
3683 * @dev_id: string describing device name
3684 * @con_id: connection ID string on device
3686 * Returns: clk consumer left unlinked from the consumer list
3688 static struct clk *alloc_clk(struct clk_core *core, const char *dev_id,
3693 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3695 return ERR_PTR(-ENOMEM);
3698 clk->dev_id = dev_id;
3699 clk->con_id = kstrdup_const(con_id, GFP_KERNEL);
3700 clk->max_rate = ULONG_MAX;
3706 * free_clk - Free a clk consumer
3707 * @clk: clk consumer to free
3709 * Note, this assumes the clk has been unlinked from the clk_core consumer
3712 static void free_clk(struct clk *clk)
3714 kfree_const(clk->con_id);
3719 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
3721 * @dev: clk consumer device
3722 * @hw: clk_hw associated with the clk being consumed
3723 * @dev_id: string describing device name
3724 * @con_id: connection ID string on device
3726 * This is the main function used to create a clk pointer for use by clk
3727 * consumers. It connects a consumer to the clk_core and clk_hw structures
3728 * used by the framework and clk provider respectively.
3730 struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw,
3731 const char *dev_id, const char *con_id)
3734 struct clk_core *core;
3736 /* This is to allow this function to be chained to others */
3737 if (IS_ERR_OR_NULL(hw))
3738 return ERR_CAST(hw);
3741 clk = alloc_clk(core, dev_id, con_id);
3746 if (!try_module_get(core->owner)) {
3748 return ERR_PTR(-ENOENT);
3751 kref_get(&core->ref);
3752 clk_core_link_consumer(core, clk);
3758 * clk_hw_get_clk - get clk consumer given an clk_hw
3759 * @hw: clk_hw associated with the clk being consumed
3760 * @con_id: connection ID string on device
3762 * Returns: new clk consumer
3763 * This is the function to be used by providers which need
3764 * to get a consumer clk and act on the clock element
3765 * Calls to this function must be balanced with calls clk_put()
3767 struct clk *clk_hw_get_clk(struct clk_hw *hw, const char *con_id)
3769 struct device *dev = hw->core->dev;
3770 const char *name = dev ? dev_name(dev) : NULL;
3772 return clk_hw_create_clk(dev, hw, name, con_id);
3774 EXPORT_SYMBOL(clk_hw_get_clk);
3776 static int clk_cpy_name(const char **dst_p, const char *src, bool must_exist)
3786 *dst_p = dst = kstrdup_const(src, GFP_KERNEL);
3793 static int clk_core_populate_parent_map(struct clk_core *core,
3794 const struct clk_init_data *init)
3796 u8 num_parents = init->num_parents;
3797 const char * const *parent_names = init->parent_names;
3798 const struct clk_hw **parent_hws = init->parent_hws;
3799 const struct clk_parent_data *parent_data = init->parent_data;
3801 struct clk_parent_map *parents, *parent;
3807 * Avoid unnecessary string look-ups of clk_core's possible parents by
3808 * having a cache of names/clk_hw pointers to clk_core pointers.
3810 parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL);
3811 core->parents = parents;
3815 /* Copy everything over because it might be __initdata */
3816 for (i = 0, parent = parents; i < num_parents; i++, parent++) {
3819 /* throw a WARN if any entries are NULL */
3820 WARN(!parent_names[i],
3821 "%s: invalid NULL in %s's .parent_names\n",
3822 __func__, core->name);
3823 ret = clk_cpy_name(&parent->name, parent_names[i],
3825 } else if (parent_data) {
3826 parent->hw = parent_data[i].hw;
3827 parent->index = parent_data[i].index;
3828 ret = clk_cpy_name(&parent->fw_name,
3829 parent_data[i].fw_name, false);
3831 ret = clk_cpy_name(&parent->name,
3832 parent_data[i].name,
3834 } else if (parent_hws) {
3835 parent->hw = parent_hws[i];
3838 WARN(1, "Must specify parents if num_parents > 0\n");
3843 kfree_const(parents[i].name);
3844 kfree_const(parents[i].fw_name);
3855 static void clk_core_free_parent_map(struct clk_core *core)
3857 int i = core->num_parents;
3859 if (!core->num_parents)
3863 kfree_const(core->parents[i].name);
3864 kfree_const(core->parents[i].fw_name);
3867 kfree(core->parents);
3871 __clk_register(struct device *dev, struct device_node *np, struct clk_hw *hw)
3874 struct clk_core *core;
3875 const struct clk_init_data *init = hw->init;
3878 * The init data is not supposed to be used outside of registration path.
3879 * Set it to NULL so that provider drivers can't use it either and so that
3880 * we catch use of hw->init early on in the core.
3884 core = kzalloc(sizeof(*core), GFP_KERNEL);
3890 core->name = kstrdup_const(init->name, GFP_KERNEL);
3896 if (WARN_ON(!init->ops)) {
3900 core->ops = init->ops;
3902 if (dev && pm_runtime_enabled(dev))
3903 core->rpm_enabled = true;
3906 if (dev && dev->driver)
3907 core->owner = dev->driver->owner;
3909 core->flags = init->flags;
3910 core->num_parents = init->num_parents;
3912 core->max_rate = ULONG_MAX;
3914 ret = clk_core_populate_parent_map(core, init);
3918 INIT_HLIST_HEAD(&core->clks);
3921 * Don't call clk_hw_create_clk() here because that would pin the
3922 * provider module to itself and prevent it from ever being removed.
3924 hw->clk = alloc_clk(core, NULL, NULL);
3925 if (IS_ERR(hw->clk)) {
3926 ret = PTR_ERR(hw->clk);
3927 goto fail_create_clk;
3930 clk_core_link_consumer(core, hw->clk);
3932 ret = __clk_core_init(core);
3937 clk_core_unlink_consumer(hw->clk);
3938 clk_prepare_unlock();
3944 clk_core_free_parent_map(core);
3947 kfree_const(core->name);
3951 return ERR_PTR(ret);
3955 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
3956 * @dev: Device to get device node of
3958 * Return: device node pointer of @dev, or the device node pointer of
3959 * @dev->parent if dev doesn't have a device node, or NULL if neither
3960 * @dev or @dev->parent have a device node.
3962 static struct device_node *dev_or_parent_of_node(struct device *dev)
3964 struct device_node *np;
3969 np = dev_of_node(dev);
3971 np = dev_of_node(dev->parent);
3977 * clk_register - allocate a new clock, register it and return an opaque cookie
3978 * @dev: device that is registering this clock
3979 * @hw: link to hardware-specific clock data
3981 * clk_register is the *deprecated* interface for populating the clock tree with
3982 * new clock nodes. Use clk_hw_register() instead.
3984 * Returns: a pointer to the newly allocated struct clk which
3985 * cannot be dereferenced by driver code but may be used in conjunction with the
3986 * rest of the clock API. In the event of an error clk_register will return an
3987 * error code; drivers must test for an error code after calling clk_register.
3989 struct clk *clk_register(struct device *dev, struct clk_hw *hw)
3991 return __clk_register(dev, dev_or_parent_of_node(dev), hw);
3993 EXPORT_SYMBOL_GPL(clk_register);
3996 * clk_hw_register - register a clk_hw and return an error code
3997 * @dev: device that is registering this clock
3998 * @hw: link to hardware-specific clock data
4000 * clk_hw_register is the primary interface for populating the clock tree with
4001 * new clock nodes. It returns an integer equal to zero indicating success or
4002 * less than zero indicating failure. Drivers must test for an error code after
4003 * calling clk_hw_register().
4005 int clk_hw_register(struct device *dev, struct clk_hw *hw)
4007 return PTR_ERR_OR_ZERO(__clk_register(dev, dev_or_parent_of_node(dev),
4010 EXPORT_SYMBOL_GPL(clk_hw_register);
4013 * of_clk_hw_register - register a clk_hw and return an error code
4014 * @node: device_node of device that is registering this clock
4015 * @hw: link to hardware-specific clock data
4017 * of_clk_hw_register() is the primary interface for populating the clock tree
4018 * with new clock nodes when a struct device is not available, but a struct
4019 * device_node is. It returns an integer equal to zero indicating success or
4020 * less than zero indicating failure. Drivers must test for an error code after
4021 * calling of_clk_hw_register().
4023 int of_clk_hw_register(struct device_node *node, struct clk_hw *hw)
4025 return PTR_ERR_OR_ZERO(__clk_register(NULL, node, hw));
4027 EXPORT_SYMBOL_GPL(of_clk_hw_register);
4029 /* Free memory allocated for a clock. */
4030 static void __clk_release(struct kref *ref)
4032 struct clk_core *core = container_of(ref, struct clk_core, ref);
4034 lockdep_assert_held(&prepare_lock);
4036 clk_core_free_parent_map(core);
4037 kfree_const(core->name);
4042 * Empty clk_ops for unregistered clocks. These are used temporarily
4043 * after clk_unregister() was called on a clock and until last clock
4044 * consumer calls clk_put() and the struct clk object is freed.
4046 static int clk_nodrv_prepare_enable(struct clk_hw *hw)
4051 static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
4056 static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
4057 unsigned long parent_rate)
4062 static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
4067 static const struct clk_ops clk_nodrv_ops = {
4068 .enable = clk_nodrv_prepare_enable,
4069 .disable = clk_nodrv_disable_unprepare,
4070 .prepare = clk_nodrv_prepare_enable,
4071 .unprepare = clk_nodrv_disable_unprepare,
4072 .set_rate = clk_nodrv_set_rate,
4073 .set_parent = clk_nodrv_set_parent,
4076 static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
4077 struct clk_core *target)
4080 struct clk_core *child;
4082 for (i = 0; i < root->num_parents; i++)
4083 if (root->parents[i].core == target)
4084 root->parents[i].core = NULL;
4086 hlist_for_each_entry(child, &root->children, child_node)
4087 clk_core_evict_parent_cache_subtree(child, target);
4090 /* Remove this clk from all parent caches */
4091 static void clk_core_evict_parent_cache(struct clk_core *core)
4093 struct hlist_head **lists;
4094 struct clk_core *root;
4096 lockdep_assert_held(&prepare_lock);
4098 for (lists = all_lists; *lists; lists++)
4099 hlist_for_each_entry(root, *lists, child_node)
4100 clk_core_evict_parent_cache_subtree(root, core);
4105 * clk_unregister - unregister a currently registered clock
4106 * @clk: clock to unregister
4108 void clk_unregister(struct clk *clk)
4110 unsigned long flags;
4111 const struct clk_ops *ops;
4113 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
4116 clk_debug_unregister(clk->core);
4120 ops = clk->core->ops;
4121 if (ops == &clk_nodrv_ops) {
4122 pr_err("%s: unregistered clock: %s\n", __func__,
4127 * Assign empty clock ops for consumers that might still hold
4128 * a reference to this clock.
4130 flags = clk_enable_lock();
4131 clk->core->ops = &clk_nodrv_ops;
4132 clk_enable_unlock(flags);
4135 ops->terminate(clk->core->hw);
4137 if (!hlist_empty(&clk->core->children)) {
4138 struct clk_core *child;
4139 struct hlist_node *t;
4141 /* Reparent all children to the orphan list. */
4142 hlist_for_each_entry_safe(child, t, &clk->core->children,
4144 clk_core_set_parent_nolock(child, NULL);
4147 clk_core_evict_parent_cache(clk->core);
4149 hlist_del_init(&clk->core->child_node);
4151 if (clk->core->prepare_count)
4152 pr_warn("%s: unregistering prepared clock: %s\n",
4153 __func__, clk->core->name);
4155 if (clk->core->protect_count)
4156 pr_warn("%s: unregistering protected clock: %s\n",
4157 __func__, clk->core->name);
4159 kref_put(&clk->core->ref, __clk_release);
4162 clk_prepare_unlock();
4164 EXPORT_SYMBOL_GPL(clk_unregister);
4167 * clk_hw_unregister - unregister a currently registered clk_hw
4168 * @hw: hardware-specific clock data to unregister
4170 void clk_hw_unregister(struct clk_hw *hw)
4172 clk_unregister(hw->clk);
4174 EXPORT_SYMBOL_GPL(clk_hw_unregister);
4176 static void devm_clk_unregister_cb(struct device *dev, void *res)
4178 clk_unregister(*(struct clk **)res);
4181 static void devm_clk_hw_unregister_cb(struct device *dev, void *res)
4183 clk_hw_unregister(*(struct clk_hw **)res);
4187 * devm_clk_register - resource managed clk_register()
4188 * @dev: device that is registering this clock
4189 * @hw: link to hardware-specific clock data
4191 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4193 * Clocks returned from this function are automatically clk_unregister()ed on
4194 * driver detach. See clk_register() for more information.
4196 struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
4201 clkp = devres_alloc(devm_clk_unregister_cb, sizeof(*clkp), GFP_KERNEL);
4203 return ERR_PTR(-ENOMEM);
4205 clk = clk_register(dev, hw);
4208 devres_add(dev, clkp);
4215 EXPORT_SYMBOL_GPL(devm_clk_register);
4218 * devm_clk_hw_register - resource managed clk_hw_register()
4219 * @dev: device that is registering this clock
4220 * @hw: link to hardware-specific clock data
4222 * Managed clk_hw_register(). Clocks registered by this function are
4223 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4224 * for more information.
4226 int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
4228 struct clk_hw **hwp;
4231 hwp = devres_alloc(devm_clk_hw_unregister_cb, sizeof(*hwp), GFP_KERNEL);
4235 ret = clk_hw_register(dev, hw);
4238 devres_add(dev, hwp);
4245 EXPORT_SYMBOL_GPL(devm_clk_hw_register);
4247 static int devm_clk_match(struct device *dev, void *res, void *data)
4249 struct clk *c = res;
4255 static int devm_clk_hw_match(struct device *dev, void *res, void *data)
4257 struct clk_hw *hw = res;
4265 * devm_clk_unregister - resource managed clk_unregister()
4266 * @dev: device that is unregistering the clock data
4267 * @clk: clock to unregister
4269 * Deallocate a clock allocated with devm_clk_register(). Normally
4270 * this function will not need to be called and the resource management
4271 * code will ensure that the resource is freed.
4273 void devm_clk_unregister(struct device *dev, struct clk *clk)
4275 WARN_ON(devres_release(dev, devm_clk_unregister_cb, devm_clk_match, clk));
4277 EXPORT_SYMBOL_GPL(devm_clk_unregister);
4280 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
4281 * @dev: device that is unregistering the hardware-specific clock data
4282 * @hw: link to hardware-specific clock data
4284 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
4285 * this function will not need to be called and the resource management
4286 * code will ensure that the resource is freed.
4288 void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw)
4290 WARN_ON(devres_release(dev, devm_clk_hw_unregister_cb, devm_clk_hw_match,
4293 EXPORT_SYMBOL_GPL(devm_clk_hw_unregister);
4295 static void devm_clk_release(struct device *dev, void *res)
4297 clk_put(*(struct clk **)res);
4301 * devm_clk_hw_get_clk - resource managed clk_hw_get_clk()
4302 * @dev: device that is registering this clock
4303 * @hw: clk_hw associated with the clk being consumed
4304 * @con_id: connection ID string on device
4306 * Managed clk_hw_get_clk(). Clocks got with this function are
4307 * automatically clk_put() on driver detach. See clk_put()
4308 * for more information.
4310 struct clk *devm_clk_hw_get_clk(struct device *dev, struct clk_hw *hw,
4316 /* This should not happen because it would mean we have drivers
4317 * passing around clk_hw pointers instead of having the caller use
4318 * proper clk_get() style APIs
4320 WARN_ON_ONCE(dev != hw->core->dev);
4322 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
4324 return ERR_PTR(-ENOMEM);
4326 clk = clk_hw_get_clk(hw, con_id);
4329 devres_add(dev, clkp);
4336 EXPORT_SYMBOL_GPL(devm_clk_hw_get_clk);
4342 void __clk_put(struct clk *clk)
4344 struct module *owner;
4346 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
4352 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4353 * given user should be balanced with calls to clk_rate_exclusive_put()
4354 * and by that same consumer
4356 if (WARN_ON(clk->exclusive_count)) {
4357 /* We voiced our concern, let's sanitize the situation */
4358 clk->core->protect_count -= (clk->exclusive_count - 1);
4359 clk_core_rate_unprotect(clk->core);
4360 clk->exclusive_count = 0;
4363 hlist_del(&clk->clks_node);
4364 if (clk->min_rate > clk->core->req_rate ||
4365 clk->max_rate < clk->core->req_rate)
4366 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
4368 owner = clk->core->owner;
4369 kref_put(&clk->core->ref, __clk_release);
4371 clk_prepare_unlock();
4378 /*** clk rate change notifiers ***/
4381 * clk_notifier_register - add a clk rate change notifier
4382 * @clk: struct clk * to watch
4383 * @nb: struct notifier_block * with callback info
4385 * Request notification when clk's rate changes. This uses an SRCU
4386 * notifier because we want it to block and notifier unregistrations are
4387 * uncommon. The callbacks associated with the notifier must not
4388 * re-enter into the clk framework by calling any top-level clk APIs;
4389 * this will cause a nested prepare_lock mutex.
4391 * In all notification cases (pre, post and abort rate change) the original
4392 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4393 * and the new frequency is passed via struct clk_notifier_data.new_rate.
4395 * clk_notifier_register() must be called from non-atomic context.
4396 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4397 * allocation failure; otherwise, passes along the return value of
4398 * srcu_notifier_chain_register().
4400 int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
4402 struct clk_notifier *cn;
4410 /* search the list of notifiers for this clk */
4411 list_for_each_entry(cn, &clk_notifier_list, node)
4415 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4416 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
4421 srcu_init_notifier_head(&cn->notifier_head);
4423 list_add(&cn->node, &clk_notifier_list);
4426 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
4428 clk->core->notifier_count++;
4431 clk_prepare_unlock();
4435 EXPORT_SYMBOL_GPL(clk_notifier_register);
4438 * clk_notifier_unregister - remove a clk rate change notifier
4439 * @clk: struct clk *
4440 * @nb: struct notifier_block * with callback info
4442 * Request no further notification for changes to 'clk' and frees memory
4443 * allocated in clk_notifier_register.
4445 * Returns -EINVAL if called with null arguments; otherwise, passes
4446 * along the return value of srcu_notifier_chain_unregister().
4448 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
4450 struct clk_notifier *cn;
4458 list_for_each_entry(cn, &clk_notifier_list, node) {
4459 if (cn->clk == clk) {
4460 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
4462 clk->core->notifier_count--;
4464 /* XXX the notifier code should handle this better */
4465 if (!cn->notifier_head.head) {
4466 srcu_cleanup_notifier_head(&cn->notifier_head);
4467 list_del(&cn->node);
4474 clk_prepare_unlock();
4478 EXPORT_SYMBOL_GPL(clk_notifier_unregister);
4480 struct clk_notifier_devres {
4482 struct notifier_block *nb;
4485 static void devm_clk_notifier_release(struct device *dev, void *res)
4487 struct clk_notifier_devres *devres = res;
4489 clk_notifier_unregister(devres->clk, devres->nb);
4492 int devm_clk_notifier_register(struct device *dev, struct clk *clk,
4493 struct notifier_block *nb)
4495 struct clk_notifier_devres *devres;
4498 devres = devres_alloc(devm_clk_notifier_release,
4499 sizeof(*devres), GFP_KERNEL);
4504 ret = clk_notifier_register(clk, nb);
4509 devres_free(devres);
4514 EXPORT_SYMBOL_GPL(devm_clk_notifier_register);
4517 static void clk_core_reparent_orphans(void)
4520 clk_core_reparent_orphans_nolock();
4521 clk_prepare_unlock();
4525 * struct of_clk_provider - Clock provider registration structure
4526 * @link: Entry in global list of clock providers
4527 * @node: Pointer to device tree node of clock provider
4528 * @get: Get clock callback. Returns NULL or a struct clk for the
4529 * given clock specifier
4530 * @get_hw: Get clk_hw callback. Returns NULL, ERR_PTR or a
4531 * struct clk_hw for the given clock specifier
4532 * @data: context pointer to be passed into @get callback
4534 struct of_clk_provider {
4535 struct list_head link;
4537 struct device_node *node;
4538 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
4539 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
4543 extern struct of_device_id __clk_of_table;
4544 static const struct of_device_id __clk_of_table_sentinel
4545 __used __section("__clk_of_table_end");
4547 static LIST_HEAD(of_clk_providers);
4548 static DEFINE_MUTEX(of_clk_mutex);
4550 struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
4555 EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
4557 struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
4561 EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
4563 struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
4565 struct clk_onecell_data *clk_data = data;
4566 unsigned int idx = clkspec->args[0];
4568 if (idx >= clk_data->clk_num) {
4569 pr_err("%s: invalid clock index %u\n", __func__, idx);
4570 return ERR_PTR(-EINVAL);
4573 return clk_data->clks[idx];
4575 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
4578 of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
4580 struct clk_hw_onecell_data *hw_data = data;
4581 unsigned int idx = clkspec->args[0];
4583 if (idx >= hw_data->num) {
4584 pr_err("%s: invalid index %u\n", __func__, idx);
4585 return ERR_PTR(-EINVAL);
4588 return hw_data->hws[idx];
4590 EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
4593 * of_clk_add_provider() - Register a clock provider for a node
4594 * @np: Device node pointer associated with clock provider
4595 * @clk_src_get: callback for decoding clock
4596 * @data: context pointer for @clk_src_get callback.
4598 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
4600 int of_clk_add_provider(struct device_node *np,
4601 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
4605 struct of_clk_provider *cp;
4611 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4615 cp->node = of_node_get(np);
4617 cp->get = clk_src_get;
4619 mutex_lock(&of_clk_mutex);
4620 list_add(&cp->link, &of_clk_providers);
4621 mutex_unlock(&of_clk_mutex);
4622 pr_debug("Added clock from %pOF\n", np);
4624 clk_core_reparent_orphans();
4626 ret = of_clk_set_defaults(np, true);
4628 of_clk_del_provider(np);
4630 fwnode_dev_initialized(&np->fwnode, true);
4634 EXPORT_SYMBOL_GPL(of_clk_add_provider);
4637 * of_clk_add_hw_provider() - Register a clock provider for a node
4638 * @np: Device node pointer associated with clock provider
4639 * @get: callback for decoding clk_hw
4640 * @data: context pointer for @get callback.
4642 int of_clk_add_hw_provider(struct device_node *np,
4643 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4647 struct of_clk_provider *cp;
4653 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4657 cp->node = of_node_get(np);
4661 mutex_lock(&of_clk_mutex);
4662 list_add(&cp->link, &of_clk_providers);
4663 mutex_unlock(&of_clk_mutex);
4664 pr_debug("Added clk_hw provider from %pOF\n", np);
4666 clk_core_reparent_orphans();
4668 ret = of_clk_set_defaults(np, true);
4670 of_clk_del_provider(np);
4672 fwnode_dev_initialized(&np->fwnode, true);
4676 EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
4678 static void devm_of_clk_release_provider(struct device *dev, void *res)
4680 of_clk_del_provider(*(struct device_node **)res);
4684 * We allow a child device to use its parent device as the clock provider node
4685 * for cases like MFD sub-devices where the child device driver wants to use
4686 * devm_*() APIs but not list the device in DT as a sub-node.
4688 static struct device_node *get_clk_provider_node(struct device *dev)
4690 struct device_node *np, *parent_np;
4693 parent_np = dev->parent ? dev->parent->of_node : NULL;
4695 if (!of_find_property(np, "#clock-cells", NULL))
4696 if (of_find_property(parent_np, "#clock-cells", NULL))
4703 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
4704 * @dev: Device acting as the clock provider (used for DT node and lifetime)
4705 * @get: callback for decoding clk_hw
4706 * @data: context pointer for @get callback
4708 * Registers clock provider for given device's node. If the device has no DT
4709 * node or if the device node lacks of clock provider information (#clock-cells)
4710 * then the parent device's node is scanned for this information. If parent node
4711 * has the #clock-cells then it is used in registration. Provider is
4712 * automatically released at device exit.
4714 * Return: 0 on success or an errno on failure.
4716 int devm_of_clk_add_hw_provider(struct device *dev,
4717 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4721 struct device_node **ptr, *np;
4724 ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr),
4729 np = get_clk_provider_node(dev);
4730 ret = of_clk_add_hw_provider(np, get, data);
4733 devres_add(dev, ptr);
4740 EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider);
4743 * of_clk_del_provider() - Remove a previously registered clock provider
4744 * @np: Device node pointer associated with clock provider
4746 void of_clk_del_provider(struct device_node *np)
4748 struct of_clk_provider *cp;
4753 mutex_lock(&of_clk_mutex);
4754 list_for_each_entry(cp, &of_clk_providers, link) {
4755 if (cp->node == np) {
4756 list_del(&cp->link);
4757 fwnode_dev_initialized(&np->fwnode, false);
4758 of_node_put(cp->node);
4763 mutex_unlock(&of_clk_mutex);
4765 EXPORT_SYMBOL_GPL(of_clk_del_provider);
4767 static int devm_clk_provider_match(struct device *dev, void *res, void *data)
4769 struct device_node **np = res;
4771 if (WARN_ON(!np || !*np))
4778 * devm_of_clk_del_provider() - Remove clock provider registered using devm
4779 * @dev: Device to whose lifetime the clock provider was bound
4781 void devm_of_clk_del_provider(struct device *dev)
4784 struct device_node *np = get_clk_provider_node(dev);
4786 ret = devres_release(dev, devm_of_clk_release_provider,
4787 devm_clk_provider_match, np);
4791 EXPORT_SYMBOL(devm_of_clk_del_provider);
4794 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
4795 * @np: device node to parse clock specifier from
4796 * @index: index of phandle to parse clock out of. If index < 0, @name is used
4797 * @name: clock name to find and parse. If name is NULL, the index is used
4798 * @out_args: Result of parsing the clock specifier
4800 * Parses a device node's "clocks" and "clock-names" properties to find the
4801 * phandle and cells for the index or name that is desired. The resulting clock
4802 * specifier is placed into @out_args, or an errno is returned when there's a
4803 * parsing error. The @index argument is ignored if @name is non-NULL.
4807 * phandle1: clock-controller@1 {
4808 * #clock-cells = <2>;
4811 * phandle2: clock-controller@2 {
4812 * #clock-cells = <1>;
4815 * clock-consumer@3 {
4816 * clocks = <&phandle1 1 2 &phandle2 3>;
4817 * clock-names = "name1", "name2";
4820 * To get a device_node for `clock-controller@2' node you may call this
4821 * function a few different ways:
4823 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
4824 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
4825 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
4827 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
4828 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
4829 * the "clock-names" property of @np.
4831 static int of_parse_clkspec(const struct device_node *np, int index,
4832 const char *name, struct of_phandle_args *out_args)
4836 /* Walk up the tree of devices looking for a clock property that matches */
4839 * For named clocks, first look up the name in the
4840 * "clock-names" property. If it cannot be found, then index
4841 * will be an error code and of_parse_phandle_with_args() will
4845 index = of_property_match_string(np, "clock-names", name);
4846 ret = of_parse_phandle_with_args(np, "clocks", "#clock-cells",
4850 if (name && index >= 0)
4854 * No matching clock found on this node. If the parent node
4855 * has a "clock-ranges" property, then we can try one of its
4859 if (np && !of_get_property(np, "clock-ranges", NULL))
4867 static struct clk_hw *
4868 __of_clk_get_hw_from_provider(struct of_clk_provider *provider,
4869 struct of_phandle_args *clkspec)
4873 if (provider->get_hw)
4874 return provider->get_hw(clkspec, provider->data);
4876 clk = provider->get(clkspec, provider->data);
4878 return ERR_CAST(clk);
4879 return __clk_get_hw(clk);
4882 static struct clk_hw *
4883 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
4885 struct of_clk_provider *provider;
4886 struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER);
4889 return ERR_PTR(-EINVAL);
4891 mutex_lock(&of_clk_mutex);
4892 list_for_each_entry(provider, &of_clk_providers, link) {
4893 if (provider->node == clkspec->np) {
4894 hw = __of_clk_get_hw_from_provider(provider, clkspec);
4899 mutex_unlock(&of_clk_mutex);
4905 * of_clk_get_from_provider() - Lookup a clock from a clock provider
4906 * @clkspec: pointer to a clock specifier data structure
4908 * This function looks up a struct clk from the registered list of clock
4909 * providers, an input is a clock specifier data structure as returned
4910 * from the of_parse_phandle_with_args() function call.
4912 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
4914 struct clk_hw *hw = of_clk_get_hw_from_clkspec(clkspec);
4916 return clk_hw_create_clk(NULL, hw, NULL, __func__);
4918 EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
4920 struct clk_hw *of_clk_get_hw(struct device_node *np, int index,
4925 struct of_phandle_args clkspec;
4927 ret = of_parse_clkspec(np, index, con_id, &clkspec);
4929 return ERR_PTR(ret);
4931 hw = of_clk_get_hw_from_clkspec(&clkspec);
4932 of_node_put(clkspec.np);
4937 static struct clk *__of_clk_get(struct device_node *np,
4938 int index, const char *dev_id,
4941 struct clk_hw *hw = of_clk_get_hw(np, index, con_id);
4943 return clk_hw_create_clk(NULL, hw, dev_id, con_id);
4946 struct clk *of_clk_get(struct device_node *np, int index)
4948 return __of_clk_get(np, index, np->full_name, NULL);
4950 EXPORT_SYMBOL(of_clk_get);
4953 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
4954 * @np: pointer to clock consumer node
4955 * @name: name of consumer's clock input, or NULL for the first clock reference
4957 * This function parses the clocks and clock-names properties,
4958 * and uses them to look up the struct clk from the registered list of clock
4961 struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
4964 return ERR_PTR(-ENOENT);
4966 return __of_clk_get(np, 0, np->full_name, name);
4968 EXPORT_SYMBOL(of_clk_get_by_name);
4971 * of_clk_get_parent_count() - Count the number of clocks a device node has
4972 * @np: device node to count
4974 * Returns: The number of clocks that are possible parents of this node
4976 unsigned int of_clk_get_parent_count(const struct device_node *np)
4980 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
4986 EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
4988 const char *of_clk_get_parent_name(const struct device_node *np, int index)
4990 struct of_phandle_args clkspec;
4991 struct property *prop;
4992 const char *clk_name;
4999 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
5004 index = clkspec.args_count ? clkspec.args[0] : 0;
5007 /* if there is an indices property, use it to transfer the index
5008 * specified into an array offset for the clock-output-names property.
5010 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
5017 /* We went off the end of 'clock-indices' without finding it */
5021 if (of_property_read_string_index(clkspec.np, "clock-output-names",
5025 * Best effort to get the name if the clock has been
5026 * registered with the framework. If the clock isn't
5027 * registered, we return the node name as the name of
5028 * the clock as long as #clock-cells = 0.
5030 clk = of_clk_get_from_provider(&clkspec);
5032 if (clkspec.args_count == 0)
5033 clk_name = clkspec.np->name;
5037 clk_name = __clk_get_name(clk);
5043 of_node_put(clkspec.np);
5046 EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
5049 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
5051 * @np: Device node pointer associated with clock provider
5052 * @parents: pointer to char array that hold the parents' names
5053 * @size: size of the @parents array
5055 * Return: number of parents for the clock node.
5057 int of_clk_parent_fill(struct device_node *np, const char **parents,
5062 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
5067 EXPORT_SYMBOL_GPL(of_clk_parent_fill);
5069 struct clock_provider {
5070 void (*clk_init_cb)(struct device_node *);
5071 struct device_node *np;
5072 struct list_head node;
5076 * This function looks for a parent clock. If there is one, then it
5077 * checks that the provider for this parent clock was initialized, in
5078 * this case the parent clock will be ready.
5080 static int parent_ready(struct device_node *np)
5085 struct clk *clk = of_clk_get(np, i);
5087 /* this parent is ready we can check the next one */
5094 /* at least one parent is not ready, we exit now */
5095 if (PTR_ERR(clk) == -EPROBE_DEFER)
5099 * Here we make assumption that the device tree is
5100 * written correctly. So an error means that there is
5101 * no more parent. As we didn't exit yet, then the
5102 * previous parent are ready. If there is no clock
5103 * parent, no need to wait for them, then we can
5104 * consider their absence as being ready
5111 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
5112 * @np: Device node pointer associated with clock provider
5113 * @index: clock index
5114 * @flags: pointer to top-level framework flags
5116 * Detects if the clock-critical property exists and, if so, sets the
5117 * corresponding CLK_IS_CRITICAL flag.
5119 * Do not use this function. It exists only for legacy Device Tree
5120 * bindings, such as the one-clock-per-node style that are outdated.
5121 * Those bindings typically put all clock data into .dts and the Linux
5122 * driver has no clock data, thus making it impossible to set this flag
5123 * correctly from the driver. Only those drivers may call
5124 * of_clk_detect_critical from their setup functions.
5126 * Return: error code or zero on success
5128 int of_clk_detect_critical(struct device_node *np, int index,
5129 unsigned long *flags)
5131 struct property *prop;
5138 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
5140 *flags |= CLK_IS_CRITICAL;
5146 * of_clk_init() - Scan and init clock providers from the DT
5147 * @matches: array of compatible values and init functions for providers.
5149 * This function scans the device tree for matching clock providers
5150 * and calls their initialization functions. It also does it by trying
5151 * to follow the dependencies.
5153 void __init of_clk_init(const struct of_device_id *matches)
5155 const struct of_device_id *match;
5156 struct device_node *np;
5157 struct clock_provider *clk_provider, *next;
5160 LIST_HEAD(clk_provider_list);
5163 matches = &__clk_of_table;
5165 /* First prepare the list of the clocks providers */
5166 for_each_matching_node_and_match(np, matches, &match) {
5167 struct clock_provider *parent;
5169 if (!of_device_is_available(np))
5172 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
5174 list_for_each_entry_safe(clk_provider, next,
5175 &clk_provider_list, node) {
5176 list_del(&clk_provider->node);
5177 of_node_put(clk_provider->np);
5178 kfree(clk_provider);
5184 parent->clk_init_cb = match->data;
5185 parent->np = of_node_get(np);
5186 list_add_tail(&parent->node, &clk_provider_list);
5189 while (!list_empty(&clk_provider_list)) {
5190 is_init_done = false;
5191 list_for_each_entry_safe(clk_provider, next,
5192 &clk_provider_list, node) {
5193 if (force || parent_ready(clk_provider->np)) {
5195 /* Don't populate platform devices */
5196 of_node_set_flag(clk_provider->np,
5199 clk_provider->clk_init_cb(clk_provider->np);
5200 of_clk_set_defaults(clk_provider->np, true);
5202 list_del(&clk_provider->node);
5203 of_node_put(clk_provider->np);
5204 kfree(clk_provider);
5205 is_init_done = true;
5210 * We didn't manage to initialize any of the
5211 * remaining providers during the last loop, so now we
5212 * initialize all the remaining ones unconditionally
5213 * in case the clock parent was not mandatory