Linux 3.14.51
[linux/fpc-iii.git] / drivers / clk / clk.c
blob7145f6d93567be08ffaad761e4d1a16f10c048f7
1 /*
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>
19 #include <linux/of.h>
20 #include <linux/device.h>
21 #include <linux/init.h>
22 #include <linux/sched.h>
24 #include "clk.h"
26 static DEFINE_SPINLOCK(enable_lock);
27 static DEFINE_MUTEX(prepare_lock);
29 static struct task_struct *prepare_owner;
30 static struct task_struct *enable_owner;
32 static int prepare_refcnt;
33 static int enable_refcnt;
35 static HLIST_HEAD(clk_root_list);
36 static HLIST_HEAD(clk_orphan_list);
37 static LIST_HEAD(clk_notifier_list);
39 /*** locking ***/
40 static void clk_prepare_lock(void)
42 if (!mutex_trylock(&prepare_lock)) {
43 if (prepare_owner == current) {
44 prepare_refcnt++;
45 return;
47 mutex_lock(&prepare_lock);
49 WARN_ON_ONCE(prepare_owner != NULL);
50 WARN_ON_ONCE(prepare_refcnt != 0);
51 prepare_owner = current;
52 prepare_refcnt = 1;
55 static void clk_prepare_unlock(void)
57 WARN_ON_ONCE(prepare_owner != current);
58 WARN_ON_ONCE(prepare_refcnt == 0);
60 if (--prepare_refcnt)
61 return;
62 prepare_owner = NULL;
63 mutex_unlock(&prepare_lock);
66 static unsigned long clk_enable_lock(void)
68 unsigned long flags;
70 if (!spin_trylock_irqsave(&enable_lock, flags)) {
71 if (enable_owner == current) {
72 enable_refcnt++;
73 return flags;
75 spin_lock_irqsave(&enable_lock, flags);
77 WARN_ON_ONCE(enable_owner != NULL);
78 WARN_ON_ONCE(enable_refcnt != 0);
79 enable_owner = current;
80 enable_refcnt = 1;
81 return flags;
84 static void clk_enable_unlock(unsigned long flags)
86 WARN_ON_ONCE(enable_owner != current);
87 WARN_ON_ONCE(enable_refcnt == 0);
89 if (--enable_refcnt)
90 return;
91 enable_owner = NULL;
92 spin_unlock_irqrestore(&enable_lock, flags);
95 /*** debugfs support ***/
97 #ifdef CONFIG_DEBUG_FS
98 #include <linux/debugfs.h>
100 static struct dentry *rootdir;
101 static struct dentry *orphandir;
102 static int inited = 0;
104 static void clk_summary_show_one(struct seq_file *s, struct clk *c, int level)
106 if (!c)
107 return;
109 seq_printf(s, "%*s%-*s %-11d %-12d %-10lu %-11lu",
110 level * 3 + 1, "",
111 30 - level * 3, c->name,
112 c->enable_count, c->prepare_count, clk_get_rate(c),
113 clk_get_accuracy(c));
114 seq_printf(s, "\n");
117 static void clk_summary_show_subtree(struct seq_file *s, struct clk *c,
118 int level)
120 struct clk *child;
122 if (!c)
123 return;
125 clk_summary_show_one(s, c, level);
127 hlist_for_each_entry(child, &c->children, child_node)
128 clk_summary_show_subtree(s, child, level + 1);
131 static int clk_summary_show(struct seq_file *s, void *data)
133 struct clk *c;
135 seq_printf(s, " clock enable_cnt prepare_cnt rate accuracy\n");
136 seq_printf(s, "---------------------------------------------------------------------------------\n");
138 clk_prepare_lock();
140 hlist_for_each_entry(c, &clk_root_list, child_node)
141 clk_summary_show_subtree(s, c, 0);
143 hlist_for_each_entry(c, &clk_orphan_list, child_node)
144 clk_summary_show_subtree(s, c, 0);
146 clk_prepare_unlock();
148 return 0;
152 static int clk_summary_open(struct inode *inode, struct file *file)
154 return single_open(file, clk_summary_show, inode->i_private);
157 static const struct file_operations clk_summary_fops = {
158 .open = clk_summary_open,
159 .read = seq_read,
160 .llseek = seq_lseek,
161 .release = single_release,
164 static void clk_dump_one(struct seq_file *s, struct clk *c, int level)
166 if (!c)
167 return;
169 seq_printf(s, "\"%s\": { ", c->name);
170 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
171 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
172 seq_printf(s, "\"rate\": %lu", clk_get_rate(c));
173 seq_printf(s, "\"accuracy\": %lu", clk_get_accuracy(c));
176 static void clk_dump_subtree(struct seq_file *s, struct clk *c, int level)
178 struct clk *child;
180 if (!c)
181 return;
183 clk_dump_one(s, c, level);
185 hlist_for_each_entry(child, &c->children, child_node) {
186 seq_printf(s, ",");
187 clk_dump_subtree(s, child, level + 1);
190 seq_printf(s, "}");
193 static int clk_dump(struct seq_file *s, void *data)
195 struct clk *c;
196 bool first_node = true;
198 seq_printf(s, "{");
200 clk_prepare_lock();
202 hlist_for_each_entry(c, &clk_root_list, child_node) {
203 if (!first_node)
204 seq_printf(s, ",");
205 first_node = false;
206 clk_dump_subtree(s, c, 0);
209 hlist_for_each_entry(c, &clk_orphan_list, child_node) {
210 seq_printf(s, ",");
211 clk_dump_subtree(s, c, 0);
214 clk_prepare_unlock();
216 seq_printf(s, "}");
217 return 0;
221 static int clk_dump_open(struct inode *inode, struct file *file)
223 return single_open(file, clk_dump, inode->i_private);
226 static const struct file_operations clk_dump_fops = {
227 .open = clk_dump_open,
228 .read = seq_read,
229 .llseek = seq_lseek,
230 .release = single_release,
233 /* caller must hold prepare_lock */
234 static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
236 struct dentry *d;
237 int ret = -ENOMEM;
239 if (!clk || !pdentry) {
240 ret = -EINVAL;
241 goto out;
244 d = debugfs_create_dir(clk->name, pdentry);
245 if (!d)
246 goto out;
248 clk->dentry = d;
250 d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
251 (u32 *)&clk->rate);
252 if (!d)
253 goto err_out;
255 d = debugfs_create_u32("clk_accuracy", S_IRUGO, clk->dentry,
256 (u32 *)&clk->accuracy);
257 if (!d)
258 goto err_out;
260 d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
261 (u32 *)&clk->flags);
262 if (!d)
263 goto err_out;
265 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
266 (u32 *)&clk->prepare_count);
267 if (!d)
268 goto err_out;
270 d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
271 (u32 *)&clk->enable_count);
272 if (!d)
273 goto err_out;
275 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
276 (u32 *)&clk->notifier_count);
277 if (!d)
278 goto err_out;
280 ret = 0;
281 goto out;
283 err_out:
284 debugfs_remove_recursive(clk->dentry);
285 clk->dentry = NULL;
286 out:
287 return ret;
290 /* caller must hold prepare_lock */
291 static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry)
293 struct clk *child;
294 int ret = -EINVAL;;
296 if (!clk || !pdentry)
297 goto out;
299 ret = clk_debug_create_one(clk, pdentry);
301 if (ret)
302 goto out;
304 hlist_for_each_entry(child, &clk->children, child_node)
305 clk_debug_create_subtree(child, clk->dentry);
307 ret = 0;
308 out:
309 return ret;
313 * clk_debug_register - add a clk node to the debugfs clk tree
314 * @clk: the clk being added to the debugfs clk tree
316 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
317 * initialized. Otherwise it bails out early since the debugfs clk tree
318 * will be created lazily by clk_debug_init as part of a late_initcall.
320 * Caller must hold prepare_lock. Only clk_init calls this function (so
321 * far) so this is taken care.
323 static int clk_debug_register(struct clk *clk)
325 struct clk *parent;
326 struct dentry *pdentry;
327 int ret = 0;
329 if (!inited)
330 goto out;
332 parent = clk->parent;
335 * Check to see if a clk is a root clk. Also check that it is
336 * safe to add this clk to debugfs
338 if (!parent)
339 if (clk->flags & CLK_IS_ROOT)
340 pdentry = rootdir;
341 else
342 pdentry = orphandir;
343 else
344 if (parent->dentry)
345 pdentry = parent->dentry;
346 else
347 goto out;
349 ret = clk_debug_create_subtree(clk, pdentry);
351 out:
352 return ret;
356 * clk_debug_unregister - remove a clk node from the debugfs clk tree
357 * @clk: the clk being removed from the debugfs clk tree
359 * Dynamically removes a clk and all it's children clk nodes from the
360 * debugfs clk tree if clk->dentry points to debugfs created by
361 * clk_debug_register in __clk_init.
363 * Caller must hold prepare_lock.
365 static void clk_debug_unregister(struct clk *clk)
367 debugfs_remove_recursive(clk->dentry);
371 * clk_debug_reparent - reparent clk node in the debugfs clk tree
372 * @clk: the clk being reparented
373 * @new_parent: the new clk parent, may be NULL
375 * Rename clk entry in the debugfs clk tree if debugfs has been
376 * initialized. Otherwise it bails out early since the debugfs clk tree
377 * will be created lazily by clk_debug_init as part of a late_initcall.
379 * Caller must hold prepare_lock.
381 static void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
383 struct dentry *d;
384 struct dentry *new_parent_d;
386 if (!inited)
387 return;
389 if (new_parent)
390 new_parent_d = new_parent->dentry;
391 else
392 new_parent_d = orphandir;
394 d = debugfs_rename(clk->dentry->d_parent, clk->dentry,
395 new_parent_d, clk->name);
396 if (d)
397 clk->dentry = d;
398 else
399 pr_debug("%s: failed to rename debugfs entry for %s\n",
400 __func__, clk->name);
404 * clk_debug_init - lazily create the debugfs clk tree visualization
406 * clks are often initialized very early during boot before memory can
407 * be dynamically allocated and well before debugfs is setup.
408 * clk_debug_init walks the clk tree hierarchy while holding
409 * prepare_lock and creates the topology as part of a late_initcall,
410 * thus insuring that clks initialized very early will still be
411 * represented in the debugfs clk tree. This function should only be
412 * called once at boot-time, and all other clks added dynamically will
413 * be done so with clk_debug_register.
415 static int __init clk_debug_init(void)
417 struct clk *clk;
418 struct dentry *d;
420 rootdir = debugfs_create_dir("clk", NULL);
422 if (!rootdir)
423 return -ENOMEM;
425 d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, NULL,
426 &clk_summary_fops);
427 if (!d)
428 return -ENOMEM;
430 d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, NULL,
431 &clk_dump_fops);
432 if (!d)
433 return -ENOMEM;
435 orphandir = debugfs_create_dir("orphans", rootdir);
437 if (!orphandir)
438 return -ENOMEM;
440 clk_prepare_lock();
442 hlist_for_each_entry(clk, &clk_root_list, child_node)
443 clk_debug_create_subtree(clk, rootdir);
445 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
446 clk_debug_create_subtree(clk, orphandir);
448 inited = 1;
450 clk_prepare_unlock();
452 return 0;
454 late_initcall(clk_debug_init);
455 #else
456 static inline int clk_debug_register(struct clk *clk) { return 0; }
457 static inline void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
460 static inline void clk_debug_unregister(struct clk *clk)
463 #endif
465 /* caller must hold prepare_lock */
466 static void clk_unprepare_unused_subtree(struct clk *clk)
468 struct clk *child;
470 if (!clk)
471 return;
473 hlist_for_each_entry(child, &clk->children, child_node)
474 clk_unprepare_unused_subtree(child);
476 if (clk->prepare_count)
477 return;
479 if (clk->flags & CLK_IGNORE_UNUSED)
480 return;
482 if (__clk_is_prepared(clk)) {
483 if (clk->ops->unprepare_unused)
484 clk->ops->unprepare_unused(clk->hw);
485 else if (clk->ops->unprepare)
486 clk->ops->unprepare(clk->hw);
490 /* caller must hold prepare_lock */
491 static void clk_disable_unused_subtree(struct clk *clk)
493 struct clk *child;
494 unsigned long flags;
496 if (!clk)
497 goto out;
499 hlist_for_each_entry(child, &clk->children, child_node)
500 clk_disable_unused_subtree(child);
502 flags = clk_enable_lock();
504 if (clk->enable_count)
505 goto unlock_out;
507 if (clk->flags & CLK_IGNORE_UNUSED)
508 goto unlock_out;
511 * some gate clocks have special needs during the disable-unused
512 * sequence. call .disable_unused if available, otherwise fall
513 * back to .disable
515 if (__clk_is_enabled(clk)) {
516 if (clk->ops->disable_unused)
517 clk->ops->disable_unused(clk->hw);
518 else if (clk->ops->disable)
519 clk->ops->disable(clk->hw);
522 unlock_out:
523 clk_enable_unlock(flags);
525 out:
526 return;
529 static bool clk_ignore_unused;
530 static int __init clk_ignore_unused_setup(char *__unused)
532 clk_ignore_unused = true;
533 return 1;
535 __setup("clk_ignore_unused", clk_ignore_unused_setup);
537 static int clk_disable_unused(void)
539 struct clk *clk;
541 if (clk_ignore_unused) {
542 pr_warn("clk: Not disabling unused clocks\n");
543 return 0;
546 clk_prepare_lock();
548 hlist_for_each_entry(clk, &clk_root_list, child_node)
549 clk_disable_unused_subtree(clk);
551 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
552 clk_disable_unused_subtree(clk);
554 hlist_for_each_entry(clk, &clk_root_list, child_node)
555 clk_unprepare_unused_subtree(clk);
557 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
558 clk_unprepare_unused_subtree(clk);
560 clk_prepare_unlock();
562 return 0;
564 late_initcall_sync(clk_disable_unused);
566 /*** helper functions ***/
568 const char *__clk_get_name(struct clk *clk)
570 return !clk ? NULL : clk->name;
572 EXPORT_SYMBOL_GPL(__clk_get_name);
574 struct clk_hw *__clk_get_hw(struct clk *clk)
576 return !clk ? NULL : clk->hw;
578 EXPORT_SYMBOL_GPL(__clk_get_hw);
580 u8 __clk_get_num_parents(struct clk *clk)
582 return !clk ? 0 : clk->num_parents;
584 EXPORT_SYMBOL_GPL(__clk_get_num_parents);
586 struct clk *__clk_get_parent(struct clk *clk)
588 return !clk ? NULL : clk->parent;
590 EXPORT_SYMBOL_GPL(__clk_get_parent);
592 struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
594 if (!clk || index >= clk->num_parents)
595 return NULL;
596 else if (!clk->parents)
597 return __clk_lookup(clk->parent_names[index]);
598 else if (!clk->parents[index])
599 return clk->parents[index] =
600 __clk_lookup(clk->parent_names[index]);
601 else
602 return clk->parents[index];
604 EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
606 unsigned int __clk_get_enable_count(struct clk *clk)
608 return !clk ? 0 : clk->enable_count;
611 unsigned int __clk_get_prepare_count(struct clk *clk)
613 return !clk ? 0 : clk->prepare_count;
616 unsigned long __clk_get_rate(struct clk *clk)
618 unsigned long ret;
620 if (!clk) {
621 ret = 0;
622 goto out;
625 ret = clk->rate;
627 if (clk->flags & CLK_IS_ROOT)
628 goto out;
630 if (!clk->parent)
631 ret = 0;
633 out:
634 return ret;
636 EXPORT_SYMBOL_GPL(__clk_get_rate);
638 unsigned long __clk_get_accuracy(struct clk *clk)
640 if (!clk)
641 return 0;
643 return clk->accuracy;
646 unsigned long __clk_get_flags(struct clk *clk)
648 return !clk ? 0 : clk->flags;
650 EXPORT_SYMBOL_GPL(__clk_get_flags);
652 bool __clk_is_prepared(struct clk *clk)
654 int ret;
656 if (!clk)
657 return false;
660 * .is_prepared is optional for clocks that can prepare
661 * fall back to software usage counter if it is missing
663 if (!clk->ops->is_prepared) {
664 ret = clk->prepare_count ? 1 : 0;
665 goto out;
668 ret = clk->ops->is_prepared(clk->hw);
669 out:
670 return !!ret;
673 bool __clk_is_enabled(struct clk *clk)
675 int ret;
677 if (!clk)
678 return false;
681 * .is_enabled is only mandatory for clocks that gate
682 * fall back to software usage counter if .is_enabled is missing
684 if (!clk->ops->is_enabled) {
685 ret = clk->enable_count ? 1 : 0;
686 goto out;
689 ret = clk->ops->is_enabled(clk->hw);
690 out:
691 return !!ret;
693 EXPORT_SYMBOL_GPL(__clk_is_enabled);
695 static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
697 struct clk *child;
698 struct clk *ret;
700 if (!strcmp(clk->name, name))
701 return clk;
703 hlist_for_each_entry(child, &clk->children, child_node) {
704 ret = __clk_lookup_subtree(name, child);
705 if (ret)
706 return ret;
709 return NULL;
712 struct clk *__clk_lookup(const char *name)
714 struct clk *root_clk;
715 struct clk *ret;
717 if (!name)
718 return NULL;
720 /* search the 'proper' clk tree first */
721 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
722 ret = __clk_lookup_subtree(name, root_clk);
723 if (ret)
724 return ret;
727 /* if not found, then search the orphan tree */
728 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
729 ret = __clk_lookup_subtree(name, root_clk);
730 if (ret)
731 return ret;
734 return NULL;
738 * Helper for finding best parent to provide a given frequency. This can be used
739 * directly as a determine_rate callback (e.g. for a mux), or from a more
740 * complex clock that may combine a mux with other operations.
742 long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate,
743 unsigned long *best_parent_rate,
744 struct clk **best_parent_p)
746 struct clk *clk = hw->clk, *parent, *best_parent = NULL;
747 int i, num_parents;
748 unsigned long parent_rate, best = 0;
750 /* if NO_REPARENT flag set, pass through to current parent */
751 if (clk->flags & CLK_SET_RATE_NO_REPARENT) {
752 parent = clk->parent;
753 if (clk->flags & CLK_SET_RATE_PARENT)
754 best = __clk_round_rate(parent, rate);
755 else if (parent)
756 best = __clk_get_rate(parent);
757 else
758 best = __clk_get_rate(clk);
759 goto out;
762 /* find the parent that can provide the fastest rate <= rate */
763 num_parents = clk->num_parents;
764 for (i = 0; i < num_parents; i++) {
765 parent = clk_get_parent_by_index(clk, i);
766 if (!parent)
767 continue;
768 if (clk->flags & CLK_SET_RATE_PARENT)
769 parent_rate = __clk_round_rate(parent, rate);
770 else
771 parent_rate = __clk_get_rate(parent);
772 if (parent_rate <= rate && parent_rate > best) {
773 best_parent = parent;
774 best = parent_rate;
778 out:
779 if (best_parent)
780 *best_parent_p = best_parent;
781 *best_parent_rate = best;
783 return best;
785 EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
787 /*** clk api ***/
789 void __clk_unprepare(struct clk *clk)
791 if (!clk)
792 return;
794 if (WARN_ON(clk->prepare_count == 0))
795 return;
797 if (--clk->prepare_count > 0)
798 return;
800 WARN_ON(clk->enable_count > 0);
802 if (clk->ops->unprepare)
803 clk->ops->unprepare(clk->hw);
805 __clk_unprepare(clk->parent);
809 * clk_unprepare - undo preparation of a clock source
810 * @clk: the clk being unprepared
812 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
813 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
814 * if the operation may sleep. One example is a clk which is accessed over
815 * I2c. In the complex case a clk gate operation may require a fast and a slow
816 * part. It is this reason that clk_unprepare and clk_disable are not mutually
817 * exclusive. In fact clk_disable must be called before clk_unprepare.
819 void clk_unprepare(struct clk *clk)
821 clk_prepare_lock();
822 __clk_unprepare(clk);
823 clk_prepare_unlock();
825 EXPORT_SYMBOL_GPL(clk_unprepare);
827 int __clk_prepare(struct clk *clk)
829 int ret = 0;
831 if (!clk)
832 return 0;
834 if (clk->prepare_count == 0) {
835 ret = __clk_prepare(clk->parent);
836 if (ret)
837 return ret;
839 if (clk->ops->prepare) {
840 ret = clk->ops->prepare(clk->hw);
841 if (ret) {
842 __clk_unprepare(clk->parent);
843 return ret;
848 clk->prepare_count++;
850 return 0;
854 * clk_prepare - prepare a clock source
855 * @clk: the clk being prepared
857 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
858 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
859 * operation may sleep. One example is a clk which is accessed over I2c. In
860 * the complex case a clk ungate operation may require a fast and a slow part.
861 * It is this reason that clk_prepare and clk_enable are not mutually
862 * exclusive. In fact clk_prepare must be called before clk_enable.
863 * Returns 0 on success, -EERROR otherwise.
865 int clk_prepare(struct clk *clk)
867 int ret;
869 clk_prepare_lock();
870 ret = __clk_prepare(clk);
871 clk_prepare_unlock();
873 return ret;
875 EXPORT_SYMBOL_GPL(clk_prepare);
877 static void __clk_disable(struct clk *clk)
879 if (!clk)
880 return;
882 if (WARN_ON(IS_ERR(clk)))
883 return;
885 if (WARN_ON(clk->enable_count == 0))
886 return;
888 if (--clk->enable_count > 0)
889 return;
891 if (clk->ops->disable)
892 clk->ops->disable(clk->hw);
894 __clk_disable(clk->parent);
898 * clk_disable - gate a clock
899 * @clk: the clk being gated
901 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
902 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
903 * clk if the operation is fast and will never sleep. One example is a
904 * SoC-internal clk which is controlled via simple register writes. In the
905 * complex case a clk gate operation may require a fast and a slow part. It is
906 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
907 * In fact clk_disable must be called before clk_unprepare.
909 void clk_disable(struct clk *clk)
911 unsigned long flags;
913 flags = clk_enable_lock();
914 __clk_disable(clk);
915 clk_enable_unlock(flags);
917 EXPORT_SYMBOL_GPL(clk_disable);
919 static int __clk_enable(struct clk *clk)
921 int ret = 0;
923 if (!clk)
924 return 0;
926 if (WARN_ON(clk->prepare_count == 0))
927 return -ESHUTDOWN;
929 if (clk->enable_count == 0) {
930 ret = __clk_enable(clk->parent);
932 if (ret)
933 return ret;
935 if (clk->ops->enable) {
936 ret = clk->ops->enable(clk->hw);
937 if (ret) {
938 __clk_disable(clk->parent);
939 return ret;
944 clk->enable_count++;
945 return 0;
949 * clk_enable - ungate a clock
950 * @clk: the clk being ungated
952 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
953 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
954 * if the operation will never sleep. One example is a SoC-internal clk which
955 * is controlled via simple register writes. In the complex case a clk ungate
956 * operation may require a fast and a slow part. It is this reason that
957 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
958 * must be called before clk_enable. Returns 0 on success, -EERROR
959 * otherwise.
961 int clk_enable(struct clk *clk)
963 unsigned long flags;
964 int ret;
966 flags = clk_enable_lock();
967 ret = __clk_enable(clk);
968 clk_enable_unlock(flags);
970 return ret;
972 EXPORT_SYMBOL_GPL(clk_enable);
975 * __clk_round_rate - round the given rate for a clk
976 * @clk: round the rate of this clock
977 * @rate: the rate which is to be rounded
979 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
981 unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
983 unsigned long parent_rate = 0;
984 struct clk *parent;
986 if (!clk)
987 return 0;
989 parent = clk->parent;
990 if (parent)
991 parent_rate = parent->rate;
993 if (clk->ops->determine_rate)
994 return clk->ops->determine_rate(clk->hw, rate, &parent_rate,
995 &parent);
996 else if (clk->ops->round_rate)
997 return clk->ops->round_rate(clk->hw, rate, &parent_rate);
998 else if (clk->flags & CLK_SET_RATE_PARENT)
999 return __clk_round_rate(clk->parent, rate);
1000 else
1001 return clk->rate;
1005 * clk_round_rate - round the given rate for a clk
1006 * @clk: the clk for which we are rounding a rate
1007 * @rate: the rate which is to be rounded
1009 * Takes in a rate as input and rounds it to a rate that the clk can actually
1010 * use which is then returned. If clk doesn't support round_rate operation
1011 * then the parent rate is returned.
1013 long clk_round_rate(struct clk *clk, unsigned long rate)
1015 unsigned long ret;
1017 clk_prepare_lock();
1018 ret = __clk_round_rate(clk, rate);
1019 clk_prepare_unlock();
1021 return ret;
1023 EXPORT_SYMBOL_GPL(clk_round_rate);
1026 * __clk_notify - call clk notifier chain
1027 * @clk: struct clk * that is changing rate
1028 * @msg: clk notifier type (see include/linux/clk.h)
1029 * @old_rate: old clk rate
1030 * @new_rate: new clk rate
1032 * Triggers a notifier call chain on the clk rate-change notification
1033 * for 'clk'. Passes a pointer to the struct clk and the previous
1034 * and current rates to the notifier callback. Intended to be called by
1035 * internal clock code only. Returns NOTIFY_DONE from the last driver
1036 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1037 * a driver returns that.
1039 static int __clk_notify(struct clk *clk, unsigned long msg,
1040 unsigned long old_rate, unsigned long new_rate)
1042 struct clk_notifier *cn;
1043 struct clk_notifier_data cnd;
1044 int ret = NOTIFY_DONE;
1046 cnd.clk = clk;
1047 cnd.old_rate = old_rate;
1048 cnd.new_rate = new_rate;
1050 list_for_each_entry(cn, &clk_notifier_list, node) {
1051 if (cn->clk == clk) {
1052 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1053 &cnd);
1054 break;
1058 return ret;
1062 * __clk_recalc_accuracies
1063 * @clk: first clk in the subtree
1065 * Walks the subtree of clks starting with clk and recalculates accuracies as
1066 * it goes. Note that if a clk does not implement the .recalc_accuracy
1067 * callback then it is assumed that the clock will take on the accuracy of it's
1068 * parent.
1070 * Caller must hold prepare_lock.
1072 static void __clk_recalc_accuracies(struct clk *clk)
1074 unsigned long parent_accuracy = 0;
1075 struct clk *child;
1077 if (clk->parent)
1078 parent_accuracy = clk->parent->accuracy;
1080 if (clk->ops->recalc_accuracy)
1081 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1082 parent_accuracy);
1083 else
1084 clk->accuracy = parent_accuracy;
1086 hlist_for_each_entry(child, &clk->children, child_node)
1087 __clk_recalc_accuracies(child);
1091 * clk_get_accuracy - return the accuracy of clk
1092 * @clk: the clk whose accuracy is being returned
1094 * Simply returns the cached accuracy of the clk, unless
1095 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1096 * issued.
1097 * If clk is NULL then returns 0.
1099 long clk_get_accuracy(struct clk *clk)
1101 unsigned long accuracy;
1103 clk_prepare_lock();
1104 if (clk && (clk->flags & CLK_GET_ACCURACY_NOCACHE))
1105 __clk_recalc_accuracies(clk);
1107 accuracy = __clk_get_accuracy(clk);
1108 clk_prepare_unlock();
1110 return accuracy;
1112 EXPORT_SYMBOL_GPL(clk_get_accuracy);
1115 * __clk_recalc_rates
1116 * @clk: first clk in the subtree
1117 * @msg: notification type (see include/linux/clk.h)
1119 * Walks the subtree of clks starting with clk and recalculates rates as it
1120 * goes. Note that if a clk does not implement the .recalc_rate callback then
1121 * it is assumed that the clock will take on the rate of its parent.
1123 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1124 * if necessary.
1126 * Caller must hold prepare_lock.
1128 static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
1130 unsigned long old_rate;
1131 unsigned long parent_rate = 0;
1132 struct clk *child;
1134 old_rate = clk->rate;
1136 if (clk->parent)
1137 parent_rate = clk->parent->rate;
1139 if (clk->ops->recalc_rate)
1140 clk->rate = clk->ops->recalc_rate(clk->hw, parent_rate);
1141 else
1142 clk->rate = parent_rate;
1145 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1146 * & ABORT_RATE_CHANGE notifiers
1148 if (clk->notifier_count && msg)
1149 __clk_notify(clk, msg, old_rate, clk->rate);
1151 hlist_for_each_entry(child, &clk->children, child_node)
1152 __clk_recalc_rates(child, msg);
1156 * clk_get_rate - return the rate of clk
1157 * @clk: the clk whose rate is being returned
1159 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1160 * is set, which means a recalc_rate will be issued.
1161 * If clk is NULL then returns 0.
1163 unsigned long clk_get_rate(struct clk *clk)
1165 unsigned long rate;
1167 clk_prepare_lock();
1169 if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
1170 __clk_recalc_rates(clk, 0);
1172 rate = __clk_get_rate(clk);
1173 clk_prepare_unlock();
1175 return rate;
1177 EXPORT_SYMBOL_GPL(clk_get_rate);
1179 static int clk_fetch_parent_index(struct clk *clk, struct clk *parent)
1181 int i;
1183 if (!clk->parents) {
1184 clk->parents = kcalloc(clk->num_parents,
1185 sizeof(struct clk *), GFP_KERNEL);
1186 if (!clk->parents)
1187 return -ENOMEM;
1191 * find index of new parent clock using cached parent ptrs,
1192 * or if not yet cached, use string name comparison and cache
1193 * them now to avoid future calls to __clk_lookup.
1195 for (i = 0; i < clk->num_parents; i++) {
1196 if (clk->parents[i] == parent)
1197 return i;
1199 if (clk->parents[i])
1200 continue;
1202 if (!strcmp(clk->parent_names[i], parent->name)) {
1203 clk->parents[i] = __clk_lookup(parent->name);
1204 return i;
1208 return -EINVAL;
1211 static void clk_reparent(struct clk *clk, struct clk *new_parent)
1213 hlist_del(&clk->child_node);
1215 if (new_parent) {
1216 /* avoid duplicate POST_RATE_CHANGE notifications */
1217 if (new_parent->new_child == clk)
1218 new_parent->new_child = NULL;
1220 hlist_add_head(&clk->child_node, &new_parent->children);
1221 } else {
1222 hlist_add_head(&clk->child_node, &clk_orphan_list);
1225 clk->parent = new_parent;
1228 static struct clk *__clk_set_parent_before(struct clk *clk, struct clk *parent)
1230 unsigned long flags;
1231 struct clk *old_parent = clk->parent;
1234 * Migrate prepare state between parents and prevent race with
1235 * clk_enable().
1237 * If the clock is not prepared, then a race with
1238 * clk_enable/disable() is impossible since we already have the
1239 * prepare lock (future calls to clk_enable() need to be preceded by
1240 * a clk_prepare()).
1242 * If the clock is prepared, migrate the prepared state to the new
1243 * parent and also protect against a race with clk_enable() by
1244 * forcing the clock and the new parent on. This ensures that all
1245 * future calls to clk_enable() are practically NOPs with respect to
1246 * hardware and software states.
1248 * See also: Comment for clk_set_parent() below.
1250 if (clk->prepare_count) {
1251 __clk_prepare(parent);
1252 clk_enable(parent);
1253 clk_enable(clk);
1256 /* update the clk tree topology */
1257 flags = clk_enable_lock();
1258 clk_reparent(clk, parent);
1259 clk_enable_unlock(flags);
1261 return old_parent;
1264 static void __clk_set_parent_after(struct clk *clk, struct clk *parent,
1265 struct clk *old_parent)
1268 * Finish the migration of prepare state and undo the changes done
1269 * for preventing a race with clk_enable().
1271 if (clk->prepare_count) {
1272 clk_disable(clk);
1273 clk_disable(old_parent);
1274 __clk_unprepare(old_parent);
1277 /* update debugfs with new clk tree topology */
1278 clk_debug_reparent(clk, parent);
1281 static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index)
1283 unsigned long flags;
1284 int ret = 0;
1285 struct clk *old_parent;
1287 old_parent = __clk_set_parent_before(clk, parent);
1289 /* change clock input source */
1290 if (parent && clk->ops->set_parent)
1291 ret = clk->ops->set_parent(clk->hw, p_index);
1293 if (ret) {
1294 flags = clk_enable_lock();
1295 clk_reparent(clk, old_parent);
1296 clk_enable_unlock(flags);
1298 if (clk->prepare_count) {
1299 clk_disable(clk);
1300 clk_disable(parent);
1301 __clk_unprepare(parent);
1303 return ret;
1306 __clk_set_parent_after(clk, parent, old_parent);
1308 return 0;
1312 * __clk_speculate_rates
1313 * @clk: first clk in the subtree
1314 * @parent_rate: the "future" rate of clk's parent
1316 * Walks the subtree of clks starting with clk, speculating rates as it
1317 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1319 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1320 * pre-rate change notifications and returns early if no clks in the
1321 * subtree have subscribed to the notifications. Note that if a clk does not
1322 * implement the .recalc_rate callback then it is assumed that the clock will
1323 * take on the rate of its parent.
1325 * Caller must hold prepare_lock.
1327 static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
1329 struct clk *child;
1330 unsigned long new_rate;
1331 int ret = NOTIFY_DONE;
1333 if (clk->ops->recalc_rate)
1334 new_rate = clk->ops->recalc_rate(clk->hw, parent_rate);
1335 else
1336 new_rate = parent_rate;
1338 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
1339 if (clk->notifier_count)
1340 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
1342 if (ret & NOTIFY_STOP_MASK)
1343 goto out;
1345 hlist_for_each_entry(child, &clk->children, child_node) {
1346 ret = __clk_speculate_rates(child, new_rate);
1347 if (ret & NOTIFY_STOP_MASK)
1348 break;
1351 out:
1352 return ret;
1355 static void clk_calc_subtree(struct clk *clk, unsigned long new_rate,
1356 struct clk *new_parent, u8 p_index)
1358 struct clk *child;
1360 clk->new_rate = new_rate;
1361 clk->new_parent = new_parent;
1362 clk->new_parent_index = p_index;
1363 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1364 clk->new_child = NULL;
1365 if (new_parent && new_parent != clk->parent)
1366 new_parent->new_child = clk;
1368 hlist_for_each_entry(child, &clk->children, child_node) {
1369 if (child->ops->recalc_rate)
1370 child->new_rate = child->ops->recalc_rate(child->hw, new_rate);
1371 else
1372 child->new_rate = new_rate;
1373 clk_calc_subtree(child, child->new_rate, NULL, 0);
1378 * calculate the new rates returning the topmost clock that has to be
1379 * changed.
1381 static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
1383 struct clk *top = clk;
1384 struct clk *old_parent, *parent;
1385 unsigned long best_parent_rate = 0;
1386 unsigned long new_rate;
1387 int p_index = 0;
1389 /* sanity */
1390 if (IS_ERR_OR_NULL(clk))
1391 return NULL;
1393 /* save parent rate, if it exists */
1394 parent = old_parent = clk->parent;
1395 if (parent)
1396 best_parent_rate = parent->rate;
1398 /* find the closest rate and parent clk/rate */
1399 if (clk->ops->determine_rate) {
1400 new_rate = clk->ops->determine_rate(clk->hw, rate,
1401 &best_parent_rate,
1402 &parent);
1403 } else if (clk->ops->round_rate) {
1404 new_rate = clk->ops->round_rate(clk->hw, rate,
1405 &best_parent_rate);
1406 } else if (!parent || !(clk->flags & CLK_SET_RATE_PARENT)) {
1407 /* pass-through clock without adjustable parent */
1408 clk->new_rate = clk->rate;
1409 return NULL;
1410 } else {
1411 /* pass-through clock with adjustable parent */
1412 top = clk_calc_new_rates(parent, rate);
1413 new_rate = parent->new_rate;
1414 goto out;
1417 /* some clocks must be gated to change parent */
1418 if (parent != old_parent &&
1419 (clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1420 pr_debug("%s: %s not gated but wants to reparent\n",
1421 __func__, clk->name);
1422 return NULL;
1425 /* try finding the new parent index */
1426 if (parent) {
1427 p_index = clk_fetch_parent_index(clk, parent);
1428 if (p_index < 0) {
1429 pr_debug("%s: clk %s can not be parent of clk %s\n",
1430 __func__, parent->name, clk->name);
1431 return NULL;
1435 if ((clk->flags & CLK_SET_RATE_PARENT) && parent &&
1436 best_parent_rate != parent->rate)
1437 top = clk_calc_new_rates(parent, best_parent_rate);
1439 out:
1440 clk_calc_subtree(clk, new_rate, parent, p_index);
1442 return top;
1446 * Notify about rate changes in a subtree. Always walk down the whole tree
1447 * so that in case of an error we can walk down the whole tree again and
1448 * abort the change.
1450 static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
1452 struct clk *child, *tmp_clk, *fail_clk = NULL;
1453 int ret = NOTIFY_DONE;
1455 if (clk->rate == clk->new_rate)
1456 return NULL;
1458 if (clk->notifier_count) {
1459 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
1460 if (ret & NOTIFY_STOP_MASK)
1461 fail_clk = clk;
1464 hlist_for_each_entry(child, &clk->children, child_node) {
1465 /* Skip children who will be reparented to another clock */
1466 if (child->new_parent && child->new_parent != clk)
1467 continue;
1468 tmp_clk = clk_propagate_rate_change(child, event);
1469 if (tmp_clk)
1470 fail_clk = tmp_clk;
1473 /* handle the new child who might not be in clk->children yet */
1474 if (clk->new_child) {
1475 tmp_clk = clk_propagate_rate_change(clk->new_child, event);
1476 if (tmp_clk)
1477 fail_clk = tmp_clk;
1480 return fail_clk;
1484 * walk down a subtree and set the new rates notifying the rate
1485 * change on the way
1487 static void clk_change_rate(struct clk *clk)
1489 struct clk *child;
1490 struct hlist_node *tmp;
1491 unsigned long old_rate;
1492 unsigned long best_parent_rate = 0;
1493 bool skip_set_rate = false;
1494 struct clk *old_parent;
1496 old_rate = clk->rate;
1498 if (clk->new_parent)
1499 best_parent_rate = clk->new_parent->rate;
1500 else if (clk->parent)
1501 best_parent_rate = clk->parent->rate;
1503 if (clk->new_parent && clk->new_parent != clk->parent) {
1504 old_parent = __clk_set_parent_before(clk, clk->new_parent);
1506 if (clk->ops->set_rate_and_parent) {
1507 skip_set_rate = true;
1508 clk->ops->set_rate_and_parent(clk->hw, clk->new_rate,
1509 best_parent_rate,
1510 clk->new_parent_index);
1511 } else if (clk->ops->set_parent) {
1512 clk->ops->set_parent(clk->hw, clk->new_parent_index);
1515 __clk_set_parent_after(clk, clk->new_parent, old_parent);
1518 if (!skip_set_rate && clk->ops->set_rate)
1519 clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
1521 if (clk->ops->recalc_rate)
1522 clk->rate = clk->ops->recalc_rate(clk->hw, best_parent_rate);
1523 else
1524 clk->rate = best_parent_rate;
1526 if (clk->notifier_count && old_rate != clk->rate)
1527 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
1530 * Use safe iteration, as change_rate can actually swap parents
1531 * for certain clock types.
1533 hlist_for_each_entry_safe(child, tmp, &clk->children, child_node) {
1534 /* Skip children who will be reparented to another clock */
1535 if (child->new_parent && child->new_parent != clk)
1536 continue;
1537 clk_change_rate(child);
1540 /* handle the new child who might not be in clk->children yet */
1541 if (clk->new_child)
1542 clk_change_rate(clk->new_child);
1546 * clk_set_rate - specify a new rate for clk
1547 * @clk: the clk whose rate is being changed
1548 * @rate: the new rate for clk
1550 * In the simplest case clk_set_rate will only adjust the rate of clk.
1552 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1553 * propagate up to clk's parent; whether or not this happens depends on the
1554 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1555 * after calling .round_rate then upstream parent propagation is ignored. If
1556 * *parent_rate comes back with a new rate for clk's parent then we propagate
1557 * up to clk's parent and set its rate. Upward propagation will continue
1558 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1559 * .round_rate stops requesting changes to clk's parent_rate.
1561 * Rate changes are accomplished via tree traversal that also recalculates the
1562 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
1564 * Returns 0 on success, -EERROR otherwise.
1566 int clk_set_rate(struct clk *clk, unsigned long rate)
1568 struct clk *top, *fail_clk;
1569 int ret = 0;
1571 if (!clk)
1572 return 0;
1574 /* prevent racing with updates to the clock topology */
1575 clk_prepare_lock();
1577 /* bail early if nothing to do */
1578 if (rate == clk_get_rate(clk))
1579 goto out;
1581 if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
1582 ret = -EBUSY;
1583 goto out;
1586 /* calculate new rates and get the topmost changed clock */
1587 top = clk_calc_new_rates(clk, rate);
1588 if (!top) {
1589 ret = -EINVAL;
1590 goto out;
1593 /* notify that we are about to change rates */
1594 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1595 if (fail_clk) {
1596 pr_warn("%s: failed to set %s rate\n", __func__,
1597 fail_clk->name);
1598 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1599 ret = -EBUSY;
1600 goto out;
1603 /* change the rates */
1604 clk_change_rate(top);
1606 out:
1607 clk_prepare_unlock();
1609 return ret;
1611 EXPORT_SYMBOL_GPL(clk_set_rate);
1614 * clk_get_parent - return the parent of a clk
1615 * @clk: the clk whose parent gets returned
1617 * Simply returns clk->parent. Returns NULL if clk is NULL.
1619 struct clk *clk_get_parent(struct clk *clk)
1621 struct clk *parent;
1623 clk_prepare_lock();
1624 parent = __clk_get_parent(clk);
1625 clk_prepare_unlock();
1627 return parent;
1629 EXPORT_SYMBOL_GPL(clk_get_parent);
1632 * .get_parent is mandatory for clocks with multiple possible parents. It is
1633 * optional for single-parent clocks. Always call .get_parent if it is
1634 * available and WARN if it is missing for multi-parent clocks.
1636 * For single-parent clocks without .get_parent, first check to see if the
1637 * .parents array exists, and if so use it to avoid an expensive tree
1638 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
1640 static struct clk *__clk_init_parent(struct clk *clk)
1642 struct clk *ret = NULL;
1643 u8 index;
1645 /* handle the trivial cases */
1647 if (!clk->num_parents)
1648 goto out;
1650 if (clk->num_parents == 1) {
1651 if (IS_ERR_OR_NULL(clk->parent))
1652 ret = clk->parent = __clk_lookup(clk->parent_names[0]);
1653 ret = clk->parent;
1654 goto out;
1657 if (!clk->ops->get_parent) {
1658 WARN(!clk->ops->get_parent,
1659 "%s: multi-parent clocks must implement .get_parent\n",
1660 __func__);
1661 goto out;
1665 * Do our best to cache parent clocks in clk->parents. This prevents
1666 * unnecessary and expensive calls to __clk_lookup. We don't set
1667 * clk->parent here; that is done by the calling function
1670 index = clk->ops->get_parent(clk->hw);
1672 if (!clk->parents)
1673 clk->parents =
1674 kcalloc(clk->num_parents, sizeof(struct clk *),
1675 GFP_KERNEL);
1677 ret = clk_get_parent_by_index(clk, index);
1679 out:
1680 return ret;
1683 void __clk_reparent(struct clk *clk, struct clk *new_parent)
1685 clk_reparent(clk, new_parent);
1686 clk_debug_reparent(clk, new_parent);
1687 __clk_recalc_accuracies(clk);
1688 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1692 * clk_set_parent - switch the parent of a mux clk
1693 * @clk: the mux clk whose input we are switching
1694 * @parent: the new input to clk
1696 * Re-parent clk to use parent as its new input source. If clk is in
1697 * prepared state, the clk will get enabled for the duration of this call. If
1698 * that's not acceptable for a specific clk (Eg: the consumer can't handle
1699 * that, the reparenting is glitchy in hardware, etc), use the
1700 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
1702 * After successfully changing clk's parent clk_set_parent will update the
1703 * clk topology, sysfs topology and propagate rate recalculation via
1704 * __clk_recalc_rates.
1706 * Returns 0 on success, -EERROR otherwise.
1708 int clk_set_parent(struct clk *clk, struct clk *parent)
1710 int ret = 0;
1711 int p_index = 0;
1712 unsigned long p_rate = 0;
1714 if (!clk)
1715 return 0;
1717 if (!clk->ops)
1718 return -EINVAL;
1720 /* verify ops for for multi-parent clks */
1721 if ((clk->num_parents > 1) && (!clk->ops->set_parent))
1722 return -ENOSYS;
1724 /* prevent racing with updates to the clock topology */
1725 clk_prepare_lock();
1727 if (clk->parent == parent)
1728 goto out;
1730 /* check that we are allowed to re-parent if the clock is in use */
1731 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1732 ret = -EBUSY;
1733 goto out;
1736 /* try finding the new parent index */
1737 if (parent) {
1738 p_index = clk_fetch_parent_index(clk, parent);
1739 p_rate = parent->rate;
1740 if (p_index < 0) {
1741 pr_debug("%s: clk %s can not be parent of clk %s\n",
1742 __func__, parent->name, clk->name);
1743 ret = p_index;
1744 goto out;
1748 /* propagate PRE_RATE_CHANGE notifications */
1749 ret = __clk_speculate_rates(clk, p_rate);
1751 /* abort if a driver objects */
1752 if (ret & NOTIFY_STOP_MASK)
1753 goto out;
1755 /* do the re-parent */
1756 ret = __clk_set_parent(clk, parent, p_index);
1758 /* propagate rate an accuracy recalculation accordingly */
1759 if (ret) {
1760 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
1761 } else {
1762 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1763 __clk_recalc_accuracies(clk);
1766 out:
1767 clk_prepare_unlock();
1769 return ret;
1771 EXPORT_SYMBOL_GPL(clk_set_parent);
1774 * __clk_init - initialize the data structures in a struct clk
1775 * @dev: device initializing this clk, placeholder for now
1776 * @clk: clk being initialized
1778 * Initializes the lists in struct clk, queries the hardware for the
1779 * parent and rate and sets them both.
1781 int __clk_init(struct device *dev, struct clk *clk)
1783 int i, ret = 0;
1784 struct clk *orphan;
1785 struct hlist_node *tmp2;
1787 if (!clk)
1788 return -EINVAL;
1790 clk_prepare_lock();
1792 /* check to see if a clock with this name is already registered */
1793 if (__clk_lookup(clk->name)) {
1794 pr_debug("%s: clk %s already initialized\n",
1795 __func__, clk->name);
1796 ret = -EEXIST;
1797 goto out;
1800 /* check that clk_ops are sane. See Documentation/clk.txt */
1801 if (clk->ops->set_rate &&
1802 !((clk->ops->round_rate || clk->ops->determine_rate) &&
1803 clk->ops->recalc_rate)) {
1804 pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
1805 __func__, clk->name);
1806 ret = -EINVAL;
1807 goto out;
1810 if (clk->ops->set_parent && !clk->ops->get_parent) {
1811 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1812 __func__, clk->name);
1813 ret = -EINVAL;
1814 goto out;
1817 if (clk->ops->set_rate_and_parent &&
1818 !(clk->ops->set_parent && clk->ops->set_rate)) {
1819 pr_warn("%s: %s must implement .set_parent & .set_rate\n",
1820 __func__, clk->name);
1821 ret = -EINVAL;
1822 goto out;
1825 /* throw a WARN if any entries in parent_names are NULL */
1826 for (i = 0; i < clk->num_parents; i++)
1827 WARN(!clk->parent_names[i],
1828 "%s: invalid NULL in %s's .parent_names\n",
1829 __func__, clk->name);
1832 * Allocate an array of struct clk *'s to avoid unnecessary string
1833 * look-ups of clk's possible parents. This can fail for clocks passed
1834 * in to clk_init during early boot; thus any access to clk->parents[]
1835 * must always check for a NULL pointer and try to populate it if
1836 * necessary.
1838 * If clk->parents is not NULL we skip this entire block. This allows
1839 * for clock drivers to statically initialize clk->parents.
1841 if (clk->num_parents > 1 && !clk->parents) {
1842 clk->parents = kcalloc(clk->num_parents, sizeof(struct clk *),
1843 GFP_KERNEL);
1845 * __clk_lookup returns NULL for parents that have not been
1846 * clk_init'd; thus any access to clk->parents[] must check
1847 * for a NULL pointer. We can always perform lazy lookups for
1848 * missing parents later on.
1850 if (clk->parents)
1851 for (i = 0; i < clk->num_parents; i++)
1852 clk->parents[i] =
1853 __clk_lookup(clk->parent_names[i]);
1856 clk->parent = __clk_init_parent(clk);
1859 * Populate clk->parent if parent has already been __clk_init'd. If
1860 * parent has not yet been __clk_init'd then place clk in the orphan
1861 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1862 * clk list.
1864 * Every time a new clk is clk_init'd then we walk the list of orphan
1865 * clocks and re-parent any that are children of the clock currently
1866 * being clk_init'd.
1868 if (clk->parent)
1869 hlist_add_head(&clk->child_node,
1870 &clk->parent->children);
1871 else if (clk->flags & CLK_IS_ROOT)
1872 hlist_add_head(&clk->child_node, &clk_root_list);
1873 else
1874 hlist_add_head(&clk->child_node, &clk_orphan_list);
1877 * Set clk's accuracy. The preferred method is to use
1878 * .recalc_accuracy. For simple clocks and lazy developers the default
1879 * fallback is to use the parent's accuracy. If a clock doesn't have a
1880 * parent (or is orphaned) then accuracy is set to zero (perfect
1881 * clock).
1883 if (clk->ops->recalc_accuracy)
1884 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1885 __clk_get_accuracy(clk->parent));
1886 else if (clk->parent)
1887 clk->accuracy = clk->parent->accuracy;
1888 else
1889 clk->accuracy = 0;
1892 * Set clk's rate. The preferred method is to use .recalc_rate. For
1893 * simple clocks and lazy developers the default fallback is to use the
1894 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1895 * then rate is set to zero.
1897 if (clk->ops->recalc_rate)
1898 clk->rate = clk->ops->recalc_rate(clk->hw,
1899 __clk_get_rate(clk->parent));
1900 else if (clk->parent)
1901 clk->rate = clk->parent->rate;
1902 else
1903 clk->rate = 0;
1905 clk_debug_register(clk);
1907 * walk the list of orphan clocks and reparent any that are children of
1908 * this clock
1910 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
1911 if (orphan->num_parents && orphan->ops->get_parent) {
1912 i = orphan->ops->get_parent(orphan->hw);
1913 if (!strcmp(clk->name, orphan->parent_names[i]))
1914 __clk_reparent(orphan, clk);
1915 continue;
1918 for (i = 0; i < orphan->num_parents; i++)
1919 if (!strcmp(clk->name, orphan->parent_names[i])) {
1920 __clk_reparent(orphan, clk);
1921 break;
1926 * optional platform-specific magic
1928 * The .init callback is not used by any of the basic clock types, but
1929 * exists for weird hardware that must perform initialization magic.
1930 * Please consider other ways of solving initialization problems before
1931 * using this callback, as its use is discouraged.
1933 if (clk->ops->init)
1934 clk->ops->init(clk->hw);
1936 kref_init(&clk->ref);
1937 out:
1938 clk_prepare_unlock();
1940 return ret;
1944 * __clk_register - register a clock and return a cookie.
1946 * Same as clk_register, except that the .clk field inside hw shall point to a
1947 * preallocated (generally statically allocated) struct clk. None of the fields
1948 * of the struct clk need to be initialized.
1950 * The data pointed to by .init and .clk field shall NOT be marked as init
1951 * data.
1953 * __clk_register is only exposed via clk-private.h and is intended for use with
1954 * very large numbers of clocks that need to be statically initialized. It is
1955 * a layering violation to include clk-private.h from any code which implements
1956 * a clock's .ops; as such any statically initialized clock data MUST be in a
1957 * separate C file from the logic that implements its operations. Returns 0
1958 * on success, otherwise an error code.
1960 struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
1962 int ret;
1963 struct clk *clk;
1965 clk = hw->clk;
1966 clk->name = hw->init->name;
1967 clk->ops = hw->init->ops;
1968 clk->hw = hw;
1969 clk->flags = hw->init->flags;
1970 clk->parent_names = hw->init->parent_names;
1971 clk->num_parents = hw->init->num_parents;
1972 if (dev && dev->driver)
1973 clk->owner = dev->driver->owner;
1974 else
1975 clk->owner = NULL;
1977 ret = __clk_init(dev, clk);
1978 if (ret)
1979 return ERR_PTR(ret);
1981 return clk;
1983 EXPORT_SYMBOL_GPL(__clk_register);
1986 * clk_register - allocate a new clock, register it and return an opaque cookie
1987 * @dev: device that is registering this clock
1988 * @hw: link to hardware-specific clock data
1990 * clk_register is the primary interface for populating the clock tree with new
1991 * clock nodes. It returns a pointer to the newly allocated struct clk which
1992 * cannot be dereferenced by driver code but may be used in conjuction with the
1993 * rest of the clock API. In the event of an error clk_register will return an
1994 * error code; drivers must test for an error code after calling clk_register.
1996 struct clk *clk_register(struct device *dev, struct clk_hw *hw)
1998 int i, ret;
1999 struct clk *clk;
2001 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
2002 if (!clk) {
2003 pr_err("%s: could not allocate clk\n", __func__);
2004 ret = -ENOMEM;
2005 goto fail_out;
2008 clk->name = kstrdup(hw->init->name, GFP_KERNEL);
2009 if (!clk->name) {
2010 pr_err("%s: could not allocate clk->name\n", __func__);
2011 ret = -ENOMEM;
2012 goto fail_name;
2014 clk->ops = hw->init->ops;
2015 if (dev && dev->driver)
2016 clk->owner = dev->driver->owner;
2017 clk->hw = hw;
2018 clk->flags = hw->init->flags;
2019 clk->num_parents = hw->init->num_parents;
2020 hw->clk = clk;
2022 /* allocate local copy in case parent_names is __initdata */
2023 clk->parent_names = kcalloc(clk->num_parents, sizeof(char *),
2024 GFP_KERNEL);
2026 if (!clk->parent_names) {
2027 pr_err("%s: could not allocate clk->parent_names\n", __func__);
2028 ret = -ENOMEM;
2029 goto fail_parent_names;
2033 /* copy each string name in case parent_names is __initdata */
2034 for (i = 0; i < clk->num_parents; i++) {
2035 clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
2036 GFP_KERNEL);
2037 if (!clk->parent_names[i]) {
2038 pr_err("%s: could not copy parent_names\n", __func__);
2039 ret = -ENOMEM;
2040 goto fail_parent_names_copy;
2044 ret = __clk_init(dev, clk);
2045 if (!ret)
2046 return clk;
2048 fail_parent_names_copy:
2049 while (--i >= 0)
2050 kfree(clk->parent_names[i]);
2051 kfree(clk->parent_names);
2052 fail_parent_names:
2053 kfree(clk->name);
2054 fail_name:
2055 kfree(clk);
2056 fail_out:
2057 return ERR_PTR(ret);
2059 EXPORT_SYMBOL_GPL(clk_register);
2062 * Free memory allocated for a clock.
2063 * Caller must hold prepare_lock.
2065 static void __clk_release(struct kref *ref)
2067 struct clk *clk = container_of(ref, struct clk, ref);
2068 int i = clk->num_parents;
2070 kfree(clk->parents);
2071 while (--i >= 0)
2072 kfree(clk->parent_names[i]);
2074 kfree(clk->parent_names);
2075 kfree(clk->name);
2076 kfree(clk);
2080 * Empty clk_ops for unregistered clocks. These are used temporarily
2081 * after clk_unregister() was called on a clock and until last clock
2082 * consumer calls clk_put() and the struct clk object is freed.
2084 static int clk_nodrv_prepare_enable(struct clk_hw *hw)
2086 return -ENXIO;
2089 static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
2091 WARN_ON_ONCE(1);
2094 static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
2095 unsigned long parent_rate)
2097 return -ENXIO;
2100 static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
2102 return -ENXIO;
2105 static const struct clk_ops clk_nodrv_ops = {
2106 .enable = clk_nodrv_prepare_enable,
2107 .disable = clk_nodrv_disable_unprepare,
2108 .prepare = clk_nodrv_prepare_enable,
2109 .unprepare = clk_nodrv_disable_unprepare,
2110 .set_rate = clk_nodrv_set_rate,
2111 .set_parent = clk_nodrv_set_parent,
2115 * clk_unregister - unregister a currently registered clock
2116 * @clk: clock to unregister
2118 void clk_unregister(struct clk *clk)
2120 unsigned long flags;
2122 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
2123 return;
2125 clk_prepare_lock();
2127 if (clk->ops == &clk_nodrv_ops) {
2128 pr_err("%s: unregistered clock: %s\n", __func__, clk->name);
2129 goto out;
2132 * Assign empty clock ops for consumers that might still hold
2133 * a reference to this clock.
2135 flags = clk_enable_lock();
2136 clk->ops = &clk_nodrv_ops;
2137 clk_enable_unlock(flags);
2139 if (!hlist_empty(&clk->children)) {
2140 struct clk *child;
2141 struct hlist_node *t;
2143 /* Reparent all children to the orphan list. */
2144 hlist_for_each_entry_safe(child, t, &clk->children, child_node)
2145 clk_set_parent(child, NULL);
2148 clk_debug_unregister(clk);
2150 hlist_del_init(&clk->child_node);
2152 if (clk->prepare_count)
2153 pr_warn("%s: unregistering prepared clock: %s\n",
2154 __func__, clk->name);
2156 kref_put(&clk->ref, __clk_release);
2157 out:
2158 clk_prepare_unlock();
2160 EXPORT_SYMBOL_GPL(clk_unregister);
2162 static void devm_clk_release(struct device *dev, void *res)
2164 clk_unregister(*(struct clk **)res);
2168 * devm_clk_register - resource managed clk_register()
2169 * @dev: device that is registering this clock
2170 * @hw: link to hardware-specific clock data
2172 * Managed clk_register(). Clocks returned from this function are
2173 * automatically clk_unregister()ed on driver detach. See clk_register() for
2174 * more information.
2176 struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
2178 struct clk *clk;
2179 struct clk **clkp;
2181 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
2182 if (!clkp)
2183 return ERR_PTR(-ENOMEM);
2185 clk = clk_register(dev, hw);
2186 if (!IS_ERR(clk)) {
2187 *clkp = clk;
2188 devres_add(dev, clkp);
2189 } else {
2190 devres_free(clkp);
2193 return clk;
2195 EXPORT_SYMBOL_GPL(devm_clk_register);
2197 static int devm_clk_match(struct device *dev, void *res, void *data)
2199 struct clk *c = res;
2200 if (WARN_ON(!c))
2201 return 0;
2202 return c == data;
2206 * devm_clk_unregister - resource managed clk_unregister()
2207 * @clk: clock to unregister
2209 * Deallocate a clock allocated with devm_clk_register(). Normally
2210 * this function will not need to be called and the resource management
2211 * code will ensure that the resource is freed.
2213 void devm_clk_unregister(struct device *dev, struct clk *clk)
2215 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
2217 EXPORT_SYMBOL_GPL(devm_clk_unregister);
2220 * clkdev helpers
2222 int __clk_get(struct clk *clk)
2224 if (clk) {
2225 if (!try_module_get(clk->owner))
2226 return 0;
2228 kref_get(&clk->ref);
2230 return 1;
2233 void __clk_put(struct clk *clk)
2235 struct module *owner;
2237 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
2238 return;
2240 clk_prepare_lock();
2241 owner = clk->owner;
2242 kref_put(&clk->ref, __clk_release);
2243 clk_prepare_unlock();
2245 module_put(owner);
2248 /*** clk rate change notifiers ***/
2251 * clk_notifier_register - add a clk rate change notifier
2252 * @clk: struct clk * to watch
2253 * @nb: struct notifier_block * with callback info
2255 * Request notification when clk's rate changes. This uses an SRCU
2256 * notifier because we want it to block and notifier unregistrations are
2257 * uncommon. The callbacks associated with the notifier must not
2258 * re-enter into the clk framework by calling any top-level clk APIs;
2259 * this will cause a nested prepare_lock mutex.
2261 * Pre-change notifier callbacks will be passed the current, pre-change
2262 * rate of the clk via struct clk_notifier_data.old_rate. The new,
2263 * post-change rate of the clk is passed via struct
2264 * clk_notifier_data.new_rate.
2266 * Post-change notifiers will pass the now-current, post-change rate of
2267 * the clk in both struct clk_notifier_data.old_rate and struct
2268 * clk_notifier_data.new_rate.
2270 * Abort-change notifiers are effectively the opposite of pre-change
2271 * notifiers: the original pre-change clk rate is passed in via struct
2272 * clk_notifier_data.new_rate and the failed post-change rate is passed
2273 * in via struct clk_notifier_data.old_rate.
2275 * clk_notifier_register() must be called from non-atomic context.
2276 * Returns -EINVAL if called with null arguments, -ENOMEM upon
2277 * allocation failure; otherwise, passes along the return value of
2278 * srcu_notifier_chain_register().
2280 int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
2282 struct clk_notifier *cn;
2283 int ret = -ENOMEM;
2285 if (!clk || !nb)
2286 return -EINVAL;
2288 clk_prepare_lock();
2290 /* search the list of notifiers for this clk */
2291 list_for_each_entry(cn, &clk_notifier_list, node)
2292 if (cn->clk == clk)
2293 break;
2295 /* if clk wasn't in the notifier list, allocate new clk_notifier */
2296 if (cn->clk != clk) {
2297 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
2298 if (!cn)
2299 goto out;
2301 cn->clk = clk;
2302 srcu_init_notifier_head(&cn->notifier_head);
2304 list_add(&cn->node, &clk_notifier_list);
2307 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
2309 clk->notifier_count++;
2311 out:
2312 clk_prepare_unlock();
2314 return ret;
2316 EXPORT_SYMBOL_GPL(clk_notifier_register);
2319 * clk_notifier_unregister - remove a clk rate change notifier
2320 * @clk: struct clk *
2321 * @nb: struct notifier_block * with callback info
2323 * Request no further notification for changes to 'clk' and frees memory
2324 * allocated in clk_notifier_register.
2326 * Returns -EINVAL if called with null arguments; otherwise, passes
2327 * along the return value of srcu_notifier_chain_unregister().
2329 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
2331 struct clk_notifier *cn = NULL;
2332 int ret = -EINVAL;
2334 if (!clk || !nb)
2335 return -EINVAL;
2337 clk_prepare_lock();
2339 list_for_each_entry(cn, &clk_notifier_list, node)
2340 if (cn->clk == clk)
2341 break;
2343 if (cn->clk == clk) {
2344 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
2346 clk->notifier_count--;
2348 /* XXX the notifier code should handle this better */
2349 if (!cn->notifier_head.head) {
2350 srcu_cleanup_notifier_head(&cn->notifier_head);
2351 list_del(&cn->node);
2352 kfree(cn);
2355 } else {
2356 ret = -ENOENT;
2359 clk_prepare_unlock();
2361 return ret;
2363 EXPORT_SYMBOL_GPL(clk_notifier_unregister);
2365 #ifdef CONFIG_OF
2367 * struct of_clk_provider - Clock provider registration structure
2368 * @link: Entry in global list of clock providers
2369 * @node: Pointer to device tree node of clock provider
2370 * @get: Get clock callback. Returns NULL or a struct clk for the
2371 * given clock specifier
2372 * @data: context pointer to be passed into @get callback
2374 struct of_clk_provider {
2375 struct list_head link;
2377 struct device_node *node;
2378 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
2379 void *data;
2382 static const struct of_device_id __clk_of_table_sentinel
2383 __used __section(__clk_of_table_end);
2385 static LIST_HEAD(of_clk_providers);
2386 static DEFINE_MUTEX(of_clk_mutex);
2388 /* of_clk_provider list locking helpers */
2389 void of_clk_lock(void)
2391 mutex_lock(&of_clk_mutex);
2394 void of_clk_unlock(void)
2396 mutex_unlock(&of_clk_mutex);
2399 struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
2400 void *data)
2402 return data;
2404 EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
2406 struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
2408 struct clk_onecell_data *clk_data = data;
2409 unsigned int idx = clkspec->args[0];
2411 if (idx >= clk_data->clk_num) {
2412 pr_err("%s: invalid clock index %d\n", __func__, idx);
2413 return ERR_PTR(-EINVAL);
2416 return clk_data->clks[idx];
2418 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
2421 * of_clk_add_provider() - Register a clock provider for a node
2422 * @np: Device node pointer associated with clock provider
2423 * @clk_src_get: callback for decoding clock
2424 * @data: context pointer for @clk_src_get callback.
2426 int of_clk_add_provider(struct device_node *np,
2427 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
2428 void *data),
2429 void *data)
2431 struct of_clk_provider *cp;
2433 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
2434 if (!cp)
2435 return -ENOMEM;
2437 cp->node = of_node_get(np);
2438 cp->data = data;
2439 cp->get = clk_src_get;
2441 mutex_lock(&of_clk_mutex);
2442 list_add(&cp->link, &of_clk_providers);
2443 mutex_unlock(&of_clk_mutex);
2444 pr_debug("Added clock from %s\n", np->full_name);
2446 return 0;
2448 EXPORT_SYMBOL_GPL(of_clk_add_provider);
2451 * of_clk_del_provider() - Remove a previously registered clock provider
2452 * @np: Device node pointer associated with clock provider
2454 void of_clk_del_provider(struct device_node *np)
2456 struct of_clk_provider *cp;
2458 mutex_lock(&of_clk_mutex);
2459 list_for_each_entry(cp, &of_clk_providers, link) {
2460 if (cp->node == np) {
2461 list_del(&cp->link);
2462 of_node_put(cp->node);
2463 kfree(cp);
2464 break;
2467 mutex_unlock(&of_clk_mutex);
2469 EXPORT_SYMBOL_GPL(of_clk_del_provider);
2471 struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec)
2473 struct of_clk_provider *provider;
2474 struct clk *clk = ERR_PTR(-ENOENT);
2476 /* Check if we have such a provider in our array */
2477 list_for_each_entry(provider, &of_clk_providers, link) {
2478 if (provider->node == clkspec->np)
2479 clk = provider->get(clkspec, provider->data);
2480 if (!IS_ERR(clk))
2481 break;
2484 return clk;
2487 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
2489 struct clk *clk;
2491 mutex_lock(&of_clk_mutex);
2492 clk = __of_clk_get_from_provider(clkspec);
2493 mutex_unlock(&of_clk_mutex);
2495 return clk;
2498 int of_clk_get_parent_count(struct device_node *np)
2500 return of_count_phandle_with_args(np, "clocks", "#clock-cells");
2502 EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
2504 const char *of_clk_get_parent_name(struct device_node *np, int index)
2506 struct of_phandle_args clkspec;
2507 const char *clk_name;
2508 int rc;
2510 if (index < 0)
2511 return NULL;
2513 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
2514 &clkspec);
2515 if (rc)
2516 return NULL;
2518 if (of_property_read_string_index(clkspec.np, "clock-output-names",
2519 clkspec.args_count ? clkspec.args[0] : 0,
2520 &clk_name) < 0)
2521 clk_name = clkspec.np->name;
2523 of_node_put(clkspec.np);
2524 return clk_name;
2526 EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
2529 * of_clk_init() - Scan and init clock providers from the DT
2530 * @matches: array of compatible values and init functions for providers.
2532 * This function scans the device tree for matching clock providers and
2533 * calls their initialization functions
2535 void __init of_clk_init(const struct of_device_id *matches)
2537 const struct of_device_id *match;
2538 struct device_node *np;
2540 if (!matches)
2541 matches = &__clk_of_table;
2543 for_each_matching_node_and_match(np, matches, &match) {
2544 of_clk_init_cb_t clk_init_cb = match->data;
2545 clk_init_cb(np);
2548 #endif