2 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
3 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Standard functionality for the common clock API. See Documentation/clk.txt
12 #include <linux/clk-private.h>
13 #include <linux/module.h>
14 #include <linux/mutex.h>
15 #include <linux/spinlock.h>
16 #include <linux/err.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
20 static DEFINE_SPINLOCK(enable_lock
);
21 static DEFINE_MUTEX(prepare_lock
);
23 static HLIST_HEAD(clk_root_list
);
24 static HLIST_HEAD(clk_orphan_list
);
25 static LIST_HEAD(clk_notifier_list
);
27 /*** debugfs support ***/
29 #ifdef CONFIG_COMMON_CLK_DEBUG
30 #include <linux/debugfs.h>
32 static struct dentry
*rootdir
;
33 static struct dentry
*orphandir
;
34 static int inited
= 0;
36 /* caller must hold prepare_lock */
37 static int clk_debug_create_one(struct clk
*clk
, struct dentry
*pdentry
)
42 if (!clk
|| !pdentry
) {
47 d
= debugfs_create_dir(clk
->name
, pdentry
);
53 d
= debugfs_create_u32("clk_rate", S_IRUGO
, clk
->dentry
,
58 d
= debugfs_create_x32("clk_flags", S_IRUGO
, clk
->dentry
,
63 d
= debugfs_create_u32("clk_prepare_count", S_IRUGO
, clk
->dentry
,
64 (u32
*)&clk
->prepare_count
);
68 d
= debugfs_create_u32("clk_enable_count", S_IRUGO
, clk
->dentry
,
69 (u32
*)&clk
->enable_count
);
73 d
= debugfs_create_u32("clk_notifier_count", S_IRUGO
, clk
->dentry
,
74 (u32
*)&clk
->notifier_count
);
82 debugfs_remove(clk
->dentry
);
87 /* caller must hold prepare_lock */
88 static int clk_debug_create_subtree(struct clk
*clk
, struct dentry
*pdentry
)
91 struct hlist_node
*tmp
;
97 ret
= clk_debug_create_one(clk
, pdentry
);
102 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
)
103 clk_debug_create_subtree(child
, clk
->dentry
);
111 * clk_debug_register - add a clk node to the debugfs clk tree
112 * @clk: the clk being added to the debugfs clk tree
114 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
115 * initialized. Otherwise it bails out early since the debugfs clk tree
116 * will be created lazily by clk_debug_init as part of a late_initcall.
118 * Caller must hold prepare_lock. Only clk_init calls this function (so
119 * far) so this is taken care.
121 static int clk_debug_register(struct clk
*clk
)
124 struct dentry
*pdentry
;
130 parent
= clk
->parent
;
133 * Check to see if a clk is a root clk. Also check that it is
134 * safe to add this clk to debugfs
137 if (clk
->flags
& CLK_IS_ROOT
)
143 pdentry
= parent
->dentry
;
147 ret
= clk_debug_create_subtree(clk
, pdentry
);
154 * clk_debug_init - lazily create the debugfs clk tree visualization
156 * clks are often initialized very early during boot before memory can
157 * be dynamically allocated and well before debugfs is setup.
158 * clk_debug_init walks the clk tree hierarchy while holding
159 * prepare_lock and creates the topology as part of a late_initcall,
160 * thus insuring that clks initialized very early will still be
161 * represented in the debugfs clk tree. This function should only be
162 * called once at boot-time, and all other clks added dynamically will
163 * be done so with clk_debug_register.
165 static int __init
clk_debug_init(void)
168 struct hlist_node
*tmp
;
170 rootdir
= debugfs_create_dir("clk", NULL
);
175 orphandir
= debugfs_create_dir("orphans", rootdir
);
180 mutex_lock(&prepare_lock
);
182 hlist_for_each_entry(clk
, tmp
, &clk_root_list
, child_node
)
183 clk_debug_create_subtree(clk
, rootdir
);
185 hlist_for_each_entry(clk
, tmp
, &clk_orphan_list
, child_node
)
186 clk_debug_create_subtree(clk
, orphandir
);
190 mutex_unlock(&prepare_lock
);
194 late_initcall(clk_debug_init
);
196 static inline int clk_debug_register(struct clk
*clk
) { return 0; }
199 /* caller must hold prepare_lock */
200 static void clk_disable_unused_subtree(struct clk
*clk
)
203 struct hlist_node
*tmp
;
209 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
)
210 clk_disable_unused_subtree(child
);
212 spin_lock_irqsave(&enable_lock
, flags
);
214 if (clk
->enable_count
)
217 if (clk
->flags
& CLK_IGNORE_UNUSED
)
220 if (__clk_is_enabled(clk
) && clk
->ops
->disable
)
221 clk
->ops
->disable(clk
->hw
);
224 spin_unlock_irqrestore(&enable_lock
, flags
);
230 static int clk_disable_unused(void)
233 struct hlist_node
*tmp
;
235 mutex_lock(&prepare_lock
);
237 hlist_for_each_entry(clk
, tmp
, &clk_root_list
, child_node
)
238 clk_disable_unused_subtree(clk
);
240 hlist_for_each_entry(clk
, tmp
, &clk_orphan_list
, child_node
)
241 clk_disable_unused_subtree(clk
);
243 mutex_unlock(&prepare_lock
);
247 late_initcall(clk_disable_unused
);
249 /*** helper functions ***/
251 inline const char *__clk_get_name(struct clk
*clk
)
253 return !clk
? NULL
: clk
->name
;
256 inline struct clk_hw
*__clk_get_hw(struct clk
*clk
)
258 return !clk
? NULL
: clk
->hw
;
261 inline u8
__clk_get_num_parents(struct clk
*clk
)
263 return !clk
? -EINVAL
: clk
->num_parents
;
266 inline struct clk
*__clk_get_parent(struct clk
*clk
)
268 return !clk
? NULL
: clk
->parent
;
271 inline int __clk_get_enable_count(struct clk
*clk
)
273 return !clk
? -EINVAL
: clk
->enable_count
;
276 inline int __clk_get_prepare_count(struct clk
*clk
)
278 return !clk
? -EINVAL
: clk
->prepare_count
;
281 unsigned long __clk_get_rate(struct clk
*clk
)
292 if (clk
->flags
& CLK_IS_ROOT
)
302 inline unsigned long __clk_get_flags(struct clk
*clk
)
304 return !clk
? -EINVAL
: clk
->flags
;
307 int __clk_is_enabled(struct clk
*clk
)
315 * .is_enabled is only mandatory for clocks that gate
316 * fall back to software usage counter if .is_enabled is missing
318 if (!clk
->ops
->is_enabled
) {
319 ret
= clk
->enable_count
? 1 : 0;
323 ret
= clk
->ops
->is_enabled(clk
->hw
);
328 static struct clk
*__clk_lookup_subtree(const char *name
, struct clk
*clk
)
332 struct hlist_node
*tmp
;
334 if (!strcmp(clk
->name
, name
))
337 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
) {
338 ret
= __clk_lookup_subtree(name
, child
);
346 struct clk
*__clk_lookup(const char *name
)
348 struct clk
*root_clk
;
350 struct hlist_node
*tmp
;
355 /* search the 'proper' clk tree first */
356 hlist_for_each_entry(root_clk
, tmp
, &clk_root_list
, child_node
) {
357 ret
= __clk_lookup_subtree(name
, root_clk
);
362 /* if not found, then search the orphan tree */
363 hlist_for_each_entry(root_clk
, tmp
, &clk_orphan_list
, child_node
) {
364 ret
= __clk_lookup_subtree(name
, root_clk
);
374 void __clk_unprepare(struct clk
*clk
)
379 if (WARN_ON(clk
->prepare_count
== 0))
382 if (--clk
->prepare_count
> 0)
385 WARN_ON(clk
->enable_count
> 0);
387 if (clk
->ops
->unprepare
)
388 clk
->ops
->unprepare(clk
->hw
);
390 __clk_unprepare(clk
->parent
);
394 * clk_unprepare - undo preparation of a clock source
395 * @clk: the clk being unprepare
397 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
398 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
399 * if the operation may sleep. One example is a clk which is accessed over
400 * I2c. In the complex case a clk gate operation may require a fast and a slow
401 * part. It is this reason that clk_unprepare and clk_disable are not mutually
402 * exclusive. In fact clk_disable must be called before clk_unprepare.
404 void clk_unprepare(struct clk
*clk
)
406 mutex_lock(&prepare_lock
);
407 __clk_unprepare(clk
);
408 mutex_unlock(&prepare_lock
);
410 EXPORT_SYMBOL_GPL(clk_unprepare
);
412 int __clk_prepare(struct clk
*clk
)
419 if (clk
->prepare_count
== 0) {
420 ret
= __clk_prepare(clk
->parent
);
424 if (clk
->ops
->prepare
) {
425 ret
= clk
->ops
->prepare(clk
->hw
);
427 __clk_unprepare(clk
->parent
);
433 clk
->prepare_count
++;
439 * clk_prepare - prepare a clock source
440 * @clk: the clk being prepared
442 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
443 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
444 * operation may sleep. One example is a clk which is accessed over I2c. In
445 * the complex case a clk ungate operation may require a fast and a slow part.
446 * It is this reason that clk_prepare and clk_enable are not mutually
447 * exclusive. In fact clk_prepare must be called before clk_enable.
448 * Returns 0 on success, -EERROR otherwise.
450 int clk_prepare(struct clk
*clk
)
454 mutex_lock(&prepare_lock
);
455 ret
= __clk_prepare(clk
);
456 mutex_unlock(&prepare_lock
);
460 EXPORT_SYMBOL_GPL(clk_prepare
);
462 static void __clk_disable(struct clk
*clk
)
467 if (WARN_ON(clk
->enable_count
== 0))
470 if (--clk
->enable_count
> 0)
473 if (clk
->ops
->disable
)
474 clk
->ops
->disable(clk
->hw
);
476 __clk_disable(clk
->parent
);
480 * clk_disable - gate a clock
481 * @clk: the clk being gated
483 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
484 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
485 * clk if the operation is fast and will never sleep. One example is a
486 * SoC-internal clk which is controlled via simple register writes. In the
487 * complex case a clk gate operation may require a fast and a slow part. It is
488 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
489 * In fact clk_disable must be called before clk_unprepare.
491 void clk_disable(struct clk
*clk
)
495 spin_lock_irqsave(&enable_lock
, flags
);
497 spin_unlock_irqrestore(&enable_lock
, flags
);
499 EXPORT_SYMBOL_GPL(clk_disable
);
501 static int __clk_enable(struct clk
*clk
)
508 if (WARN_ON(clk
->prepare_count
== 0))
511 if (clk
->enable_count
== 0) {
512 ret
= __clk_enable(clk
->parent
);
517 if (clk
->ops
->enable
) {
518 ret
= clk
->ops
->enable(clk
->hw
);
520 __clk_disable(clk
->parent
);
531 * clk_enable - ungate a clock
532 * @clk: the clk being ungated
534 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
535 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
536 * if the operation will never sleep. One example is a SoC-internal clk which
537 * is controlled via simple register writes. In the complex case a clk ungate
538 * operation may require a fast and a slow part. It is this reason that
539 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
540 * must be called before clk_enable. Returns 0 on success, -EERROR
543 int clk_enable(struct clk
*clk
)
548 spin_lock_irqsave(&enable_lock
, flags
);
549 ret
= __clk_enable(clk
);
550 spin_unlock_irqrestore(&enable_lock
, flags
);
554 EXPORT_SYMBOL_GPL(clk_enable
);
557 * clk_get_rate - return the rate of clk
558 * @clk: the clk whose rate is being returned
560 * Simply returns the cached rate of the clk. Does not query the hardware. If
561 * clk is NULL then returns 0.
563 unsigned long clk_get_rate(struct clk
*clk
)
567 mutex_lock(&prepare_lock
);
568 rate
= __clk_get_rate(clk
);
569 mutex_unlock(&prepare_lock
);
573 EXPORT_SYMBOL_GPL(clk_get_rate
);
576 * __clk_round_rate - round the given rate for a clk
577 * @clk: round the rate of this clock
579 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
581 unsigned long __clk_round_rate(struct clk
*clk
, unsigned long rate
)
583 unsigned long parent_rate
= 0;
588 if (!clk
->ops
->round_rate
) {
589 if (clk
->flags
& CLK_SET_RATE_PARENT
)
590 return __clk_round_rate(clk
->parent
, rate
);
596 parent_rate
= clk
->parent
->rate
;
598 return clk
->ops
->round_rate(clk
->hw
, rate
, &parent_rate
);
602 * clk_round_rate - round the given rate for a clk
603 * @clk: the clk for which we are rounding a rate
604 * @rate: the rate which is to be rounded
606 * Takes in a rate as input and rounds it to a rate that the clk can actually
607 * use which is then returned. If clk doesn't support round_rate operation
608 * then the parent rate is returned.
610 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
614 mutex_lock(&prepare_lock
);
615 ret
= __clk_round_rate(clk
, rate
);
616 mutex_unlock(&prepare_lock
);
620 EXPORT_SYMBOL_GPL(clk_round_rate
);
623 * __clk_notify - call clk notifier chain
624 * @clk: struct clk * that is changing rate
625 * @msg: clk notifier type (see include/linux/clk.h)
626 * @old_rate: old clk rate
627 * @new_rate: new clk rate
629 * Triggers a notifier call chain on the clk rate-change notification
630 * for 'clk'. Passes a pointer to the struct clk and the previous
631 * and current rates to the notifier callback. Intended to be called by
632 * internal clock code only. Returns NOTIFY_DONE from the last driver
633 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
634 * a driver returns that.
636 static int __clk_notify(struct clk
*clk
, unsigned long msg
,
637 unsigned long old_rate
, unsigned long new_rate
)
639 struct clk_notifier
*cn
;
640 struct clk_notifier_data cnd
;
641 int ret
= NOTIFY_DONE
;
644 cnd
.old_rate
= old_rate
;
645 cnd
.new_rate
= new_rate
;
647 list_for_each_entry(cn
, &clk_notifier_list
, node
) {
648 if (cn
->clk
== clk
) {
649 ret
= srcu_notifier_call_chain(&cn
->notifier_head
, msg
,
660 * @clk: first clk in the subtree
661 * @msg: notification type (see include/linux/clk.h)
663 * Walks the subtree of clks starting with clk and recalculates rates as it
664 * goes. Note that if a clk does not implement the .recalc_rate callback then
665 * it is assumed that the clock will take on the rate of it's parent.
667 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
670 * Caller must hold prepare_lock.
672 static void __clk_recalc_rates(struct clk
*clk
, unsigned long msg
)
674 unsigned long old_rate
;
675 unsigned long parent_rate
= 0;
676 struct hlist_node
*tmp
;
679 old_rate
= clk
->rate
;
682 parent_rate
= clk
->parent
->rate
;
684 if (clk
->ops
->recalc_rate
)
685 clk
->rate
= clk
->ops
->recalc_rate(clk
->hw
, parent_rate
);
687 clk
->rate
= parent_rate
;
690 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
691 * & ABORT_RATE_CHANGE notifiers
693 if (clk
->notifier_count
&& msg
)
694 __clk_notify(clk
, msg
, old_rate
, clk
->rate
);
696 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
)
697 __clk_recalc_rates(child
, msg
);
701 * __clk_speculate_rates
702 * @clk: first clk in the subtree
703 * @parent_rate: the "future" rate of clk's parent
705 * Walks the subtree of clks starting with clk, speculating rates as it
706 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
708 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
709 * pre-rate change notifications and returns early if no clks in the
710 * subtree have subscribed to the notifications. Note that if a clk does not
711 * implement the .recalc_rate callback then it is assumed that the clock will
712 * take on the rate of it's parent.
714 * Caller must hold prepare_lock.
716 static int __clk_speculate_rates(struct clk
*clk
, unsigned long parent_rate
)
718 struct hlist_node
*tmp
;
720 unsigned long new_rate
;
721 int ret
= NOTIFY_DONE
;
723 if (clk
->ops
->recalc_rate
)
724 new_rate
= clk
->ops
->recalc_rate(clk
->hw
, parent_rate
);
726 new_rate
= parent_rate
;
728 /* abort the rate change if a driver returns NOTIFY_BAD */
729 if (clk
->notifier_count
)
730 ret
= __clk_notify(clk
, PRE_RATE_CHANGE
, clk
->rate
, new_rate
);
732 if (ret
== NOTIFY_BAD
)
735 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
) {
736 ret
= __clk_speculate_rates(child
, new_rate
);
737 if (ret
== NOTIFY_BAD
)
745 static void clk_calc_subtree(struct clk
*clk
, unsigned long new_rate
)
748 struct hlist_node
*tmp
;
750 clk
->new_rate
= new_rate
;
752 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
) {
753 if (child
->ops
->recalc_rate
)
754 child
->new_rate
= child
->ops
->recalc_rate(child
->hw
, new_rate
);
756 child
->new_rate
= new_rate
;
757 clk_calc_subtree(child
, child
->new_rate
);
762 * calculate the new rates returning the topmost clock that has to be
765 static struct clk
*clk_calc_new_rates(struct clk
*clk
, unsigned long rate
)
767 struct clk
*top
= clk
;
768 unsigned long best_parent_rate
= 0;
769 unsigned long new_rate
;
772 if (IS_ERR_OR_NULL(clk
))
775 /* save parent rate, if it exists */
777 best_parent_rate
= clk
->parent
->rate
;
779 /* never propagate up to the parent */
780 if (!(clk
->flags
& CLK_SET_RATE_PARENT
)) {
781 if (!clk
->ops
->round_rate
) {
782 clk
->new_rate
= clk
->rate
;
785 new_rate
= clk
->ops
->round_rate(clk
->hw
, rate
, &best_parent_rate
);
789 /* need clk->parent from here on out */
791 pr_debug("%s: %s has NULL parent\n", __func__
, clk
->name
);
795 if (!clk
->ops
->round_rate
) {
796 top
= clk_calc_new_rates(clk
->parent
, rate
);
797 new_rate
= clk
->parent
->new_rate
;
802 new_rate
= clk
->ops
->round_rate(clk
->hw
, rate
, &best_parent_rate
);
804 if (best_parent_rate
!= clk
->parent
->rate
) {
805 top
= clk_calc_new_rates(clk
->parent
, best_parent_rate
);
811 clk_calc_subtree(clk
, new_rate
);
817 * Notify about rate changes in a subtree. Always walk down the whole tree
818 * so that in case of an error we can walk down the whole tree again and
821 static struct clk
*clk_propagate_rate_change(struct clk
*clk
, unsigned long event
)
823 struct hlist_node
*tmp
;
824 struct clk
*child
, *fail_clk
= NULL
;
825 int ret
= NOTIFY_DONE
;
827 if (clk
->rate
== clk
->new_rate
)
830 if (clk
->notifier_count
) {
831 ret
= __clk_notify(clk
, event
, clk
->rate
, clk
->new_rate
);
832 if (ret
== NOTIFY_BAD
)
836 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
) {
837 clk
= clk_propagate_rate_change(child
, event
);
846 * walk down a subtree and set the new rates notifying the rate
849 static void clk_change_rate(struct clk
*clk
)
852 unsigned long old_rate
;
853 unsigned long best_parent_rate
= 0;
854 struct hlist_node
*tmp
;
856 old_rate
= clk
->rate
;
859 best_parent_rate
= clk
->parent
->rate
;
861 if (clk
->ops
->set_rate
)
862 clk
->ops
->set_rate(clk
->hw
, clk
->new_rate
, best_parent_rate
);
864 if (clk
->ops
->recalc_rate
)
865 clk
->rate
= clk
->ops
->recalc_rate(clk
->hw
, best_parent_rate
);
867 clk
->rate
= best_parent_rate
;
869 if (clk
->notifier_count
&& old_rate
!= clk
->rate
)
870 __clk_notify(clk
, POST_RATE_CHANGE
, old_rate
, clk
->rate
);
872 hlist_for_each_entry(child
, tmp
, &clk
->children
, child_node
)
873 clk_change_rate(child
);
877 * clk_set_rate - specify a new rate for clk
878 * @clk: the clk whose rate is being changed
879 * @rate: the new rate for clk
881 * In the simplest case clk_set_rate will only adjust the rate of clk.
883 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
884 * propagate up to clk's parent; whether or not this happens depends on the
885 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
886 * after calling .round_rate then upstream parent propagation is ignored. If
887 * *parent_rate comes back with a new rate for clk's parent then we propagate
888 * up to clk's parent and set it's rate. Upward propagation will continue
889 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
890 * .round_rate stops requesting changes to clk's parent_rate.
892 * Rate changes are accomplished via tree traversal that also recalculates the
893 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
895 * Returns 0 on success, -EERROR otherwise.
897 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
899 struct clk
*top
, *fail_clk
;
902 /* prevent racing with updates to the clock topology */
903 mutex_lock(&prepare_lock
);
905 /* bail early if nothing to do */
906 if (rate
== clk
->rate
)
909 if ((clk
->flags
& CLK_SET_RATE_GATE
) && clk
->prepare_count
) {
914 /* calculate new rates and get the topmost changed clock */
915 top
= clk_calc_new_rates(clk
, rate
);
921 /* notify that we are about to change rates */
922 fail_clk
= clk_propagate_rate_change(top
, PRE_RATE_CHANGE
);
924 pr_warn("%s: failed to set %s rate\n", __func__
,
926 clk_propagate_rate_change(top
, ABORT_RATE_CHANGE
);
931 /* change the rates */
932 clk_change_rate(top
);
934 mutex_unlock(&prepare_lock
);
938 mutex_unlock(&prepare_lock
);
942 EXPORT_SYMBOL_GPL(clk_set_rate
);
945 * clk_get_parent - return the parent of a clk
946 * @clk: the clk whose parent gets returned
948 * Simply returns clk->parent. Returns NULL if clk is NULL.
950 struct clk
*clk_get_parent(struct clk
*clk
)
954 mutex_lock(&prepare_lock
);
955 parent
= __clk_get_parent(clk
);
956 mutex_unlock(&prepare_lock
);
960 EXPORT_SYMBOL_GPL(clk_get_parent
);
963 * .get_parent is mandatory for clocks with multiple possible parents. It is
964 * optional for single-parent clocks. Always call .get_parent if it is
965 * available and WARN if it is missing for multi-parent clocks.
967 * For single-parent clocks without .get_parent, first check to see if the
968 * .parents array exists, and if so use it to avoid an expensive tree
969 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
971 static struct clk
*__clk_init_parent(struct clk
*clk
)
973 struct clk
*ret
= NULL
;
976 /* handle the trivial cases */
978 if (!clk
->num_parents
)
981 if (clk
->num_parents
== 1) {
982 if (IS_ERR_OR_NULL(clk
->parent
))
983 ret
= clk
->parent
= __clk_lookup(clk
->parent_names
[0]);
988 if (!clk
->ops
->get_parent
) {
989 WARN(!clk
->ops
->get_parent
,
990 "%s: multi-parent clocks must implement .get_parent\n",
996 * Do our best to cache parent clocks in clk->parents. This prevents
997 * unnecessary and expensive calls to __clk_lookup. We don't set
998 * clk->parent here; that is done by the calling function
1001 index
= clk
->ops
->get_parent(clk
->hw
);
1005 kzalloc((sizeof(struct clk
*) * clk
->num_parents
),
1009 ret
= __clk_lookup(clk
->parent_names
[index
]);
1010 else if (!clk
->parents
[index
])
1011 ret
= clk
->parents
[index
] =
1012 __clk_lookup(clk
->parent_names
[index
]);
1014 ret
= clk
->parents
[index
];
1020 void __clk_reparent(struct clk
*clk
, struct clk
*new_parent
)
1022 #ifdef CONFIG_COMMON_CLK_DEBUG
1024 struct dentry
*new_parent_d
;
1027 if (!clk
|| !new_parent
)
1030 hlist_del(&clk
->child_node
);
1033 hlist_add_head(&clk
->child_node
, &new_parent
->children
);
1035 hlist_add_head(&clk
->child_node
, &clk_orphan_list
);
1037 #ifdef CONFIG_COMMON_CLK_DEBUG
1042 new_parent_d
= new_parent
->dentry
;
1044 new_parent_d
= orphandir
;
1046 d
= debugfs_rename(clk
->dentry
->d_parent
, clk
->dentry
,
1047 new_parent_d
, clk
->name
);
1051 pr_debug("%s: failed to rename debugfs entry for %s\n",
1052 __func__
, clk
->name
);
1056 clk
->parent
= new_parent
;
1058 __clk_recalc_rates(clk
, POST_RATE_CHANGE
);
1061 static int __clk_set_parent(struct clk
*clk
, struct clk
*parent
)
1063 struct clk
*old_parent
;
1064 unsigned long flags
;
1068 old_parent
= clk
->parent
;
1071 clk
->parents
= kzalloc((sizeof(struct clk
*) * clk
->num_parents
),
1075 * find index of new parent clock using cached parent ptrs,
1076 * or if not yet cached, use string name comparison and cache
1077 * them now to avoid future calls to __clk_lookup.
1079 for (i
= 0; i
< clk
->num_parents
; i
++) {
1080 if (clk
->parents
&& clk
->parents
[i
] == parent
)
1082 else if (!strcmp(clk
->parent_names
[i
], parent
->name
)) {
1084 clk
->parents
[i
] = __clk_lookup(parent
->name
);
1089 if (i
== clk
->num_parents
) {
1090 pr_debug("%s: clock %s is not a possible parent of clock %s\n",
1091 __func__
, parent
->name
, clk
->name
);
1095 /* migrate prepare and enable */
1096 if (clk
->prepare_count
)
1097 __clk_prepare(parent
);
1099 /* FIXME replace with clk_is_enabled(clk) someday */
1100 spin_lock_irqsave(&enable_lock
, flags
);
1101 if (clk
->enable_count
)
1102 __clk_enable(parent
);
1103 spin_unlock_irqrestore(&enable_lock
, flags
);
1105 /* change clock input source */
1106 ret
= clk
->ops
->set_parent(clk
->hw
, i
);
1108 /* clean up old prepare and enable */
1109 spin_lock_irqsave(&enable_lock
, flags
);
1110 if (clk
->enable_count
)
1111 __clk_disable(old_parent
);
1112 spin_unlock_irqrestore(&enable_lock
, flags
);
1114 if (clk
->prepare_count
)
1115 __clk_unprepare(old_parent
);
1122 * clk_set_parent - switch the parent of a mux clk
1123 * @clk: the mux clk whose input we are switching
1124 * @parent: the new input to clk
1126 * Re-parent clk to use parent as it's new input source. If clk has the
1127 * CLK_SET_PARENT_GATE flag set then clk must be gated for this
1128 * operation to succeed. After successfully changing clk's parent
1129 * clk_set_parent will update the clk topology, sysfs topology and
1130 * propagate rate recalculation via __clk_recalc_rates. Returns 0 on
1131 * success, -EERROR otherwise.
1133 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
1137 if (!clk
|| !clk
->ops
)
1140 if (!clk
->ops
->set_parent
)
1143 /* prevent racing with updates to the clock topology */
1144 mutex_lock(&prepare_lock
);
1146 if (clk
->parent
== parent
)
1149 /* propagate PRE_RATE_CHANGE notifications */
1150 if (clk
->notifier_count
)
1151 ret
= __clk_speculate_rates(clk
, parent
->rate
);
1153 /* abort if a driver objects */
1154 if (ret
== NOTIFY_STOP
)
1157 /* only re-parent if the clock is not in use */
1158 if ((clk
->flags
& CLK_SET_PARENT_GATE
) && clk
->prepare_count
)
1161 ret
= __clk_set_parent(clk
, parent
);
1163 /* propagate ABORT_RATE_CHANGE if .set_parent failed */
1165 __clk_recalc_rates(clk
, ABORT_RATE_CHANGE
);
1169 /* propagate rate recalculation downstream */
1170 __clk_reparent(clk
, parent
);
1173 mutex_unlock(&prepare_lock
);
1177 EXPORT_SYMBOL_GPL(clk_set_parent
);
1180 * __clk_init - initialize the data structures in a struct clk
1181 * @dev: device initializing this clk, placeholder for now
1182 * @clk: clk being initialized
1184 * Initializes the lists in struct clk, queries the hardware for the
1185 * parent and rate and sets them both.
1187 int __clk_init(struct device
*dev
, struct clk
*clk
)
1191 struct hlist_node
*tmp
, *tmp2
;
1196 mutex_lock(&prepare_lock
);
1198 /* check to see if a clock with this name is already registered */
1199 if (__clk_lookup(clk
->name
)) {
1200 pr_debug("%s: clk %s already initialized\n",
1201 __func__
, clk
->name
);
1206 /* check that clk_ops are sane. See Documentation/clk.txt */
1207 if (clk
->ops
->set_rate
&&
1208 !(clk
->ops
->round_rate
&& clk
->ops
->recalc_rate
)) {
1209 pr_warning("%s: %s must implement .round_rate & .recalc_rate\n",
1210 __func__
, clk
->name
);
1215 if (clk
->ops
->set_parent
&& !clk
->ops
->get_parent
) {
1216 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1217 __func__
, clk
->name
);
1222 /* throw a WARN if any entries in parent_names are NULL */
1223 for (i
= 0; i
< clk
->num_parents
; i
++)
1224 WARN(!clk
->parent_names
[i
],
1225 "%s: invalid NULL in %s's .parent_names\n",
1226 __func__
, clk
->name
);
1229 * Allocate an array of struct clk *'s to avoid unnecessary string
1230 * look-ups of clk's possible parents. This can fail for clocks passed
1231 * in to clk_init during early boot; thus any access to clk->parents[]
1232 * must always check for a NULL pointer and try to populate it if
1235 * If clk->parents is not NULL we skip this entire block. This allows
1236 * for clock drivers to statically initialize clk->parents.
1238 if (clk
->num_parents
&& !clk
->parents
) {
1239 clk
->parents
= kmalloc((sizeof(struct clk
*) * clk
->num_parents
),
1242 * __clk_lookup returns NULL for parents that have not been
1243 * clk_init'd; thus any access to clk->parents[] must check
1244 * for a NULL pointer. We can always perform lazy lookups for
1245 * missing parents later on.
1248 for (i
= 0; i
< clk
->num_parents
; i
++)
1250 __clk_lookup(clk
->parent_names
[i
]);
1253 clk
->parent
= __clk_init_parent(clk
);
1256 * Populate clk->parent if parent has already been __clk_init'd. If
1257 * parent has not yet been __clk_init'd then place clk in the orphan
1258 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1261 * Every time a new clk is clk_init'd then we walk the list of orphan
1262 * clocks and re-parent any that are children of the clock currently
1266 hlist_add_head(&clk
->child_node
,
1267 &clk
->parent
->children
);
1268 else if (clk
->flags
& CLK_IS_ROOT
)
1269 hlist_add_head(&clk
->child_node
, &clk_root_list
);
1271 hlist_add_head(&clk
->child_node
, &clk_orphan_list
);
1274 * Set clk's rate. The preferred method is to use .recalc_rate. For
1275 * simple clocks and lazy developers the default fallback is to use the
1276 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1277 * then rate is set to zero.
1279 if (clk
->ops
->recalc_rate
)
1280 clk
->rate
= clk
->ops
->recalc_rate(clk
->hw
,
1281 __clk_get_rate(clk
->parent
));
1282 else if (clk
->parent
)
1283 clk
->rate
= clk
->parent
->rate
;
1288 * walk the list of orphan clocks and reparent any that are children of
1291 hlist_for_each_entry_safe(orphan
, tmp
, tmp2
, &clk_orphan_list
, child_node
)
1292 for (i
= 0; i
< orphan
->num_parents
; i
++)
1293 if (!strcmp(clk
->name
, orphan
->parent_names
[i
])) {
1294 __clk_reparent(orphan
, clk
);
1299 * optional platform-specific magic
1301 * The .init callback is not used by any of the basic clock types, but
1302 * exists for weird hardware that must perform initialization magic.
1303 * Please consider other ways of solving initialization problems before
1304 * using this callback, as it's use is discouraged.
1307 clk
->ops
->init(clk
->hw
);
1309 clk_debug_register(clk
);
1312 mutex_unlock(&prepare_lock
);
1318 * __clk_register - register a clock and return a cookie.
1320 * Same as clk_register, except that the .clk field inside hw shall point to a
1321 * preallocated (generally statically allocated) struct clk. None of the fields
1322 * of the struct clk need to be initialized.
1324 * The data pointed to by .init and .clk field shall NOT be marked as init
1327 * __clk_register is only exposed via clk-private.h and is intended for use with
1328 * very large numbers of clocks that need to be statically initialized. It is
1329 * a layering violation to include clk-private.h from any code which implements
1330 * a clock's .ops; as such any statically initialized clock data MUST be in a
1331 * separate C file from the logic that implements it's operations. Returns 0
1332 * on success, otherwise an error code.
1334 struct clk
*__clk_register(struct device
*dev
, struct clk_hw
*hw
)
1340 clk
->name
= hw
->init
->name
;
1341 clk
->ops
= hw
->init
->ops
;
1343 clk
->flags
= hw
->init
->flags
;
1344 clk
->parent_names
= hw
->init
->parent_names
;
1345 clk
->num_parents
= hw
->init
->num_parents
;
1347 ret
= __clk_init(dev
, clk
);
1349 return ERR_PTR(ret
);
1353 EXPORT_SYMBOL_GPL(__clk_register
);
1356 * clk_register - allocate a new clock, register it and return an opaque cookie
1357 * @dev: device that is registering this clock
1358 * @hw: link to hardware-specific clock data
1360 * clk_register is the primary interface for populating the clock tree with new
1361 * clock nodes. It returns a pointer to the newly allocated struct clk which
1362 * cannot be dereferenced by driver code but may be used in conjuction with the
1363 * rest of the clock API. In the event of an error clk_register will return an
1364 * error code; drivers must test for an error code after calling clk_register.
1366 struct clk
*clk_register(struct device
*dev
, struct clk_hw
*hw
)
1371 clk
= kzalloc(sizeof(*clk
), GFP_KERNEL
);
1373 pr_err("%s: could not allocate clk\n", __func__
);
1378 clk
->name
= kstrdup(hw
->init
->name
, GFP_KERNEL
);
1380 pr_err("%s: could not allocate clk->name\n", __func__
);
1384 clk
->ops
= hw
->init
->ops
;
1386 clk
->flags
= hw
->init
->flags
;
1387 clk
->num_parents
= hw
->init
->num_parents
;
1390 /* allocate local copy in case parent_names is __initdata */
1391 clk
->parent_names
= kzalloc((sizeof(char*) * clk
->num_parents
),
1394 if (!clk
->parent_names
) {
1395 pr_err("%s: could not allocate clk->parent_names\n", __func__
);
1397 goto fail_parent_names
;
1401 /* copy each string name in case parent_names is __initdata */
1402 for (i
= 0; i
< clk
->num_parents
; i
++) {
1403 clk
->parent_names
[i
] = kstrdup(hw
->init
->parent_names
[i
],
1405 if (!clk
->parent_names
[i
]) {
1406 pr_err("%s: could not copy parent_names\n", __func__
);
1408 goto fail_parent_names_copy
;
1412 ret
= __clk_init(dev
, clk
);
1416 fail_parent_names_copy
:
1418 kfree(clk
->parent_names
[i
]);
1419 kfree(clk
->parent_names
);
1425 return ERR_PTR(ret
);
1427 EXPORT_SYMBOL_GPL(clk_register
);
1430 * clk_unregister - unregister a currently registered clock
1431 * @clk: clock to unregister
1433 * Currently unimplemented.
1435 void clk_unregister(struct clk
*clk
) {}
1436 EXPORT_SYMBOL_GPL(clk_unregister
);
1438 /*** clk rate change notifiers ***/
1441 * clk_notifier_register - add a clk rate change notifier
1442 * @clk: struct clk * to watch
1443 * @nb: struct notifier_block * with callback info
1445 * Request notification when clk's rate changes. This uses an SRCU
1446 * notifier because we want it to block and notifier unregistrations are
1447 * uncommon. The callbacks associated with the notifier must not
1448 * re-enter into the clk framework by calling any top-level clk APIs;
1449 * this will cause a nested prepare_lock mutex.
1451 * Pre-change notifier callbacks will be passed the current, pre-change
1452 * rate of the clk via struct clk_notifier_data.old_rate. The new,
1453 * post-change rate of the clk is passed via struct
1454 * clk_notifier_data.new_rate.
1456 * Post-change notifiers will pass the now-current, post-change rate of
1457 * the clk in both struct clk_notifier_data.old_rate and struct
1458 * clk_notifier_data.new_rate.
1460 * Abort-change notifiers are effectively the opposite of pre-change
1461 * notifiers: the original pre-change clk rate is passed in via struct
1462 * clk_notifier_data.new_rate and the failed post-change rate is passed
1463 * in via struct clk_notifier_data.old_rate.
1465 * clk_notifier_register() must be called from non-atomic context.
1466 * Returns -EINVAL if called with null arguments, -ENOMEM upon
1467 * allocation failure; otherwise, passes along the return value of
1468 * srcu_notifier_chain_register().
1470 int clk_notifier_register(struct clk
*clk
, struct notifier_block
*nb
)
1472 struct clk_notifier
*cn
;
1478 mutex_lock(&prepare_lock
);
1480 /* search the list of notifiers for this clk */
1481 list_for_each_entry(cn
, &clk_notifier_list
, node
)
1485 /* if clk wasn't in the notifier list, allocate new clk_notifier */
1486 if (cn
->clk
!= clk
) {
1487 cn
= kzalloc(sizeof(struct clk_notifier
), GFP_KERNEL
);
1492 srcu_init_notifier_head(&cn
->notifier_head
);
1494 list_add(&cn
->node
, &clk_notifier_list
);
1497 ret
= srcu_notifier_chain_register(&cn
->notifier_head
, nb
);
1499 clk
->notifier_count
++;
1502 mutex_unlock(&prepare_lock
);
1506 EXPORT_SYMBOL_GPL(clk_notifier_register
);
1509 * clk_notifier_unregister - remove a clk rate change notifier
1510 * @clk: struct clk *
1511 * @nb: struct notifier_block * with callback info
1513 * Request no further notification for changes to 'clk' and frees memory
1514 * allocated in clk_notifier_register.
1516 * Returns -EINVAL if called with null arguments; otherwise, passes
1517 * along the return value of srcu_notifier_chain_unregister().
1519 int clk_notifier_unregister(struct clk
*clk
, struct notifier_block
*nb
)
1521 struct clk_notifier
*cn
= NULL
;
1527 mutex_lock(&prepare_lock
);
1529 list_for_each_entry(cn
, &clk_notifier_list
, node
)
1533 if (cn
->clk
== clk
) {
1534 ret
= srcu_notifier_chain_unregister(&cn
->notifier_head
, nb
);
1536 clk
->notifier_count
--;
1538 /* XXX the notifier code should handle this better */
1539 if (!cn
->notifier_head
.head
) {
1540 srcu_cleanup_notifier_head(&cn
->notifier_head
);
1548 mutex_unlock(&prepare_lock
);
1552 EXPORT_SYMBOL_GPL(clk_notifier_unregister
);