1 // SPDX-License-Identifier: GPL-2.0
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 const 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 parent = clk_core_get(core, index);
429 if (PTR_ERR(parent) == -ENOENT && entry->name)
430 parent = clk_core_lookup(entry->name);
434 * We have a direct reference but it isn't registered yet?
435 * Orphan it and let clk_reparent() update the orphan status
436 * when the parent is registered.
439 parent = ERR_PTR(-EPROBE_DEFER);
441 /* Only cache it if it's not an error */
443 entry->core = parent;
446 static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
449 if (!core || index >= core->num_parents || !core->parents)
452 if (!core->parents[index].core)
453 clk_core_fill_parent_index(core, index);
455 return core->parents[index].core;
459 clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
461 struct clk_core *parent;
463 parent = clk_core_get_parent_by_index(hw->core, index);
465 return !parent ? NULL : parent->hw;
467 EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
469 unsigned int __clk_get_enable_count(struct clk *clk)
471 return !clk ? 0 : clk->core->enable_count;
474 static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
479 if (!core->num_parents || core->parent)
483 * Clk must have a parent because num_parents > 0 but the parent isn't
484 * known yet. Best to return 0 as the rate of this clk until we can
485 * properly recalc the rate based on the parent's rate.
490 unsigned long clk_hw_get_rate(const struct clk_hw *hw)
492 return clk_core_get_rate_nolock(hw->core);
494 EXPORT_SYMBOL_GPL(clk_hw_get_rate);
496 static unsigned long clk_core_get_accuracy_no_lock(struct clk_core *core)
501 return core->accuracy;
504 unsigned long clk_hw_get_flags(const struct clk_hw *hw)
506 return hw->core->flags;
508 EXPORT_SYMBOL_GPL(clk_hw_get_flags);
510 bool clk_hw_is_prepared(const struct clk_hw *hw)
512 return clk_core_is_prepared(hw->core);
514 EXPORT_SYMBOL_GPL(clk_hw_is_prepared);
516 bool clk_hw_rate_is_protected(const struct clk_hw *hw)
518 return clk_core_rate_is_protected(hw->core);
520 EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected);
522 bool clk_hw_is_enabled(const struct clk_hw *hw)
524 return clk_core_is_enabled(hw->core);
526 EXPORT_SYMBOL_GPL(clk_hw_is_enabled);
528 bool __clk_is_enabled(struct clk *clk)
533 return clk_core_is_enabled(clk->core);
535 EXPORT_SYMBOL_GPL(__clk_is_enabled);
537 static bool mux_is_better_rate(unsigned long rate, unsigned long now,
538 unsigned long best, unsigned long flags)
540 if (flags & CLK_MUX_ROUND_CLOSEST)
541 return abs(now - rate) < abs(best - rate);
543 return now <= rate && now > best;
546 int clk_mux_determine_rate_flags(struct clk_hw *hw,
547 struct clk_rate_request *req,
550 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
551 int i, num_parents, ret;
552 unsigned long best = 0;
553 struct clk_rate_request parent_req = *req;
555 /* if NO_REPARENT flag set, pass through to current parent */
556 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
557 parent = core->parent;
558 if (core->flags & CLK_SET_RATE_PARENT) {
559 ret = __clk_determine_rate(parent ? parent->hw : NULL,
564 best = parent_req.rate;
566 best = clk_core_get_rate_nolock(parent);
568 best = clk_core_get_rate_nolock(core);
574 /* find the parent that can provide the fastest rate <= rate */
575 num_parents = core->num_parents;
576 for (i = 0; i < num_parents; i++) {
577 parent = clk_core_get_parent_by_index(core, i);
581 if (core->flags & CLK_SET_RATE_PARENT) {
583 ret = __clk_determine_rate(parent->hw, &parent_req);
587 parent_req.rate = clk_core_get_rate_nolock(parent);
590 if (mux_is_better_rate(req->rate, parent_req.rate,
592 best_parent = parent;
593 best = parent_req.rate;
602 req->best_parent_hw = best_parent->hw;
603 req->best_parent_rate = best;
608 EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags);
610 struct clk *__clk_lookup(const char *name)
612 struct clk_core *core = clk_core_lookup(name);
614 return !core ? NULL : core->hw->clk;
617 static void clk_core_get_boundaries(struct clk_core *core,
618 unsigned long *min_rate,
619 unsigned long *max_rate)
621 struct clk *clk_user;
623 lockdep_assert_held(&prepare_lock);
625 *min_rate = core->min_rate;
626 *max_rate = core->max_rate;
628 hlist_for_each_entry(clk_user, &core->clks, clks_node)
629 *min_rate = max(*min_rate, clk_user->min_rate);
631 hlist_for_each_entry(clk_user, &core->clks, clks_node)
632 *max_rate = min(*max_rate, clk_user->max_rate);
635 static bool clk_core_check_boundaries(struct clk_core *core,
636 unsigned long min_rate,
637 unsigned long max_rate)
641 lockdep_assert_held(&prepare_lock);
643 if (min_rate > core->max_rate || max_rate < core->min_rate)
646 hlist_for_each_entry(user, &core->clks, clks_node)
647 if (min_rate > user->max_rate || max_rate < user->min_rate)
653 void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
654 unsigned long max_rate)
656 hw->core->min_rate = min_rate;
657 hw->core->max_rate = max_rate;
659 EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
662 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
663 * @hw: mux type clk to determine rate on
664 * @req: rate request, also used to return preferred parent and frequencies
666 * Helper for finding best parent to provide a given frequency. This can be used
667 * directly as a determine_rate callback (e.g. for a mux), or from a more
668 * complex clock that may combine a mux with other operations.
670 * Returns: 0 on success, -EERROR value on error
672 int __clk_mux_determine_rate(struct clk_hw *hw,
673 struct clk_rate_request *req)
675 return clk_mux_determine_rate_flags(hw, req, 0);
677 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
679 int __clk_mux_determine_rate_closest(struct clk_hw *hw,
680 struct clk_rate_request *req)
682 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
684 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
688 static void clk_core_rate_unprotect(struct clk_core *core)
690 lockdep_assert_held(&prepare_lock);
695 if (WARN(core->protect_count == 0,
696 "%s already unprotected\n", core->name))
699 if (--core->protect_count > 0)
702 clk_core_rate_unprotect(core->parent);
705 static int clk_core_rate_nuke_protect(struct clk_core *core)
709 lockdep_assert_held(&prepare_lock);
714 if (core->protect_count == 0)
717 ret = core->protect_count;
718 core->protect_count = 1;
719 clk_core_rate_unprotect(core);
725 * clk_rate_exclusive_put - release exclusivity over clock rate control
726 * @clk: the clk over which the exclusivity is released
728 * clk_rate_exclusive_put() completes a critical section during which a clock
729 * consumer cannot tolerate any other consumer making any operation on the
730 * clock which could result in a rate change or rate glitch. Exclusive clocks
731 * cannot have their rate changed, either directly or indirectly due to changes
732 * further up the parent chain of clocks. As a result, clocks up parent chain
733 * also get under exclusive control of the calling consumer.
735 * If exlusivity is claimed more than once on clock, even by the same consumer,
736 * the rate effectively gets locked as exclusivity can't be preempted.
738 * Calls to clk_rate_exclusive_put() must be balanced with calls to
739 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
742 void clk_rate_exclusive_put(struct clk *clk)
750 * if there is something wrong with this consumer protect count, stop
751 * here before messing with the provider
753 if (WARN_ON(clk->exclusive_count <= 0))
756 clk_core_rate_unprotect(clk->core);
757 clk->exclusive_count--;
759 clk_prepare_unlock();
761 EXPORT_SYMBOL_GPL(clk_rate_exclusive_put);
763 static void clk_core_rate_protect(struct clk_core *core)
765 lockdep_assert_held(&prepare_lock);
770 if (core->protect_count == 0)
771 clk_core_rate_protect(core->parent);
773 core->protect_count++;
776 static void clk_core_rate_restore_protect(struct clk_core *core, int count)
778 lockdep_assert_held(&prepare_lock);
786 clk_core_rate_protect(core);
787 core->protect_count = count;
791 * clk_rate_exclusive_get - get exclusivity over the clk rate control
792 * @clk: the clk over which the exclusity of rate control is requested
794 * clk_rate_exclusive_get() begins a critical section during which a clock
795 * consumer cannot tolerate any other consumer making any operation on the
796 * clock which could result in a rate change or rate glitch. Exclusive clocks
797 * cannot have their rate changed, either directly or indirectly due to changes
798 * further up the parent chain of clocks. As a result, clocks up parent chain
799 * also get under exclusive control of the calling consumer.
801 * If exlusivity is claimed more than once on clock, even by the same consumer,
802 * the rate effectively gets locked as exclusivity can't be preempted.
804 * Calls to clk_rate_exclusive_get() should be balanced with calls to
805 * clk_rate_exclusive_put(). Calls to this function may sleep.
806 * Returns 0 on success, -EERROR otherwise
808 int clk_rate_exclusive_get(struct clk *clk)
814 clk_core_rate_protect(clk->core);
815 clk->exclusive_count++;
816 clk_prepare_unlock();
820 EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);
822 static void clk_core_unprepare(struct clk_core *core)
824 lockdep_assert_held(&prepare_lock);
829 if (WARN(core->prepare_count == 0,
830 "%s already unprepared\n", core->name))
833 if (WARN(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL,
834 "Unpreparing critical %s\n", core->name))
837 if (core->flags & CLK_SET_RATE_GATE)
838 clk_core_rate_unprotect(core);
840 if (--core->prepare_count > 0)
843 WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name);
845 trace_clk_unprepare(core);
847 if (core->ops->unprepare)
848 core->ops->unprepare(core->hw);
850 clk_pm_runtime_put(core);
852 trace_clk_unprepare_complete(core);
853 clk_core_unprepare(core->parent);
856 static void clk_core_unprepare_lock(struct clk_core *core)
859 clk_core_unprepare(core);
860 clk_prepare_unlock();
864 * clk_unprepare - undo preparation of a clock source
865 * @clk: the clk being unprepared
867 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
868 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
869 * if the operation may sleep. One example is a clk which is accessed over
870 * I2c. In the complex case a clk gate operation may require a fast and a slow
871 * part. It is this reason that clk_unprepare and clk_disable are not mutually
872 * exclusive. In fact clk_disable must be called before clk_unprepare.
874 void clk_unprepare(struct clk *clk)
876 if (IS_ERR_OR_NULL(clk))
879 clk_core_unprepare_lock(clk->core);
881 EXPORT_SYMBOL_GPL(clk_unprepare);
883 static int clk_core_prepare(struct clk_core *core)
887 lockdep_assert_held(&prepare_lock);
892 if (core->prepare_count == 0) {
893 ret = clk_pm_runtime_get(core);
897 ret = clk_core_prepare(core->parent);
901 trace_clk_prepare(core);
903 if (core->ops->prepare)
904 ret = core->ops->prepare(core->hw);
906 trace_clk_prepare_complete(core);
912 core->prepare_count++;
915 * CLK_SET_RATE_GATE is a special case of clock protection
916 * Instead of a consumer claiming exclusive rate control, it is
917 * actually the provider which prevents any consumer from making any
918 * operation which could result in a rate change or rate glitch while
919 * the clock is prepared.
921 if (core->flags & CLK_SET_RATE_GATE)
922 clk_core_rate_protect(core);
926 clk_core_unprepare(core->parent);
928 clk_pm_runtime_put(core);
932 static int clk_core_prepare_lock(struct clk_core *core)
937 ret = clk_core_prepare(core);
938 clk_prepare_unlock();
944 * clk_prepare - prepare a clock source
945 * @clk: the clk being prepared
947 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
948 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
949 * operation may sleep. One example is a clk which is accessed over I2c. In
950 * the complex case a clk ungate operation may require a fast and a slow part.
951 * It is this reason that clk_prepare and clk_enable are not mutually
952 * exclusive. In fact clk_prepare must be called before clk_enable.
953 * Returns 0 on success, -EERROR otherwise.
955 int clk_prepare(struct clk *clk)
960 return clk_core_prepare_lock(clk->core);
962 EXPORT_SYMBOL_GPL(clk_prepare);
964 static void clk_core_disable(struct clk_core *core)
966 lockdep_assert_held(&enable_lock);
971 if (WARN(core->enable_count == 0, "%s already disabled\n", core->name))
974 if (WARN(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL,
975 "Disabling critical %s\n", core->name))
978 if (--core->enable_count > 0)
981 trace_clk_disable_rcuidle(core);
983 if (core->ops->disable)
984 core->ops->disable(core->hw);
986 trace_clk_disable_complete_rcuidle(core);
988 clk_core_disable(core->parent);
991 static void clk_core_disable_lock(struct clk_core *core)
995 flags = clk_enable_lock();
996 clk_core_disable(core);
997 clk_enable_unlock(flags);
1001 * clk_disable - gate a clock
1002 * @clk: the clk being gated
1004 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1005 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1006 * clk if the operation is fast and will never sleep. One example is a
1007 * SoC-internal clk which is controlled via simple register writes. In the
1008 * complex case a clk gate operation may require a fast and a slow part. It is
1009 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1010 * In fact clk_disable must be called before clk_unprepare.
1012 void clk_disable(struct clk *clk)
1014 if (IS_ERR_OR_NULL(clk))
1017 clk_core_disable_lock(clk->core);
1019 EXPORT_SYMBOL_GPL(clk_disable);
1021 static int clk_core_enable(struct clk_core *core)
1025 lockdep_assert_held(&enable_lock);
1030 if (WARN(core->prepare_count == 0,
1031 "Enabling unprepared %s\n", core->name))
1034 if (core->enable_count == 0) {
1035 ret = clk_core_enable(core->parent);
1040 trace_clk_enable_rcuidle(core);
1042 if (core->ops->enable)
1043 ret = core->ops->enable(core->hw);
1045 trace_clk_enable_complete_rcuidle(core);
1048 clk_core_disable(core->parent);
1053 core->enable_count++;
1057 static int clk_core_enable_lock(struct clk_core *core)
1059 unsigned long flags;
1062 flags = clk_enable_lock();
1063 ret = clk_core_enable(core);
1064 clk_enable_unlock(flags);
1070 * clk_gate_restore_context - restore context for poweroff
1071 * @hw: the clk_hw pointer of clock whose state is to be restored
1073 * The clock gate restore context function enables or disables
1074 * the gate clocks based on the enable_count. This is done in cases
1075 * where the clock context is lost and based on the enable_count
1076 * the clock either needs to be enabled/disabled. This
1077 * helps restore the state of gate clocks.
1079 void clk_gate_restore_context(struct clk_hw *hw)
1081 struct clk_core *core = hw->core;
1083 if (core->enable_count)
1084 core->ops->enable(hw);
1086 core->ops->disable(hw);
1088 EXPORT_SYMBOL_GPL(clk_gate_restore_context);
1090 static int clk_core_save_context(struct clk_core *core)
1092 struct clk_core *child;
1095 hlist_for_each_entry(child, &core->children, child_node) {
1096 ret = clk_core_save_context(child);
1101 if (core->ops && core->ops->save_context)
1102 ret = core->ops->save_context(core->hw);
1107 static void clk_core_restore_context(struct clk_core *core)
1109 struct clk_core *child;
1111 if (core->ops && core->ops->restore_context)
1112 core->ops->restore_context(core->hw);
1114 hlist_for_each_entry(child, &core->children, child_node)
1115 clk_core_restore_context(child);
1119 * clk_save_context - save clock context for poweroff
1121 * Saves the context of the clock register for powerstates in which the
1122 * contents of the registers will be lost. Occurs deep within the suspend
1123 * code. Returns 0 on success.
1125 int clk_save_context(void)
1127 struct clk_core *clk;
1130 hlist_for_each_entry(clk, &clk_root_list, child_node) {
1131 ret = clk_core_save_context(clk);
1136 hlist_for_each_entry(clk, &clk_orphan_list, child_node) {
1137 ret = clk_core_save_context(clk);
1144 EXPORT_SYMBOL_GPL(clk_save_context);
1147 * clk_restore_context - restore clock context after poweroff
1149 * Restore the saved clock context upon resume.
1152 void clk_restore_context(void)
1154 struct clk_core *core;
1156 hlist_for_each_entry(core, &clk_root_list, child_node)
1157 clk_core_restore_context(core);
1159 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1160 clk_core_restore_context(core);
1162 EXPORT_SYMBOL_GPL(clk_restore_context);
1165 * clk_enable - ungate a clock
1166 * @clk: the clk being ungated
1168 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1169 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1170 * if the operation will never sleep. One example is a SoC-internal clk which
1171 * is controlled via simple register writes. In the complex case a clk ungate
1172 * operation may require a fast and a slow part. It is this reason that
1173 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1174 * must be called before clk_enable. Returns 0 on success, -EERROR
1177 int clk_enable(struct clk *clk)
1182 return clk_core_enable_lock(clk->core);
1184 EXPORT_SYMBOL_GPL(clk_enable);
1187 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
1188 * @clk: clock source
1190 * Returns true if clk_prepare() implicitly enables the clock, effectively
1191 * making clk_enable()/clk_disable() no-ops, false otherwise.
1193 * This is of interest mainly to power management code where actually
1194 * disabling the clock also requires unpreparing it to have any material
1197 * Regardless of the value returned here, the caller must always invoke
1198 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
1201 bool clk_is_enabled_when_prepared(struct clk *clk)
1203 return clk && !(clk->core->ops->enable && clk->core->ops->disable);
1205 EXPORT_SYMBOL_GPL(clk_is_enabled_when_prepared);
1207 static int clk_core_prepare_enable(struct clk_core *core)
1211 ret = clk_core_prepare_lock(core);
1215 ret = clk_core_enable_lock(core);
1217 clk_core_unprepare_lock(core);
1222 static void clk_core_disable_unprepare(struct clk_core *core)
1224 clk_core_disable_lock(core);
1225 clk_core_unprepare_lock(core);
1228 static void __init clk_unprepare_unused_subtree(struct clk_core *core)
1230 struct clk_core *child;
1232 lockdep_assert_held(&prepare_lock);
1234 hlist_for_each_entry(child, &core->children, child_node)
1235 clk_unprepare_unused_subtree(child);
1237 if (core->prepare_count)
1240 if (core->flags & CLK_IGNORE_UNUSED)
1243 if (clk_pm_runtime_get(core))
1246 if (clk_core_is_prepared(core)) {
1247 trace_clk_unprepare(core);
1248 if (core->ops->unprepare_unused)
1249 core->ops->unprepare_unused(core->hw);
1250 else if (core->ops->unprepare)
1251 core->ops->unprepare(core->hw);
1252 trace_clk_unprepare_complete(core);
1255 clk_pm_runtime_put(core);
1258 static void __init clk_disable_unused_subtree(struct clk_core *core)
1260 struct clk_core *child;
1261 unsigned long flags;
1263 lockdep_assert_held(&prepare_lock);
1265 hlist_for_each_entry(child, &core->children, child_node)
1266 clk_disable_unused_subtree(child);
1268 if (core->flags & CLK_OPS_PARENT_ENABLE)
1269 clk_core_prepare_enable(core->parent);
1271 if (clk_pm_runtime_get(core))
1274 flags = clk_enable_lock();
1276 if (core->enable_count)
1279 if (core->flags & CLK_IGNORE_UNUSED)
1283 * some gate clocks have special needs during the disable-unused
1284 * sequence. call .disable_unused if available, otherwise fall
1287 if (clk_core_is_enabled(core)) {
1288 trace_clk_disable(core);
1289 if (core->ops->disable_unused)
1290 core->ops->disable_unused(core->hw);
1291 else if (core->ops->disable)
1292 core->ops->disable(core->hw);
1293 trace_clk_disable_complete(core);
1297 clk_enable_unlock(flags);
1298 clk_pm_runtime_put(core);
1300 if (core->flags & CLK_OPS_PARENT_ENABLE)
1301 clk_core_disable_unprepare(core->parent);
1304 static bool clk_ignore_unused __initdata;
1305 static int __init clk_ignore_unused_setup(char *__unused)
1307 clk_ignore_unused = true;
1310 __setup("clk_ignore_unused", clk_ignore_unused_setup);
1312 static int __init clk_disable_unused(void)
1314 struct clk_core *core;
1316 if (clk_ignore_unused) {
1317 pr_warn("clk: Not disabling unused clocks\n");
1323 hlist_for_each_entry(core, &clk_root_list, child_node)
1324 clk_disable_unused_subtree(core);
1326 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1327 clk_disable_unused_subtree(core);
1329 hlist_for_each_entry(core, &clk_root_list, child_node)
1330 clk_unprepare_unused_subtree(core);
1332 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1333 clk_unprepare_unused_subtree(core);
1335 clk_prepare_unlock();
1339 late_initcall_sync(clk_disable_unused);
1341 static int clk_core_determine_round_nolock(struct clk_core *core,
1342 struct clk_rate_request *req)
1346 lockdep_assert_held(&prepare_lock);
1351 req->rate = clamp(req->rate, req->min_rate, req->max_rate);
1354 * At this point, core protection will be disabled
1355 * - if the provider is not protected at all
1356 * - if the calling consumer is the only one which has exclusivity
1359 if (clk_core_rate_is_protected(core)) {
1360 req->rate = core->rate;
1361 } else if (core->ops->determine_rate) {
1362 return core->ops->determine_rate(core->hw, req);
1363 } else if (core->ops->round_rate) {
1364 rate = core->ops->round_rate(core->hw, req->rate,
1365 &req->best_parent_rate);
1377 static void clk_core_init_rate_req(struct clk_core * const core,
1378 struct clk_rate_request *req)
1380 struct clk_core *parent;
1382 if (WARN_ON(!core || !req))
1385 parent = core->parent;
1387 req->best_parent_hw = parent->hw;
1388 req->best_parent_rate = parent->rate;
1390 req->best_parent_hw = NULL;
1391 req->best_parent_rate = 0;
1395 static bool clk_core_can_round(struct clk_core * const core)
1397 return core->ops->determine_rate || core->ops->round_rate;
1400 static int clk_core_round_rate_nolock(struct clk_core *core,
1401 struct clk_rate_request *req)
1403 lockdep_assert_held(&prepare_lock);
1410 clk_core_init_rate_req(core, req);
1412 if (clk_core_can_round(core))
1413 return clk_core_determine_round_nolock(core, req);
1414 else if (core->flags & CLK_SET_RATE_PARENT)
1415 return clk_core_round_rate_nolock(core->parent, req);
1417 req->rate = core->rate;
1422 * __clk_determine_rate - get the closest rate actually supported by a clock
1423 * @hw: determine the rate of this clock
1424 * @req: target rate request
1426 * Useful for clk_ops such as .set_rate and .determine_rate.
1428 int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
1435 return clk_core_round_rate_nolock(hw->core, req);
1437 EXPORT_SYMBOL_GPL(__clk_determine_rate);
1440 * clk_hw_round_rate() - round the given rate for a hw clk
1441 * @hw: the hw clk for which we are rounding a rate
1442 * @rate: the rate which is to be rounded
1444 * Takes in a rate as input and rounds it to a rate that the clk can actually
1447 * Context: prepare_lock must be held.
1448 * For clk providers to call from within clk_ops such as .round_rate,
1451 * Return: returns rounded rate of hw clk if clk supports round_rate operation
1452 * else returns the parent rate.
1454 unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1457 struct clk_rate_request req;
1459 clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate);
1462 ret = clk_core_round_rate_nolock(hw->core, &req);
1468 EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1471 * clk_round_rate - round the given rate for a clk
1472 * @clk: the clk for which we are rounding a rate
1473 * @rate: the rate which is to be rounded
1475 * Takes in a rate as input and rounds it to a rate that the clk can actually
1476 * use which is then returned. If clk doesn't support round_rate operation
1477 * then the parent rate is returned.
1479 long clk_round_rate(struct clk *clk, unsigned long rate)
1481 struct clk_rate_request req;
1489 if (clk->exclusive_count)
1490 clk_core_rate_unprotect(clk->core);
1492 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
1495 ret = clk_core_round_rate_nolock(clk->core, &req);
1497 if (clk->exclusive_count)
1498 clk_core_rate_protect(clk->core);
1500 clk_prepare_unlock();
1507 EXPORT_SYMBOL_GPL(clk_round_rate);
1510 * __clk_notify - call clk notifier chain
1511 * @core: clk that is changing rate
1512 * @msg: clk notifier type (see include/linux/clk.h)
1513 * @old_rate: old clk rate
1514 * @new_rate: new clk rate
1516 * Triggers a notifier call chain on the clk rate-change notification
1517 * for 'clk'. Passes a pointer to the struct clk and the previous
1518 * and current rates to the notifier callback. Intended to be called by
1519 * internal clock code only. Returns NOTIFY_DONE from the last driver
1520 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1521 * a driver returns that.
1523 static int __clk_notify(struct clk_core *core, unsigned long msg,
1524 unsigned long old_rate, unsigned long new_rate)
1526 struct clk_notifier *cn;
1527 struct clk_notifier_data cnd;
1528 int ret = NOTIFY_DONE;
1530 cnd.old_rate = old_rate;
1531 cnd.new_rate = new_rate;
1533 list_for_each_entry(cn, &clk_notifier_list, node) {
1534 if (cn->clk->core == core) {
1536 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1538 if (ret & NOTIFY_STOP_MASK)
1547 * __clk_recalc_accuracies
1548 * @core: first clk in the subtree
1550 * Walks the subtree of clks starting with clk and recalculates accuracies as
1551 * it goes. Note that if a clk does not implement the .recalc_accuracy
1552 * callback then it is assumed that the clock will take on the accuracy of its
1555 static void __clk_recalc_accuracies(struct clk_core *core)
1557 unsigned long parent_accuracy = 0;
1558 struct clk_core *child;
1560 lockdep_assert_held(&prepare_lock);
1563 parent_accuracy = core->parent->accuracy;
1565 if (core->ops->recalc_accuracy)
1566 core->accuracy = core->ops->recalc_accuracy(core->hw,
1569 core->accuracy = parent_accuracy;
1571 hlist_for_each_entry(child, &core->children, child_node)
1572 __clk_recalc_accuracies(child);
1575 static long clk_core_get_accuracy_recalc(struct clk_core *core)
1577 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1578 __clk_recalc_accuracies(core);
1580 return clk_core_get_accuracy_no_lock(core);
1584 * clk_get_accuracy - return the accuracy of clk
1585 * @clk: the clk whose accuracy is being returned
1587 * Simply returns the cached accuracy of the clk, unless
1588 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1590 * If clk is NULL then returns 0.
1592 long clk_get_accuracy(struct clk *clk)
1600 accuracy = clk_core_get_accuracy_recalc(clk->core);
1601 clk_prepare_unlock();
1605 EXPORT_SYMBOL_GPL(clk_get_accuracy);
1607 static unsigned long clk_recalc(struct clk_core *core,
1608 unsigned long parent_rate)
1610 unsigned long rate = parent_rate;
1612 if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) {
1613 rate = core->ops->recalc_rate(core->hw, parent_rate);
1614 clk_pm_runtime_put(core);
1620 * __clk_recalc_rates
1621 * @core: first clk in the subtree
1622 * @msg: notification type (see include/linux/clk.h)
1624 * Walks the subtree of clks starting with clk and recalculates rates as it
1625 * goes. Note that if a clk does not implement the .recalc_rate callback then
1626 * it is assumed that the clock will take on the rate of its parent.
1628 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1631 static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
1633 unsigned long old_rate;
1634 unsigned long parent_rate = 0;
1635 struct clk_core *child;
1637 lockdep_assert_held(&prepare_lock);
1639 old_rate = core->rate;
1642 parent_rate = core->parent->rate;
1644 core->rate = clk_recalc(core, parent_rate);
1647 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1648 * & ABORT_RATE_CHANGE notifiers
1650 if (core->notifier_count && msg)
1651 __clk_notify(core, msg, old_rate, core->rate);
1653 hlist_for_each_entry(child, &core->children, child_node)
1654 __clk_recalc_rates(child, msg);
1657 static unsigned long clk_core_get_rate_recalc(struct clk_core *core)
1659 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1660 __clk_recalc_rates(core, 0);
1662 return clk_core_get_rate_nolock(core);
1666 * clk_get_rate - return the rate of clk
1667 * @clk: the clk whose rate is being returned
1669 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1670 * is set, which means a recalc_rate will be issued.
1671 * If clk is NULL then returns 0.
1673 unsigned long clk_get_rate(struct clk *clk)
1681 rate = clk_core_get_rate_recalc(clk->core);
1682 clk_prepare_unlock();
1686 EXPORT_SYMBOL_GPL(clk_get_rate);
1688 static int clk_fetch_parent_index(struct clk_core *core,
1689 struct clk_core *parent)
1696 for (i = 0; i < core->num_parents; i++) {
1697 /* Found it first try! */
1698 if (core->parents[i].core == parent)
1701 /* Something else is here, so keep looking */
1702 if (core->parents[i].core)
1705 /* Maybe core hasn't been cached but the hw is all we know? */
1706 if (core->parents[i].hw) {
1707 if (core->parents[i].hw == parent->hw)
1710 /* Didn't match, but we're expecting a clk_hw */
1714 /* Maybe it hasn't been cached (clk_set_parent() path) */
1715 if (parent == clk_core_get(core, i))
1718 /* Fallback to comparing globally unique names */
1719 if (core->parents[i].name &&
1720 !strcmp(parent->name, core->parents[i].name))
1724 if (i == core->num_parents)
1727 core->parents[i].core = parent;
1732 * clk_hw_get_parent_index - return the index of the parent clock
1733 * @hw: clk_hw associated with the clk being consumed
1735 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
1736 * clock does not have a current parent.
1738 int clk_hw_get_parent_index(struct clk_hw *hw)
1740 struct clk_hw *parent = clk_hw_get_parent(hw);
1742 if (WARN_ON(parent == NULL))
1745 return clk_fetch_parent_index(hw->core, parent->core);
1747 EXPORT_SYMBOL_GPL(clk_hw_get_parent_index);
1750 * Update the orphan status of @core and all its children.
1752 static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1754 struct clk_core *child;
1756 core->orphan = is_orphan;
1758 hlist_for_each_entry(child, &core->children, child_node)
1759 clk_core_update_orphan_status(child, is_orphan);
1762 static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
1764 bool was_orphan = core->orphan;
1766 hlist_del(&core->child_node);
1769 bool becomes_orphan = new_parent->orphan;
1771 /* avoid duplicate POST_RATE_CHANGE notifications */
1772 if (new_parent->new_child == core)
1773 new_parent->new_child = NULL;
1775 hlist_add_head(&core->child_node, &new_parent->children);
1777 if (was_orphan != becomes_orphan)
1778 clk_core_update_orphan_status(core, becomes_orphan);
1780 hlist_add_head(&core->child_node, &clk_orphan_list);
1782 clk_core_update_orphan_status(core, true);
1785 core->parent = new_parent;
1788 static struct clk_core *__clk_set_parent_before(struct clk_core *core,
1789 struct clk_core *parent)
1791 unsigned long flags;
1792 struct clk_core *old_parent = core->parent;
1795 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1797 * 2. Migrate prepare state between parents and prevent race with
1800 * If the clock is not prepared, then a race with
1801 * clk_enable/disable() is impossible since we already have the
1802 * prepare lock (future calls to clk_enable() need to be preceded by
1805 * If the clock is prepared, migrate the prepared state to the new
1806 * parent and also protect against a race with clk_enable() by
1807 * forcing the clock and the new parent on. This ensures that all
1808 * future calls to clk_enable() are practically NOPs with respect to
1809 * hardware and software states.
1811 * See also: Comment for clk_set_parent() below.
1814 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1815 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1816 clk_core_prepare_enable(old_parent);
1817 clk_core_prepare_enable(parent);
1820 /* migrate prepare count if > 0 */
1821 if (core->prepare_count) {
1822 clk_core_prepare_enable(parent);
1823 clk_core_enable_lock(core);
1826 /* update the clk tree topology */
1827 flags = clk_enable_lock();
1828 clk_reparent(core, parent);
1829 clk_enable_unlock(flags);
1834 static void __clk_set_parent_after(struct clk_core *core,
1835 struct clk_core *parent,
1836 struct clk_core *old_parent)
1839 * Finish the migration of prepare state and undo the changes done
1840 * for preventing a race with clk_enable().
1842 if (core->prepare_count) {
1843 clk_core_disable_lock(core);
1844 clk_core_disable_unprepare(old_parent);
1847 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1848 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1849 clk_core_disable_unprepare(parent);
1850 clk_core_disable_unprepare(old_parent);
1854 static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
1857 unsigned long flags;
1859 struct clk_core *old_parent;
1861 old_parent = __clk_set_parent_before(core, parent);
1863 trace_clk_set_parent(core, parent);
1865 /* change clock input source */
1866 if (parent && core->ops->set_parent)
1867 ret = core->ops->set_parent(core->hw, p_index);
1869 trace_clk_set_parent_complete(core, parent);
1872 flags = clk_enable_lock();
1873 clk_reparent(core, old_parent);
1874 clk_enable_unlock(flags);
1875 __clk_set_parent_after(core, old_parent, parent);
1880 __clk_set_parent_after(core, parent, old_parent);
1886 * __clk_speculate_rates
1887 * @core: first clk in the subtree
1888 * @parent_rate: the "future" rate of clk's parent
1890 * Walks the subtree of clks starting with clk, speculating rates as it
1891 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1893 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1894 * pre-rate change notifications and returns early if no clks in the
1895 * subtree have subscribed to the notifications. Note that if a clk does not
1896 * implement the .recalc_rate callback then it is assumed that the clock will
1897 * take on the rate of its parent.
1899 static int __clk_speculate_rates(struct clk_core *core,
1900 unsigned long parent_rate)
1902 struct clk_core *child;
1903 unsigned long new_rate;
1904 int ret = NOTIFY_DONE;
1906 lockdep_assert_held(&prepare_lock);
1908 new_rate = clk_recalc(core, parent_rate);
1910 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
1911 if (core->notifier_count)
1912 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
1914 if (ret & NOTIFY_STOP_MASK) {
1915 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
1916 __func__, core->name, ret);
1920 hlist_for_each_entry(child, &core->children, child_node) {
1921 ret = __clk_speculate_rates(child, new_rate);
1922 if (ret & NOTIFY_STOP_MASK)
1930 static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
1931 struct clk_core *new_parent, u8 p_index)
1933 struct clk_core *child;
1935 core->new_rate = new_rate;
1936 core->new_parent = new_parent;
1937 core->new_parent_index = p_index;
1938 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1939 core->new_child = NULL;
1940 if (new_parent && new_parent != core->parent)
1941 new_parent->new_child = core;
1943 hlist_for_each_entry(child, &core->children, child_node) {
1944 child->new_rate = clk_recalc(child, new_rate);
1945 clk_calc_subtree(child, child->new_rate, NULL, 0);
1950 * calculate the new rates returning the topmost clock that has to be
1953 static struct clk_core *clk_calc_new_rates(struct clk_core *core,
1956 struct clk_core *top = core;
1957 struct clk_core *old_parent, *parent;
1958 unsigned long best_parent_rate = 0;
1959 unsigned long new_rate;
1960 unsigned long min_rate;
1961 unsigned long max_rate;
1966 if (IS_ERR_OR_NULL(core))
1969 /* save parent rate, if it exists */
1970 parent = old_parent = core->parent;
1972 best_parent_rate = parent->rate;
1974 clk_core_get_boundaries(core, &min_rate, &max_rate);
1976 /* find the closest rate and parent clk/rate */
1977 if (clk_core_can_round(core)) {
1978 struct clk_rate_request req;
1981 req.min_rate = min_rate;
1982 req.max_rate = max_rate;
1984 clk_core_init_rate_req(core, &req);
1986 ret = clk_core_determine_round_nolock(core, &req);
1990 best_parent_rate = req.best_parent_rate;
1991 new_rate = req.rate;
1992 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
1994 if (new_rate < min_rate || new_rate > max_rate)
1996 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
1997 /* pass-through clock without adjustable parent */
1998 core->new_rate = core->rate;
2001 /* pass-through clock with adjustable parent */
2002 top = clk_calc_new_rates(parent, rate);
2003 new_rate = parent->new_rate;
2007 /* some clocks must be gated to change parent */
2008 if (parent != old_parent &&
2009 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
2010 pr_debug("%s: %s not gated but wants to reparent\n",
2011 __func__, core->name);
2015 /* try finding the new parent index */
2016 if (parent && core->num_parents > 1) {
2017 p_index = clk_fetch_parent_index(core, parent);
2019 pr_debug("%s: clk %s can not be parent of clk %s\n",
2020 __func__, parent->name, core->name);
2025 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
2026 best_parent_rate != parent->rate)
2027 top = clk_calc_new_rates(parent, best_parent_rate);
2030 clk_calc_subtree(core, new_rate, parent, p_index);
2036 * Notify about rate changes in a subtree. Always walk down the whole tree
2037 * so that in case of an error we can walk down the whole tree again and
2040 static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
2041 unsigned long event)
2043 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
2044 int ret = NOTIFY_DONE;
2046 if (core->rate == core->new_rate)
2049 if (core->notifier_count) {
2050 ret = __clk_notify(core, event, core->rate, core->new_rate);
2051 if (ret & NOTIFY_STOP_MASK)
2055 hlist_for_each_entry(child, &core->children, child_node) {
2056 /* Skip children who will be reparented to another clock */
2057 if (child->new_parent && child->new_parent != core)
2059 tmp_clk = clk_propagate_rate_change(child, event);
2064 /* handle the new child who might not be in core->children yet */
2065 if (core->new_child) {
2066 tmp_clk = clk_propagate_rate_change(core->new_child, event);
2075 * walk down a subtree and set the new rates notifying the rate
2078 static void clk_change_rate(struct clk_core *core)
2080 struct clk_core *child;
2081 struct hlist_node *tmp;
2082 unsigned long old_rate;
2083 unsigned long best_parent_rate = 0;
2084 bool skip_set_rate = false;
2085 struct clk_core *old_parent;
2086 struct clk_core *parent = NULL;
2088 old_rate = core->rate;
2090 if (core->new_parent) {
2091 parent = core->new_parent;
2092 best_parent_rate = core->new_parent->rate;
2093 } else if (core->parent) {
2094 parent = core->parent;
2095 best_parent_rate = core->parent->rate;
2098 if (clk_pm_runtime_get(core))
2101 if (core->flags & CLK_SET_RATE_UNGATE) {
2102 clk_core_prepare(core);
2103 clk_core_enable_lock(core);
2106 if (core->new_parent && core->new_parent != core->parent) {
2107 old_parent = __clk_set_parent_before(core, core->new_parent);
2108 trace_clk_set_parent(core, core->new_parent);
2110 if (core->ops->set_rate_and_parent) {
2111 skip_set_rate = true;
2112 core->ops->set_rate_and_parent(core->hw, core->new_rate,
2114 core->new_parent_index);
2115 } else if (core->ops->set_parent) {
2116 core->ops->set_parent(core->hw, core->new_parent_index);
2119 trace_clk_set_parent_complete(core, core->new_parent);
2120 __clk_set_parent_after(core, core->new_parent, old_parent);
2123 if (core->flags & CLK_OPS_PARENT_ENABLE)
2124 clk_core_prepare_enable(parent);
2126 trace_clk_set_rate(core, core->new_rate);
2128 if (!skip_set_rate && core->ops->set_rate)
2129 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
2131 trace_clk_set_rate_complete(core, core->new_rate);
2133 core->rate = clk_recalc(core, best_parent_rate);
2135 if (core->flags & CLK_SET_RATE_UNGATE) {
2136 clk_core_disable_lock(core);
2137 clk_core_unprepare(core);
2140 if (core->flags & CLK_OPS_PARENT_ENABLE)
2141 clk_core_disable_unprepare(parent);
2143 if (core->notifier_count && old_rate != core->rate)
2144 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
2146 if (core->flags & CLK_RECALC_NEW_RATES)
2147 (void)clk_calc_new_rates(core, core->new_rate);
2150 * Use safe iteration, as change_rate can actually swap parents
2151 * for certain clock types.
2153 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
2154 /* Skip children who will be reparented to another clock */
2155 if (child->new_parent && child->new_parent != core)
2157 clk_change_rate(child);
2160 /* handle the new child who might not be in core->children yet */
2161 if (core->new_child)
2162 clk_change_rate(core->new_child);
2164 clk_pm_runtime_put(core);
2167 static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core,
2168 unsigned long req_rate)
2171 struct clk_rate_request req;
2173 lockdep_assert_held(&prepare_lock);
2178 /* simulate what the rate would be if it could be freely set */
2179 cnt = clk_core_rate_nuke_protect(core);
2183 clk_core_get_boundaries(core, &req.min_rate, &req.max_rate);
2184 req.rate = req_rate;
2186 ret = clk_core_round_rate_nolock(core, &req);
2188 /* restore the protection */
2189 clk_core_rate_restore_protect(core, cnt);
2191 return ret ? 0 : req.rate;
2194 static int clk_core_set_rate_nolock(struct clk_core *core,
2195 unsigned long req_rate)
2197 struct clk_core *top, *fail_clk;
2204 rate = clk_core_req_round_rate_nolock(core, req_rate);
2206 /* bail early if nothing to do */
2207 if (rate == clk_core_get_rate_nolock(core))
2210 /* fail on a direct rate set of a protected provider */
2211 if (clk_core_rate_is_protected(core))
2214 /* calculate new rates and get the topmost changed clock */
2215 top = clk_calc_new_rates(core, req_rate);
2219 ret = clk_pm_runtime_get(core);
2223 /* notify that we are about to change rates */
2224 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
2226 pr_debug("%s: failed to set %s rate\n", __func__,
2228 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
2233 /* change the rates */
2234 clk_change_rate(top);
2236 core->req_rate = req_rate;
2238 clk_pm_runtime_put(core);
2244 * clk_set_rate - specify a new rate for clk
2245 * @clk: the clk whose rate is being changed
2246 * @rate: the new rate for clk
2248 * In the simplest case clk_set_rate will only adjust the rate of clk.
2250 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2251 * propagate up to clk's parent; whether or not this happens depends on the
2252 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2253 * after calling .round_rate then upstream parent propagation is ignored. If
2254 * *parent_rate comes back with a new rate for clk's parent then we propagate
2255 * up to clk's parent and set its rate. Upward propagation will continue
2256 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2257 * .round_rate stops requesting changes to clk's parent_rate.
2259 * Rate changes are accomplished via tree traversal that also recalculates the
2260 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
2262 * Returns 0 on success, -EERROR otherwise.
2264 int clk_set_rate(struct clk *clk, unsigned long rate)
2271 /* prevent racing with updates to the clock topology */
2274 if (clk->exclusive_count)
2275 clk_core_rate_unprotect(clk->core);
2277 ret = clk_core_set_rate_nolock(clk->core, rate);
2279 if (clk->exclusive_count)
2280 clk_core_rate_protect(clk->core);
2282 clk_prepare_unlock();
2286 EXPORT_SYMBOL_GPL(clk_set_rate);
2289 * clk_set_rate_exclusive - specify a new rate and get exclusive control
2290 * @clk: the clk whose rate is being changed
2291 * @rate: the new rate for clk
2293 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2294 * within a critical section
2296 * This can be used initially to ensure that at least 1 consumer is
2297 * satisfied when several consumers are competing for exclusivity over the
2298 * same clock provider.
2300 * The exclusivity is not applied if setting the rate failed.
2302 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2303 * clk_rate_exclusive_put().
2305 * Returns 0 on success, -EERROR otherwise.
2307 int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
2314 /* prevent racing with updates to the clock topology */
2318 * The temporary protection removal is not here, on purpose
2319 * This function is meant to be used instead of clk_rate_protect,
2320 * so before the consumer code path protect the clock provider
2323 ret = clk_core_set_rate_nolock(clk->core, rate);
2325 clk_core_rate_protect(clk->core);
2326 clk->exclusive_count++;
2329 clk_prepare_unlock();
2333 EXPORT_SYMBOL_GPL(clk_set_rate_exclusive);
2336 * clk_set_rate_range - set a rate range for a clock source
2337 * @clk: clock source
2338 * @min: desired minimum clock rate in Hz, inclusive
2339 * @max: desired maximum clock rate in Hz, inclusive
2341 * Returns success (0) or negative errno.
2343 int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
2346 unsigned long old_min, old_max, rate;
2351 trace_clk_set_rate_range(clk->core, min, max);
2354 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2355 __func__, clk->core->name, clk->dev_id, clk->con_id,
2362 if (clk->exclusive_count)
2363 clk_core_rate_unprotect(clk->core);
2365 /* Save the current values in case we need to rollback the change */
2366 old_min = clk->min_rate;
2367 old_max = clk->max_rate;
2368 clk->min_rate = min;
2369 clk->max_rate = max;
2371 if (!clk_core_check_boundaries(clk->core, min, max)) {
2377 * Since the boundaries have been changed, let's give the
2378 * opportunity to the provider to adjust the clock rate based on
2379 * the new boundaries.
2381 * We also need to handle the case where the clock is currently
2382 * outside of the boundaries. Clamping the last requested rate
2383 * to the current minimum and maximum will also handle this.
2386 * There is a catch. It may fail for the usual reason (clock
2387 * broken, clock protected, etc) but also because:
2388 * - round_rate() was not favorable and fell on the wrong
2389 * side of the boundary
2390 * - the determine_rate() callback does not really check for
2391 * this corner case when determining the rate
2393 rate = clamp(clk->core->req_rate, min, max);
2394 ret = clk_core_set_rate_nolock(clk->core, rate);
2396 /* rollback the changes */
2397 clk->min_rate = old_min;
2398 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_pm_runtime_get(c);
2993 clk_summary_show_one(s, c, level);
2994 clk_pm_runtime_put(c);
2996 hlist_for_each_entry(child, &c->children, child_node)
2997 clk_summary_show_subtree(s, child, level + 1);
3000 static int clk_summary_show(struct seq_file *s, void *data)
3003 struct hlist_head **lists = (struct hlist_head **)s->private;
3005 seq_puts(s, " enable prepare protect duty hardware\n");
3006 seq_puts(s, " clock count count count rate accuracy phase cycle enable\n");
3007 seq_puts(s, "-------------------------------------------------------------------------------------------------------\n");
3011 for (; *lists; lists++)
3012 hlist_for_each_entry(c, *lists, child_node)
3013 clk_summary_show_subtree(s, c, 0);
3015 clk_prepare_unlock();
3019 DEFINE_SHOW_ATTRIBUTE(clk_summary);
3021 static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
3024 unsigned long min_rate, max_rate;
3026 clk_core_get_boundaries(c, &min_rate, &max_rate);
3028 /* This should be JSON format, i.e. elements separated with a comma */
3029 seq_printf(s, "\"%s\": { ", c->name);
3030 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
3031 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
3032 seq_printf(s, "\"protect_count\": %d,", c->protect_count);
3033 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate_recalc(c));
3034 seq_printf(s, "\"min_rate\": %lu,", min_rate);
3035 seq_printf(s, "\"max_rate\": %lu,", max_rate);
3036 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c));
3037 phase = clk_core_get_phase(c);
3039 seq_printf(s, "\"phase\": %d,", phase);
3040 seq_printf(s, "\"duty_cycle\": %u",
3041 clk_core_get_scaled_duty_cycle(c, 100000));
3044 static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
3046 struct clk_core *child;
3048 clk_dump_one(s, c, level);
3050 hlist_for_each_entry(child, &c->children, child_node) {
3052 clk_dump_subtree(s, child, level + 1);
3058 static int clk_dump_show(struct seq_file *s, void *data)
3061 bool first_node = true;
3062 struct hlist_head **lists = (struct hlist_head **)s->private;
3067 for (; *lists; lists++) {
3068 hlist_for_each_entry(c, *lists, child_node) {
3072 clk_dump_subtree(s, c, 0);
3076 clk_prepare_unlock();
3081 DEFINE_SHOW_ATTRIBUTE(clk_dump);
3083 #undef CLOCK_ALLOW_WRITE_DEBUGFS
3084 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3086 * This can be dangerous, therefore don't provide any real compile time
3087 * configuration option for this feature.
3088 * People who want to use this will need to modify the source code directly.
3090 static int clk_rate_set(void *data, u64 val)
3092 struct clk_core *core = data;
3096 ret = clk_core_set_rate_nolock(core, val);
3097 clk_prepare_unlock();
3102 #define clk_rate_mode 0644
3104 static int clk_prepare_enable_set(void *data, u64 val)
3106 struct clk_core *core = data;
3110 ret = clk_prepare_enable(core->hw->clk);
3112 clk_disable_unprepare(core->hw->clk);
3117 static int clk_prepare_enable_get(void *data, u64 *val)
3119 struct clk_core *core = data;
3121 *val = core->enable_count && core->prepare_count;
3125 DEFINE_DEBUGFS_ATTRIBUTE(clk_prepare_enable_fops, clk_prepare_enable_get,
3126 clk_prepare_enable_set, "%llu\n");
3129 #define clk_rate_set NULL
3130 #define clk_rate_mode 0444
3133 static int clk_rate_get(void *data, u64 *val)
3135 struct clk_core *core = data;
3138 *val = clk_core_get_rate_recalc(core);
3139 clk_prepare_unlock();
3144 DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, clk_rate_get, clk_rate_set, "%llu\n");
3146 static const struct {
3150 #define ENTRY(f) { f, #f }
3151 ENTRY(CLK_SET_RATE_GATE),
3152 ENTRY(CLK_SET_PARENT_GATE),
3153 ENTRY(CLK_SET_RATE_PARENT),
3154 ENTRY(CLK_IGNORE_UNUSED),
3155 ENTRY(CLK_GET_RATE_NOCACHE),
3156 ENTRY(CLK_SET_RATE_NO_REPARENT),
3157 ENTRY(CLK_GET_ACCURACY_NOCACHE),
3158 ENTRY(CLK_RECALC_NEW_RATES),
3159 ENTRY(CLK_SET_RATE_UNGATE),
3160 ENTRY(CLK_IS_CRITICAL),
3161 ENTRY(CLK_OPS_PARENT_ENABLE),
3162 ENTRY(CLK_DUTY_CYCLE_PARENT),
3166 static int clk_flags_show(struct seq_file *s, void *data)
3168 struct clk_core *core = s->private;
3169 unsigned long flags = core->flags;
3172 for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) {
3173 if (flags & clk_flags[i].flag) {
3174 seq_printf(s, "%s\n", clk_flags[i].name);
3175 flags &= ~clk_flags[i].flag;
3180 seq_printf(s, "0x%lx\n", flags);
3185 DEFINE_SHOW_ATTRIBUTE(clk_flags);
3187 static void possible_parent_show(struct seq_file *s, struct clk_core *core,
3188 unsigned int i, char terminator)
3190 struct clk_core *parent;
3193 * Go through the following options to fetch a parent's name.
3195 * 1. Fetch the registered parent clock and use its name
3196 * 2. Use the global (fallback) name if specified
3197 * 3. Use the local fw_name if provided
3198 * 4. Fetch parent clock's clock-output-name if DT index was set
3200 * This may still fail in some cases, such as when the parent is
3201 * specified directly via a struct clk_hw pointer, but it isn't
3204 parent = clk_core_get_parent_by_index(core, i);
3206 seq_puts(s, parent->name);
3207 else if (core->parents[i].name)
3208 seq_puts(s, core->parents[i].name);
3209 else if (core->parents[i].fw_name)
3210 seq_printf(s, "<%s>(fw)", core->parents[i].fw_name);
3211 else if (core->parents[i].index >= 0)
3213 of_clk_get_parent_name(core->of_node,
3214 core->parents[i].index));
3216 seq_puts(s, "(missing)");
3218 seq_putc(s, terminator);
3221 static int possible_parents_show(struct seq_file *s, void *data)
3223 struct clk_core *core = s->private;
3226 for (i = 0; i < core->num_parents - 1; i++)
3227 possible_parent_show(s, core, i, ' ');
3229 possible_parent_show(s, core, i, '\n');
3233 DEFINE_SHOW_ATTRIBUTE(possible_parents);
3235 static int current_parent_show(struct seq_file *s, void *data)
3237 struct clk_core *core = s->private;
3240 seq_printf(s, "%s\n", core->parent->name);
3244 DEFINE_SHOW_ATTRIBUTE(current_parent);
3246 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3247 static ssize_t current_parent_write(struct file *file, const char __user *ubuf,
3248 size_t count, loff_t *ppos)
3250 struct seq_file *s = file->private_data;
3251 struct clk_core *core = s->private;
3252 struct clk_core *parent;
3256 err = kstrtou8_from_user(ubuf, count, 0, &idx);
3260 parent = clk_core_get_parent_by_index(core, idx);
3265 err = clk_core_set_parent_nolock(core, parent);
3266 clk_prepare_unlock();
3273 static const struct file_operations current_parent_rw_fops = {
3274 .open = current_parent_open,
3275 .write = current_parent_write,
3277 .llseek = seq_lseek,
3278 .release = single_release,
3282 static int clk_duty_cycle_show(struct seq_file *s, void *data)
3284 struct clk_core *core = s->private;
3285 struct clk_duty *duty = &core->duty;
3287 seq_printf(s, "%u/%u\n", duty->num, duty->den);
3291 DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle);
3293 static int clk_min_rate_show(struct seq_file *s, void *data)
3295 struct clk_core *core = s->private;
3296 unsigned long min_rate, max_rate;
3299 clk_core_get_boundaries(core, &min_rate, &max_rate);
3300 clk_prepare_unlock();
3301 seq_printf(s, "%lu\n", min_rate);
3305 DEFINE_SHOW_ATTRIBUTE(clk_min_rate);
3307 static int clk_max_rate_show(struct seq_file *s, void *data)
3309 struct clk_core *core = s->private;
3310 unsigned long min_rate, max_rate;
3313 clk_core_get_boundaries(core, &min_rate, &max_rate);
3314 clk_prepare_unlock();
3315 seq_printf(s, "%lu\n", max_rate);
3319 DEFINE_SHOW_ATTRIBUTE(clk_max_rate);
3321 static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
3323 struct dentry *root;
3325 if (!core || !pdentry)
3328 root = debugfs_create_dir(core->name, pdentry);
3329 core->dentry = root;
3331 debugfs_create_file("clk_rate", clk_rate_mode, root, core,
3333 debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
3334 debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
3335 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3336 debugfs_create_u32("clk_phase", 0444, root, &core->phase);
3337 debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
3338 debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
3339 debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
3340 debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count);
3341 debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count);
3342 debugfs_create_file("clk_duty_cycle", 0444, root, core,
3343 &clk_duty_cycle_fops);
3344 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3345 debugfs_create_file("clk_prepare_enable", 0644, root, core,
3346 &clk_prepare_enable_fops);
3348 if (core->num_parents > 1)
3349 debugfs_create_file("clk_parent", 0644, root, core,
3350 ¤t_parent_rw_fops);
3353 if (core->num_parents > 0)
3354 debugfs_create_file("clk_parent", 0444, root, core,
3355 ¤t_parent_fops);
3357 if (core->num_parents > 1)
3358 debugfs_create_file("clk_possible_parents", 0444, root, core,
3359 &possible_parents_fops);
3361 if (core->ops->debug_init)
3362 core->ops->debug_init(core->hw, core->dentry);
3366 * clk_debug_register - add a clk node to the debugfs clk directory
3367 * @core: the clk being added to the debugfs clk directory
3369 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3370 * initialized. Otherwise it bails out early since the debugfs clk directory
3371 * will be created lazily by clk_debug_init as part of a late_initcall.
3373 static void clk_debug_register(struct clk_core *core)
3375 mutex_lock(&clk_debug_lock);
3376 hlist_add_head(&core->debug_node, &clk_debug_list);
3378 clk_debug_create_one(core, rootdir);
3379 mutex_unlock(&clk_debug_lock);
3383 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3384 * @core: the clk being removed from the debugfs clk directory
3386 * Dynamically removes a clk and all its child nodes from the
3387 * debugfs clk directory if clk->dentry points to debugfs created by
3388 * clk_debug_register in __clk_core_init.
3390 static void clk_debug_unregister(struct clk_core *core)
3392 mutex_lock(&clk_debug_lock);
3393 hlist_del_init(&core->debug_node);
3394 debugfs_remove_recursive(core->dentry);
3395 core->dentry = NULL;
3396 mutex_unlock(&clk_debug_lock);
3400 * clk_debug_init - lazily populate the debugfs clk directory
3402 * clks are often initialized very early during boot before memory can be
3403 * dynamically allocated and well before debugfs is setup. This function
3404 * populates the debugfs clk directory once at boot-time when we know that
3405 * debugfs is setup. It should only be called once at boot-time, all other clks
3406 * added dynamically will be done so with clk_debug_register.
3408 static int __init clk_debug_init(void)
3410 struct clk_core *core;
3412 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3414 pr_warn("********************************************************************\n");
3415 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3417 pr_warn("** WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **\n");
3419 pr_warn("** This means that this kernel is built to expose clk operations **\n");
3420 pr_warn("** such as parent or rate setting, enabling, disabling, etc. **\n");
3421 pr_warn("** to userspace, which may compromise security on your system. **\n");
3423 pr_warn("** If you see this message and you are not debugging the **\n");
3424 pr_warn("** kernel, report this immediately to your vendor! **\n");
3426 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3427 pr_warn("********************************************************************\n");
3430 rootdir = debugfs_create_dir("clk", NULL);
3432 debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
3434 debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
3436 debugfs_create_file("clk_orphan_summary", 0444, rootdir, &orphan_list,
3438 debugfs_create_file("clk_orphan_dump", 0444, rootdir, &orphan_list,
3441 mutex_lock(&clk_debug_lock);
3442 hlist_for_each_entry(core, &clk_debug_list, debug_node)
3443 clk_debug_create_one(core, rootdir);
3446 mutex_unlock(&clk_debug_lock);
3450 late_initcall(clk_debug_init);
3452 static inline void clk_debug_register(struct clk_core *core) { }
3453 static inline void clk_debug_unregister(struct clk_core *core)
3458 static void clk_core_reparent_orphans_nolock(void)
3460 struct clk_core *orphan;
3461 struct hlist_node *tmp2;
3464 * walk the list of orphan clocks and reparent any that newly finds a
3467 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
3468 struct clk_core *parent = __clk_init_parent(orphan);
3471 * We need to use __clk_set_parent_before() and _after() to
3472 * to properly migrate any prepare/enable count of the orphan
3473 * clock. This is important for CLK_IS_CRITICAL clocks, which
3474 * are enabled during init but might not have a parent yet.
3477 /* update the clk tree topology */
3478 __clk_set_parent_before(orphan, parent);
3479 __clk_set_parent_after(orphan, parent, NULL);
3480 __clk_recalc_accuracies(orphan);
3481 __clk_recalc_rates(orphan, 0);
3484 * __clk_init_parent() will set the initial req_rate to
3485 * 0 if the clock doesn't have clk_ops::recalc_rate and
3486 * is an orphan when it's registered.
3488 * 'req_rate' is used by clk_set_rate_range() and
3489 * clk_put() to trigger a clk_set_rate() call whenever
3490 * the boundaries are modified. Let's make sure
3491 * 'req_rate' is set to something non-zero so that
3492 * clk_set_rate_range() doesn't drop the frequency.
3494 orphan->req_rate = orphan->rate;
3500 * __clk_core_init - initialize the data structures in a struct clk_core
3501 * @core: clk_core being initialized
3503 * Initializes the lists in struct clk_core, queries the hardware for the
3504 * parent and rate and sets them both.
3506 static int __clk_core_init(struct clk_core *core)
3509 struct clk_core *parent;
3516 * Set hw->core after grabbing the prepare_lock to synchronize with
3517 * callers of clk_core_fill_parent_index() where we treat hw->core
3518 * being NULL as the clk not being registered yet. This is crucial so
3519 * that clks aren't parented until their parent is fully registered.
3521 core->hw->core = core;
3523 ret = clk_pm_runtime_get(core);
3527 /* check to see if a clock with this name is already registered */
3528 if (clk_core_lookup(core->name)) {
3529 pr_debug("%s: clk %s already initialized\n",
3530 __func__, core->name);
3535 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
3536 if (core->ops->set_rate &&
3537 !((core->ops->round_rate || core->ops->determine_rate) &&
3538 core->ops->recalc_rate)) {
3539 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3540 __func__, core->name);
3545 if (core->ops->set_parent && !core->ops->get_parent) {
3546 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3547 __func__, core->name);
3552 if (core->num_parents > 1 && !core->ops->get_parent) {
3553 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3554 __func__, core->name);
3559 if (core->ops->set_rate_and_parent &&
3560 !(core->ops->set_parent && core->ops->set_rate)) {
3561 pr_err("%s: %s must implement .set_parent & .set_rate\n",
3562 __func__, core->name);
3568 * optional platform-specific magic
3570 * The .init callback is not used by any of the basic clock types, but
3571 * exists for weird hardware that must perform initialization magic for
3572 * CCF to get an accurate view of clock for any other callbacks. It may
3573 * also be used needs to perform dynamic allocations. Such allocation
3574 * must be freed in the terminate() callback.
3575 * This callback shall not be used to initialize the parameters state,
3576 * such as rate, parent, etc ...
3578 * If it exist, this callback should called before any other callback of
3581 if (core->ops->init) {
3582 ret = core->ops->init(core->hw);
3587 parent = core->parent = __clk_init_parent(core);
3590 * Populate core->parent if parent has already been clk_core_init'd. If
3591 * parent has not yet been clk_core_init'd then place clk in the orphan
3592 * list. If clk doesn't have any parents then place it in the root
3595 * Every time a new clk is clk_init'd then we walk the list of orphan
3596 * clocks and re-parent any that are children of the clock currently
3600 hlist_add_head(&core->child_node, &parent->children);
3601 core->orphan = parent->orphan;
3602 } else if (!core->num_parents) {
3603 hlist_add_head(&core->child_node, &clk_root_list);
3604 core->orphan = false;
3606 hlist_add_head(&core->child_node, &clk_orphan_list);
3607 core->orphan = true;
3611 * Set clk's accuracy. The preferred method is to use
3612 * .recalc_accuracy. For simple clocks and lazy developers the default
3613 * fallback is to use the parent's accuracy. If a clock doesn't have a
3614 * parent (or is orphaned) then accuracy is set to zero (perfect
3617 if (core->ops->recalc_accuracy)
3618 core->accuracy = core->ops->recalc_accuracy(core->hw,
3619 clk_core_get_accuracy_no_lock(parent));
3621 core->accuracy = parent->accuracy;
3626 * Set clk's phase by clk_core_get_phase() caching the phase.
3627 * Since a phase is by definition relative to its parent, just
3628 * query the current clock phase, or just assume it's in phase.
3630 phase = clk_core_get_phase(core);
3633 pr_warn("%s: Failed to get phase for clk '%s'\n", __func__,
3639 * Set clk's duty cycle.
3641 clk_core_update_duty_cycle_nolock(core);
3644 * Set clk's rate. The preferred method is to use .recalc_rate. For
3645 * simple clocks and lazy developers the default fallback is to use the
3646 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3647 * then rate is set to zero.
3649 if (core->ops->recalc_rate)
3650 rate = core->ops->recalc_rate(core->hw,
3651 clk_core_get_rate_nolock(parent));
3653 rate = parent->rate;
3656 core->rate = core->req_rate = rate;
3659 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3660 * don't get accidentally disabled when walking the orphan tree and
3661 * reparenting clocks
3663 if (core->flags & CLK_IS_CRITICAL) {
3664 ret = clk_core_prepare(core);
3666 pr_warn("%s: critical clk '%s' failed to prepare\n",
3667 __func__, core->name);
3671 ret = clk_core_enable_lock(core);
3673 pr_warn("%s: critical clk '%s' failed to enable\n",
3674 __func__, core->name);
3675 clk_core_unprepare(core);
3680 clk_core_reparent_orphans_nolock();
3683 kref_init(&core->ref);
3685 clk_pm_runtime_put(core);
3688 hlist_del_init(&core->child_node);
3689 core->hw->core = NULL;
3692 clk_prepare_unlock();
3695 clk_debug_register(core);
3701 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
3702 * @core: clk to add consumer to
3703 * @clk: consumer to link to a clk
3705 static void clk_core_link_consumer(struct clk_core *core, struct clk *clk)
3708 hlist_add_head(&clk->clks_node, &core->clks);
3709 clk_prepare_unlock();
3713 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
3714 * @clk: consumer to unlink
3716 static void clk_core_unlink_consumer(struct clk *clk)
3718 lockdep_assert_held(&prepare_lock);
3719 hlist_del(&clk->clks_node);
3723 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
3724 * @core: clk to allocate a consumer for
3725 * @dev_id: string describing device name
3726 * @con_id: connection ID string on device
3728 * Returns: clk consumer left unlinked from the consumer list
3730 static struct clk *alloc_clk(struct clk_core *core, const char *dev_id,
3735 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3737 return ERR_PTR(-ENOMEM);
3740 clk->dev_id = dev_id;
3741 clk->con_id = kstrdup_const(con_id, GFP_KERNEL);
3742 clk->max_rate = ULONG_MAX;
3748 * free_clk - Free a clk consumer
3749 * @clk: clk consumer to free
3751 * Note, this assumes the clk has been unlinked from the clk_core consumer
3754 static void free_clk(struct clk *clk)
3756 kfree_const(clk->con_id);
3761 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
3763 * @dev: clk consumer device
3764 * @hw: clk_hw associated with the clk being consumed
3765 * @dev_id: string describing device name
3766 * @con_id: connection ID string on device
3768 * This is the main function used to create a clk pointer for use by clk
3769 * consumers. It connects a consumer to the clk_core and clk_hw structures
3770 * used by the framework and clk provider respectively.
3772 struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw,
3773 const char *dev_id, const char *con_id)
3776 struct clk_core *core;
3778 /* This is to allow this function to be chained to others */
3779 if (IS_ERR_OR_NULL(hw))
3780 return ERR_CAST(hw);
3783 clk = alloc_clk(core, dev_id, con_id);
3788 if (!try_module_get(core->owner)) {
3790 return ERR_PTR(-ENOENT);
3793 kref_get(&core->ref);
3794 clk_core_link_consumer(core, clk);
3800 * clk_hw_get_clk - get clk consumer given an clk_hw
3801 * @hw: clk_hw associated with the clk being consumed
3802 * @con_id: connection ID string on device
3804 * Returns: new clk consumer
3805 * This is the function to be used by providers which need
3806 * to get a consumer clk and act on the clock element
3807 * Calls to this function must be balanced with calls clk_put()
3809 struct clk *clk_hw_get_clk(struct clk_hw *hw, const char *con_id)
3811 struct device *dev = hw->core->dev;
3812 const char *name = dev ? dev_name(dev) : NULL;
3814 return clk_hw_create_clk(dev, hw, name, con_id);
3816 EXPORT_SYMBOL(clk_hw_get_clk);
3818 static int clk_cpy_name(const char **dst_p, const char *src, bool must_exist)
3828 *dst_p = dst = kstrdup_const(src, GFP_KERNEL);
3835 static int clk_core_populate_parent_map(struct clk_core *core,
3836 const struct clk_init_data *init)
3838 u8 num_parents = init->num_parents;
3839 const char * const *parent_names = init->parent_names;
3840 const struct clk_hw **parent_hws = init->parent_hws;
3841 const struct clk_parent_data *parent_data = init->parent_data;
3843 struct clk_parent_map *parents, *parent;
3849 * Avoid unnecessary string look-ups of clk_core's possible parents by
3850 * having a cache of names/clk_hw pointers to clk_core pointers.
3852 parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL);
3853 core->parents = parents;
3857 /* Copy everything over because it might be __initdata */
3858 for (i = 0, parent = parents; i < num_parents; i++, parent++) {
3861 /* throw a WARN if any entries are NULL */
3862 WARN(!parent_names[i],
3863 "%s: invalid NULL in %s's .parent_names\n",
3864 __func__, core->name);
3865 ret = clk_cpy_name(&parent->name, parent_names[i],
3867 } else if (parent_data) {
3868 parent->hw = parent_data[i].hw;
3869 parent->index = parent_data[i].index;
3870 ret = clk_cpy_name(&parent->fw_name,
3871 parent_data[i].fw_name, false);
3873 ret = clk_cpy_name(&parent->name,
3874 parent_data[i].name,
3876 } else if (parent_hws) {
3877 parent->hw = parent_hws[i];
3880 WARN(1, "Must specify parents if num_parents > 0\n");
3885 kfree_const(parents[i].name);
3886 kfree_const(parents[i].fw_name);
3897 static void clk_core_free_parent_map(struct clk_core *core)
3899 int i = core->num_parents;
3901 if (!core->num_parents)
3905 kfree_const(core->parents[i].name);
3906 kfree_const(core->parents[i].fw_name);
3909 kfree(core->parents);
3913 __clk_register(struct device *dev, struct device_node *np, struct clk_hw *hw)
3916 struct clk_core *core;
3917 const struct clk_init_data *init = hw->init;
3920 * The init data is not supposed to be used outside of registration path.
3921 * Set it to NULL so that provider drivers can't use it either and so that
3922 * we catch use of hw->init early on in the core.
3926 core = kzalloc(sizeof(*core), GFP_KERNEL);
3932 core->name = kstrdup_const(init->name, GFP_KERNEL);
3938 if (WARN_ON(!init->ops)) {
3942 core->ops = init->ops;
3944 if (dev && pm_runtime_enabled(dev))
3945 core->rpm_enabled = true;
3948 if (dev && dev->driver)
3949 core->owner = dev->driver->owner;
3951 core->flags = init->flags;
3952 core->num_parents = init->num_parents;
3954 core->max_rate = ULONG_MAX;
3956 ret = clk_core_populate_parent_map(core, init);
3960 INIT_HLIST_HEAD(&core->clks);
3963 * Don't call clk_hw_create_clk() here because that would pin the
3964 * provider module to itself and prevent it from ever being removed.
3966 hw->clk = alloc_clk(core, NULL, NULL);
3967 if (IS_ERR(hw->clk)) {
3968 ret = PTR_ERR(hw->clk);
3969 goto fail_create_clk;
3972 clk_core_link_consumer(core, hw->clk);
3974 ret = __clk_core_init(core);
3979 clk_core_unlink_consumer(hw->clk);
3980 clk_prepare_unlock();
3986 clk_core_free_parent_map(core);
3989 kfree_const(core->name);
3993 return ERR_PTR(ret);
3997 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
3998 * @dev: Device to get device node of
4000 * Return: device node pointer of @dev, or the device node pointer of
4001 * @dev->parent if dev doesn't have a device node, or NULL if neither
4002 * @dev or @dev->parent have a device node.
4004 static struct device_node *dev_or_parent_of_node(struct device *dev)
4006 struct device_node *np;
4011 np = dev_of_node(dev);
4013 np = dev_of_node(dev->parent);
4019 * clk_register - allocate a new clock, register it and return an opaque cookie
4020 * @dev: device that is registering this clock
4021 * @hw: link to hardware-specific clock data
4023 * clk_register is the *deprecated* interface for populating the clock tree with
4024 * new clock nodes. Use clk_hw_register() instead.
4026 * Returns: a pointer to the newly allocated struct clk which
4027 * cannot be dereferenced by driver code but may be used in conjunction with the
4028 * rest of the clock API. In the event of an error clk_register will return an
4029 * error code; drivers must test for an error code after calling clk_register.
4031 struct clk *clk_register(struct device *dev, struct clk_hw *hw)
4033 return __clk_register(dev, dev_or_parent_of_node(dev), hw);
4035 EXPORT_SYMBOL_GPL(clk_register);
4038 * clk_hw_register - register a clk_hw and return an error code
4039 * @dev: device that is registering this clock
4040 * @hw: link to hardware-specific clock data
4042 * clk_hw_register is the primary interface for populating the clock tree with
4043 * new clock nodes. It returns an integer equal to zero indicating success or
4044 * less than zero indicating failure. Drivers must test for an error code after
4045 * calling clk_hw_register().
4047 int clk_hw_register(struct device *dev, struct clk_hw *hw)
4049 return PTR_ERR_OR_ZERO(__clk_register(dev, dev_or_parent_of_node(dev),
4052 EXPORT_SYMBOL_GPL(clk_hw_register);
4055 * of_clk_hw_register - register a clk_hw and return an error code
4056 * @node: device_node of device that is registering this clock
4057 * @hw: link to hardware-specific clock data
4059 * of_clk_hw_register() is the primary interface for populating the clock tree
4060 * with new clock nodes when a struct device is not available, but a struct
4061 * device_node is. It returns an integer equal to zero indicating success or
4062 * less than zero indicating failure. Drivers must test for an error code after
4063 * calling of_clk_hw_register().
4065 int of_clk_hw_register(struct device_node *node, struct clk_hw *hw)
4067 return PTR_ERR_OR_ZERO(__clk_register(NULL, node, hw));
4069 EXPORT_SYMBOL_GPL(of_clk_hw_register);
4071 /* Free memory allocated for a clock. */
4072 static void __clk_release(struct kref *ref)
4074 struct clk_core *core = container_of(ref, struct clk_core, ref);
4076 lockdep_assert_held(&prepare_lock);
4078 clk_core_free_parent_map(core);
4079 kfree_const(core->name);
4084 * Empty clk_ops for unregistered clocks. These are used temporarily
4085 * after clk_unregister() was called on a clock and until last clock
4086 * consumer calls clk_put() and the struct clk object is freed.
4088 static int clk_nodrv_prepare_enable(struct clk_hw *hw)
4093 static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
4098 static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
4099 unsigned long parent_rate)
4104 static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
4109 static const struct clk_ops clk_nodrv_ops = {
4110 .enable = clk_nodrv_prepare_enable,
4111 .disable = clk_nodrv_disable_unprepare,
4112 .prepare = clk_nodrv_prepare_enable,
4113 .unprepare = clk_nodrv_disable_unprepare,
4114 .set_rate = clk_nodrv_set_rate,
4115 .set_parent = clk_nodrv_set_parent,
4118 static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
4119 const struct clk_core *target)
4122 struct clk_core *child;
4124 for (i = 0; i < root->num_parents; i++)
4125 if (root->parents[i].core == target)
4126 root->parents[i].core = NULL;
4128 hlist_for_each_entry(child, &root->children, child_node)
4129 clk_core_evict_parent_cache_subtree(child, target);
4132 /* Remove this clk from all parent caches */
4133 static void clk_core_evict_parent_cache(struct clk_core *core)
4135 const struct hlist_head **lists;
4136 struct clk_core *root;
4138 lockdep_assert_held(&prepare_lock);
4140 for (lists = all_lists; *lists; lists++)
4141 hlist_for_each_entry(root, *lists, child_node)
4142 clk_core_evict_parent_cache_subtree(root, core);
4147 * clk_unregister - unregister a currently registered clock
4148 * @clk: clock to unregister
4150 void clk_unregister(struct clk *clk)
4152 unsigned long flags;
4153 const struct clk_ops *ops;
4155 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
4158 clk_debug_unregister(clk->core);
4162 ops = clk->core->ops;
4163 if (ops == &clk_nodrv_ops) {
4164 pr_err("%s: unregistered clock: %s\n", __func__,
4169 * Assign empty clock ops for consumers that might still hold
4170 * a reference to this clock.
4172 flags = clk_enable_lock();
4173 clk->core->ops = &clk_nodrv_ops;
4174 clk_enable_unlock(flags);
4177 ops->terminate(clk->core->hw);
4179 if (!hlist_empty(&clk->core->children)) {
4180 struct clk_core *child;
4181 struct hlist_node *t;
4183 /* Reparent all children to the orphan list. */
4184 hlist_for_each_entry_safe(child, t, &clk->core->children,
4186 clk_core_set_parent_nolock(child, NULL);
4189 clk_core_evict_parent_cache(clk->core);
4191 hlist_del_init(&clk->core->child_node);
4193 if (clk->core->prepare_count)
4194 pr_warn("%s: unregistering prepared clock: %s\n",
4195 __func__, clk->core->name);
4197 if (clk->core->protect_count)
4198 pr_warn("%s: unregistering protected clock: %s\n",
4199 __func__, clk->core->name);
4201 kref_put(&clk->core->ref, __clk_release);
4204 clk_prepare_unlock();
4206 EXPORT_SYMBOL_GPL(clk_unregister);
4209 * clk_hw_unregister - unregister a currently registered clk_hw
4210 * @hw: hardware-specific clock data to unregister
4212 void clk_hw_unregister(struct clk_hw *hw)
4214 clk_unregister(hw->clk);
4216 EXPORT_SYMBOL_GPL(clk_hw_unregister);
4218 static void devm_clk_unregister_cb(struct device *dev, void *res)
4220 clk_unregister(*(struct clk **)res);
4223 static void devm_clk_hw_unregister_cb(struct device *dev, void *res)
4225 clk_hw_unregister(*(struct clk_hw **)res);
4229 * devm_clk_register - resource managed clk_register()
4230 * @dev: device that is registering this clock
4231 * @hw: link to hardware-specific clock data
4233 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4235 * Clocks returned from this function are automatically clk_unregister()ed on
4236 * driver detach. See clk_register() for more information.
4238 struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
4243 clkp = devres_alloc(devm_clk_unregister_cb, sizeof(*clkp), GFP_KERNEL);
4245 return ERR_PTR(-ENOMEM);
4247 clk = clk_register(dev, hw);
4250 devres_add(dev, clkp);
4257 EXPORT_SYMBOL_GPL(devm_clk_register);
4260 * devm_clk_hw_register - resource managed clk_hw_register()
4261 * @dev: device that is registering this clock
4262 * @hw: link to hardware-specific clock data
4264 * Managed clk_hw_register(). Clocks registered by this function are
4265 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4266 * for more information.
4268 int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
4270 struct clk_hw **hwp;
4273 hwp = devres_alloc(devm_clk_hw_unregister_cb, sizeof(*hwp), GFP_KERNEL);
4277 ret = clk_hw_register(dev, hw);
4280 devres_add(dev, hwp);
4287 EXPORT_SYMBOL_GPL(devm_clk_hw_register);
4289 static int devm_clk_match(struct device *dev, void *res, void *data)
4291 struct clk *c = res;
4297 static int devm_clk_hw_match(struct device *dev, void *res, void *data)
4299 struct clk_hw *hw = res;
4307 * devm_clk_unregister - resource managed clk_unregister()
4308 * @dev: device that is unregistering the clock data
4309 * @clk: clock to unregister
4311 * Deallocate a clock allocated with devm_clk_register(). Normally
4312 * this function will not need to be called and the resource management
4313 * code will ensure that the resource is freed.
4315 void devm_clk_unregister(struct device *dev, struct clk *clk)
4317 WARN_ON(devres_release(dev, devm_clk_unregister_cb, devm_clk_match, clk));
4319 EXPORT_SYMBOL_GPL(devm_clk_unregister);
4322 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
4323 * @dev: device that is unregistering the hardware-specific clock data
4324 * @hw: link to hardware-specific clock data
4326 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
4327 * this function will not need to be called and the resource management
4328 * code will ensure that the resource is freed.
4330 void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw)
4332 WARN_ON(devres_release(dev, devm_clk_hw_unregister_cb, devm_clk_hw_match,
4335 EXPORT_SYMBOL_GPL(devm_clk_hw_unregister);
4337 static void devm_clk_release(struct device *dev, void *res)
4339 clk_put(*(struct clk **)res);
4343 * devm_clk_hw_get_clk - resource managed clk_hw_get_clk()
4344 * @dev: device that is registering this clock
4345 * @hw: clk_hw associated with the clk being consumed
4346 * @con_id: connection ID string on device
4348 * Managed clk_hw_get_clk(). Clocks got with this function are
4349 * automatically clk_put() on driver detach. See clk_put()
4350 * for more information.
4352 struct clk *devm_clk_hw_get_clk(struct device *dev, struct clk_hw *hw,
4358 /* This should not happen because it would mean we have drivers
4359 * passing around clk_hw pointers instead of having the caller use
4360 * proper clk_get() style APIs
4362 WARN_ON_ONCE(dev != hw->core->dev);
4364 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
4366 return ERR_PTR(-ENOMEM);
4368 clk = clk_hw_get_clk(hw, con_id);
4371 devres_add(dev, clkp);
4378 EXPORT_SYMBOL_GPL(devm_clk_hw_get_clk);
4384 void __clk_put(struct clk *clk)
4386 struct module *owner;
4388 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
4394 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4395 * given user should be balanced with calls to clk_rate_exclusive_put()
4396 * and by that same consumer
4398 if (WARN_ON(clk->exclusive_count)) {
4399 /* We voiced our concern, let's sanitize the situation */
4400 clk->core->protect_count -= (clk->exclusive_count - 1);
4401 clk_core_rate_unprotect(clk->core);
4402 clk->exclusive_count = 0;
4405 hlist_del(&clk->clks_node);
4406 if (clk->min_rate > clk->core->req_rate ||
4407 clk->max_rate < clk->core->req_rate)
4408 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
4410 owner = clk->core->owner;
4411 kref_put(&clk->core->ref, __clk_release);
4413 clk_prepare_unlock();
4420 /*** clk rate change notifiers ***/
4423 * clk_notifier_register - add a clk rate change notifier
4424 * @clk: struct clk * to watch
4425 * @nb: struct notifier_block * with callback info
4427 * Request notification when clk's rate changes. This uses an SRCU
4428 * notifier because we want it to block and notifier unregistrations are
4429 * uncommon. The callbacks associated with the notifier must not
4430 * re-enter into the clk framework by calling any top-level clk APIs;
4431 * this will cause a nested prepare_lock mutex.
4433 * In all notification cases (pre, post and abort rate change) the original
4434 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4435 * and the new frequency is passed via struct clk_notifier_data.new_rate.
4437 * clk_notifier_register() must be called from non-atomic context.
4438 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4439 * allocation failure; otherwise, passes along the return value of
4440 * srcu_notifier_chain_register().
4442 int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
4444 struct clk_notifier *cn;
4452 /* search the list of notifiers for this clk */
4453 list_for_each_entry(cn, &clk_notifier_list, node)
4457 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4458 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
4463 srcu_init_notifier_head(&cn->notifier_head);
4465 list_add(&cn->node, &clk_notifier_list);
4468 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
4470 clk->core->notifier_count++;
4473 clk_prepare_unlock();
4477 EXPORT_SYMBOL_GPL(clk_notifier_register);
4480 * clk_notifier_unregister - remove a clk rate change notifier
4481 * @clk: struct clk *
4482 * @nb: struct notifier_block * with callback info
4484 * Request no further notification for changes to 'clk' and frees memory
4485 * allocated in clk_notifier_register.
4487 * Returns -EINVAL if called with null arguments; otherwise, passes
4488 * along the return value of srcu_notifier_chain_unregister().
4490 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
4492 struct clk_notifier *cn;
4500 list_for_each_entry(cn, &clk_notifier_list, node) {
4501 if (cn->clk == clk) {
4502 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
4504 clk->core->notifier_count--;
4506 /* XXX the notifier code should handle this better */
4507 if (!cn->notifier_head.head) {
4508 srcu_cleanup_notifier_head(&cn->notifier_head);
4509 list_del(&cn->node);
4516 clk_prepare_unlock();
4520 EXPORT_SYMBOL_GPL(clk_notifier_unregister);
4522 struct clk_notifier_devres {
4524 struct notifier_block *nb;
4527 static void devm_clk_notifier_release(struct device *dev, void *res)
4529 struct clk_notifier_devres *devres = res;
4531 clk_notifier_unregister(devres->clk, devres->nb);
4534 int devm_clk_notifier_register(struct device *dev, struct clk *clk,
4535 struct notifier_block *nb)
4537 struct clk_notifier_devres *devres;
4540 devres = devres_alloc(devm_clk_notifier_release,
4541 sizeof(*devres), GFP_KERNEL);
4546 ret = clk_notifier_register(clk, nb);
4551 devres_free(devres);
4556 EXPORT_SYMBOL_GPL(devm_clk_notifier_register);
4559 static void clk_core_reparent_orphans(void)
4562 clk_core_reparent_orphans_nolock();
4563 clk_prepare_unlock();
4567 * struct of_clk_provider - Clock provider registration structure
4568 * @link: Entry in global list of clock providers
4569 * @node: Pointer to device tree node of clock provider
4570 * @get: Get clock callback. Returns NULL or a struct clk for the
4571 * given clock specifier
4572 * @get_hw: Get clk_hw callback. Returns NULL, ERR_PTR or a
4573 * struct clk_hw for the given clock specifier
4574 * @data: context pointer to be passed into @get callback
4576 struct of_clk_provider {
4577 struct list_head link;
4579 struct device_node *node;
4580 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
4581 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
4585 extern struct of_device_id __clk_of_table;
4586 static const struct of_device_id __clk_of_table_sentinel
4587 __used __section("__clk_of_table_end");
4589 static LIST_HEAD(of_clk_providers);
4590 static DEFINE_MUTEX(of_clk_mutex);
4592 struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
4597 EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
4599 struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
4603 EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
4605 struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
4607 struct clk_onecell_data *clk_data = data;
4608 unsigned int idx = clkspec->args[0];
4610 if (idx >= clk_data->clk_num) {
4611 pr_err("%s: invalid clock index %u\n", __func__, idx);
4612 return ERR_PTR(-EINVAL);
4615 return clk_data->clks[idx];
4617 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
4620 of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
4622 struct clk_hw_onecell_data *hw_data = data;
4623 unsigned int idx = clkspec->args[0];
4625 if (idx >= hw_data->num) {
4626 pr_err("%s: invalid index %u\n", __func__, idx);
4627 return ERR_PTR(-EINVAL);
4630 return hw_data->hws[idx];
4632 EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
4635 * of_clk_add_provider() - Register a clock provider for a node
4636 * @np: Device node pointer associated with clock provider
4637 * @clk_src_get: callback for decoding clock
4638 * @data: context pointer for @clk_src_get callback.
4640 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
4642 int of_clk_add_provider(struct device_node *np,
4643 struct clk *(*clk_src_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);
4659 cp->get = clk_src_get;
4661 mutex_lock(&of_clk_mutex);
4662 list_add(&cp->link, &of_clk_providers);
4663 mutex_unlock(&of_clk_mutex);
4664 pr_debug("Added clock 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_provider);
4679 * of_clk_add_hw_provider() - Register a clock provider for a node
4680 * @np: Device node pointer associated with clock provider
4681 * @get: callback for decoding clk_hw
4682 * @data: context pointer for @get callback.
4684 int of_clk_add_hw_provider(struct device_node *np,
4685 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4689 struct of_clk_provider *cp;
4695 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4699 cp->node = of_node_get(np);
4703 mutex_lock(&of_clk_mutex);
4704 list_add(&cp->link, &of_clk_providers);
4705 mutex_unlock(&of_clk_mutex);
4706 pr_debug("Added clk_hw provider from %pOF\n", np);
4708 clk_core_reparent_orphans();
4710 ret = of_clk_set_defaults(np, true);
4712 of_clk_del_provider(np);
4714 fwnode_dev_initialized(&np->fwnode, true);
4718 EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
4720 static void devm_of_clk_release_provider(struct device *dev, void *res)
4722 of_clk_del_provider(*(struct device_node **)res);
4726 * We allow a child device to use its parent device as the clock provider node
4727 * for cases like MFD sub-devices where the child device driver wants to use
4728 * devm_*() APIs but not list the device in DT as a sub-node.
4730 static struct device_node *get_clk_provider_node(struct device *dev)
4732 struct device_node *np, *parent_np;
4735 parent_np = dev->parent ? dev->parent->of_node : NULL;
4737 if (!of_find_property(np, "#clock-cells", NULL))
4738 if (of_find_property(parent_np, "#clock-cells", NULL))
4745 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
4746 * @dev: Device acting as the clock provider (used for DT node and lifetime)
4747 * @get: callback for decoding clk_hw
4748 * @data: context pointer for @get callback
4750 * Registers clock provider for given device's node. If the device has no DT
4751 * node or if the device node lacks of clock provider information (#clock-cells)
4752 * then the parent device's node is scanned for this information. If parent node
4753 * has the #clock-cells then it is used in registration. Provider is
4754 * automatically released at device exit.
4756 * Return: 0 on success or an errno on failure.
4758 int devm_of_clk_add_hw_provider(struct device *dev,
4759 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4763 struct device_node **ptr, *np;
4766 ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr),
4771 np = get_clk_provider_node(dev);
4772 ret = of_clk_add_hw_provider(np, get, data);
4775 devres_add(dev, ptr);
4782 EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider);
4785 * of_clk_del_provider() - Remove a previously registered clock provider
4786 * @np: Device node pointer associated with clock provider
4788 void of_clk_del_provider(struct device_node *np)
4790 struct of_clk_provider *cp;
4795 mutex_lock(&of_clk_mutex);
4796 list_for_each_entry(cp, &of_clk_providers, link) {
4797 if (cp->node == np) {
4798 list_del(&cp->link);
4799 fwnode_dev_initialized(&np->fwnode, false);
4800 of_node_put(cp->node);
4805 mutex_unlock(&of_clk_mutex);
4807 EXPORT_SYMBOL_GPL(of_clk_del_provider);
4809 static int devm_clk_provider_match(struct device *dev, void *res, void *data)
4811 struct device_node **np = res;
4813 if (WARN_ON(!np || !*np))
4820 * devm_of_clk_del_provider() - Remove clock provider registered using devm
4821 * @dev: Device to whose lifetime the clock provider was bound
4823 void devm_of_clk_del_provider(struct device *dev)
4826 struct device_node *np = get_clk_provider_node(dev);
4828 ret = devres_release(dev, devm_of_clk_release_provider,
4829 devm_clk_provider_match, np);
4833 EXPORT_SYMBOL(devm_of_clk_del_provider);
4836 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
4837 * @np: device node to parse clock specifier from
4838 * @index: index of phandle to parse clock out of. If index < 0, @name is used
4839 * @name: clock name to find and parse. If name is NULL, the index is used
4840 * @out_args: Result of parsing the clock specifier
4842 * Parses a device node's "clocks" and "clock-names" properties to find the
4843 * phandle and cells for the index or name that is desired. The resulting clock
4844 * specifier is placed into @out_args, or an errno is returned when there's a
4845 * parsing error. The @index argument is ignored if @name is non-NULL.
4849 * phandle1: clock-controller@1 {
4850 * #clock-cells = <2>;
4853 * phandle2: clock-controller@2 {
4854 * #clock-cells = <1>;
4857 * clock-consumer@3 {
4858 * clocks = <&phandle1 1 2 &phandle2 3>;
4859 * clock-names = "name1", "name2";
4862 * To get a device_node for `clock-controller@2' node you may call this
4863 * function a few different ways:
4865 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
4866 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
4867 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
4869 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
4870 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
4871 * the "clock-names" property of @np.
4873 static int of_parse_clkspec(const struct device_node *np, int index,
4874 const char *name, struct of_phandle_args *out_args)
4878 /* Walk up the tree of devices looking for a clock property that matches */
4881 * For named clocks, first look up the name in the
4882 * "clock-names" property. If it cannot be found, then index
4883 * will be an error code and of_parse_phandle_with_args() will
4887 index = of_property_match_string(np, "clock-names", name);
4888 ret = of_parse_phandle_with_args(np, "clocks", "#clock-cells",
4892 if (name && index >= 0)
4896 * No matching clock found on this node. If the parent node
4897 * has a "clock-ranges" property, then we can try one of its
4901 if (np && !of_get_property(np, "clock-ranges", NULL))
4909 static struct clk_hw *
4910 __of_clk_get_hw_from_provider(struct of_clk_provider *provider,
4911 struct of_phandle_args *clkspec)
4915 if (provider->get_hw)
4916 return provider->get_hw(clkspec, provider->data);
4918 clk = provider->get(clkspec, provider->data);
4920 return ERR_CAST(clk);
4921 return __clk_get_hw(clk);
4924 static struct clk_hw *
4925 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
4927 struct of_clk_provider *provider;
4928 struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER);
4931 return ERR_PTR(-EINVAL);
4933 mutex_lock(&of_clk_mutex);
4934 list_for_each_entry(provider, &of_clk_providers, link) {
4935 if (provider->node == clkspec->np) {
4936 hw = __of_clk_get_hw_from_provider(provider, clkspec);
4941 mutex_unlock(&of_clk_mutex);
4947 * of_clk_get_from_provider() - Lookup a clock from a clock provider
4948 * @clkspec: pointer to a clock specifier data structure
4950 * This function looks up a struct clk from the registered list of clock
4951 * providers, an input is a clock specifier data structure as returned
4952 * from the of_parse_phandle_with_args() function call.
4954 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
4956 struct clk_hw *hw = of_clk_get_hw_from_clkspec(clkspec);
4958 return clk_hw_create_clk(NULL, hw, NULL, __func__);
4960 EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
4962 struct clk_hw *of_clk_get_hw(struct device_node *np, int index,
4967 struct of_phandle_args clkspec;
4969 ret = of_parse_clkspec(np, index, con_id, &clkspec);
4971 return ERR_PTR(ret);
4973 hw = of_clk_get_hw_from_clkspec(&clkspec);
4974 of_node_put(clkspec.np);
4979 static struct clk *__of_clk_get(struct device_node *np,
4980 int index, const char *dev_id,
4983 struct clk_hw *hw = of_clk_get_hw(np, index, con_id);
4985 return clk_hw_create_clk(NULL, hw, dev_id, con_id);
4988 struct clk *of_clk_get(struct device_node *np, int index)
4990 return __of_clk_get(np, index, np->full_name, NULL);
4992 EXPORT_SYMBOL(of_clk_get);
4995 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
4996 * @np: pointer to clock consumer node
4997 * @name: name of consumer's clock input, or NULL for the first clock reference
4999 * This function parses the clocks and clock-names properties,
5000 * and uses them to look up the struct clk from the registered list of clock
5003 struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
5006 return ERR_PTR(-ENOENT);
5008 return __of_clk_get(np, 0, np->full_name, name);
5010 EXPORT_SYMBOL(of_clk_get_by_name);
5013 * of_clk_get_parent_count() - Count the number of clocks a device node has
5014 * @np: device node to count
5016 * Returns: The number of clocks that are possible parents of this node
5018 unsigned int of_clk_get_parent_count(const struct device_node *np)
5022 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
5028 EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
5030 const char *of_clk_get_parent_name(const struct device_node *np, int index)
5032 struct of_phandle_args clkspec;
5033 struct property *prop;
5034 const char *clk_name;
5041 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
5046 index = clkspec.args_count ? clkspec.args[0] : 0;
5049 /* if there is an indices property, use it to transfer the index
5050 * specified into an array offset for the clock-output-names property.
5052 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
5059 /* We went off the end of 'clock-indices' without finding it */
5063 if (of_property_read_string_index(clkspec.np, "clock-output-names",
5067 * Best effort to get the name if the clock has been
5068 * registered with the framework. If the clock isn't
5069 * registered, we return the node name as the name of
5070 * the clock as long as #clock-cells = 0.
5072 clk = of_clk_get_from_provider(&clkspec);
5074 if (clkspec.args_count == 0)
5075 clk_name = clkspec.np->name;
5079 clk_name = __clk_get_name(clk);
5085 of_node_put(clkspec.np);
5088 EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
5091 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
5093 * @np: Device node pointer associated with clock provider
5094 * @parents: pointer to char array that hold the parents' names
5095 * @size: size of the @parents array
5097 * Return: number of parents for the clock node.
5099 int of_clk_parent_fill(struct device_node *np, const char **parents,
5104 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
5109 EXPORT_SYMBOL_GPL(of_clk_parent_fill);
5111 struct clock_provider {
5112 void (*clk_init_cb)(struct device_node *);
5113 struct device_node *np;
5114 struct list_head node;
5118 * This function looks for a parent clock. If there is one, then it
5119 * checks that the provider for this parent clock was initialized, in
5120 * this case the parent clock will be ready.
5122 static int parent_ready(struct device_node *np)
5127 struct clk *clk = of_clk_get(np, i);
5129 /* this parent is ready we can check the next one */
5136 /* at least one parent is not ready, we exit now */
5137 if (PTR_ERR(clk) == -EPROBE_DEFER)
5141 * Here we make assumption that the device tree is
5142 * written correctly. So an error means that there is
5143 * no more parent. As we didn't exit yet, then the
5144 * previous parent are ready. If there is no clock
5145 * parent, no need to wait for them, then we can
5146 * consider their absence as being ready
5153 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
5154 * @np: Device node pointer associated with clock provider
5155 * @index: clock index
5156 * @flags: pointer to top-level framework flags
5158 * Detects if the clock-critical property exists and, if so, sets the
5159 * corresponding CLK_IS_CRITICAL flag.
5161 * Do not use this function. It exists only for legacy Device Tree
5162 * bindings, such as the one-clock-per-node style that are outdated.
5163 * Those bindings typically put all clock data into .dts and the Linux
5164 * driver has no clock data, thus making it impossible to set this flag
5165 * correctly from the driver. Only those drivers may call
5166 * of_clk_detect_critical from their setup functions.
5168 * Return: error code or zero on success
5170 int of_clk_detect_critical(struct device_node *np, int index,
5171 unsigned long *flags)
5173 struct property *prop;
5180 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
5182 *flags |= CLK_IS_CRITICAL;
5188 * of_clk_init() - Scan and init clock providers from the DT
5189 * @matches: array of compatible values and init functions for providers.
5191 * This function scans the device tree for matching clock providers
5192 * and calls their initialization functions. It also does it by trying
5193 * to follow the dependencies.
5195 void __init of_clk_init(const struct of_device_id *matches)
5197 const struct of_device_id *match;
5198 struct device_node *np;
5199 struct clock_provider *clk_provider, *next;
5202 LIST_HEAD(clk_provider_list);
5205 matches = &__clk_of_table;
5207 /* First prepare the list of the clocks providers */
5208 for_each_matching_node_and_match(np, matches, &match) {
5209 struct clock_provider *parent;
5211 if (!of_device_is_available(np))
5214 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
5216 list_for_each_entry_safe(clk_provider, next,
5217 &clk_provider_list, node) {
5218 list_del(&clk_provider->node);
5219 of_node_put(clk_provider->np);
5220 kfree(clk_provider);
5226 parent->clk_init_cb = match->data;
5227 parent->np = of_node_get(np);
5228 list_add_tail(&parent->node, &clk_provider_list);
5231 while (!list_empty(&clk_provider_list)) {
5232 is_init_done = false;
5233 list_for_each_entry_safe(clk_provider, next,
5234 &clk_provider_list, node) {
5235 if (force || parent_ready(clk_provider->np)) {
5237 /* Don't populate platform devices */
5238 of_node_set_flag(clk_provider->np,
5241 clk_provider->clk_init_cb(clk_provider->np);
5242 of_clk_set_defaults(clk_provider->np, true);
5244 list_del(&clk_provider->node);
5245 of_node_put(clk_provider->np);
5246 kfree(clk_provider);
5247 is_init_done = true;
5252 * We didn't manage to initialize any of the
5253 * remaining providers during the last loop, so now we
5254 * initialize all the remaining ones unconditionally
5255 * in case the clock parent was not mandatory