1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
6 * Standard functionality for the common clock API. See Documentation/driver-api/clk.rst
10 #include <linux/clk-provider.h>
11 #include <linux/clk/clk-conf.h>
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/spinlock.h>
15 #include <linux/err.h>
16 #include <linux/list.h>
17 #include <linux/slab.h>
19 #include <linux/device.h>
20 #include <linux/init.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/sched.h>
23 #include <linux/clkdev.h>
27 static DEFINE_SPINLOCK(enable_lock);
28 static DEFINE_MUTEX(prepare_lock);
30 static struct task_struct *prepare_owner;
31 static struct task_struct *enable_owner;
33 static int prepare_refcnt;
34 static int enable_refcnt;
36 static HLIST_HEAD(clk_root_list);
37 static HLIST_HEAD(clk_orphan_list);
38 static LIST_HEAD(clk_notifier_list);
40 static 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)
111 if (!core->rpm_enabled)
114 return pm_runtime_resume_and_get(core->dev);
117 static void clk_pm_runtime_put(struct clk_core *core)
119 if (!core->rpm_enabled)
122 pm_runtime_put_sync(core->dev);
126 static void clk_prepare_lock(void)
128 if (!mutex_trylock(&prepare_lock)) {
129 if (prepare_owner == current) {
133 mutex_lock(&prepare_lock);
135 WARN_ON_ONCE(prepare_owner != NULL);
136 WARN_ON_ONCE(prepare_refcnt != 0);
137 prepare_owner = current;
141 static void clk_prepare_unlock(void)
143 WARN_ON_ONCE(prepare_owner != current);
144 WARN_ON_ONCE(prepare_refcnt == 0);
146 if (--prepare_refcnt)
148 prepare_owner = NULL;
149 mutex_unlock(&prepare_lock);
152 static unsigned long clk_enable_lock(void)
153 __acquires(enable_lock)
158 * On UP systems, spin_trylock_irqsave() always returns true, even if
159 * we already hold the lock. So, in that case, we rely only on
160 * reference counting.
162 if (!IS_ENABLED(CONFIG_SMP) ||
163 !spin_trylock_irqsave(&enable_lock, flags)) {
164 if (enable_owner == current) {
166 __acquire(enable_lock);
167 if (!IS_ENABLED(CONFIG_SMP))
168 local_save_flags(flags);
171 spin_lock_irqsave(&enable_lock, flags);
173 WARN_ON_ONCE(enable_owner != NULL);
174 WARN_ON_ONCE(enable_refcnt != 0);
175 enable_owner = current;
180 static void clk_enable_unlock(unsigned long flags)
181 __releases(enable_lock)
183 WARN_ON_ONCE(enable_owner != current);
184 WARN_ON_ONCE(enable_refcnt == 0);
186 if (--enable_refcnt) {
187 __release(enable_lock);
191 spin_unlock_irqrestore(&enable_lock, flags);
194 static bool clk_core_rate_is_protected(struct clk_core *core)
196 return core->protect_count;
199 static bool clk_core_is_prepared(struct clk_core *core)
204 * .is_prepared is optional for clocks that can prepare
205 * fall back to software usage counter if it is missing
207 if (!core->ops->is_prepared)
208 return core->prepare_count;
210 if (!clk_pm_runtime_get(core)) {
211 ret = core->ops->is_prepared(core->hw);
212 clk_pm_runtime_put(core);
218 static bool clk_core_is_enabled(struct clk_core *core)
223 * .is_enabled is only mandatory for clocks that gate
224 * fall back to software usage counter if .is_enabled is missing
226 if (!core->ops->is_enabled)
227 return core->enable_count;
230 * Check if clock controller's device is runtime active before
231 * calling .is_enabled callback. If not, assume that clock is
232 * disabled, because we might be called from atomic context, from
233 * which pm_runtime_get() is not allowed.
234 * This function is called mainly from clk_disable_unused_subtree,
235 * which ensures proper runtime pm activation of controller before
236 * taking enable spinlock, but the below check is needed if one tries
237 * to call it from other places.
239 if (core->rpm_enabled) {
240 pm_runtime_get_noresume(core->dev);
241 if (!pm_runtime_active(core->dev)) {
247 ret = core->ops->is_enabled(core->hw);
249 if (core->rpm_enabled)
250 pm_runtime_put(core->dev);
255 /*** helper functions ***/
257 const char *__clk_get_name(const struct clk *clk)
259 return !clk ? NULL : clk->core->name;
261 EXPORT_SYMBOL_GPL(__clk_get_name);
263 const char *clk_hw_get_name(const struct clk_hw *hw)
265 return hw->core->name;
267 EXPORT_SYMBOL_GPL(clk_hw_get_name);
269 struct clk_hw *__clk_get_hw(struct clk *clk)
271 return !clk ? NULL : clk->core->hw;
273 EXPORT_SYMBOL_GPL(__clk_get_hw);
275 unsigned int clk_hw_get_num_parents(const struct clk_hw *hw)
277 return hw->core->num_parents;
279 EXPORT_SYMBOL_GPL(clk_hw_get_num_parents);
281 struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw)
283 return hw->core->parent ? hw->core->parent->hw : NULL;
285 EXPORT_SYMBOL_GPL(clk_hw_get_parent);
287 static struct clk_core *__clk_lookup_subtree(const char *name,
288 struct clk_core *core)
290 struct clk_core *child;
291 struct clk_core *ret;
293 if (!strcmp(core->name, name))
296 hlist_for_each_entry(child, &core->children, child_node) {
297 ret = __clk_lookup_subtree(name, child);
305 static struct clk_core *clk_core_lookup(const char *name)
307 struct clk_core *root_clk;
308 struct clk_core *ret;
313 /* search the 'proper' clk tree first */
314 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
315 ret = __clk_lookup_subtree(name, root_clk);
320 /* if not found, then search the orphan tree */
321 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
322 ret = __clk_lookup_subtree(name, root_clk);
331 static int of_parse_clkspec(const struct device_node *np, int index,
332 const char *name, struct of_phandle_args *out_args);
333 static struct clk_hw *
334 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec);
336 static inline int of_parse_clkspec(const struct device_node *np, int index,
338 struct of_phandle_args *out_args)
342 static inline struct clk_hw *
343 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
345 return ERR_PTR(-ENOENT);
350 * clk_core_get - Find the clk_core parent of a clk
351 * @core: clk to find parent of
352 * @p_index: parent index to search for
354 * This is the preferred method for clk providers to find the parent of a
355 * clk when that parent is external to the clk controller. The parent_names
356 * array is indexed and treated as a local name matching a string in the device
357 * node's 'clock-names' property or as the 'con_id' matching the device's
358 * dev_name() in a clk_lookup. This allows clk providers to use their own
359 * namespace instead of looking for a globally unique parent string.
361 * For example the following DT snippet would allow a clock registered by the
362 * clock-controller@c001 that has a clk_init_data::parent_data array
363 * with 'xtal' in the 'name' member to find the clock provided by the
364 * clock-controller@f00abcd without needing to get the globally unique name of
367 * parent: clock-controller@f00abcd {
368 * reg = <0xf00abcd 0xabcd>;
369 * #clock-cells = <0>;
372 * clock-controller@c001 {
373 * reg = <0xc001 0xf00d>;
374 * clocks = <&parent>;
375 * clock-names = "xtal";
376 * #clock-cells = <1>;
379 * Returns: -ENOENT when the provider can't be found or the clk doesn't
380 * exist in the provider or the name can't be found in the DT node or
381 * in a clkdev lookup. NULL when the provider knows about the clk but it
382 * isn't provided on this system.
383 * A valid clk_core pointer when the clk can be found in the provider.
385 static struct clk_core *clk_core_get(struct clk_core *core, u8 p_index)
387 const char *name = core->parents[p_index].fw_name;
388 int index = core->parents[p_index].index;
389 struct clk_hw *hw = ERR_PTR(-ENOENT);
390 struct device *dev = core->dev;
391 const char *dev_id = dev ? dev_name(dev) : NULL;
392 struct device_node *np = core->of_node;
393 struct of_phandle_args clkspec;
395 if (np && (name || index >= 0) &&
396 !of_parse_clkspec(np, index, name, &clkspec)) {
397 hw = of_clk_get_hw_from_clkspec(&clkspec);
398 of_node_put(clkspec.np);
401 * If the DT search above couldn't find the provider fallback to
402 * looking up via clkdev based clk_lookups.
404 hw = clk_find_hw(dev_id, name);
413 static void clk_core_fill_parent_index(struct clk_core *core, u8 index)
415 struct clk_parent_map *entry = &core->parents[index];
416 struct clk_core *parent;
419 parent = entry->hw->core;
421 parent = clk_core_get(core, index);
422 if (PTR_ERR(parent) == -ENOENT && entry->name)
423 parent = clk_core_lookup(entry->name);
427 * We have a direct reference but it isn't registered yet?
428 * Orphan it and let clk_reparent() update the orphan status
429 * when the parent is registered.
432 parent = ERR_PTR(-EPROBE_DEFER);
434 /* Only cache it if it's not an error */
436 entry->core = parent;
439 static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
442 if (!core || index >= core->num_parents || !core->parents)
445 if (!core->parents[index].core)
446 clk_core_fill_parent_index(core, index);
448 return core->parents[index].core;
452 clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
454 struct clk_core *parent;
456 parent = clk_core_get_parent_by_index(hw->core, index);
458 return !parent ? NULL : parent->hw;
460 EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
462 unsigned int __clk_get_enable_count(struct clk *clk)
464 return !clk ? 0 : clk->core->enable_count;
467 static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
472 if (!core->num_parents || core->parent)
476 * Clk must have a parent because num_parents > 0 but the parent isn't
477 * known yet. Best to return 0 as the rate of this clk until we can
478 * properly recalc the rate based on the parent's rate.
483 unsigned long clk_hw_get_rate(const struct clk_hw *hw)
485 return clk_core_get_rate_nolock(hw->core);
487 EXPORT_SYMBOL_GPL(clk_hw_get_rate);
489 static unsigned long clk_core_get_accuracy_no_lock(struct clk_core *core)
494 return core->accuracy;
497 unsigned long clk_hw_get_flags(const struct clk_hw *hw)
499 return hw->core->flags;
501 EXPORT_SYMBOL_GPL(clk_hw_get_flags);
503 bool clk_hw_is_prepared(const struct clk_hw *hw)
505 return clk_core_is_prepared(hw->core);
507 EXPORT_SYMBOL_GPL(clk_hw_is_prepared);
509 bool clk_hw_rate_is_protected(const struct clk_hw *hw)
511 return clk_core_rate_is_protected(hw->core);
513 EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected);
515 bool clk_hw_is_enabled(const struct clk_hw *hw)
517 return clk_core_is_enabled(hw->core);
519 EXPORT_SYMBOL_GPL(clk_hw_is_enabled);
521 bool __clk_is_enabled(struct clk *clk)
526 return clk_core_is_enabled(clk->core);
528 EXPORT_SYMBOL_GPL(__clk_is_enabled);
530 static bool mux_is_better_rate(unsigned long rate, unsigned long now,
531 unsigned long best, unsigned long flags)
533 if (flags & CLK_MUX_ROUND_CLOSEST)
534 return abs(now - rate) < abs(best - rate);
536 return now <= rate && now > best;
539 static void clk_core_init_rate_req(struct clk_core * const core,
540 struct clk_rate_request *req,
543 static int clk_core_round_rate_nolock(struct clk_core *core,
544 struct clk_rate_request *req);
546 static bool clk_core_has_parent(struct clk_core *core, const struct clk_core *parent)
548 struct clk_core *tmp;
551 /* Optimize for the case where the parent is already the parent. */
552 if (core->parent == parent)
555 for (i = 0; i < core->num_parents; i++) {
556 tmp = clk_core_get_parent_by_index(core, i);
568 clk_core_forward_rate_req(struct clk_core *core,
569 const struct clk_rate_request *old_req,
570 struct clk_core *parent,
571 struct clk_rate_request *req,
572 unsigned long parent_rate)
574 if (WARN_ON(!clk_core_has_parent(core, parent)))
577 clk_core_init_rate_req(parent, req, parent_rate);
579 if (req->min_rate < old_req->min_rate)
580 req->min_rate = old_req->min_rate;
582 if (req->max_rate > old_req->max_rate)
583 req->max_rate = old_req->max_rate;
586 int clk_mux_determine_rate_flags(struct clk_hw *hw,
587 struct clk_rate_request *req,
590 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
591 int i, num_parents, ret;
592 unsigned long best = 0;
594 /* if NO_REPARENT flag set, pass through to current parent */
595 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
596 parent = core->parent;
597 if (core->flags & CLK_SET_RATE_PARENT) {
598 struct clk_rate_request parent_req;
605 clk_core_forward_rate_req(core, req, parent, &parent_req, req->rate);
606 ret = clk_core_round_rate_nolock(parent, &parent_req);
610 best = parent_req.rate;
612 best = clk_core_get_rate_nolock(parent);
614 best = clk_core_get_rate_nolock(core);
620 /* find the parent that can provide the fastest rate <= rate */
621 num_parents = core->num_parents;
622 for (i = 0; i < num_parents; i++) {
623 unsigned long parent_rate;
625 parent = clk_core_get_parent_by_index(core, i);
629 if (core->flags & CLK_SET_RATE_PARENT) {
630 struct clk_rate_request parent_req;
632 clk_core_forward_rate_req(core, req, parent, &parent_req, req->rate);
633 ret = clk_core_round_rate_nolock(parent, &parent_req);
637 parent_rate = parent_req.rate;
639 parent_rate = clk_core_get_rate_nolock(parent);
642 if (mux_is_better_rate(req->rate, parent_rate,
644 best_parent = parent;
654 req->best_parent_hw = best_parent->hw;
655 req->best_parent_rate = best;
660 EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags);
662 struct clk *__clk_lookup(const char *name)
664 struct clk_core *core = clk_core_lookup(name);
666 return !core ? NULL : core->hw->clk;
669 static void clk_core_get_boundaries(struct clk_core *core,
670 unsigned long *min_rate,
671 unsigned long *max_rate)
673 struct clk *clk_user;
675 lockdep_assert_held(&prepare_lock);
677 *min_rate = core->min_rate;
678 *max_rate = core->max_rate;
680 hlist_for_each_entry(clk_user, &core->clks, clks_node)
681 *min_rate = max(*min_rate, clk_user->min_rate);
683 hlist_for_each_entry(clk_user, &core->clks, clks_node)
684 *max_rate = min(*max_rate, clk_user->max_rate);
688 * clk_hw_get_rate_range() - returns the clock rate range for a hw clk
689 * @hw: the hw clk we want to get the range from
690 * @min_rate: pointer to the variable that will hold the minimum
691 * @max_rate: pointer to the variable that will hold the maximum
693 * Fills the @min_rate and @max_rate variables with the minimum and
694 * maximum that clock can reach.
696 void clk_hw_get_rate_range(struct clk_hw *hw, unsigned long *min_rate,
697 unsigned long *max_rate)
699 clk_core_get_boundaries(hw->core, min_rate, max_rate);
701 EXPORT_SYMBOL_GPL(clk_hw_get_rate_range);
703 static bool clk_core_check_boundaries(struct clk_core *core,
704 unsigned long min_rate,
705 unsigned long max_rate)
709 lockdep_assert_held(&prepare_lock);
711 if (min_rate > core->max_rate || max_rate < core->min_rate)
714 hlist_for_each_entry(user, &core->clks, clks_node)
715 if (min_rate > user->max_rate || max_rate < user->min_rate)
721 void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
722 unsigned long max_rate)
724 hw->core->min_rate = min_rate;
725 hw->core->max_rate = max_rate;
727 EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
730 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
731 * @hw: mux type clk to determine rate on
732 * @req: rate request, also used to return preferred parent and frequencies
734 * Helper for finding best parent to provide a given frequency. This can be used
735 * directly as a determine_rate callback (e.g. for a mux), or from a more
736 * complex clock that may combine a mux with other operations.
738 * Returns: 0 on success, -EERROR value on error
740 int __clk_mux_determine_rate(struct clk_hw *hw,
741 struct clk_rate_request *req)
743 return clk_mux_determine_rate_flags(hw, req, 0);
745 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
747 int __clk_mux_determine_rate_closest(struct clk_hw *hw,
748 struct clk_rate_request *req)
750 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
752 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
756 static void clk_core_rate_unprotect(struct clk_core *core)
758 lockdep_assert_held(&prepare_lock);
763 if (WARN(core->protect_count == 0,
764 "%s already unprotected\n", core->name))
767 if (--core->protect_count > 0)
770 clk_core_rate_unprotect(core->parent);
773 static int clk_core_rate_nuke_protect(struct clk_core *core)
777 lockdep_assert_held(&prepare_lock);
782 if (core->protect_count == 0)
785 ret = core->protect_count;
786 core->protect_count = 1;
787 clk_core_rate_unprotect(core);
793 * clk_rate_exclusive_put - release exclusivity over clock rate control
794 * @clk: the clk over which the exclusivity is released
796 * clk_rate_exclusive_put() completes a critical section during which a clock
797 * consumer cannot tolerate any other consumer making any operation on the
798 * clock which could result in a rate change or rate glitch. Exclusive clocks
799 * cannot have their rate changed, either directly or indirectly due to changes
800 * further up the parent chain of clocks. As a result, clocks up parent chain
801 * also get under exclusive control of the calling consumer.
803 * If exlusivity is claimed more than once on clock, even by the same consumer,
804 * the rate effectively gets locked as exclusivity can't be preempted.
806 * Calls to clk_rate_exclusive_put() must be balanced with calls to
807 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
810 void clk_rate_exclusive_put(struct clk *clk)
818 * if there is something wrong with this consumer protect count, stop
819 * here before messing with the provider
821 if (WARN_ON(clk->exclusive_count <= 0))
824 clk_core_rate_unprotect(clk->core);
825 clk->exclusive_count--;
827 clk_prepare_unlock();
829 EXPORT_SYMBOL_GPL(clk_rate_exclusive_put);
831 static void clk_core_rate_protect(struct clk_core *core)
833 lockdep_assert_held(&prepare_lock);
838 if (core->protect_count == 0)
839 clk_core_rate_protect(core->parent);
841 core->protect_count++;
844 static void clk_core_rate_restore_protect(struct clk_core *core, int count)
846 lockdep_assert_held(&prepare_lock);
854 clk_core_rate_protect(core);
855 core->protect_count = count;
859 * clk_rate_exclusive_get - get exclusivity over the clk rate control
860 * @clk: the clk over which the exclusity of rate control is requested
862 * clk_rate_exclusive_get() begins a critical section during which a clock
863 * consumer cannot tolerate any other consumer making any operation on the
864 * clock which could result in a rate change or rate glitch. Exclusive clocks
865 * cannot have their rate changed, either directly or indirectly due to changes
866 * further up the parent chain of clocks. As a result, clocks up parent chain
867 * also get under exclusive control of the calling consumer.
869 * If exlusivity is claimed more than once on clock, even by the same consumer,
870 * the rate effectively gets locked as exclusivity can't be preempted.
872 * Calls to clk_rate_exclusive_get() should be balanced with calls to
873 * clk_rate_exclusive_put(). Calls to this function may sleep.
874 * Returns 0 on success, -EERROR otherwise
876 int clk_rate_exclusive_get(struct clk *clk)
882 clk_core_rate_protect(clk->core);
883 clk->exclusive_count++;
884 clk_prepare_unlock();
888 EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);
890 static void clk_core_unprepare(struct clk_core *core)
892 lockdep_assert_held(&prepare_lock);
897 if (WARN(core->prepare_count == 0,
898 "%s already unprepared\n", core->name))
901 if (WARN(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL,
902 "Unpreparing critical %s\n", core->name))
905 if (core->flags & CLK_SET_RATE_GATE)
906 clk_core_rate_unprotect(core);
908 if (--core->prepare_count > 0)
911 WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name);
913 trace_clk_unprepare(core);
915 if (core->ops->unprepare)
916 core->ops->unprepare(core->hw);
918 trace_clk_unprepare_complete(core);
919 clk_core_unprepare(core->parent);
920 clk_pm_runtime_put(core);
923 static void clk_core_unprepare_lock(struct clk_core *core)
926 clk_core_unprepare(core);
927 clk_prepare_unlock();
931 * clk_unprepare - undo preparation of a clock source
932 * @clk: the clk being unprepared
934 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
935 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
936 * if the operation may sleep. One example is a clk which is accessed over
937 * I2c. In the complex case a clk gate operation may require a fast and a slow
938 * part. It is this reason that clk_unprepare and clk_disable are not mutually
939 * exclusive. In fact clk_disable must be called before clk_unprepare.
941 void clk_unprepare(struct clk *clk)
943 if (IS_ERR_OR_NULL(clk))
946 clk_core_unprepare_lock(clk->core);
948 EXPORT_SYMBOL_GPL(clk_unprepare);
950 static int clk_core_prepare(struct clk_core *core)
954 lockdep_assert_held(&prepare_lock);
959 if (core->prepare_count == 0) {
960 ret = clk_pm_runtime_get(core);
964 ret = clk_core_prepare(core->parent);
968 trace_clk_prepare(core);
970 if (core->ops->prepare)
971 ret = core->ops->prepare(core->hw);
973 trace_clk_prepare_complete(core);
979 core->prepare_count++;
982 * CLK_SET_RATE_GATE is a special case of clock protection
983 * Instead of a consumer claiming exclusive rate control, it is
984 * actually the provider which prevents any consumer from making any
985 * operation which could result in a rate change or rate glitch while
986 * the clock is prepared.
988 if (core->flags & CLK_SET_RATE_GATE)
989 clk_core_rate_protect(core);
993 clk_core_unprepare(core->parent);
995 clk_pm_runtime_put(core);
999 static int clk_core_prepare_lock(struct clk_core *core)
1004 ret = clk_core_prepare(core);
1005 clk_prepare_unlock();
1011 * clk_prepare - prepare a clock source
1012 * @clk: the clk being prepared
1014 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
1015 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
1016 * operation may sleep. One example is a clk which is accessed over I2c. In
1017 * the complex case a clk ungate operation may require a fast and a slow part.
1018 * It is this reason that clk_prepare and clk_enable are not mutually
1019 * exclusive. In fact clk_prepare must be called before clk_enable.
1020 * Returns 0 on success, -EERROR otherwise.
1022 int clk_prepare(struct clk *clk)
1027 return clk_core_prepare_lock(clk->core);
1029 EXPORT_SYMBOL_GPL(clk_prepare);
1031 static void clk_core_disable(struct clk_core *core)
1033 lockdep_assert_held(&enable_lock);
1038 if (WARN(core->enable_count == 0, "%s already disabled\n", core->name))
1041 if (WARN(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL,
1042 "Disabling critical %s\n", core->name))
1045 if (--core->enable_count > 0)
1048 trace_clk_disable_rcuidle(core);
1050 if (core->ops->disable)
1051 core->ops->disable(core->hw);
1053 trace_clk_disable_complete_rcuidle(core);
1055 clk_core_disable(core->parent);
1058 static void clk_core_disable_lock(struct clk_core *core)
1060 unsigned long flags;
1062 flags = clk_enable_lock();
1063 clk_core_disable(core);
1064 clk_enable_unlock(flags);
1068 * clk_disable - gate a clock
1069 * @clk: the clk being gated
1071 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1072 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1073 * clk if the operation is fast and will never sleep. One example is a
1074 * SoC-internal clk which is controlled via simple register writes. In the
1075 * complex case a clk gate operation may require a fast and a slow part. It is
1076 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1077 * In fact clk_disable must be called before clk_unprepare.
1079 void clk_disable(struct clk *clk)
1081 if (IS_ERR_OR_NULL(clk))
1084 clk_core_disable_lock(clk->core);
1086 EXPORT_SYMBOL_GPL(clk_disable);
1088 static int clk_core_enable(struct clk_core *core)
1092 lockdep_assert_held(&enable_lock);
1097 if (WARN(core->prepare_count == 0,
1098 "Enabling unprepared %s\n", core->name))
1101 if (core->enable_count == 0) {
1102 ret = clk_core_enable(core->parent);
1107 trace_clk_enable_rcuidle(core);
1109 if (core->ops->enable)
1110 ret = core->ops->enable(core->hw);
1112 trace_clk_enable_complete_rcuidle(core);
1115 clk_core_disable(core->parent);
1120 core->enable_count++;
1124 static int clk_core_enable_lock(struct clk_core *core)
1126 unsigned long flags;
1129 flags = clk_enable_lock();
1130 ret = clk_core_enable(core);
1131 clk_enable_unlock(flags);
1137 * clk_gate_restore_context - restore context for poweroff
1138 * @hw: the clk_hw pointer of clock whose state is to be restored
1140 * The clock gate restore context function enables or disables
1141 * the gate clocks based on the enable_count. This is done in cases
1142 * where the clock context is lost and based on the enable_count
1143 * the clock either needs to be enabled/disabled. This
1144 * helps restore the state of gate clocks.
1146 void clk_gate_restore_context(struct clk_hw *hw)
1148 struct clk_core *core = hw->core;
1150 if (core->enable_count)
1151 core->ops->enable(hw);
1153 core->ops->disable(hw);
1155 EXPORT_SYMBOL_GPL(clk_gate_restore_context);
1157 static int clk_core_save_context(struct clk_core *core)
1159 struct clk_core *child;
1162 hlist_for_each_entry(child, &core->children, child_node) {
1163 ret = clk_core_save_context(child);
1168 if (core->ops && core->ops->save_context)
1169 ret = core->ops->save_context(core->hw);
1174 static void clk_core_restore_context(struct clk_core *core)
1176 struct clk_core *child;
1178 if (core->ops && core->ops->restore_context)
1179 core->ops->restore_context(core->hw);
1181 hlist_for_each_entry(child, &core->children, child_node)
1182 clk_core_restore_context(child);
1186 * clk_save_context - save clock context for poweroff
1188 * Saves the context of the clock register for powerstates in which the
1189 * contents of the registers will be lost. Occurs deep within the suspend
1190 * code. Returns 0 on success.
1192 int clk_save_context(void)
1194 struct clk_core *clk;
1197 hlist_for_each_entry(clk, &clk_root_list, child_node) {
1198 ret = clk_core_save_context(clk);
1203 hlist_for_each_entry(clk, &clk_orphan_list, child_node) {
1204 ret = clk_core_save_context(clk);
1211 EXPORT_SYMBOL_GPL(clk_save_context);
1214 * clk_restore_context - restore clock context after poweroff
1216 * Restore the saved clock context upon resume.
1219 void clk_restore_context(void)
1221 struct clk_core *core;
1223 hlist_for_each_entry(core, &clk_root_list, child_node)
1224 clk_core_restore_context(core);
1226 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1227 clk_core_restore_context(core);
1229 EXPORT_SYMBOL_GPL(clk_restore_context);
1232 * clk_enable - ungate a clock
1233 * @clk: the clk being ungated
1235 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1236 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1237 * if the operation will never sleep. One example is a SoC-internal clk which
1238 * is controlled via simple register writes. In the complex case a clk ungate
1239 * operation may require a fast and a slow part. It is this reason that
1240 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1241 * must be called before clk_enable. Returns 0 on success, -EERROR
1244 int clk_enable(struct clk *clk)
1249 return clk_core_enable_lock(clk->core);
1251 EXPORT_SYMBOL_GPL(clk_enable);
1254 * clk_is_enabled_when_prepared - indicate if preparing a clock also enables it.
1255 * @clk: clock source
1257 * Returns true if clk_prepare() implicitly enables the clock, effectively
1258 * making clk_enable()/clk_disable() no-ops, false otherwise.
1260 * This is of interest mainly to power management code where actually
1261 * disabling the clock also requires unpreparing it to have any material
1264 * Regardless of the value returned here, the caller must always invoke
1265 * clk_enable() or clk_prepare_enable() and counterparts for usage counts
1268 bool clk_is_enabled_when_prepared(struct clk *clk)
1270 return clk && !(clk->core->ops->enable && clk->core->ops->disable);
1272 EXPORT_SYMBOL_GPL(clk_is_enabled_when_prepared);
1274 static int clk_core_prepare_enable(struct clk_core *core)
1278 ret = clk_core_prepare_lock(core);
1282 ret = clk_core_enable_lock(core);
1284 clk_core_unprepare_lock(core);
1289 static void clk_core_disable_unprepare(struct clk_core *core)
1291 clk_core_disable_lock(core);
1292 clk_core_unprepare_lock(core);
1295 static void __init clk_unprepare_unused_subtree(struct clk_core *core)
1297 struct clk_core *child;
1299 lockdep_assert_held(&prepare_lock);
1301 hlist_for_each_entry(child, &core->children, child_node)
1302 clk_unprepare_unused_subtree(child);
1304 if (core->prepare_count)
1307 if (core->flags & CLK_IGNORE_UNUSED)
1310 if (clk_pm_runtime_get(core))
1313 if (clk_core_is_prepared(core)) {
1314 trace_clk_unprepare(core);
1315 if (core->ops->unprepare_unused)
1316 core->ops->unprepare_unused(core->hw);
1317 else if (core->ops->unprepare)
1318 core->ops->unprepare(core->hw);
1319 trace_clk_unprepare_complete(core);
1322 clk_pm_runtime_put(core);
1325 static void __init clk_disable_unused_subtree(struct clk_core *core)
1327 struct clk_core *child;
1328 unsigned long flags;
1330 lockdep_assert_held(&prepare_lock);
1332 hlist_for_each_entry(child, &core->children, child_node)
1333 clk_disable_unused_subtree(child);
1335 if (core->flags & CLK_OPS_PARENT_ENABLE)
1336 clk_core_prepare_enable(core->parent);
1338 if (clk_pm_runtime_get(core))
1341 flags = clk_enable_lock();
1343 if (core->enable_count)
1346 if (core->flags & CLK_IGNORE_UNUSED)
1350 * some gate clocks have special needs during the disable-unused
1351 * sequence. call .disable_unused if available, otherwise fall
1354 if (clk_core_is_enabled(core)) {
1355 trace_clk_disable(core);
1356 if (core->ops->disable_unused)
1357 core->ops->disable_unused(core->hw);
1358 else if (core->ops->disable)
1359 core->ops->disable(core->hw);
1360 trace_clk_disable_complete(core);
1364 clk_enable_unlock(flags);
1365 clk_pm_runtime_put(core);
1367 if (core->flags & CLK_OPS_PARENT_ENABLE)
1368 clk_core_disable_unprepare(core->parent);
1371 static bool clk_ignore_unused __initdata;
1372 static int __init clk_ignore_unused_setup(char *__unused)
1374 clk_ignore_unused = true;
1377 __setup("clk_ignore_unused", clk_ignore_unused_setup);
1379 static int __init clk_disable_unused(void)
1381 struct clk_core *core;
1383 if (clk_ignore_unused) {
1384 pr_warn("clk: Not disabling unused clocks\n");
1390 hlist_for_each_entry(core, &clk_root_list, child_node)
1391 clk_disable_unused_subtree(core);
1393 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1394 clk_disable_unused_subtree(core);
1396 hlist_for_each_entry(core, &clk_root_list, child_node)
1397 clk_unprepare_unused_subtree(core);
1399 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1400 clk_unprepare_unused_subtree(core);
1402 clk_prepare_unlock();
1406 late_initcall_sync(clk_disable_unused);
1408 static int clk_core_determine_round_nolock(struct clk_core *core,
1409 struct clk_rate_request *req)
1413 lockdep_assert_held(&prepare_lock);
1419 * Some clock providers hand-craft their clk_rate_requests and
1420 * might not fill min_rate and max_rate.
1422 * If it's the case, clamping the rate is equivalent to setting
1423 * the rate to 0 which is bad. Skip the clamping but complain so
1424 * that it gets fixed, hopefully.
1426 if (!req->min_rate && !req->max_rate)
1427 pr_warn("%s: %s: clk_rate_request has initialized min or max rate.\n",
1428 __func__, core->name);
1430 req->rate = clamp(req->rate, req->min_rate, req->max_rate);
1433 * At this point, core protection will be disabled
1434 * - if the provider is not protected at all
1435 * - if the calling consumer is the only one which has exclusivity
1438 if (clk_core_rate_is_protected(core)) {
1439 req->rate = core->rate;
1440 } else if (core->ops->determine_rate) {
1441 return core->ops->determine_rate(core->hw, req);
1442 } else if (core->ops->round_rate) {
1443 rate = core->ops->round_rate(core->hw, req->rate,
1444 &req->best_parent_rate);
1456 static void clk_core_init_rate_req(struct clk_core * const core,
1457 struct clk_rate_request *req,
1460 struct clk_core *parent;
1465 memset(req, 0, sizeof(*req));
1466 req->max_rate = ULONG_MAX;
1472 clk_core_get_boundaries(core, &req->min_rate, &req->max_rate);
1474 parent = core->parent;
1476 req->best_parent_hw = parent->hw;
1477 req->best_parent_rate = parent->rate;
1479 req->best_parent_hw = NULL;
1480 req->best_parent_rate = 0;
1485 * clk_hw_init_rate_request - Initializes a clk_rate_request
1486 * @hw: the clk for which we want to submit a rate request
1487 * @req: the clk_rate_request structure we want to initialise
1488 * @rate: the rate which is to be requested
1490 * Initializes a clk_rate_request structure to submit to
1491 * __clk_determine_rate() or similar functions.
1493 void clk_hw_init_rate_request(const struct clk_hw *hw,
1494 struct clk_rate_request *req,
1497 if (WARN_ON(!hw || !req))
1500 clk_core_init_rate_req(hw->core, req, rate);
1502 EXPORT_SYMBOL_GPL(clk_hw_init_rate_request);
1505 * clk_hw_forward_rate_request - Forwards a clk_rate_request to a clock's parent
1506 * @hw: the original clock that got the rate request
1507 * @old_req: the original clk_rate_request structure we want to forward
1508 * @parent: the clk we want to forward @old_req to
1509 * @req: the clk_rate_request structure we want to initialise
1510 * @parent_rate: The rate which is to be requested to @parent
1512 * Initializes a clk_rate_request structure to submit to a clock parent
1513 * in __clk_determine_rate() or similar functions.
1515 void clk_hw_forward_rate_request(const struct clk_hw *hw,
1516 const struct clk_rate_request *old_req,
1517 const struct clk_hw *parent,
1518 struct clk_rate_request *req,
1519 unsigned long parent_rate)
1521 if (WARN_ON(!hw || !old_req || !parent || !req))
1524 clk_core_forward_rate_req(hw->core, old_req,
1529 static bool clk_core_can_round(struct clk_core * const core)
1531 return core->ops->determine_rate || core->ops->round_rate;
1534 static int clk_core_round_rate_nolock(struct clk_core *core,
1535 struct clk_rate_request *req)
1539 lockdep_assert_held(&prepare_lock);
1546 if (clk_core_can_round(core))
1547 return clk_core_determine_round_nolock(core, req);
1549 if (core->flags & CLK_SET_RATE_PARENT) {
1550 struct clk_rate_request parent_req;
1552 clk_core_forward_rate_req(core, req, core->parent, &parent_req, req->rate);
1553 ret = clk_core_round_rate_nolock(core->parent, &parent_req);
1557 req->best_parent_rate = parent_req.rate;
1558 req->rate = parent_req.rate;
1563 req->rate = core->rate;
1568 * __clk_determine_rate - get the closest rate actually supported by a clock
1569 * @hw: determine the rate of this clock
1570 * @req: target rate request
1572 * Useful for clk_ops such as .set_rate and .determine_rate.
1574 int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
1581 return clk_core_round_rate_nolock(hw->core, req);
1583 EXPORT_SYMBOL_GPL(__clk_determine_rate);
1586 * clk_hw_round_rate() - round the given rate for a hw clk
1587 * @hw: the hw clk for which we are rounding a rate
1588 * @rate: the rate which is to be rounded
1590 * Takes in a rate as input and rounds it to a rate that the clk can actually
1593 * Context: prepare_lock must be held.
1594 * For clk providers to call from within clk_ops such as .round_rate,
1597 * Return: returns rounded rate of hw clk if clk supports round_rate operation
1598 * else returns the parent rate.
1600 unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1603 struct clk_rate_request req;
1605 clk_core_init_rate_req(hw->core, &req, rate);
1607 ret = clk_core_round_rate_nolock(hw->core, &req);
1613 EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1616 * clk_round_rate - round the given rate for a clk
1617 * @clk: the clk for which we are rounding a rate
1618 * @rate: the rate which is to be rounded
1620 * Takes in a rate as input and rounds it to a rate that the clk can actually
1621 * use which is then returned. If clk doesn't support round_rate operation
1622 * then the parent rate is returned.
1624 long clk_round_rate(struct clk *clk, unsigned long rate)
1626 struct clk_rate_request req;
1634 if (clk->exclusive_count)
1635 clk_core_rate_unprotect(clk->core);
1637 clk_core_init_rate_req(clk->core, &req, rate);
1639 ret = clk_core_round_rate_nolock(clk->core, &req);
1641 if (clk->exclusive_count)
1642 clk_core_rate_protect(clk->core);
1644 clk_prepare_unlock();
1651 EXPORT_SYMBOL_GPL(clk_round_rate);
1654 * __clk_notify - call clk notifier chain
1655 * @core: clk that is changing rate
1656 * @msg: clk notifier type (see include/linux/clk.h)
1657 * @old_rate: old clk rate
1658 * @new_rate: new clk rate
1660 * Triggers a notifier call chain on the clk rate-change notification
1661 * for 'clk'. Passes a pointer to the struct clk and the previous
1662 * and current rates to the notifier callback. Intended to be called by
1663 * internal clock code only. Returns NOTIFY_DONE from the last driver
1664 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1665 * a driver returns that.
1667 static int __clk_notify(struct clk_core *core, unsigned long msg,
1668 unsigned long old_rate, unsigned long new_rate)
1670 struct clk_notifier *cn;
1671 struct clk_notifier_data cnd;
1672 int ret = NOTIFY_DONE;
1674 cnd.old_rate = old_rate;
1675 cnd.new_rate = new_rate;
1677 list_for_each_entry(cn, &clk_notifier_list, node) {
1678 if (cn->clk->core == core) {
1680 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1682 if (ret & NOTIFY_STOP_MASK)
1691 * __clk_recalc_accuracies
1692 * @core: first clk in the subtree
1694 * Walks the subtree of clks starting with clk and recalculates accuracies as
1695 * it goes. Note that if a clk does not implement the .recalc_accuracy
1696 * callback then it is assumed that the clock will take on the accuracy of its
1699 static void __clk_recalc_accuracies(struct clk_core *core)
1701 unsigned long parent_accuracy = 0;
1702 struct clk_core *child;
1704 lockdep_assert_held(&prepare_lock);
1707 parent_accuracy = core->parent->accuracy;
1709 if (core->ops->recalc_accuracy)
1710 core->accuracy = core->ops->recalc_accuracy(core->hw,
1713 core->accuracy = parent_accuracy;
1715 hlist_for_each_entry(child, &core->children, child_node)
1716 __clk_recalc_accuracies(child);
1719 static long clk_core_get_accuracy_recalc(struct clk_core *core)
1721 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1722 __clk_recalc_accuracies(core);
1724 return clk_core_get_accuracy_no_lock(core);
1728 * clk_get_accuracy - return the accuracy of clk
1729 * @clk: the clk whose accuracy is being returned
1731 * Simply returns the cached accuracy of the clk, unless
1732 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1734 * If clk is NULL then returns 0.
1736 long clk_get_accuracy(struct clk *clk)
1744 accuracy = clk_core_get_accuracy_recalc(clk->core);
1745 clk_prepare_unlock();
1749 EXPORT_SYMBOL_GPL(clk_get_accuracy);
1751 static unsigned long clk_recalc(struct clk_core *core,
1752 unsigned long parent_rate)
1754 unsigned long rate = parent_rate;
1756 if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) {
1757 rate = core->ops->recalc_rate(core->hw, parent_rate);
1758 clk_pm_runtime_put(core);
1764 * __clk_recalc_rates
1765 * @core: first clk in the subtree
1766 * @update_req: Whether req_rate should be updated with the new rate
1767 * @msg: notification type (see include/linux/clk.h)
1769 * Walks the subtree of clks starting with clk and recalculates rates as it
1770 * goes. Note that if a clk does not implement the .recalc_rate callback then
1771 * it is assumed that the clock will take on the rate of its parent.
1773 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1776 static void __clk_recalc_rates(struct clk_core *core, bool update_req,
1779 unsigned long old_rate;
1780 unsigned long parent_rate = 0;
1781 struct clk_core *child;
1783 lockdep_assert_held(&prepare_lock);
1785 old_rate = core->rate;
1788 parent_rate = core->parent->rate;
1790 core->rate = clk_recalc(core, parent_rate);
1792 core->req_rate = core->rate;
1795 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1796 * & ABORT_RATE_CHANGE notifiers
1798 if (core->notifier_count && msg)
1799 __clk_notify(core, msg, old_rate, core->rate);
1801 hlist_for_each_entry(child, &core->children, child_node)
1802 __clk_recalc_rates(child, update_req, msg);
1805 static unsigned long clk_core_get_rate_recalc(struct clk_core *core)
1807 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1808 __clk_recalc_rates(core, false, 0);
1810 return clk_core_get_rate_nolock(core);
1814 * clk_get_rate - return the rate of clk
1815 * @clk: the clk whose rate is being returned
1817 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1818 * is set, which means a recalc_rate will be issued. Can be called regardless of
1819 * the clock enabledness. If clk is NULL, or if an error occurred, then returns
1822 unsigned long clk_get_rate(struct clk *clk)
1830 rate = clk_core_get_rate_recalc(clk->core);
1831 clk_prepare_unlock();
1835 EXPORT_SYMBOL_GPL(clk_get_rate);
1837 static int clk_fetch_parent_index(struct clk_core *core,
1838 struct clk_core *parent)
1845 for (i = 0; i < core->num_parents; i++) {
1846 /* Found it first try! */
1847 if (core->parents[i].core == parent)
1850 /* Something else is here, so keep looking */
1851 if (core->parents[i].core)
1854 /* Maybe core hasn't been cached but the hw is all we know? */
1855 if (core->parents[i].hw) {
1856 if (core->parents[i].hw == parent->hw)
1859 /* Didn't match, but we're expecting a clk_hw */
1863 /* Maybe it hasn't been cached (clk_set_parent() path) */
1864 if (parent == clk_core_get(core, i))
1867 /* Fallback to comparing globally unique names */
1868 if (core->parents[i].name &&
1869 !strcmp(parent->name, core->parents[i].name))
1873 if (i == core->num_parents)
1876 core->parents[i].core = parent;
1881 * clk_hw_get_parent_index - return the index of the parent clock
1882 * @hw: clk_hw associated with the clk being consumed
1884 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
1885 * clock does not have a current parent.
1887 int clk_hw_get_parent_index(struct clk_hw *hw)
1889 struct clk_hw *parent = clk_hw_get_parent(hw);
1891 if (WARN_ON(parent == NULL))
1894 return clk_fetch_parent_index(hw->core, parent->core);
1896 EXPORT_SYMBOL_GPL(clk_hw_get_parent_index);
1899 * Update the orphan status of @core and all its children.
1901 static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1903 struct clk_core *child;
1905 core->orphan = is_orphan;
1907 hlist_for_each_entry(child, &core->children, child_node)
1908 clk_core_update_orphan_status(child, is_orphan);
1911 static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
1913 bool was_orphan = core->orphan;
1915 hlist_del(&core->child_node);
1918 bool becomes_orphan = new_parent->orphan;
1920 /* avoid duplicate POST_RATE_CHANGE notifications */
1921 if (new_parent->new_child == core)
1922 new_parent->new_child = NULL;
1924 hlist_add_head(&core->child_node, &new_parent->children);
1926 if (was_orphan != becomes_orphan)
1927 clk_core_update_orphan_status(core, becomes_orphan);
1929 hlist_add_head(&core->child_node, &clk_orphan_list);
1931 clk_core_update_orphan_status(core, true);
1934 core->parent = new_parent;
1937 static struct clk_core *__clk_set_parent_before(struct clk_core *core,
1938 struct clk_core *parent)
1940 unsigned long flags;
1941 struct clk_core *old_parent = core->parent;
1944 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1946 * 2. Migrate prepare state between parents and prevent race with
1949 * If the clock is not prepared, then a race with
1950 * clk_enable/disable() is impossible since we already have the
1951 * prepare lock (future calls to clk_enable() need to be preceded by
1954 * If the clock is prepared, migrate the prepared state to the new
1955 * parent and also protect against a race with clk_enable() by
1956 * forcing the clock and the new parent on. This ensures that all
1957 * future calls to clk_enable() are practically NOPs with respect to
1958 * hardware and software states.
1960 * See also: Comment for clk_set_parent() below.
1963 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1964 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1965 clk_core_prepare_enable(old_parent);
1966 clk_core_prepare_enable(parent);
1969 /* migrate prepare count if > 0 */
1970 if (core->prepare_count) {
1971 clk_core_prepare_enable(parent);
1972 clk_core_enable_lock(core);
1975 /* update the clk tree topology */
1976 flags = clk_enable_lock();
1977 clk_reparent(core, parent);
1978 clk_enable_unlock(flags);
1983 static void __clk_set_parent_after(struct clk_core *core,
1984 struct clk_core *parent,
1985 struct clk_core *old_parent)
1988 * Finish the migration of prepare state and undo the changes done
1989 * for preventing a race with clk_enable().
1991 if (core->prepare_count) {
1992 clk_core_disable_lock(core);
1993 clk_core_disable_unprepare(old_parent);
1996 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1997 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1998 clk_core_disable_unprepare(parent);
1999 clk_core_disable_unprepare(old_parent);
2003 static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
2006 unsigned long flags;
2008 struct clk_core *old_parent;
2010 old_parent = __clk_set_parent_before(core, parent);
2012 trace_clk_set_parent(core, parent);
2014 /* change clock input source */
2015 if (parent && core->ops->set_parent)
2016 ret = core->ops->set_parent(core->hw, p_index);
2018 trace_clk_set_parent_complete(core, parent);
2021 flags = clk_enable_lock();
2022 clk_reparent(core, old_parent);
2023 clk_enable_unlock(flags);
2025 __clk_set_parent_after(core, old_parent, parent);
2030 __clk_set_parent_after(core, parent, old_parent);
2036 * __clk_speculate_rates
2037 * @core: first clk in the subtree
2038 * @parent_rate: the "future" rate of clk's parent
2040 * Walks the subtree of clks starting with clk, speculating rates as it
2041 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
2043 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
2044 * pre-rate change notifications and returns early if no clks in the
2045 * subtree have subscribed to the notifications. Note that if a clk does not
2046 * implement the .recalc_rate callback then it is assumed that the clock will
2047 * take on the rate of its parent.
2049 static int __clk_speculate_rates(struct clk_core *core,
2050 unsigned long parent_rate)
2052 struct clk_core *child;
2053 unsigned long new_rate;
2054 int ret = NOTIFY_DONE;
2056 lockdep_assert_held(&prepare_lock);
2058 new_rate = clk_recalc(core, parent_rate);
2060 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
2061 if (core->notifier_count)
2062 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
2064 if (ret & NOTIFY_STOP_MASK) {
2065 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
2066 __func__, core->name, ret);
2070 hlist_for_each_entry(child, &core->children, child_node) {
2071 ret = __clk_speculate_rates(child, new_rate);
2072 if (ret & NOTIFY_STOP_MASK)
2080 static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
2081 struct clk_core *new_parent, u8 p_index)
2083 struct clk_core *child;
2085 core->new_rate = new_rate;
2086 core->new_parent = new_parent;
2087 core->new_parent_index = p_index;
2088 /* include clk in new parent's PRE_RATE_CHANGE notifications */
2089 core->new_child = NULL;
2090 if (new_parent && new_parent != core->parent)
2091 new_parent->new_child = core;
2093 hlist_for_each_entry(child, &core->children, child_node) {
2094 child->new_rate = clk_recalc(child, new_rate);
2095 clk_calc_subtree(child, child->new_rate, NULL, 0);
2100 * calculate the new rates returning the topmost clock that has to be
2103 static struct clk_core *clk_calc_new_rates(struct clk_core *core,
2106 struct clk_core *top = core;
2107 struct clk_core *old_parent, *parent;
2108 unsigned long best_parent_rate = 0;
2109 unsigned long new_rate;
2110 unsigned long min_rate;
2111 unsigned long max_rate;
2116 if (IS_ERR_OR_NULL(core))
2119 /* save parent rate, if it exists */
2120 parent = old_parent = core->parent;
2122 best_parent_rate = parent->rate;
2124 clk_core_get_boundaries(core, &min_rate, &max_rate);
2126 /* find the closest rate and parent clk/rate */
2127 if (clk_core_can_round(core)) {
2128 struct clk_rate_request req;
2130 clk_core_init_rate_req(core, &req, rate);
2132 ret = clk_core_determine_round_nolock(core, &req);
2136 best_parent_rate = req.best_parent_rate;
2137 new_rate = req.rate;
2138 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
2140 if (new_rate < min_rate || new_rate > max_rate)
2142 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
2143 /* pass-through clock without adjustable parent */
2144 core->new_rate = core->rate;
2147 /* pass-through clock with adjustable parent */
2148 top = clk_calc_new_rates(parent, rate);
2149 new_rate = parent->new_rate;
2153 /* some clocks must be gated to change parent */
2154 if (parent != old_parent &&
2155 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
2156 pr_debug("%s: %s not gated but wants to reparent\n",
2157 __func__, core->name);
2161 /* try finding the new parent index */
2162 if (parent && core->num_parents > 1) {
2163 p_index = clk_fetch_parent_index(core, parent);
2165 pr_debug("%s: clk %s can not be parent of clk %s\n",
2166 __func__, parent->name, core->name);
2171 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
2172 best_parent_rate != parent->rate)
2173 top = clk_calc_new_rates(parent, best_parent_rate);
2176 clk_calc_subtree(core, new_rate, parent, p_index);
2182 * Notify about rate changes in a subtree. Always walk down the whole tree
2183 * so that in case of an error we can walk down the whole tree again and
2186 static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
2187 unsigned long event)
2189 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
2190 int ret = NOTIFY_DONE;
2192 if (core->rate == core->new_rate)
2195 if (core->notifier_count) {
2196 ret = __clk_notify(core, event, core->rate, core->new_rate);
2197 if (ret & NOTIFY_STOP_MASK)
2201 hlist_for_each_entry(child, &core->children, child_node) {
2202 /* Skip children who will be reparented to another clock */
2203 if (child->new_parent && child->new_parent != core)
2205 tmp_clk = clk_propagate_rate_change(child, event);
2210 /* handle the new child who might not be in core->children yet */
2211 if (core->new_child) {
2212 tmp_clk = clk_propagate_rate_change(core->new_child, event);
2221 * walk down a subtree and set the new rates notifying the rate
2224 static void clk_change_rate(struct clk_core *core)
2226 struct clk_core *child;
2227 struct hlist_node *tmp;
2228 unsigned long old_rate;
2229 unsigned long best_parent_rate = 0;
2230 bool skip_set_rate = false;
2231 struct clk_core *old_parent;
2232 struct clk_core *parent = NULL;
2234 old_rate = core->rate;
2236 if (core->new_parent) {
2237 parent = core->new_parent;
2238 best_parent_rate = core->new_parent->rate;
2239 } else if (core->parent) {
2240 parent = core->parent;
2241 best_parent_rate = core->parent->rate;
2244 if (clk_pm_runtime_get(core))
2247 if (core->flags & CLK_SET_RATE_UNGATE) {
2248 clk_core_prepare(core);
2249 clk_core_enable_lock(core);
2252 if (core->new_parent && core->new_parent != core->parent) {
2253 old_parent = __clk_set_parent_before(core, core->new_parent);
2254 trace_clk_set_parent(core, core->new_parent);
2256 if (core->ops->set_rate_and_parent) {
2257 skip_set_rate = true;
2258 core->ops->set_rate_and_parent(core->hw, core->new_rate,
2260 core->new_parent_index);
2261 } else if (core->ops->set_parent) {
2262 core->ops->set_parent(core->hw, core->new_parent_index);
2265 trace_clk_set_parent_complete(core, core->new_parent);
2266 __clk_set_parent_after(core, core->new_parent, old_parent);
2269 if (core->flags & CLK_OPS_PARENT_ENABLE)
2270 clk_core_prepare_enable(parent);
2272 trace_clk_set_rate(core, core->new_rate);
2274 if (!skip_set_rate && core->ops->set_rate)
2275 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
2277 trace_clk_set_rate_complete(core, core->new_rate);
2279 core->rate = clk_recalc(core, best_parent_rate);
2281 if (core->flags & CLK_SET_RATE_UNGATE) {
2282 clk_core_disable_lock(core);
2283 clk_core_unprepare(core);
2286 if (core->flags & CLK_OPS_PARENT_ENABLE)
2287 clk_core_disable_unprepare(parent);
2289 if (core->notifier_count && old_rate != core->rate)
2290 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
2292 if (core->flags & CLK_RECALC_NEW_RATES)
2293 (void)clk_calc_new_rates(core, core->new_rate);
2296 * Use safe iteration, as change_rate can actually swap parents
2297 * for certain clock types.
2299 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
2300 /* Skip children who will be reparented to another clock */
2301 if (child->new_parent && child->new_parent != core)
2303 clk_change_rate(child);
2306 /* handle the new child who might not be in core->children yet */
2307 if (core->new_child)
2308 clk_change_rate(core->new_child);
2310 clk_pm_runtime_put(core);
2313 static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core,
2314 unsigned long req_rate)
2317 struct clk_rate_request req;
2319 lockdep_assert_held(&prepare_lock);
2324 /* simulate what the rate would be if it could be freely set */
2325 cnt = clk_core_rate_nuke_protect(core);
2329 clk_core_init_rate_req(core, &req, req_rate);
2331 ret = clk_core_round_rate_nolock(core, &req);
2333 /* restore the protection */
2334 clk_core_rate_restore_protect(core, cnt);
2336 return ret ? 0 : req.rate;
2339 static int clk_core_set_rate_nolock(struct clk_core *core,
2340 unsigned long req_rate)
2342 struct clk_core *top, *fail_clk;
2349 rate = clk_core_req_round_rate_nolock(core, req_rate);
2351 /* bail early if nothing to do */
2352 if (rate == clk_core_get_rate_nolock(core))
2355 /* fail on a direct rate set of a protected provider */
2356 if (clk_core_rate_is_protected(core))
2359 /* calculate new rates and get the topmost changed clock */
2360 top = clk_calc_new_rates(core, req_rate);
2364 ret = clk_pm_runtime_get(core);
2368 /* notify that we are about to change rates */
2369 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
2371 pr_debug("%s: failed to set %s rate\n", __func__,
2373 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
2378 /* change the rates */
2379 clk_change_rate(top);
2381 core->req_rate = req_rate;
2383 clk_pm_runtime_put(core);
2389 * clk_set_rate - specify a new rate for clk
2390 * @clk: the clk whose rate is being changed
2391 * @rate: the new rate for clk
2393 * In the simplest case clk_set_rate will only adjust the rate of clk.
2395 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2396 * propagate up to clk's parent; whether or not this happens depends on the
2397 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2398 * after calling .round_rate then upstream parent propagation is ignored. If
2399 * *parent_rate comes back with a new rate for clk's parent then we propagate
2400 * up to clk's parent and set its rate. Upward propagation will continue
2401 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2402 * .round_rate stops requesting changes to clk's parent_rate.
2404 * Rate changes are accomplished via tree traversal that also recalculates the
2405 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
2407 * Returns 0 on success, -EERROR otherwise.
2409 int clk_set_rate(struct clk *clk, unsigned long rate)
2416 /* prevent racing with updates to the clock topology */
2419 if (clk->exclusive_count)
2420 clk_core_rate_unprotect(clk->core);
2422 ret = clk_core_set_rate_nolock(clk->core, rate);
2424 if (clk->exclusive_count)
2425 clk_core_rate_protect(clk->core);
2427 clk_prepare_unlock();
2431 EXPORT_SYMBOL_GPL(clk_set_rate);
2434 * clk_set_rate_exclusive - specify a new rate and get exclusive control
2435 * @clk: the clk whose rate is being changed
2436 * @rate: the new rate for clk
2438 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2439 * within a critical section
2441 * This can be used initially to ensure that at least 1 consumer is
2442 * satisfied when several consumers are competing for exclusivity over the
2443 * same clock provider.
2445 * The exclusivity is not applied if setting the rate failed.
2447 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2448 * clk_rate_exclusive_put().
2450 * Returns 0 on success, -EERROR otherwise.
2452 int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
2459 /* prevent racing with updates to the clock topology */
2463 * The temporary protection removal is not here, on purpose
2464 * This function is meant to be used instead of clk_rate_protect,
2465 * so before the consumer code path protect the clock provider
2468 ret = clk_core_set_rate_nolock(clk->core, rate);
2470 clk_core_rate_protect(clk->core);
2471 clk->exclusive_count++;
2474 clk_prepare_unlock();
2478 EXPORT_SYMBOL_GPL(clk_set_rate_exclusive);
2480 static int clk_set_rate_range_nolock(struct clk *clk,
2485 unsigned long old_min, old_max, rate;
2487 lockdep_assert_held(&prepare_lock);
2492 trace_clk_set_rate_range(clk->core, min, max);
2495 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2496 __func__, clk->core->name, clk->dev_id, clk->con_id,
2501 if (clk->exclusive_count)
2502 clk_core_rate_unprotect(clk->core);
2504 /* Save the current values in case we need to rollback the change */
2505 old_min = clk->min_rate;
2506 old_max = clk->max_rate;
2507 clk->min_rate = min;
2508 clk->max_rate = max;
2510 if (!clk_core_check_boundaries(clk->core, min, max)) {
2515 rate = clk->core->req_rate;
2516 if (clk->core->flags & CLK_GET_RATE_NOCACHE)
2517 rate = clk_core_get_rate_recalc(clk->core);
2520 * Since the boundaries have been changed, let's give the
2521 * opportunity to the provider to adjust the clock rate based on
2522 * the new boundaries.
2524 * We also need to handle the case where the clock is currently
2525 * outside of the boundaries. Clamping the last requested rate
2526 * to the current minimum and maximum will also handle this.
2529 * There is a catch. It may fail for the usual reason (clock
2530 * broken, clock protected, etc) but also because:
2531 * - round_rate() was not favorable and fell on the wrong
2532 * side of the boundary
2533 * - the determine_rate() callback does not really check for
2534 * this corner case when determining the rate
2536 rate = clamp(rate, min, max);
2537 ret = clk_core_set_rate_nolock(clk->core, rate);
2539 /* rollback the changes */
2540 clk->min_rate = old_min;
2541 clk->max_rate = old_max;
2545 if (clk->exclusive_count)
2546 clk_core_rate_protect(clk->core);
2552 * clk_set_rate_range - set a rate range for a clock source
2553 * @clk: clock source
2554 * @min: desired minimum clock rate in Hz, inclusive
2555 * @max: desired maximum clock rate in Hz, inclusive
2557 * Return: 0 for success or negative errno on failure.
2559 int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
2568 ret = clk_set_rate_range_nolock(clk, min, max);
2570 clk_prepare_unlock();
2574 EXPORT_SYMBOL_GPL(clk_set_rate_range);
2577 * clk_set_min_rate - set a minimum clock rate for a clock source
2578 * @clk: clock source
2579 * @rate: desired minimum clock rate in Hz, inclusive
2581 * Returns success (0) or negative errno.
2583 int clk_set_min_rate(struct clk *clk, unsigned long rate)
2588 trace_clk_set_min_rate(clk->core, rate);
2590 return clk_set_rate_range(clk, rate, clk->max_rate);
2592 EXPORT_SYMBOL_GPL(clk_set_min_rate);
2595 * clk_set_max_rate - set a maximum clock rate for a clock source
2596 * @clk: clock source
2597 * @rate: desired maximum clock rate in Hz, inclusive
2599 * Returns success (0) or negative errno.
2601 int clk_set_max_rate(struct clk *clk, unsigned long rate)
2606 trace_clk_set_max_rate(clk->core, rate);
2608 return clk_set_rate_range(clk, clk->min_rate, rate);
2610 EXPORT_SYMBOL_GPL(clk_set_max_rate);
2613 * clk_get_parent - return the parent of a clk
2614 * @clk: the clk whose parent gets returned
2616 * Simply returns clk->parent. Returns NULL if clk is NULL.
2618 struct clk *clk_get_parent(struct clk *clk)
2626 /* TODO: Create a per-user clk and change callers to call clk_put */
2627 parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk;
2628 clk_prepare_unlock();
2632 EXPORT_SYMBOL_GPL(clk_get_parent);
2634 static struct clk_core *__clk_init_parent(struct clk_core *core)
2638 if (core->num_parents > 1 && core->ops->get_parent)
2639 index = core->ops->get_parent(core->hw);
2641 return clk_core_get_parent_by_index(core, index);
2644 static void clk_core_reparent(struct clk_core *core,
2645 struct clk_core *new_parent)
2647 clk_reparent(core, new_parent);
2648 __clk_recalc_accuracies(core);
2649 __clk_recalc_rates(core, true, POST_RATE_CHANGE);
2652 void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
2657 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
2661 * clk_has_parent - check if a clock is a possible parent for another
2662 * @clk: clock source
2663 * @parent: parent clock source
2665 * This function can be used in drivers that need to check that a clock can be
2666 * the parent of another without actually changing the parent.
2668 * Returns true if @parent is a possible parent for @clk, false otherwise.
2670 bool clk_has_parent(const struct clk *clk, const struct clk *parent)
2672 /* NULL clocks should be nops, so return success if either is NULL. */
2673 if (!clk || !parent)
2676 return clk_core_has_parent(clk->core, parent->core);
2678 EXPORT_SYMBOL_GPL(clk_has_parent);
2680 static int clk_core_set_parent_nolock(struct clk_core *core,
2681 struct clk_core *parent)
2685 unsigned long p_rate = 0;
2687 lockdep_assert_held(&prepare_lock);
2692 if (core->parent == parent)
2695 /* verify ops for multi-parent clks */
2696 if (core->num_parents > 1 && !core->ops->set_parent)
2699 /* check that we are allowed to re-parent if the clock is in use */
2700 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count)
2703 if (clk_core_rate_is_protected(core))
2706 /* try finding the new parent index */
2708 p_index = clk_fetch_parent_index(core, parent);
2710 pr_debug("%s: clk %s can not be parent of clk %s\n",
2711 __func__, parent->name, core->name);
2714 p_rate = parent->rate;
2717 ret = clk_pm_runtime_get(core);
2721 /* propagate PRE_RATE_CHANGE notifications */
2722 ret = __clk_speculate_rates(core, p_rate);
2724 /* abort if a driver objects */
2725 if (ret & NOTIFY_STOP_MASK)
2728 /* do the re-parent */
2729 ret = __clk_set_parent(core, parent, p_index);
2731 /* propagate rate an accuracy recalculation accordingly */
2733 __clk_recalc_rates(core, true, ABORT_RATE_CHANGE);
2735 __clk_recalc_rates(core, true, POST_RATE_CHANGE);
2736 __clk_recalc_accuracies(core);
2740 clk_pm_runtime_put(core);
2745 int clk_hw_set_parent(struct clk_hw *hw, struct clk_hw *parent)
2747 return clk_core_set_parent_nolock(hw->core, parent->core);
2749 EXPORT_SYMBOL_GPL(clk_hw_set_parent);
2752 * clk_set_parent - switch the parent of a mux clk
2753 * @clk: the mux clk whose input we are switching
2754 * @parent: the new input to clk
2756 * Re-parent clk to use parent as its new input source. If clk is in
2757 * prepared state, the clk will get enabled for the duration of this call. If
2758 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2759 * that, the reparenting is glitchy in hardware, etc), use the
2760 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2762 * After successfully changing clk's parent clk_set_parent will update the
2763 * clk topology, sysfs topology and propagate rate recalculation via
2764 * __clk_recalc_rates.
2766 * Returns 0 on success, -EERROR otherwise.
2768 int clk_set_parent(struct clk *clk, struct clk *parent)
2777 if (clk->exclusive_count)
2778 clk_core_rate_unprotect(clk->core);
2780 ret = clk_core_set_parent_nolock(clk->core,
2781 parent ? parent->core : NULL);
2783 if (clk->exclusive_count)
2784 clk_core_rate_protect(clk->core);
2786 clk_prepare_unlock();
2790 EXPORT_SYMBOL_GPL(clk_set_parent);
2792 static int clk_core_set_phase_nolock(struct clk_core *core, int degrees)
2796 lockdep_assert_held(&prepare_lock);
2801 if (clk_core_rate_is_protected(core))
2804 trace_clk_set_phase(core, degrees);
2806 if (core->ops->set_phase) {
2807 ret = core->ops->set_phase(core->hw, degrees);
2809 core->phase = degrees;
2812 trace_clk_set_phase_complete(core, degrees);
2818 * clk_set_phase - adjust the phase shift of a clock signal
2819 * @clk: clock signal source
2820 * @degrees: number of degrees the signal is shifted
2822 * Shifts the phase of a clock signal by the specified
2823 * degrees. Returns 0 on success, -EERROR otherwise.
2825 * This function makes no distinction about the input or reference
2826 * signal that we adjust the clock signal phase against. For example
2827 * phase locked-loop clock signal generators we may shift phase with
2828 * respect to feedback clock signal input, but for other cases the
2829 * clock phase may be shifted with respect to some other, unspecified
2832 * Additionally the concept of phase shift does not propagate through
2833 * the clock tree hierarchy, which sets it apart from clock rates and
2834 * clock accuracy. A parent clock phase attribute does not have an
2835 * impact on the phase attribute of a child clock.
2837 int clk_set_phase(struct clk *clk, int degrees)
2844 /* sanity check degrees */
2851 if (clk->exclusive_count)
2852 clk_core_rate_unprotect(clk->core);
2854 ret = clk_core_set_phase_nolock(clk->core, degrees);
2856 if (clk->exclusive_count)
2857 clk_core_rate_protect(clk->core);
2859 clk_prepare_unlock();
2863 EXPORT_SYMBOL_GPL(clk_set_phase);
2865 static int clk_core_get_phase(struct clk_core *core)
2869 lockdep_assert_held(&prepare_lock);
2870 if (!core->ops->get_phase)
2873 /* Always try to update cached phase if possible */
2874 ret = core->ops->get_phase(core->hw);
2882 * clk_get_phase - return the phase shift of a clock signal
2883 * @clk: clock signal source
2885 * Returns the phase shift of a clock node in degrees, otherwise returns
2888 int clk_get_phase(struct clk *clk)
2896 ret = clk_core_get_phase(clk->core);
2897 clk_prepare_unlock();
2901 EXPORT_SYMBOL_GPL(clk_get_phase);
2903 static void clk_core_reset_duty_cycle_nolock(struct clk_core *core)
2905 /* Assume a default value of 50% */
2910 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core);
2912 static int clk_core_update_duty_cycle_nolock(struct clk_core *core)
2914 struct clk_duty *duty = &core->duty;
2917 if (!core->ops->get_duty_cycle)
2918 return clk_core_update_duty_cycle_parent_nolock(core);
2920 ret = core->ops->get_duty_cycle(core->hw, duty);
2924 /* Don't trust the clock provider too much */
2925 if (duty->den == 0 || duty->num > duty->den) {
2933 clk_core_reset_duty_cycle_nolock(core);
2937 static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core)
2942 core->flags & CLK_DUTY_CYCLE_PARENT) {
2943 ret = clk_core_update_duty_cycle_nolock(core->parent);
2944 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2946 clk_core_reset_duty_cycle_nolock(core);
2952 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2953 struct clk_duty *duty);
2955 static int clk_core_set_duty_cycle_nolock(struct clk_core *core,
2956 struct clk_duty *duty)
2960 lockdep_assert_held(&prepare_lock);
2962 if (clk_core_rate_is_protected(core))
2965 trace_clk_set_duty_cycle(core, duty);
2967 if (!core->ops->set_duty_cycle)
2968 return clk_core_set_duty_cycle_parent_nolock(core, duty);
2970 ret = core->ops->set_duty_cycle(core->hw, duty);
2972 memcpy(&core->duty, duty, sizeof(*duty));
2974 trace_clk_set_duty_cycle_complete(core, duty);
2979 static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2980 struct clk_duty *duty)
2985 core->flags & (CLK_DUTY_CYCLE_PARENT | CLK_SET_RATE_PARENT)) {
2986 ret = clk_core_set_duty_cycle_nolock(core->parent, duty);
2987 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2994 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
2995 * @clk: clock signal source
2996 * @num: numerator of the duty cycle ratio to be applied
2997 * @den: denominator of the duty cycle ratio to be applied
2999 * Apply the duty cycle ratio if the ratio is valid and the clock can
3000 * perform this operation
3002 * Returns (0) on success, a negative errno otherwise.
3004 int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den)
3007 struct clk_duty duty;
3012 /* sanity check the ratio */
3013 if (den == 0 || num > den)
3021 if (clk->exclusive_count)
3022 clk_core_rate_unprotect(clk->core);
3024 ret = clk_core_set_duty_cycle_nolock(clk->core, &duty);
3026 if (clk->exclusive_count)
3027 clk_core_rate_protect(clk->core);
3029 clk_prepare_unlock();
3033 EXPORT_SYMBOL_GPL(clk_set_duty_cycle);
3035 static int clk_core_get_scaled_duty_cycle(struct clk_core *core,
3038 struct clk_duty *duty = &core->duty;
3043 ret = clk_core_update_duty_cycle_nolock(core);
3045 ret = mult_frac(scale, duty->num, duty->den);
3047 clk_prepare_unlock();
3053 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
3054 * @clk: clock signal source
3055 * @scale: scaling factor to be applied to represent the ratio as an integer
3057 * Returns the duty cycle ratio of a clock node multiplied by the provided
3058 * scaling factor, or negative errno on error.
3060 int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale)
3065 return clk_core_get_scaled_duty_cycle(clk->core, scale);
3067 EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle);
3070 * clk_is_match - check if two clk's point to the same hardware clock
3071 * @p: clk compared against q
3072 * @q: clk compared against p
3074 * Returns true if the two struct clk pointers both point to the same hardware
3075 * clock node. Put differently, returns true if struct clk *p and struct clk *q
3076 * share the same struct clk_core object.
3078 * Returns false otherwise. Note that two NULL clks are treated as matching.
3080 bool clk_is_match(const struct clk *p, const struct clk *q)
3082 /* trivial case: identical struct clk's or both NULL */
3086 /* true if clk->core pointers match. Avoid dereferencing garbage */
3087 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
3088 if (p->core == q->core)
3093 EXPORT_SYMBOL_GPL(clk_is_match);
3095 /*** debugfs support ***/
3097 #ifdef CONFIG_DEBUG_FS
3098 #include <linux/debugfs.h>
3100 static struct dentry *rootdir;
3101 static int inited = 0;
3102 static DEFINE_MUTEX(clk_debug_lock);
3103 static HLIST_HEAD(clk_debug_list);
3105 static struct hlist_head *orphan_list[] = {
3110 static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
3115 seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu ",
3117 30 - level * 3, c->name,
3118 c->enable_count, c->prepare_count, c->protect_count,
3119 clk_core_get_rate_recalc(c),
3120 clk_core_get_accuracy_recalc(c));
3122 phase = clk_core_get_phase(c);
3124 seq_printf(s, "%5d", phase);
3126 seq_puts(s, "-----");
3128 seq_printf(s, " %6d", clk_core_get_scaled_duty_cycle(c, 100000));
3130 if (c->ops->is_enabled)
3131 seq_printf(s, " %9c\n", clk_core_is_enabled(c) ? 'Y' : 'N');
3132 else if (!c->ops->enable)
3133 seq_printf(s, " %9c\n", 'Y');
3135 seq_printf(s, " %9c\n", '?');
3138 static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
3141 struct clk_core *child;
3143 clk_pm_runtime_get(c);
3144 clk_summary_show_one(s, c, level);
3145 clk_pm_runtime_put(c);
3147 hlist_for_each_entry(child, &c->children, child_node)
3148 clk_summary_show_subtree(s, child, level + 1);
3151 static int clk_summary_show(struct seq_file *s, void *data)
3154 struct hlist_head **lists = (struct hlist_head **)s->private;
3156 seq_puts(s, " enable prepare protect duty hardware\n");
3157 seq_puts(s, " clock count count count rate accuracy phase cycle enable\n");
3158 seq_puts(s, "-------------------------------------------------------------------------------------------------------\n");
3162 for (; *lists; lists++)
3163 hlist_for_each_entry(c, *lists, child_node)
3164 clk_summary_show_subtree(s, c, 0);
3166 clk_prepare_unlock();
3170 DEFINE_SHOW_ATTRIBUTE(clk_summary);
3172 static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
3175 unsigned long min_rate, max_rate;
3177 clk_core_get_boundaries(c, &min_rate, &max_rate);
3179 /* This should be JSON format, i.e. elements separated with a comma */
3180 seq_printf(s, "\"%s\": { ", c->name);
3181 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
3182 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
3183 seq_printf(s, "\"protect_count\": %d,", c->protect_count);
3184 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate_recalc(c));
3185 seq_printf(s, "\"min_rate\": %lu,", min_rate);
3186 seq_printf(s, "\"max_rate\": %lu,", max_rate);
3187 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c));
3188 phase = clk_core_get_phase(c);
3190 seq_printf(s, "\"phase\": %d,", phase);
3191 seq_printf(s, "\"duty_cycle\": %u",
3192 clk_core_get_scaled_duty_cycle(c, 100000));
3195 static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
3197 struct clk_core *child;
3199 clk_dump_one(s, c, level);
3201 hlist_for_each_entry(child, &c->children, child_node) {
3203 clk_dump_subtree(s, child, level + 1);
3209 static int clk_dump_show(struct seq_file *s, void *data)
3212 bool first_node = true;
3213 struct hlist_head **lists = (struct hlist_head **)s->private;
3218 for (; *lists; lists++) {
3219 hlist_for_each_entry(c, *lists, child_node) {
3223 clk_dump_subtree(s, c, 0);
3227 clk_prepare_unlock();
3232 DEFINE_SHOW_ATTRIBUTE(clk_dump);
3234 #undef CLOCK_ALLOW_WRITE_DEBUGFS
3235 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3237 * This can be dangerous, therefore don't provide any real compile time
3238 * configuration option for this feature.
3239 * People who want to use this will need to modify the source code directly.
3241 static int clk_rate_set(void *data, u64 val)
3243 struct clk_core *core = data;
3247 ret = clk_core_set_rate_nolock(core, val);
3248 clk_prepare_unlock();
3253 #define clk_rate_mode 0644
3255 static int clk_prepare_enable_set(void *data, u64 val)
3257 struct clk_core *core = data;
3261 ret = clk_prepare_enable(core->hw->clk);
3263 clk_disable_unprepare(core->hw->clk);
3268 static int clk_prepare_enable_get(void *data, u64 *val)
3270 struct clk_core *core = data;
3272 *val = core->enable_count && core->prepare_count;
3276 DEFINE_DEBUGFS_ATTRIBUTE(clk_prepare_enable_fops, clk_prepare_enable_get,
3277 clk_prepare_enable_set, "%llu\n");
3280 #define clk_rate_set NULL
3281 #define clk_rate_mode 0444
3284 static int clk_rate_get(void *data, u64 *val)
3286 struct clk_core *core = data;
3289 *val = clk_core_get_rate_recalc(core);
3290 clk_prepare_unlock();
3295 DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, clk_rate_get, clk_rate_set, "%llu\n");
3297 static const struct {
3301 #define ENTRY(f) { f, #f }
3302 ENTRY(CLK_SET_RATE_GATE),
3303 ENTRY(CLK_SET_PARENT_GATE),
3304 ENTRY(CLK_SET_RATE_PARENT),
3305 ENTRY(CLK_IGNORE_UNUSED),
3306 ENTRY(CLK_GET_RATE_NOCACHE),
3307 ENTRY(CLK_SET_RATE_NO_REPARENT),
3308 ENTRY(CLK_GET_ACCURACY_NOCACHE),
3309 ENTRY(CLK_RECALC_NEW_RATES),
3310 ENTRY(CLK_SET_RATE_UNGATE),
3311 ENTRY(CLK_IS_CRITICAL),
3312 ENTRY(CLK_OPS_PARENT_ENABLE),
3313 ENTRY(CLK_DUTY_CYCLE_PARENT),
3317 static int clk_flags_show(struct seq_file *s, void *data)
3319 struct clk_core *core = s->private;
3320 unsigned long flags = core->flags;
3323 for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) {
3324 if (flags & clk_flags[i].flag) {
3325 seq_printf(s, "%s\n", clk_flags[i].name);
3326 flags &= ~clk_flags[i].flag;
3331 seq_printf(s, "0x%lx\n", flags);
3336 DEFINE_SHOW_ATTRIBUTE(clk_flags);
3338 static void possible_parent_show(struct seq_file *s, struct clk_core *core,
3339 unsigned int i, char terminator)
3341 struct clk_core *parent;
3344 * Go through the following options to fetch a parent's name.
3346 * 1. Fetch the registered parent clock and use its name
3347 * 2. Use the global (fallback) name if specified
3348 * 3. Use the local fw_name if provided
3349 * 4. Fetch parent clock's clock-output-name if DT index was set
3351 * This may still fail in some cases, such as when the parent is
3352 * specified directly via a struct clk_hw pointer, but it isn't
3355 parent = clk_core_get_parent_by_index(core, i);
3357 seq_puts(s, parent->name);
3358 else if (core->parents[i].name)
3359 seq_puts(s, core->parents[i].name);
3360 else if (core->parents[i].fw_name)
3361 seq_printf(s, "<%s>(fw)", core->parents[i].fw_name);
3362 else if (core->parents[i].index >= 0)
3364 of_clk_get_parent_name(core->of_node,
3365 core->parents[i].index));
3367 seq_puts(s, "(missing)");
3369 seq_putc(s, terminator);
3372 static int possible_parents_show(struct seq_file *s, void *data)
3374 struct clk_core *core = s->private;
3377 for (i = 0; i < core->num_parents - 1; i++)
3378 possible_parent_show(s, core, i, ' ');
3380 possible_parent_show(s, core, i, '\n');
3384 DEFINE_SHOW_ATTRIBUTE(possible_parents);
3386 static int current_parent_show(struct seq_file *s, void *data)
3388 struct clk_core *core = s->private;
3391 seq_printf(s, "%s\n", core->parent->name);
3395 DEFINE_SHOW_ATTRIBUTE(current_parent);
3397 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3398 static ssize_t current_parent_write(struct file *file, const char __user *ubuf,
3399 size_t count, loff_t *ppos)
3401 struct seq_file *s = file->private_data;
3402 struct clk_core *core = s->private;
3403 struct clk_core *parent;
3407 err = kstrtou8_from_user(ubuf, count, 0, &idx);
3411 parent = clk_core_get_parent_by_index(core, idx);
3416 err = clk_core_set_parent_nolock(core, parent);
3417 clk_prepare_unlock();
3424 static const struct file_operations current_parent_rw_fops = {
3425 .open = current_parent_open,
3426 .write = current_parent_write,
3428 .llseek = seq_lseek,
3429 .release = single_release,
3433 static int clk_duty_cycle_show(struct seq_file *s, void *data)
3435 struct clk_core *core = s->private;
3436 struct clk_duty *duty = &core->duty;
3438 seq_printf(s, "%u/%u\n", duty->num, duty->den);
3442 DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle);
3444 static int clk_min_rate_show(struct seq_file *s, void *data)
3446 struct clk_core *core = s->private;
3447 unsigned long min_rate, max_rate;
3450 clk_core_get_boundaries(core, &min_rate, &max_rate);
3451 clk_prepare_unlock();
3452 seq_printf(s, "%lu\n", min_rate);
3456 DEFINE_SHOW_ATTRIBUTE(clk_min_rate);
3458 static int clk_max_rate_show(struct seq_file *s, void *data)
3460 struct clk_core *core = s->private;
3461 unsigned long min_rate, max_rate;
3464 clk_core_get_boundaries(core, &min_rate, &max_rate);
3465 clk_prepare_unlock();
3466 seq_printf(s, "%lu\n", max_rate);
3470 DEFINE_SHOW_ATTRIBUTE(clk_max_rate);
3472 static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
3474 struct dentry *root;
3476 if (!core || !pdentry)
3479 root = debugfs_create_dir(core->name, pdentry);
3480 core->dentry = root;
3482 debugfs_create_file("clk_rate", clk_rate_mode, root, core,
3484 debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
3485 debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
3486 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3487 debugfs_create_u32("clk_phase", 0444, root, &core->phase);
3488 debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
3489 debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
3490 debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
3491 debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count);
3492 debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count);
3493 debugfs_create_file("clk_duty_cycle", 0444, root, core,
3494 &clk_duty_cycle_fops);
3495 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3496 debugfs_create_file("clk_prepare_enable", 0644, root, core,
3497 &clk_prepare_enable_fops);
3499 if (core->num_parents > 1)
3500 debugfs_create_file("clk_parent", 0644, root, core,
3501 ¤t_parent_rw_fops);
3504 if (core->num_parents > 0)
3505 debugfs_create_file("clk_parent", 0444, root, core,
3506 ¤t_parent_fops);
3508 if (core->num_parents > 1)
3509 debugfs_create_file("clk_possible_parents", 0444, root, core,
3510 &possible_parents_fops);
3512 if (core->ops->debug_init)
3513 core->ops->debug_init(core->hw, core->dentry);
3517 * clk_debug_register - add a clk node to the debugfs clk directory
3518 * @core: the clk being added to the debugfs clk directory
3520 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3521 * initialized. Otherwise it bails out early since the debugfs clk directory
3522 * will be created lazily by clk_debug_init as part of a late_initcall.
3524 static void clk_debug_register(struct clk_core *core)
3526 mutex_lock(&clk_debug_lock);
3527 hlist_add_head(&core->debug_node, &clk_debug_list);
3529 clk_debug_create_one(core, rootdir);
3530 mutex_unlock(&clk_debug_lock);
3534 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3535 * @core: the clk being removed from the debugfs clk directory
3537 * Dynamically removes a clk and all its child nodes from the
3538 * debugfs clk directory if clk->dentry points to debugfs created by
3539 * clk_debug_register in __clk_core_init.
3541 static void clk_debug_unregister(struct clk_core *core)
3543 mutex_lock(&clk_debug_lock);
3544 hlist_del_init(&core->debug_node);
3545 debugfs_remove_recursive(core->dentry);
3546 core->dentry = NULL;
3547 mutex_unlock(&clk_debug_lock);
3551 * clk_debug_init - lazily populate the debugfs clk directory
3553 * clks are often initialized very early during boot before memory can be
3554 * dynamically allocated and well before debugfs is setup. This function
3555 * populates the debugfs clk directory once at boot-time when we know that
3556 * debugfs is setup. It should only be called once at boot-time, all other clks
3557 * added dynamically will be done so with clk_debug_register.
3559 static int __init clk_debug_init(void)
3561 struct clk_core *core;
3563 #ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3565 pr_warn("********************************************************************\n");
3566 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3568 pr_warn("** WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **\n");
3570 pr_warn("** This means that this kernel is built to expose clk operations **\n");
3571 pr_warn("** such as parent or rate setting, enabling, disabling, etc. **\n");
3572 pr_warn("** to userspace, which may compromise security on your system. **\n");
3574 pr_warn("** If you see this message and you are not debugging the **\n");
3575 pr_warn("** kernel, report this immediately to your vendor! **\n");
3577 pr_warn("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
3578 pr_warn("********************************************************************\n");
3581 rootdir = debugfs_create_dir("clk", NULL);
3583 debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
3585 debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
3587 debugfs_create_file("clk_orphan_summary", 0444, rootdir, &orphan_list,
3589 debugfs_create_file("clk_orphan_dump", 0444, rootdir, &orphan_list,
3592 mutex_lock(&clk_debug_lock);
3593 hlist_for_each_entry(core, &clk_debug_list, debug_node)
3594 clk_debug_create_one(core, rootdir);
3597 mutex_unlock(&clk_debug_lock);
3601 late_initcall(clk_debug_init);
3603 static inline void clk_debug_register(struct clk_core *core) { }
3604 static inline void clk_debug_unregister(struct clk_core *core)
3609 static void clk_core_reparent_orphans_nolock(void)
3611 struct clk_core *orphan;
3612 struct hlist_node *tmp2;
3615 * walk the list of orphan clocks and reparent any that newly finds a
3618 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
3619 struct clk_core *parent = __clk_init_parent(orphan);
3622 * We need to use __clk_set_parent_before() and _after() to
3623 * properly migrate any prepare/enable count of the orphan
3624 * clock. This is important for CLK_IS_CRITICAL clocks, which
3625 * are enabled during init but might not have a parent yet.
3628 /* update the clk tree topology */
3629 __clk_set_parent_before(orphan, parent);
3630 __clk_set_parent_after(orphan, parent, NULL);
3631 __clk_recalc_accuracies(orphan);
3632 __clk_recalc_rates(orphan, true, 0);
3635 * __clk_init_parent() will set the initial req_rate to
3636 * 0 if the clock doesn't have clk_ops::recalc_rate and
3637 * is an orphan when it's registered.
3639 * 'req_rate' is used by clk_set_rate_range() and
3640 * clk_put() to trigger a clk_set_rate() call whenever
3641 * the boundaries are modified. Let's make sure
3642 * 'req_rate' is set to something non-zero so that
3643 * clk_set_rate_range() doesn't drop the frequency.
3645 orphan->req_rate = orphan->rate;
3651 * __clk_core_init - initialize the data structures in a struct clk_core
3652 * @core: clk_core being initialized
3654 * Initializes the lists in struct clk_core, queries the hardware for the
3655 * parent and rate and sets them both.
3657 static int __clk_core_init(struct clk_core *core)
3660 struct clk_core *parent;
3667 * Set hw->core after grabbing the prepare_lock to synchronize with
3668 * callers of clk_core_fill_parent_index() where we treat hw->core
3669 * being NULL as the clk not being registered yet. This is crucial so
3670 * that clks aren't parented until their parent is fully registered.
3672 core->hw->core = core;
3674 ret = clk_pm_runtime_get(core);
3678 /* check to see if a clock with this name is already registered */
3679 if (clk_core_lookup(core->name)) {
3680 pr_debug("%s: clk %s already initialized\n",
3681 __func__, core->name);
3686 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
3687 if (core->ops->set_rate &&
3688 !((core->ops->round_rate || core->ops->determine_rate) &&
3689 core->ops->recalc_rate)) {
3690 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3691 __func__, core->name);
3696 if (core->ops->set_parent && !core->ops->get_parent) {
3697 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3698 __func__, core->name);
3703 if (core->num_parents > 1 && !core->ops->get_parent) {
3704 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3705 __func__, core->name);
3710 if (core->ops->set_rate_and_parent &&
3711 !(core->ops->set_parent && core->ops->set_rate)) {
3712 pr_err("%s: %s must implement .set_parent & .set_rate\n",
3713 __func__, core->name);
3719 * optional platform-specific magic
3721 * The .init callback is not used by any of the basic clock types, but
3722 * exists for weird hardware that must perform initialization magic for
3723 * CCF to get an accurate view of clock for any other callbacks. It may
3724 * also be used needs to perform dynamic allocations. Such allocation
3725 * must be freed in the terminate() callback.
3726 * This callback shall not be used to initialize the parameters state,
3727 * such as rate, parent, etc ...
3729 * If it exist, this callback should called before any other callback of
3732 if (core->ops->init) {
3733 ret = core->ops->init(core->hw);
3738 parent = core->parent = __clk_init_parent(core);
3741 * Populate core->parent if parent has already been clk_core_init'd. If
3742 * parent has not yet been clk_core_init'd then place clk in the orphan
3743 * list. If clk doesn't have any parents then place it in the root
3746 * Every time a new clk is clk_init'd then we walk the list of orphan
3747 * clocks and re-parent any that are children of the clock currently
3751 hlist_add_head(&core->child_node, &parent->children);
3752 core->orphan = parent->orphan;
3753 } else if (!core->num_parents) {
3754 hlist_add_head(&core->child_node, &clk_root_list);
3755 core->orphan = false;
3757 hlist_add_head(&core->child_node, &clk_orphan_list);
3758 core->orphan = true;
3762 * Set clk's accuracy. The preferred method is to use
3763 * .recalc_accuracy. For simple clocks and lazy developers the default
3764 * fallback is to use the parent's accuracy. If a clock doesn't have a
3765 * parent (or is orphaned) then accuracy is set to zero (perfect
3768 if (core->ops->recalc_accuracy)
3769 core->accuracy = core->ops->recalc_accuracy(core->hw,
3770 clk_core_get_accuracy_no_lock(parent));
3772 core->accuracy = parent->accuracy;
3777 * Set clk's phase by clk_core_get_phase() caching the phase.
3778 * Since a phase is by definition relative to its parent, just
3779 * query the current clock phase, or just assume it's in phase.
3781 phase = clk_core_get_phase(core);
3784 pr_warn("%s: Failed to get phase for clk '%s'\n", __func__,
3790 * Set clk's duty cycle.
3792 clk_core_update_duty_cycle_nolock(core);
3795 * Set clk's rate. The preferred method is to use .recalc_rate. For
3796 * simple clocks and lazy developers the default fallback is to use the
3797 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3798 * then rate is set to zero.
3800 if (core->ops->recalc_rate)
3801 rate = core->ops->recalc_rate(core->hw,
3802 clk_core_get_rate_nolock(parent));
3804 rate = parent->rate;
3807 core->rate = core->req_rate = rate;
3810 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3811 * don't get accidentally disabled when walking the orphan tree and
3812 * reparenting clocks
3814 if (core->flags & CLK_IS_CRITICAL) {
3815 ret = clk_core_prepare(core);
3817 pr_warn("%s: critical clk '%s' failed to prepare\n",
3818 __func__, core->name);
3822 ret = clk_core_enable_lock(core);
3824 pr_warn("%s: critical clk '%s' failed to enable\n",
3825 __func__, core->name);
3826 clk_core_unprepare(core);
3831 clk_core_reparent_orphans_nolock();
3833 kref_init(&core->ref);
3835 clk_pm_runtime_put(core);
3838 hlist_del_init(&core->child_node);
3839 core->hw->core = NULL;
3842 clk_prepare_unlock();
3845 clk_debug_register(core);
3851 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
3852 * @core: clk to add consumer to
3853 * @clk: consumer to link to a clk
3855 static void clk_core_link_consumer(struct clk_core *core, struct clk *clk)
3858 hlist_add_head(&clk->clks_node, &core->clks);
3859 clk_prepare_unlock();
3863 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
3864 * @clk: consumer to unlink
3866 static void clk_core_unlink_consumer(struct clk *clk)
3868 lockdep_assert_held(&prepare_lock);
3869 hlist_del(&clk->clks_node);
3873 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
3874 * @core: clk to allocate a consumer for
3875 * @dev_id: string describing device name
3876 * @con_id: connection ID string on device
3878 * Returns: clk consumer left unlinked from the consumer list
3880 static struct clk *alloc_clk(struct clk_core *core, const char *dev_id,
3885 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3887 return ERR_PTR(-ENOMEM);
3890 clk->dev_id = dev_id;
3891 clk->con_id = kstrdup_const(con_id, GFP_KERNEL);
3892 clk->max_rate = ULONG_MAX;
3898 * free_clk - Free a clk consumer
3899 * @clk: clk consumer to free
3901 * Note, this assumes the clk has been unlinked from the clk_core consumer
3904 static void free_clk(struct clk *clk)
3906 kfree_const(clk->con_id);
3911 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
3913 * @dev: clk consumer device
3914 * @hw: clk_hw associated with the clk being consumed
3915 * @dev_id: string describing device name
3916 * @con_id: connection ID string on device
3918 * This is the main function used to create a clk pointer for use by clk
3919 * consumers. It connects a consumer to the clk_core and clk_hw structures
3920 * used by the framework and clk provider respectively.
3922 struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw,
3923 const char *dev_id, const char *con_id)
3926 struct clk_core *core;
3928 /* This is to allow this function to be chained to others */
3929 if (IS_ERR_OR_NULL(hw))
3930 return ERR_CAST(hw);
3933 clk = alloc_clk(core, dev_id, con_id);
3938 if (!try_module_get(core->owner)) {
3940 return ERR_PTR(-ENOENT);
3943 kref_get(&core->ref);
3944 clk_core_link_consumer(core, clk);
3950 * clk_hw_get_clk - get clk consumer given an clk_hw
3951 * @hw: clk_hw associated with the clk being consumed
3952 * @con_id: connection ID string on device
3954 * Returns: new clk consumer
3955 * This is the function to be used by providers which need
3956 * to get a consumer clk and act on the clock element
3957 * Calls to this function must be balanced with calls clk_put()
3959 struct clk *clk_hw_get_clk(struct clk_hw *hw, const char *con_id)
3961 struct device *dev = hw->core->dev;
3962 const char *name = dev ? dev_name(dev) : NULL;
3964 return clk_hw_create_clk(dev, hw, name, con_id);
3966 EXPORT_SYMBOL(clk_hw_get_clk);
3968 static int clk_cpy_name(const char **dst_p, const char *src, bool must_exist)
3978 *dst_p = dst = kstrdup_const(src, GFP_KERNEL);
3985 static int clk_core_populate_parent_map(struct clk_core *core,
3986 const struct clk_init_data *init)
3988 u8 num_parents = init->num_parents;
3989 const char * const *parent_names = init->parent_names;
3990 const struct clk_hw **parent_hws = init->parent_hws;
3991 const struct clk_parent_data *parent_data = init->parent_data;
3993 struct clk_parent_map *parents, *parent;
3999 * Avoid unnecessary string look-ups of clk_core's possible parents by
4000 * having a cache of names/clk_hw pointers to clk_core pointers.
4002 parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL);
4003 core->parents = parents;
4007 /* Copy everything over because it might be __initdata */
4008 for (i = 0, parent = parents; i < num_parents; i++, parent++) {
4011 /* throw a WARN if any entries are NULL */
4012 WARN(!parent_names[i],
4013 "%s: invalid NULL in %s's .parent_names\n",
4014 __func__, core->name);
4015 ret = clk_cpy_name(&parent->name, parent_names[i],
4017 } else if (parent_data) {
4018 parent->hw = parent_data[i].hw;
4019 parent->index = parent_data[i].index;
4020 ret = clk_cpy_name(&parent->fw_name,
4021 parent_data[i].fw_name, false);
4023 ret = clk_cpy_name(&parent->name,
4024 parent_data[i].name,
4026 } else if (parent_hws) {
4027 parent->hw = parent_hws[i];
4030 WARN(1, "Must specify parents if num_parents > 0\n");
4035 kfree_const(parents[i].name);
4036 kfree_const(parents[i].fw_name);
4047 static void clk_core_free_parent_map(struct clk_core *core)
4049 int i = core->num_parents;
4051 if (!core->num_parents)
4055 kfree_const(core->parents[i].name);
4056 kfree_const(core->parents[i].fw_name);
4059 kfree(core->parents);
4063 __clk_register(struct device *dev, struct device_node *np, struct clk_hw *hw)
4066 struct clk_core *core;
4067 const struct clk_init_data *init = hw->init;
4070 * The init data is not supposed to be used outside of registration path.
4071 * Set it to NULL so that provider drivers can't use it either and so that
4072 * we catch use of hw->init early on in the core.
4076 core = kzalloc(sizeof(*core), GFP_KERNEL);
4082 core->name = kstrdup_const(init->name, GFP_KERNEL);
4088 if (WARN_ON(!init->ops)) {
4092 core->ops = init->ops;
4094 if (dev && pm_runtime_enabled(dev))
4095 core->rpm_enabled = true;
4098 if (dev && dev->driver)
4099 core->owner = dev->driver->owner;
4101 core->flags = init->flags;
4102 core->num_parents = init->num_parents;
4104 core->max_rate = ULONG_MAX;
4106 ret = clk_core_populate_parent_map(core, init);
4110 INIT_HLIST_HEAD(&core->clks);
4113 * Don't call clk_hw_create_clk() here because that would pin the
4114 * provider module to itself and prevent it from ever being removed.
4116 hw->clk = alloc_clk(core, NULL, NULL);
4117 if (IS_ERR(hw->clk)) {
4118 ret = PTR_ERR(hw->clk);
4119 goto fail_create_clk;
4122 clk_core_link_consumer(core, hw->clk);
4124 ret = __clk_core_init(core);
4129 clk_core_unlink_consumer(hw->clk);
4130 clk_prepare_unlock();
4136 clk_core_free_parent_map(core);
4139 kfree_const(core->name);
4143 return ERR_PTR(ret);
4147 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
4148 * @dev: Device to get device node of
4150 * Return: device node pointer of @dev, or the device node pointer of
4151 * @dev->parent if dev doesn't have a device node, or NULL if neither
4152 * @dev or @dev->parent have a device node.
4154 static struct device_node *dev_or_parent_of_node(struct device *dev)
4156 struct device_node *np;
4161 np = dev_of_node(dev);
4163 np = dev_of_node(dev->parent);
4169 * clk_register - allocate a new clock, register it and return an opaque cookie
4170 * @dev: device that is registering this clock
4171 * @hw: link to hardware-specific clock data
4173 * clk_register is the *deprecated* interface for populating the clock tree with
4174 * new clock nodes. Use clk_hw_register() instead.
4176 * Returns: a pointer to the newly allocated struct clk which
4177 * cannot be dereferenced by driver code but may be used in conjunction with the
4178 * rest of the clock API. In the event of an error clk_register will return an
4179 * error code; drivers must test for an error code after calling clk_register.
4181 struct clk *clk_register(struct device *dev, struct clk_hw *hw)
4183 return __clk_register(dev, dev_or_parent_of_node(dev), hw);
4185 EXPORT_SYMBOL_GPL(clk_register);
4188 * clk_hw_register - register a clk_hw and return an error code
4189 * @dev: device that is registering this clock
4190 * @hw: link to hardware-specific clock data
4192 * clk_hw_register is the primary interface for populating the clock tree with
4193 * new clock nodes. It returns an integer equal to zero indicating success or
4194 * less than zero indicating failure. Drivers must test for an error code after
4195 * calling clk_hw_register().
4197 int clk_hw_register(struct device *dev, struct clk_hw *hw)
4199 return PTR_ERR_OR_ZERO(__clk_register(dev, dev_or_parent_of_node(dev),
4202 EXPORT_SYMBOL_GPL(clk_hw_register);
4205 * of_clk_hw_register - register a clk_hw and return an error code
4206 * @node: device_node of device that is registering this clock
4207 * @hw: link to hardware-specific clock data
4209 * of_clk_hw_register() is the primary interface for populating the clock tree
4210 * with new clock nodes when a struct device is not available, but a struct
4211 * device_node is. It returns an integer equal to zero indicating success or
4212 * less than zero indicating failure. Drivers must test for an error code after
4213 * calling of_clk_hw_register().
4215 int of_clk_hw_register(struct device_node *node, struct clk_hw *hw)
4217 return PTR_ERR_OR_ZERO(__clk_register(NULL, node, hw));
4219 EXPORT_SYMBOL_GPL(of_clk_hw_register);
4221 /* Free memory allocated for a clock. */
4222 static void __clk_release(struct kref *ref)
4224 struct clk_core *core = container_of(ref, struct clk_core, ref);
4226 lockdep_assert_held(&prepare_lock);
4228 clk_core_free_parent_map(core);
4229 kfree_const(core->name);
4234 * Empty clk_ops for unregistered clocks. These are used temporarily
4235 * after clk_unregister() was called on a clock and until last clock
4236 * consumer calls clk_put() and the struct clk object is freed.
4238 static int clk_nodrv_prepare_enable(struct clk_hw *hw)
4243 static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
4248 static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
4249 unsigned long parent_rate)
4254 static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
4259 static const struct clk_ops clk_nodrv_ops = {
4260 .enable = clk_nodrv_prepare_enable,
4261 .disable = clk_nodrv_disable_unprepare,
4262 .prepare = clk_nodrv_prepare_enable,
4263 .unprepare = clk_nodrv_disable_unprepare,
4264 .set_rate = clk_nodrv_set_rate,
4265 .set_parent = clk_nodrv_set_parent,
4268 static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
4269 const struct clk_core *target)
4272 struct clk_core *child;
4274 for (i = 0; i < root->num_parents; i++)
4275 if (root->parents[i].core == target)
4276 root->parents[i].core = NULL;
4278 hlist_for_each_entry(child, &root->children, child_node)
4279 clk_core_evict_parent_cache_subtree(child, target);
4282 /* Remove this clk from all parent caches */
4283 static void clk_core_evict_parent_cache(struct clk_core *core)
4285 const struct hlist_head **lists;
4286 struct clk_core *root;
4288 lockdep_assert_held(&prepare_lock);
4290 for (lists = all_lists; *lists; lists++)
4291 hlist_for_each_entry(root, *lists, child_node)
4292 clk_core_evict_parent_cache_subtree(root, core);
4297 * clk_unregister - unregister a currently registered clock
4298 * @clk: clock to unregister
4300 void clk_unregister(struct clk *clk)
4302 unsigned long flags;
4303 const struct clk_ops *ops;
4305 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
4308 clk_debug_unregister(clk->core);
4312 ops = clk->core->ops;
4313 if (ops == &clk_nodrv_ops) {
4314 pr_err("%s: unregistered clock: %s\n", __func__,
4319 * Assign empty clock ops for consumers that might still hold
4320 * a reference to this clock.
4322 flags = clk_enable_lock();
4323 clk->core->ops = &clk_nodrv_ops;
4324 clk_enable_unlock(flags);
4327 ops->terminate(clk->core->hw);
4329 if (!hlist_empty(&clk->core->children)) {
4330 struct clk_core *child;
4331 struct hlist_node *t;
4333 /* Reparent all children to the orphan list. */
4334 hlist_for_each_entry_safe(child, t, &clk->core->children,
4336 clk_core_set_parent_nolock(child, NULL);
4339 clk_core_evict_parent_cache(clk->core);
4341 hlist_del_init(&clk->core->child_node);
4343 if (clk->core->prepare_count)
4344 pr_warn("%s: unregistering prepared clock: %s\n",
4345 __func__, clk->core->name);
4347 if (clk->core->protect_count)
4348 pr_warn("%s: unregistering protected clock: %s\n",
4349 __func__, clk->core->name);
4351 kref_put(&clk->core->ref, __clk_release);
4354 clk_prepare_unlock();
4356 EXPORT_SYMBOL_GPL(clk_unregister);
4359 * clk_hw_unregister - unregister a currently registered clk_hw
4360 * @hw: hardware-specific clock data to unregister
4362 void clk_hw_unregister(struct clk_hw *hw)
4364 clk_unregister(hw->clk);
4366 EXPORT_SYMBOL_GPL(clk_hw_unregister);
4368 static void devm_clk_unregister_cb(struct device *dev, void *res)
4370 clk_unregister(*(struct clk **)res);
4373 static void devm_clk_hw_unregister_cb(struct device *dev, void *res)
4375 clk_hw_unregister(*(struct clk_hw **)res);
4379 * devm_clk_register - resource managed clk_register()
4380 * @dev: device that is registering this clock
4381 * @hw: link to hardware-specific clock data
4383 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4385 * Clocks returned from this function are automatically clk_unregister()ed on
4386 * driver detach. See clk_register() for more information.
4388 struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
4393 clkp = devres_alloc(devm_clk_unregister_cb, sizeof(*clkp), GFP_KERNEL);
4395 return ERR_PTR(-ENOMEM);
4397 clk = clk_register(dev, hw);
4400 devres_add(dev, clkp);
4407 EXPORT_SYMBOL_GPL(devm_clk_register);
4410 * devm_clk_hw_register - resource managed clk_hw_register()
4411 * @dev: device that is registering this clock
4412 * @hw: link to hardware-specific clock data
4414 * Managed clk_hw_register(). Clocks registered by this function are
4415 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4416 * for more information.
4418 int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
4420 struct clk_hw **hwp;
4423 hwp = devres_alloc(devm_clk_hw_unregister_cb, sizeof(*hwp), GFP_KERNEL);
4427 ret = clk_hw_register(dev, hw);
4430 devres_add(dev, hwp);
4437 EXPORT_SYMBOL_GPL(devm_clk_hw_register);
4439 static void devm_clk_release(struct device *dev, void *res)
4441 clk_put(*(struct clk **)res);
4445 * devm_clk_hw_get_clk - resource managed clk_hw_get_clk()
4446 * @dev: device that is registering this clock
4447 * @hw: clk_hw associated with the clk being consumed
4448 * @con_id: connection ID string on device
4450 * Managed clk_hw_get_clk(). Clocks got with this function are
4451 * automatically clk_put() on driver detach. See clk_put()
4452 * for more information.
4454 struct clk *devm_clk_hw_get_clk(struct device *dev, struct clk_hw *hw,
4460 /* This should not happen because it would mean we have drivers
4461 * passing around clk_hw pointers instead of having the caller use
4462 * proper clk_get() style APIs
4464 WARN_ON_ONCE(dev != hw->core->dev);
4466 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
4468 return ERR_PTR(-ENOMEM);
4470 clk = clk_hw_get_clk(hw, con_id);
4473 devres_add(dev, clkp);
4480 EXPORT_SYMBOL_GPL(devm_clk_hw_get_clk);
4486 void __clk_put(struct clk *clk)
4488 struct module *owner;
4490 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
4496 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4497 * given user should be balanced with calls to clk_rate_exclusive_put()
4498 * and by that same consumer
4500 if (WARN_ON(clk->exclusive_count)) {
4501 /* We voiced our concern, let's sanitize the situation */
4502 clk->core->protect_count -= (clk->exclusive_count - 1);
4503 clk_core_rate_unprotect(clk->core);
4504 clk->exclusive_count = 0;
4507 hlist_del(&clk->clks_node);
4509 /* If we had any boundaries on that clock, let's drop them. */
4510 if (clk->min_rate > 0 || clk->max_rate < ULONG_MAX)
4511 clk_set_rate_range_nolock(clk, 0, ULONG_MAX);
4513 owner = clk->core->owner;
4514 kref_put(&clk->core->ref, __clk_release);
4516 clk_prepare_unlock();
4523 /*** clk rate change notifiers ***/
4526 * clk_notifier_register - add a clk rate change notifier
4527 * @clk: struct clk * to watch
4528 * @nb: struct notifier_block * with callback info
4530 * Request notification when clk's rate changes. This uses an SRCU
4531 * notifier because we want it to block and notifier unregistrations are
4532 * uncommon. The callbacks associated with the notifier must not
4533 * re-enter into the clk framework by calling any top-level clk APIs;
4534 * this will cause a nested prepare_lock mutex.
4536 * In all notification cases (pre, post and abort rate change) the original
4537 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4538 * and the new frequency is passed via struct clk_notifier_data.new_rate.
4540 * clk_notifier_register() must be called from non-atomic context.
4541 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4542 * allocation failure; otherwise, passes along the return value of
4543 * srcu_notifier_chain_register().
4545 int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
4547 struct clk_notifier *cn;
4555 /* search the list of notifiers for this clk */
4556 list_for_each_entry(cn, &clk_notifier_list, node)
4560 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4561 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
4566 srcu_init_notifier_head(&cn->notifier_head);
4568 list_add(&cn->node, &clk_notifier_list);
4571 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
4573 clk->core->notifier_count++;
4576 clk_prepare_unlock();
4580 EXPORT_SYMBOL_GPL(clk_notifier_register);
4583 * clk_notifier_unregister - remove a clk rate change notifier
4584 * @clk: struct clk *
4585 * @nb: struct notifier_block * with callback info
4587 * Request no further notification for changes to 'clk' and frees memory
4588 * allocated in clk_notifier_register.
4590 * Returns -EINVAL if called with null arguments; otherwise, passes
4591 * along the return value of srcu_notifier_chain_unregister().
4593 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
4595 struct clk_notifier *cn;
4603 list_for_each_entry(cn, &clk_notifier_list, node) {
4604 if (cn->clk == clk) {
4605 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
4607 clk->core->notifier_count--;
4609 /* XXX the notifier code should handle this better */
4610 if (!cn->notifier_head.head) {
4611 srcu_cleanup_notifier_head(&cn->notifier_head);
4612 list_del(&cn->node);
4619 clk_prepare_unlock();
4623 EXPORT_SYMBOL_GPL(clk_notifier_unregister);
4625 struct clk_notifier_devres {
4627 struct notifier_block *nb;
4630 static void devm_clk_notifier_release(struct device *dev, void *res)
4632 struct clk_notifier_devres *devres = res;
4634 clk_notifier_unregister(devres->clk, devres->nb);
4637 int devm_clk_notifier_register(struct device *dev, struct clk *clk,
4638 struct notifier_block *nb)
4640 struct clk_notifier_devres *devres;
4643 devres = devres_alloc(devm_clk_notifier_release,
4644 sizeof(*devres), GFP_KERNEL);
4649 ret = clk_notifier_register(clk, nb);
4654 devres_free(devres);
4659 EXPORT_SYMBOL_GPL(devm_clk_notifier_register);
4662 static void clk_core_reparent_orphans(void)
4665 clk_core_reparent_orphans_nolock();
4666 clk_prepare_unlock();
4670 * struct of_clk_provider - Clock provider registration structure
4671 * @link: Entry in global list of clock providers
4672 * @node: Pointer to device tree node of clock provider
4673 * @get: Get clock callback. Returns NULL or a struct clk for the
4674 * given clock specifier
4675 * @get_hw: Get clk_hw callback. Returns NULL, ERR_PTR or a
4676 * struct clk_hw for the given clock specifier
4677 * @data: context pointer to be passed into @get callback
4679 struct of_clk_provider {
4680 struct list_head link;
4682 struct device_node *node;
4683 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
4684 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
4688 extern struct of_device_id __clk_of_table;
4689 static const struct of_device_id __clk_of_table_sentinel
4690 __used __section("__clk_of_table_end");
4692 static LIST_HEAD(of_clk_providers);
4693 static DEFINE_MUTEX(of_clk_mutex);
4695 struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
4700 EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
4702 struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
4706 EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
4708 struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
4710 struct clk_onecell_data *clk_data = data;
4711 unsigned int idx = clkspec->args[0];
4713 if (idx >= clk_data->clk_num) {
4714 pr_err("%s: invalid clock index %u\n", __func__, idx);
4715 return ERR_PTR(-EINVAL);
4718 return clk_data->clks[idx];
4720 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
4723 of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
4725 struct clk_hw_onecell_data *hw_data = data;
4726 unsigned int idx = clkspec->args[0];
4728 if (idx >= hw_data->num) {
4729 pr_err("%s: invalid index %u\n", __func__, idx);
4730 return ERR_PTR(-EINVAL);
4733 return hw_data->hws[idx];
4735 EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
4738 * of_clk_add_provider() - Register a clock provider for a node
4739 * @np: Device node pointer associated with clock provider
4740 * @clk_src_get: callback for decoding clock
4741 * @data: context pointer for @clk_src_get callback.
4743 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
4745 int of_clk_add_provider(struct device_node *np,
4746 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
4750 struct of_clk_provider *cp;
4756 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4760 cp->node = of_node_get(np);
4762 cp->get = clk_src_get;
4764 mutex_lock(&of_clk_mutex);
4765 list_add(&cp->link, &of_clk_providers);
4766 mutex_unlock(&of_clk_mutex);
4767 pr_debug("Added clock from %pOF\n", np);
4769 clk_core_reparent_orphans();
4771 ret = of_clk_set_defaults(np, true);
4773 of_clk_del_provider(np);
4775 fwnode_dev_initialized(&np->fwnode, true);
4779 EXPORT_SYMBOL_GPL(of_clk_add_provider);
4782 * of_clk_add_hw_provider() - Register a clock provider for a node
4783 * @np: Device node pointer associated with clock provider
4784 * @get: callback for decoding clk_hw
4785 * @data: context pointer for @get callback.
4787 int of_clk_add_hw_provider(struct device_node *np,
4788 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4792 struct of_clk_provider *cp;
4798 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4802 cp->node = of_node_get(np);
4806 mutex_lock(&of_clk_mutex);
4807 list_add(&cp->link, &of_clk_providers);
4808 mutex_unlock(&of_clk_mutex);
4809 pr_debug("Added clk_hw provider from %pOF\n", np);
4811 clk_core_reparent_orphans();
4813 ret = of_clk_set_defaults(np, true);
4815 of_clk_del_provider(np);
4817 fwnode_dev_initialized(&np->fwnode, true);
4821 EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
4823 static void devm_of_clk_release_provider(struct device *dev, void *res)
4825 of_clk_del_provider(*(struct device_node **)res);
4829 * We allow a child device to use its parent device as the clock provider node
4830 * for cases like MFD sub-devices where the child device driver wants to use
4831 * devm_*() APIs but not list the device in DT as a sub-node.
4833 static struct device_node *get_clk_provider_node(struct device *dev)
4835 struct device_node *np, *parent_np;
4838 parent_np = dev->parent ? dev->parent->of_node : NULL;
4840 if (!of_find_property(np, "#clock-cells", NULL))
4841 if (of_find_property(parent_np, "#clock-cells", NULL))
4848 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
4849 * @dev: Device acting as the clock provider (used for DT node and lifetime)
4850 * @get: callback for decoding clk_hw
4851 * @data: context pointer for @get callback
4853 * Registers clock provider for given device's node. If the device has no DT
4854 * node or if the device node lacks of clock provider information (#clock-cells)
4855 * then the parent device's node is scanned for this information. If parent node
4856 * has the #clock-cells then it is used in registration. Provider is
4857 * automatically released at device exit.
4859 * Return: 0 on success or an errno on failure.
4861 int devm_of_clk_add_hw_provider(struct device *dev,
4862 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4866 struct device_node **ptr, *np;
4869 ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr),
4874 np = get_clk_provider_node(dev);
4875 ret = of_clk_add_hw_provider(np, get, data);
4878 devres_add(dev, ptr);
4885 EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider);
4888 * of_clk_del_provider() - Remove a previously registered clock provider
4889 * @np: Device node pointer associated with clock provider
4891 void of_clk_del_provider(struct device_node *np)
4893 struct of_clk_provider *cp;
4898 mutex_lock(&of_clk_mutex);
4899 list_for_each_entry(cp, &of_clk_providers, link) {
4900 if (cp->node == np) {
4901 list_del(&cp->link);
4902 fwnode_dev_initialized(&np->fwnode, false);
4903 of_node_put(cp->node);
4908 mutex_unlock(&of_clk_mutex);
4910 EXPORT_SYMBOL_GPL(of_clk_del_provider);
4913 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
4914 * @np: device node to parse clock specifier from
4915 * @index: index of phandle to parse clock out of. If index < 0, @name is used
4916 * @name: clock name to find and parse. If name is NULL, the index is used
4917 * @out_args: Result of parsing the clock specifier
4919 * Parses a device node's "clocks" and "clock-names" properties to find the
4920 * phandle and cells for the index or name that is desired. The resulting clock
4921 * specifier is placed into @out_args, or an errno is returned when there's a
4922 * parsing error. The @index argument is ignored if @name is non-NULL.
4926 * phandle1: clock-controller@1 {
4927 * #clock-cells = <2>;
4930 * phandle2: clock-controller@2 {
4931 * #clock-cells = <1>;
4934 * clock-consumer@3 {
4935 * clocks = <&phandle1 1 2 &phandle2 3>;
4936 * clock-names = "name1", "name2";
4939 * To get a device_node for `clock-controller@2' node you may call this
4940 * function a few different ways:
4942 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
4943 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
4944 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
4946 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
4947 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
4948 * the "clock-names" property of @np.
4950 static int of_parse_clkspec(const struct device_node *np, int index,
4951 const char *name, struct of_phandle_args *out_args)
4955 /* Walk up the tree of devices looking for a clock property that matches */
4958 * For named clocks, first look up the name in the
4959 * "clock-names" property. If it cannot be found, then index
4960 * will be an error code and of_parse_phandle_with_args() will
4964 index = of_property_match_string(np, "clock-names", name);
4965 ret = of_parse_phandle_with_args(np, "clocks", "#clock-cells",
4969 if (name && index >= 0)
4973 * No matching clock found on this node. If the parent node
4974 * has a "clock-ranges" property, then we can try one of its
4978 if (np && !of_get_property(np, "clock-ranges", NULL))
4986 static struct clk_hw *
4987 __of_clk_get_hw_from_provider(struct of_clk_provider *provider,
4988 struct of_phandle_args *clkspec)
4992 if (provider->get_hw)
4993 return provider->get_hw(clkspec, provider->data);
4995 clk = provider->get(clkspec, provider->data);
4997 return ERR_CAST(clk);
4998 return __clk_get_hw(clk);
5001 static struct clk_hw *
5002 of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
5004 struct of_clk_provider *provider;
5005 struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER);
5008 return ERR_PTR(-EINVAL);
5010 mutex_lock(&of_clk_mutex);
5011 list_for_each_entry(provider, &of_clk_providers, link) {
5012 if (provider->node == clkspec->np) {
5013 hw = __of_clk_get_hw_from_provider(provider, clkspec);
5018 mutex_unlock(&of_clk_mutex);
5024 * of_clk_get_from_provider() - Lookup a clock from a clock provider
5025 * @clkspec: pointer to a clock specifier data structure
5027 * This function looks up a struct clk from the registered list of clock
5028 * providers, an input is a clock specifier data structure as returned
5029 * from the of_parse_phandle_with_args() function call.
5031 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
5033 struct clk_hw *hw = of_clk_get_hw_from_clkspec(clkspec);
5035 return clk_hw_create_clk(NULL, hw, NULL, __func__);
5037 EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
5039 struct clk_hw *of_clk_get_hw(struct device_node *np, int index,
5044 struct of_phandle_args clkspec;
5046 ret = of_parse_clkspec(np, index, con_id, &clkspec);
5048 return ERR_PTR(ret);
5050 hw = of_clk_get_hw_from_clkspec(&clkspec);
5051 of_node_put(clkspec.np);
5056 static struct clk *__of_clk_get(struct device_node *np,
5057 int index, const char *dev_id,
5060 struct clk_hw *hw = of_clk_get_hw(np, index, con_id);
5062 return clk_hw_create_clk(NULL, hw, dev_id, con_id);
5065 struct clk *of_clk_get(struct device_node *np, int index)
5067 return __of_clk_get(np, index, np->full_name, NULL);
5069 EXPORT_SYMBOL(of_clk_get);
5072 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
5073 * @np: pointer to clock consumer node
5074 * @name: name of consumer's clock input, or NULL for the first clock reference
5076 * This function parses the clocks and clock-names properties,
5077 * and uses them to look up the struct clk from the registered list of clock
5080 struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
5083 return ERR_PTR(-ENOENT);
5085 return __of_clk_get(np, 0, np->full_name, name);
5087 EXPORT_SYMBOL(of_clk_get_by_name);
5090 * of_clk_get_parent_count() - Count the number of clocks a device node has
5091 * @np: device node to count
5093 * Returns: The number of clocks that are possible parents of this node
5095 unsigned int of_clk_get_parent_count(const struct device_node *np)
5099 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
5105 EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
5107 const char *of_clk_get_parent_name(const struct device_node *np, int index)
5109 struct of_phandle_args clkspec;
5110 struct property *prop;
5111 const char *clk_name;
5118 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
5123 index = clkspec.args_count ? clkspec.args[0] : 0;
5126 /* if there is an indices property, use it to transfer the index
5127 * specified into an array offset for the clock-output-names property.
5129 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
5136 /* We went off the end of 'clock-indices' without finding it */
5140 if (of_property_read_string_index(clkspec.np, "clock-output-names",
5144 * Best effort to get the name if the clock has been
5145 * registered with the framework. If the clock isn't
5146 * registered, we return the node name as the name of
5147 * the clock as long as #clock-cells = 0.
5149 clk = of_clk_get_from_provider(&clkspec);
5151 if (clkspec.args_count == 0)
5152 clk_name = clkspec.np->name;
5156 clk_name = __clk_get_name(clk);
5162 of_node_put(clkspec.np);
5165 EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
5168 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
5170 * @np: Device node pointer associated with clock provider
5171 * @parents: pointer to char array that hold the parents' names
5172 * @size: size of the @parents array
5174 * Return: number of parents for the clock node.
5176 int of_clk_parent_fill(struct device_node *np, const char **parents,
5181 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
5186 EXPORT_SYMBOL_GPL(of_clk_parent_fill);
5188 struct clock_provider {
5189 void (*clk_init_cb)(struct device_node *);
5190 struct device_node *np;
5191 struct list_head node;
5195 * This function looks for a parent clock. If there is one, then it
5196 * checks that the provider for this parent clock was initialized, in
5197 * this case the parent clock will be ready.
5199 static int parent_ready(struct device_node *np)
5204 struct clk *clk = of_clk_get(np, i);
5206 /* this parent is ready we can check the next one */
5213 /* at least one parent is not ready, we exit now */
5214 if (PTR_ERR(clk) == -EPROBE_DEFER)
5218 * Here we make assumption that the device tree is
5219 * written correctly. So an error means that there is
5220 * no more parent. As we didn't exit yet, then the
5221 * previous parent are ready. If there is no clock
5222 * parent, no need to wait for them, then we can
5223 * consider their absence as being ready
5230 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
5231 * @np: Device node pointer associated with clock provider
5232 * @index: clock index
5233 * @flags: pointer to top-level framework flags
5235 * Detects if the clock-critical property exists and, if so, sets the
5236 * corresponding CLK_IS_CRITICAL flag.
5238 * Do not use this function. It exists only for legacy Device Tree
5239 * bindings, such as the one-clock-per-node style that are outdated.
5240 * Those bindings typically put all clock data into .dts and the Linux
5241 * driver has no clock data, thus making it impossible to set this flag
5242 * correctly from the driver. Only those drivers may call
5243 * of_clk_detect_critical from their setup functions.
5245 * Return: error code or zero on success
5247 int of_clk_detect_critical(struct device_node *np, int index,
5248 unsigned long *flags)
5250 struct property *prop;
5257 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
5259 *flags |= CLK_IS_CRITICAL;
5265 * of_clk_init() - Scan and init clock providers from the DT
5266 * @matches: array of compatible values and init functions for providers.
5268 * This function scans the device tree for matching clock providers
5269 * and calls their initialization functions. It also does it by trying
5270 * to follow the dependencies.
5272 void __init of_clk_init(const struct of_device_id *matches)
5274 const struct of_device_id *match;
5275 struct device_node *np;
5276 struct clock_provider *clk_provider, *next;
5279 LIST_HEAD(clk_provider_list);
5282 matches = &__clk_of_table;
5284 /* First prepare the list of the clocks providers */
5285 for_each_matching_node_and_match(np, matches, &match) {
5286 struct clock_provider *parent;
5288 if (!of_device_is_available(np))
5291 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
5293 list_for_each_entry_safe(clk_provider, next,
5294 &clk_provider_list, node) {
5295 list_del(&clk_provider->node);
5296 of_node_put(clk_provider->np);
5297 kfree(clk_provider);
5303 parent->clk_init_cb = match->data;
5304 parent->np = of_node_get(np);
5305 list_add_tail(&parent->node, &clk_provider_list);
5308 while (!list_empty(&clk_provider_list)) {
5309 is_init_done = false;
5310 list_for_each_entry_safe(clk_provider, next,
5311 &clk_provider_list, node) {
5312 if (force || parent_ready(clk_provider->np)) {
5314 /* Don't populate platform devices */
5315 of_node_set_flag(clk_provider->np,
5318 clk_provider->clk_init_cb(clk_provider->np);
5319 of_clk_set_defaults(clk_provider->np, true);
5321 list_del(&clk_provider->node);
5322 of_node_put(clk_provider->np);
5323 kfree(clk_provider);
5324 is_init_done = true;
5329 * We didn't manage to initialize any of the
5330 * remaining providers during the last loop, so now we
5331 * initialize all the remaining ones unconditionally
5332 * in case the clock parent was not mandatory