Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
clk.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010-2011 Canonical Ltd <[email protected]>
3  * Copyright (C) 2011-2012 Linaro Ltd <[email protected]>
4  *
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.
8  *
9  * Standard functionality for the common clock API. See Documentation/clk.txt
10  */
11 
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 
21 static DEFINE_SPINLOCK(enable_lock);
22 static DEFINE_MUTEX(prepare_lock);
23 
24 static HLIST_HEAD(clk_root_list);
25 static HLIST_HEAD(clk_orphan_list);
26 static LIST_HEAD(clk_notifier_list);
27 
28 /*** debugfs support ***/
29 
30 #ifdef CONFIG_COMMON_CLK_DEBUG
31 #include <linux/debugfs.h>
32 
33 static struct dentry *rootdir;
34 static struct dentry *orphandir;
35 static int inited = 0;
36 
37 /* caller must hold prepare_lock */
38 static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
39 {
40  struct dentry *d;
41  int ret = -ENOMEM;
42 
43  if (!clk || !pdentry) {
44  ret = -EINVAL;
45  goto out;
46  }
47 
48  d = debugfs_create_dir(clk->name, pdentry);
49  if (!d)
50  goto out;
51 
52  clk->dentry = d;
53 
54  d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
55  (u32 *)&clk->rate);
56  if (!d)
57  goto err_out;
58 
59  d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
60  (u32 *)&clk->flags);
61  if (!d)
62  goto err_out;
63 
64  d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
65  (u32 *)&clk->prepare_count);
66  if (!d)
67  goto err_out;
68 
69  d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
70  (u32 *)&clk->enable_count);
71  if (!d)
72  goto err_out;
73 
74  d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
75  (u32 *)&clk->notifier_count);
76  if (!d)
77  goto err_out;
78 
79  ret = 0;
80  goto out;
81 
82 err_out:
83  debugfs_remove(clk->dentry);
84 out:
85  return ret;
86 }
87 
88 /* caller must hold prepare_lock */
89 static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry)
90 {
91  struct clk *child;
92  struct hlist_node *tmp;
93  int ret = -EINVAL;;
94 
95  if (!clk || !pdentry)
96  goto out;
97 
98  ret = clk_debug_create_one(clk, pdentry);
99 
100  if (ret)
101  goto out;
102 
103  hlist_for_each_entry(child, tmp, &clk->children, child_node)
104  clk_debug_create_subtree(child, clk->dentry);
105 
106  ret = 0;
107 out:
108  return ret;
109 }
110 
122 static int clk_debug_register(struct clk *clk)
123 {
124  struct clk *parent;
125  struct dentry *pdentry;
126  int ret = 0;
127 
128  if (!inited)
129  goto out;
130 
131  parent = clk->parent;
132 
133  /*
134  * Check to see if a clk is a root clk. Also check that it is
135  * safe to add this clk to debugfs
136  */
137  if (!parent)
138  if (clk->flags & CLK_IS_ROOT)
139  pdentry = rootdir;
140  else
141  pdentry = orphandir;
142  else
143  if (parent->dentry)
144  pdentry = parent->dentry;
145  else
146  goto out;
147 
148  ret = clk_debug_create_subtree(clk, pdentry);
149 
150 out:
151  return ret;
152 }
153 
166 static int __init clk_debug_init(void)
167 {
168  struct clk *clk;
169  struct hlist_node *tmp;
170 
171  rootdir = debugfs_create_dir("clk", NULL);
172 
173  if (!rootdir)
174  return -ENOMEM;
175 
176  orphandir = debugfs_create_dir("orphans", rootdir);
177 
178  if (!orphandir)
179  return -ENOMEM;
180 
181  mutex_lock(&prepare_lock);
182 
183  hlist_for_each_entry(clk, tmp, &clk_root_list, child_node)
184  clk_debug_create_subtree(clk, rootdir);
185 
186  hlist_for_each_entry(clk, tmp, &clk_orphan_list, child_node)
187  clk_debug_create_subtree(clk, orphandir);
188 
189  inited = 1;
190 
191  mutex_unlock(&prepare_lock);
192 
193  return 0;
194 }
195 late_initcall(clk_debug_init);
196 #else
197 static inline int clk_debug_register(struct clk *clk) { return 0; }
198 #endif
199 
200 /* caller must hold prepare_lock */
201 static void clk_disable_unused_subtree(struct clk *clk)
202 {
203  struct clk *child;
204  struct hlist_node *tmp;
205  unsigned long flags;
206 
207  if (!clk)
208  goto out;
209 
210  hlist_for_each_entry(child, tmp, &clk->children, child_node)
211  clk_disable_unused_subtree(child);
212 
213  spin_lock_irqsave(&enable_lock, flags);
214 
215  if (clk->enable_count)
216  goto unlock_out;
217 
218  if (clk->flags & CLK_IGNORE_UNUSED)
219  goto unlock_out;
220 
221  if (__clk_is_enabled(clk) && clk->ops->disable)
222  clk->ops->disable(clk->hw);
223 
224 unlock_out:
225  spin_unlock_irqrestore(&enable_lock, flags);
226 
227 out:
228  return;
229 }
230 
231 static int clk_disable_unused(void)
232 {
233  struct clk *clk;
234  struct hlist_node *tmp;
235 
236  mutex_lock(&prepare_lock);
237 
238  hlist_for_each_entry(clk, tmp, &clk_root_list, child_node)
239  clk_disable_unused_subtree(clk);
240 
241  hlist_for_each_entry(clk, tmp, &clk_orphan_list, child_node)
242  clk_disable_unused_subtree(clk);
243 
244  mutex_unlock(&prepare_lock);
245 
246  return 0;
247 }
248 late_initcall(clk_disable_unused);
249 
250 /*** helper functions ***/
251 
253 {
254  return !clk ? NULL : clk->name;
255 }
256 
257 inline struct clk_hw *__clk_get_hw(struct clk *clk)
258 {
259  return !clk ? NULL : clk->hw;
260 }
261 
262 inline u8 __clk_get_num_parents(struct clk *clk)
263 {
264  return !clk ? -EINVAL : clk->num_parents;
265 }
266 
267 inline struct clk *__clk_get_parent(struct clk *clk)
268 {
269  return !clk ? NULL : clk->parent;
270 }
271 
272 inline int __clk_get_enable_count(struct clk *clk)
273 {
274  return !clk ? -EINVAL : clk->enable_count;
275 }
276 
277 inline int __clk_get_prepare_count(struct clk *clk)
278 {
279  return !clk ? -EINVAL : clk->prepare_count;
280 }
281 
282 unsigned long __clk_get_rate(struct clk *clk)
283 {
284  unsigned long ret;
285 
286  if (!clk) {
287  ret = 0;
288  goto out;
289  }
290 
291  ret = clk->rate;
292 
293  if (clk->flags & CLK_IS_ROOT)
294  goto out;
295 
296  if (!clk->parent)
297  ret = 0;
298 
299 out:
300  return ret;
301 }
302 
303 inline unsigned long __clk_get_flags(struct clk *clk)
304 {
305  return !clk ? -EINVAL : clk->flags;
306 }
307 
308 int __clk_is_enabled(struct clk *clk)
309 {
310  int ret;
311 
312  if (!clk)
313  return -EINVAL;
314 
315  /*
316  * .is_enabled is only mandatory for clocks that gate
317  * fall back to software usage counter if .is_enabled is missing
318  */
319  if (!clk->ops->is_enabled) {
320  ret = clk->enable_count ? 1 : 0;
321  goto out;
322  }
323 
324  ret = clk->ops->is_enabled(clk->hw);
325 out:
326  return ret;
327 }
328 
329 static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
330 {
331  struct clk *child;
332  struct clk *ret;
333  struct hlist_node *tmp;
334 
335  if (!strcmp(clk->name, name))
336  return clk;
337 
338  hlist_for_each_entry(child, tmp, &clk->children, child_node) {
339  ret = __clk_lookup_subtree(name, child);
340  if (ret)
341  return ret;
342  }
343 
344  return NULL;
345 }
346 
347 struct clk *__clk_lookup(const char *name)
348 {
349  struct clk *root_clk;
350  struct clk *ret;
351  struct hlist_node *tmp;
352 
353  if (!name)
354  return NULL;
355 
356  /* search the 'proper' clk tree first */
357  hlist_for_each_entry(root_clk, tmp, &clk_root_list, child_node) {
358  ret = __clk_lookup_subtree(name, root_clk);
359  if (ret)
360  return ret;
361  }
362 
363  /* if not found, then search the orphan tree */
364  hlist_for_each_entry(root_clk, tmp, &clk_orphan_list, child_node) {
365  ret = __clk_lookup_subtree(name, root_clk);
366  if (ret)
367  return ret;
368  }
369 
370  return NULL;
371 }
372 
373 /*** clk api ***/
374 
375 void __clk_unprepare(struct clk *clk)
376 {
377  if (!clk)
378  return;
379 
380  if (WARN_ON(clk->prepare_count == 0))
381  return;
382 
383  if (--clk->prepare_count > 0)
384  return;
385 
386  WARN_ON(clk->enable_count > 0);
387 
388  if (clk->ops->unprepare)
389  clk->ops->unprepare(clk->hw);
390 
391  __clk_unprepare(clk->parent);
392 }
393 
405 void clk_unprepare(struct clk *clk)
406 {
407  mutex_lock(&prepare_lock);
408  __clk_unprepare(clk);
409  mutex_unlock(&prepare_lock);
410 }
412 
413 int __clk_prepare(struct clk *clk)
414 {
415  int ret = 0;
416 
417  if (!clk)
418  return 0;
419 
420  if (clk->prepare_count == 0) {
421  ret = __clk_prepare(clk->parent);
422  if (ret)
423  return ret;
424 
425  if (clk->ops->prepare) {
426  ret = clk->ops->prepare(clk->hw);
427  if (ret) {
428  __clk_unprepare(clk->parent);
429  return ret;
430  }
431  }
432  }
433 
434  clk->prepare_count++;
435 
436  return 0;
437 }
438 
451 int clk_prepare(struct clk *clk)
452 {
453  int ret;
454 
455  mutex_lock(&prepare_lock);
456  ret = __clk_prepare(clk);
457  mutex_unlock(&prepare_lock);
458 
459  return ret;
460 }
462 
463 static void __clk_disable(struct clk *clk)
464 {
465  if (!clk)
466  return;
467 
468  if (WARN_ON(IS_ERR(clk)))
469  return;
470 
471  if (WARN_ON(clk->enable_count == 0))
472  return;
473 
474  if (--clk->enable_count > 0)
475  return;
476 
477  if (clk->ops->disable)
478  clk->ops->disable(clk->hw);
479 
480  __clk_disable(clk->parent);
481 }
482 
495 void clk_disable(struct clk *clk)
496 {
497  unsigned long flags;
498 
499  spin_lock_irqsave(&enable_lock, flags);
500  __clk_disable(clk);
501  spin_unlock_irqrestore(&enable_lock, flags);
502 }
504 
505 static int __clk_enable(struct clk *clk)
506 {
507  int ret = 0;
508 
509  if (!clk)
510  return 0;
511 
512  if (WARN_ON(clk->prepare_count == 0))
513  return -ESHUTDOWN;
514 
515  if (clk->enable_count == 0) {
516  ret = __clk_enable(clk->parent);
517 
518  if (ret)
519  return ret;
520 
521  if (clk->ops->enable) {
522  ret = clk->ops->enable(clk->hw);
523  if (ret) {
524  __clk_disable(clk->parent);
525  return ret;
526  }
527  }
528  }
529 
530  clk->enable_count++;
531  return 0;
532 }
533 
547 int clk_enable(struct clk *clk)
548 {
549  unsigned long flags;
550  int ret;
551 
552  spin_lock_irqsave(&enable_lock, flags);
553  ret = __clk_enable(clk);
554  spin_unlock_irqrestore(&enable_lock, flags);
555 
556  return ret;
557 }
559 
566 unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
567 {
568  unsigned long parent_rate = 0;
569 
570  if (!clk)
571  return -EINVAL;
572 
573  if (!clk->ops->round_rate) {
574  if (clk->flags & CLK_SET_RATE_PARENT)
575  return __clk_round_rate(clk->parent, rate);
576  else
577  return clk->rate;
578  }
579 
580  if (clk->parent)
581  parent_rate = clk->parent->rate;
582 
583  return clk->ops->round_rate(clk->hw, rate, &parent_rate);
584 }
585 
595 long clk_round_rate(struct clk *clk, unsigned long rate)
596 {
597  unsigned long ret;
598 
599  mutex_lock(&prepare_lock);
600  ret = __clk_round_rate(clk, rate);
601  mutex_unlock(&prepare_lock);
602 
603  return ret;
604 }
606 
621 static int __clk_notify(struct clk *clk, unsigned long msg,
622  unsigned long old_rate, unsigned long new_rate)
623 {
624  struct clk_notifier *cn;
625  struct clk_notifier_data cnd;
626  int ret = NOTIFY_DONE;
627 
628  cnd.clk = clk;
629  cnd.old_rate = old_rate;
630  cnd.new_rate = new_rate;
631 
632  list_for_each_entry(cn, &clk_notifier_list, node) {
633  if (cn->clk == clk) {
634  ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
635  &cnd);
636  break;
637  }
638  }
639 
640  return ret;
641 }
642 
657 static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
658 {
659  unsigned long old_rate;
660  unsigned long parent_rate = 0;
661  struct hlist_node *tmp;
662  struct clk *child;
663 
664  old_rate = clk->rate;
665 
666  if (clk->parent)
667  parent_rate = clk->parent->rate;
668 
669  if (clk->ops->recalc_rate)
670  clk->rate = clk->ops->recalc_rate(clk->hw, parent_rate);
671  else
672  clk->rate = parent_rate;
673 
674  /*
675  * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
676  * & ABORT_RATE_CHANGE notifiers
677  */
678  if (clk->notifier_count && msg)
679  __clk_notify(clk, msg, old_rate, clk->rate);
680 
681  hlist_for_each_entry(child, tmp, &clk->children, child_node)
682  __clk_recalc_rates(child, msg);
683 }
684 
693 unsigned long clk_get_rate(struct clk *clk)
694 {
695  unsigned long rate;
696 
697  mutex_lock(&prepare_lock);
698 
699  if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
700  __clk_recalc_rates(clk, 0);
701 
702  rate = __clk_get_rate(clk);
703  mutex_unlock(&prepare_lock);
704 
705  return rate;
706 }
708 
725 static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
726 {
727  struct hlist_node *tmp;
728  struct clk *child;
729  unsigned long new_rate;
730  int ret = NOTIFY_DONE;
731 
732  if (clk->ops->recalc_rate)
733  new_rate = clk->ops->recalc_rate(clk->hw, parent_rate);
734  else
735  new_rate = parent_rate;
736 
737  /* abort the rate change if a driver returns NOTIFY_BAD */
738  if (clk->notifier_count)
739  ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
740 
741  if (ret == NOTIFY_BAD)
742  goto out;
743 
744  hlist_for_each_entry(child, tmp, &clk->children, child_node) {
745  ret = __clk_speculate_rates(child, new_rate);
746  if (ret == NOTIFY_BAD)
747  break;
748  }
749 
750 out:
751  return ret;
752 }
753 
754 static void clk_calc_subtree(struct clk *clk, unsigned long new_rate)
755 {
756  struct clk *child;
757  struct hlist_node *tmp;
758 
759  clk->new_rate = new_rate;
760 
761  hlist_for_each_entry(child, tmp, &clk->children, child_node) {
762  if (child->ops->recalc_rate)
763  child->new_rate = child->ops->recalc_rate(child->hw, new_rate);
764  else
765  child->new_rate = new_rate;
766  clk_calc_subtree(child, child->new_rate);
767  }
768 }
769 
770 /*
771  * calculate the new rates returning the topmost clock that has to be
772  * changed.
773  */
774 static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
775 {
776  struct clk *top = clk;
777  unsigned long best_parent_rate = 0;
778  unsigned long new_rate;
779 
780  /* sanity */
781  if (IS_ERR_OR_NULL(clk))
782  return NULL;
783 
784  /* save parent rate, if it exists */
785  if (clk->parent)
786  best_parent_rate = clk->parent->rate;
787 
788  /* never propagate up to the parent */
789  if (!(clk->flags & CLK_SET_RATE_PARENT)) {
790  if (!clk->ops->round_rate) {
791  clk->new_rate = clk->rate;
792  return NULL;
793  }
794  new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
795  goto out;
796  }
797 
798  /* need clk->parent from here on out */
799  if (!clk->parent) {
800  pr_debug("%s: %s has NULL parent\n", __func__, clk->name);
801  return NULL;
802  }
803 
804  if (!clk->ops->round_rate) {
805  top = clk_calc_new_rates(clk->parent, rate);
806  new_rate = clk->parent->new_rate;
807 
808  goto out;
809  }
810 
811  new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
812 
813  if (best_parent_rate != clk->parent->rate) {
814  top = clk_calc_new_rates(clk->parent, best_parent_rate);
815 
816  goto out;
817  }
818 
819 out:
820  clk_calc_subtree(clk, new_rate);
821 
822  return top;
823 }
824 
825 /*
826  * Notify about rate changes in a subtree. Always walk down the whole tree
827  * so that in case of an error we can walk down the whole tree again and
828  * abort the change.
829  */
830 static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
831 {
832  struct hlist_node *tmp;
833  struct clk *child, *fail_clk = NULL;
834  int ret = NOTIFY_DONE;
835 
836  if (clk->rate == clk->new_rate)
837  return 0;
838 
839  if (clk->notifier_count) {
840  ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
841  if (ret == NOTIFY_BAD)
842  fail_clk = clk;
843  }
844 
845  hlist_for_each_entry(child, tmp, &clk->children, child_node) {
846  clk = clk_propagate_rate_change(child, event);
847  if (clk)
848  fail_clk = clk;
849  }
850 
851  return fail_clk;
852 }
853 
854 /*
855  * walk down a subtree and set the new rates notifying the rate
856  * change on the way
857  */
858 static void clk_change_rate(struct clk *clk)
859 {
860  struct clk *child;
861  unsigned long old_rate;
862  unsigned long best_parent_rate = 0;
863  struct hlist_node *tmp;
864 
865  old_rate = clk->rate;
866 
867  if (clk->parent)
868  best_parent_rate = clk->parent->rate;
869 
870  if (clk->ops->set_rate)
871  clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
872 
873  if (clk->ops->recalc_rate)
874  clk->rate = clk->ops->recalc_rate(clk->hw, best_parent_rate);
875  else
876  clk->rate = best_parent_rate;
877 
878  if (clk->notifier_count && old_rate != clk->rate)
879  __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
880 
881  hlist_for_each_entry(child, tmp, &clk->children, child_node)
882  clk_change_rate(child);
883 }
884 
906 int clk_set_rate(struct clk *clk, unsigned long rate)
907 {
908  struct clk *top, *fail_clk;
909  int ret = 0;
910 
911  /* prevent racing with updates to the clock topology */
912  mutex_lock(&prepare_lock);
913 
914  /* bail early if nothing to do */
915  if (rate == clk->rate)
916  goto out;
917 
918  if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
919  ret = -EBUSY;
920  goto out;
921  }
922 
923  /* calculate new rates and get the topmost changed clock */
924  top = clk_calc_new_rates(clk, rate);
925  if (!top) {
926  ret = -EINVAL;
927  goto out;
928  }
929 
930  /* notify that we are about to change rates */
931  fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
932  if (fail_clk) {
933  pr_warn("%s: failed to set %s rate\n", __func__,
934  fail_clk->name);
935  clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
936  ret = -EBUSY;
937  goto out;
938  }
939 
940  /* change the rates */
941  clk_change_rate(top);
942 
943  mutex_unlock(&prepare_lock);
944 
945  return 0;
946 out:
947  mutex_unlock(&prepare_lock);
948 
949  return ret;
950 }
952 
959 struct clk *clk_get_parent(struct clk *clk)
960 {
961  struct clk *parent;
962 
963  mutex_lock(&prepare_lock);
964  parent = __clk_get_parent(clk);
965  mutex_unlock(&prepare_lock);
966 
967  return parent;
968 }
970 
971 /*
972  * .get_parent is mandatory for clocks with multiple possible parents. It is
973  * optional for single-parent clocks. Always call .get_parent if it is
974  * available and WARN if it is missing for multi-parent clocks.
975  *
976  * For single-parent clocks without .get_parent, first check to see if the
977  * .parents array exists, and if so use it to avoid an expensive tree
978  * traversal. If .parents does not exist then walk the tree with __clk_lookup.
979  */
980 static struct clk *__clk_init_parent(struct clk *clk)
981 {
982  struct clk *ret = NULL;
983  u8 index;
984 
985  /* handle the trivial cases */
986 
987  if (!clk->num_parents)
988  goto out;
989 
990  if (clk->num_parents == 1) {
991  if (IS_ERR_OR_NULL(clk->parent))
992  ret = clk->parent = __clk_lookup(clk->parent_names[0]);
993  ret = clk->parent;
994  goto out;
995  }
996 
997  if (!clk->ops->get_parent) {
998  WARN(!clk->ops->get_parent,
999  "%s: multi-parent clocks must implement .get_parent\n",
1000  __func__);
1001  goto out;
1002  };
1003 
1004  /*
1005  * Do our best to cache parent clocks in clk->parents. This prevents
1006  * unnecessary and expensive calls to __clk_lookup. We don't set
1007  * clk->parent here; that is done by the calling function
1008  */
1009 
1010  index = clk->ops->get_parent(clk->hw);
1011 
1012  if (!clk->parents)
1013  clk->parents =
1014  kzalloc((sizeof(struct clk*) * clk->num_parents),
1015  GFP_KERNEL);
1016 
1017  if (!clk->parents)
1018  ret = __clk_lookup(clk->parent_names[index]);
1019  else if (!clk->parents[index])
1020  ret = clk->parents[index] =
1021  __clk_lookup(clk->parent_names[index]);
1022  else
1023  ret = clk->parents[index];
1024 
1025 out:
1026  return ret;
1027 }
1028 
1029 void __clk_reparent(struct clk *clk, struct clk *new_parent)
1030 {
1031 #ifdef CONFIG_COMMON_CLK_DEBUG
1032  struct dentry *d;
1033  struct dentry *new_parent_d;
1034 #endif
1035 
1036  if (!clk || !new_parent)
1037  return;
1038 
1039  hlist_del(&clk->child_node);
1040 
1041  if (new_parent)
1042  hlist_add_head(&clk->child_node, &new_parent->children);
1043  else
1044  hlist_add_head(&clk->child_node, &clk_orphan_list);
1045 
1046 #ifdef CONFIG_COMMON_CLK_DEBUG
1047  if (!inited)
1048  goto out;
1049 
1050  if (new_parent)
1051  new_parent_d = new_parent->dentry;
1052  else
1053  new_parent_d = orphandir;
1054 
1055  d = debugfs_rename(clk->dentry->d_parent, clk->dentry,
1056  new_parent_d, clk->name);
1057  if (d)
1058  clk->dentry = d;
1059  else
1060  pr_debug("%s: failed to rename debugfs entry for %s\n",
1061  __func__, clk->name);
1062 out:
1063 #endif
1064 
1065  clk->parent = new_parent;
1066 
1067  __clk_recalc_rates(clk, POST_RATE_CHANGE);
1068 }
1069 
1070 static int __clk_set_parent(struct clk *clk, struct clk *parent)
1071 {
1072  struct clk *old_parent;
1073  unsigned long flags;
1074  int ret = -EINVAL;
1075  u8 i;
1076 
1077  old_parent = clk->parent;
1078 
1079  if (!clk->parents)
1080  clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
1081  GFP_KERNEL);
1082 
1083  /*
1084  * find index of new parent clock using cached parent ptrs,
1085  * or if not yet cached, use string name comparison and cache
1086  * them now to avoid future calls to __clk_lookup.
1087  */
1088  for (i = 0; i < clk->num_parents; i++) {
1089  if (clk->parents && clk->parents[i] == parent)
1090  break;
1091  else if (!strcmp(clk->parent_names[i], parent->name)) {
1092  if (clk->parents)
1093  clk->parents[i] = __clk_lookup(parent->name);
1094  break;
1095  }
1096  }
1097 
1098  if (i == clk->num_parents) {
1099  pr_debug("%s: clock %s is not a possible parent of clock %s\n",
1100  __func__, parent->name, clk->name);
1101  goto out;
1102  }
1103 
1104  /* migrate prepare and enable */
1105  if (clk->prepare_count)
1106  __clk_prepare(parent);
1107 
1108  /* FIXME replace with clk_is_enabled(clk) someday */
1109  spin_lock_irqsave(&enable_lock, flags);
1110  if (clk->enable_count)
1111  __clk_enable(parent);
1112  spin_unlock_irqrestore(&enable_lock, flags);
1113 
1114  /* change clock input source */
1115  ret = clk->ops->set_parent(clk->hw, i);
1116 
1117  /* clean up old prepare and enable */
1118  spin_lock_irqsave(&enable_lock, flags);
1119  if (clk->enable_count)
1120  __clk_disable(old_parent);
1121  spin_unlock_irqrestore(&enable_lock, flags);
1122 
1123  if (clk->prepare_count)
1124  __clk_unprepare(old_parent);
1125 
1126 out:
1127  return ret;
1128 }
1129 
1142 int clk_set_parent(struct clk *clk, struct clk *parent)
1143 {
1144  int ret = 0;
1145 
1146  if (!clk || !clk->ops)
1147  return -EINVAL;
1148 
1149  if (!clk->ops->set_parent)
1150  return -ENOSYS;
1151 
1152  /* prevent racing with updates to the clock topology */
1153  mutex_lock(&prepare_lock);
1154 
1155  if (clk->parent == parent)
1156  goto out;
1157 
1158  /* propagate PRE_RATE_CHANGE notifications */
1159  if (clk->notifier_count)
1160  ret = __clk_speculate_rates(clk, parent->rate);
1161 
1162  /* abort if a driver objects */
1163  if (ret == NOTIFY_STOP)
1164  goto out;
1165 
1166  /* only re-parent if the clock is not in use */
1167  if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count)
1168  ret = -EBUSY;
1169  else
1170  ret = __clk_set_parent(clk, parent);
1171 
1172  /* propagate ABORT_RATE_CHANGE if .set_parent failed */
1173  if (ret) {
1174  __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
1175  goto out;
1176  }
1177 
1178  /* propagate rate recalculation downstream */
1179  __clk_reparent(clk, parent);
1180 
1181 out:
1182  mutex_unlock(&prepare_lock);
1183 
1184  return ret;
1185 }
1187 
1196 int __clk_init(struct device *dev, struct clk *clk)
1197 {
1198  int i, ret = 0;
1199  struct clk *orphan;
1200  struct hlist_node *tmp, *tmp2;
1201 
1202  if (!clk)
1203  return -EINVAL;
1204 
1205  mutex_lock(&prepare_lock);
1206 
1207  /* check to see if a clock with this name is already registered */
1208  if (__clk_lookup(clk->name)) {
1209  pr_debug("%s: clk %s already initialized\n",
1210  __func__, clk->name);
1211  ret = -EEXIST;
1212  goto out;
1213  }
1214 
1215  /* check that clk_ops are sane. See Documentation/clk.txt */
1216  if (clk->ops->set_rate &&
1217  !(clk->ops->round_rate && clk->ops->recalc_rate)) {
1218  pr_warning("%s: %s must implement .round_rate & .recalc_rate\n",
1219  __func__, clk->name);
1220  ret = -EINVAL;
1221  goto out;
1222  }
1223 
1224  if (clk->ops->set_parent && !clk->ops->get_parent) {
1225  pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1226  __func__, clk->name);
1227  ret = -EINVAL;
1228  goto out;
1229  }
1230 
1231  /* throw a WARN if any entries in parent_names are NULL */
1232  for (i = 0; i < clk->num_parents; i++)
1233  WARN(!clk->parent_names[i],
1234  "%s: invalid NULL in %s's .parent_names\n",
1235  __func__, clk->name);
1236 
1237  /*
1238  * Allocate an array of struct clk *'s to avoid unnecessary string
1239  * look-ups of clk's possible parents. This can fail for clocks passed
1240  * in to clk_init during early boot; thus any access to clk->parents[]
1241  * must always check for a NULL pointer and try to populate it if
1242  * necessary.
1243  *
1244  * If clk->parents is not NULL we skip this entire block. This allows
1245  * for clock drivers to statically initialize clk->parents.
1246  */
1247  if (clk->num_parents > 1 && !clk->parents) {
1248  clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
1249  GFP_KERNEL);
1250  /*
1251  * __clk_lookup returns NULL for parents that have not been
1252  * clk_init'd; thus any access to clk->parents[] must check
1253  * for a NULL pointer. We can always perform lazy lookups for
1254  * missing parents later on.
1255  */
1256  if (clk->parents)
1257  for (i = 0; i < clk->num_parents; i++)
1258  clk->parents[i] =
1259  __clk_lookup(clk->parent_names[i]);
1260  }
1261 
1262  clk->parent = __clk_init_parent(clk);
1263 
1264  /*
1265  * Populate clk->parent if parent has already been __clk_init'd. If
1266  * parent has not yet been __clk_init'd then place clk in the orphan
1267  * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1268  * clk list.
1269  *
1270  * Every time a new clk is clk_init'd then we walk the list of orphan
1271  * clocks and re-parent any that are children of the clock currently
1272  * being clk_init'd.
1273  */
1274  if (clk->parent)
1275  hlist_add_head(&clk->child_node,
1276  &clk->parent->children);
1277  else if (clk->flags & CLK_IS_ROOT)
1278  hlist_add_head(&clk->child_node, &clk_root_list);
1279  else
1280  hlist_add_head(&clk->child_node, &clk_orphan_list);
1281 
1282  /*
1283  * Set clk's rate. The preferred method is to use .recalc_rate. For
1284  * simple clocks and lazy developers the default fallback is to use the
1285  * parent's rate. If a clock doesn't have a parent (or is orphaned)
1286  * then rate is set to zero.
1287  */
1288  if (clk->ops->recalc_rate)
1289  clk->rate = clk->ops->recalc_rate(clk->hw,
1290  __clk_get_rate(clk->parent));
1291  else if (clk->parent)
1292  clk->rate = clk->parent->rate;
1293  else
1294  clk->rate = 0;
1295 
1296  /*
1297  * walk the list of orphan clocks and reparent any that are children of
1298  * this clock
1299  */
1300  hlist_for_each_entry_safe(orphan, tmp, tmp2, &clk_orphan_list, child_node)
1301  for (i = 0; i < orphan->num_parents; i++)
1302  if (!strcmp(clk->name, orphan->parent_names[i])) {
1303  __clk_reparent(orphan, clk);
1304  break;
1305  }
1306 
1307  /*
1308  * optional platform-specific magic
1309  *
1310  * The .init callback is not used by any of the basic clock types, but
1311  * exists for weird hardware that must perform initialization magic.
1312  * Please consider other ways of solving initialization problems before
1313  * using this callback, as it's use is discouraged.
1314  */
1315  if (clk->ops->init)
1316  clk->ops->init(clk->hw);
1317 
1318  clk_debug_register(clk);
1319 
1320 out:
1321  mutex_unlock(&prepare_lock);
1322 
1323  return ret;
1324 }
1325 
1343 struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
1344 {
1345  int ret;
1346  struct clk *clk;
1347 
1348  clk = hw->clk;
1349  clk->name = hw->init->name;
1350  clk->ops = hw->init->ops;
1351  clk->hw = hw;
1352  clk->flags = hw->init->flags;
1353  clk->parent_names = hw->init->parent_names;
1354  clk->num_parents = hw->init->num_parents;
1355 
1356  ret = __clk_init(dev, clk);
1357  if (ret)
1358  return ERR_PTR(ret);
1359 
1360  return clk;
1361 }
1363 
1375 struct clk *clk_register(struct device *dev, struct clk_hw *hw)
1376 {
1377  int i, ret;
1378  struct clk *clk;
1379 
1380  clk = kzalloc(sizeof(*clk), GFP_KERNEL);
1381  if (!clk) {
1382  pr_err("%s: could not allocate clk\n", __func__);
1383  ret = -ENOMEM;
1384  goto fail_out;
1385  }
1386 
1387  clk->name = kstrdup(hw->init->name, GFP_KERNEL);
1388  if (!clk->name) {
1389  pr_err("%s: could not allocate clk->name\n", __func__);
1390  ret = -ENOMEM;
1391  goto fail_name;
1392  }
1393  clk->ops = hw->init->ops;
1394  clk->hw = hw;
1395  clk->flags = hw->init->flags;
1396  clk->num_parents = hw->init->num_parents;
1397  hw->clk = clk;
1398 
1399  /* allocate local copy in case parent_names is __initdata */
1400  clk->parent_names = kzalloc((sizeof(char*) * clk->num_parents),
1401  GFP_KERNEL);
1402 
1403  if (!clk->parent_names) {
1404  pr_err("%s: could not allocate clk->parent_names\n", __func__);
1405  ret = -ENOMEM;
1406  goto fail_parent_names;
1407  }
1408 
1409 
1410  /* copy each string name in case parent_names is __initdata */
1411  for (i = 0; i < clk->num_parents; i++) {
1412  clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
1413  GFP_KERNEL);
1414  if (!clk->parent_names[i]) {
1415  pr_err("%s: could not copy parent_names\n", __func__);
1416  ret = -ENOMEM;
1417  goto fail_parent_names_copy;
1418  }
1419  }
1420 
1421  ret = __clk_init(dev, clk);
1422  if (!ret)
1423  return clk;
1424 
1425 fail_parent_names_copy:
1426  while (--i >= 0)
1427  kfree(clk->parent_names[i]);
1428  kfree(clk->parent_names);
1429 fail_parent_names:
1430  kfree(clk->name);
1431 fail_name:
1432  kfree(clk);
1433 fail_out:
1434  return ERR_PTR(ret);
1435 }
1437 
1444 void clk_unregister(struct clk *clk) {}
1446 
1447 /*** clk rate change notifiers ***/
1448 
1479 int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
1480 {
1481  struct clk_notifier *cn;
1482  int ret = -ENOMEM;
1483 
1484  if (!clk || !nb)
1485  return -EINVAL;
1486 
1487  mutex_lock(&prepare_lock);
1488 
1489  /* search the list of notifiers for this clk */
1490  list_for_each_entry(cn, &clk_notifier_list, node)
1491  if (cn->clk == clk)
1492  break;
1493 
1494  /* if clk wasn't in the notifier list, allocate new clk_notifier */
1495  if (cn->clk != clk) {
1496  cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
1497  if (!cn)
1498  goto out;
1499 
1500  cn->clk = clk;
1501  srcu_init_notifier_head(&cn->notifier_head);
1502 
1503  list_add(&cn->node, &clk_notifier_list);
1504  }
1505 
1506  ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
1507 
1508  clk->notifier_count++;
1509 
1510 out:
1511  mutex_unlock(&prepare_lock);
1512 
1513  return ret;
1514 }
1516 
1528 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
1529 {
1530  struct clk_notifier *cn = NULL;
1531  int ret = -EINVAL;
1532 
1533  if (!clk || !nb)
1534  return -EINVAL;
1535 
1536  mutex_lock(&prepare_lock);
1537 
1538  list_for_each_entry(cn, &clk_notifier_list, node)
1539  if (cn->clk == clk)
1540  break;
1541 
1542  if (cn->clk == clk) {
1543  ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
1544 
1545  clk->notifier_count--;
1546 
1547  /* XXX the notifier code should handle this better */
1548  if (!cn->notifier_head.head) {
1549  srcu_cleanup_notifier_head(&cn->notifier_head);
1550  kfree(cn);
1551  }
1552 
1553  } else {
1554  ret = -ENOENT;
1555  }
1556 
1557  mutex_unlock(&prepare_lock);
1558 
1559  return ret;
1560 }
1562 
1563 #ifdef CONFIG_OF
1564 
1572 struct of_clk_provider {
1573  struct list_head link;
1574 
1575  struct device_node *node;
1576  struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
1577  void *data;
1578 };
1579 
1580 static LIST_HEAD(of_clk_providers);
1581 static DEFINE_MUTEX(of_clk_lock);
1582 
1583 struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
1584  void *data)
1585 {
1586  return data;
1587 }
1588 EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
1589 
1590 struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
1591 {
1592  struct clk_onecell_data *clk_data = data;
1593  unsigned int idx = clkspec->args[0];
1594 
1595  if (idx >= clk_data->clk_num) {
1596  pr_err("%s: invalid clock index %d\n", __func__, idx);
1597  return ERR_PTR(-EINVAL);
1598  }
1599 
1600  return clk_data->clks[idx];
1601 }
1602 EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
1603 
1610 int of_clk_add_provider(struct device_node *np,
1611  struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
1612  void *data),
1613  void *data)
1614 {
1615  struct of_clk_provider *cp;
1616 
1617  cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
1618  if (!cp)
1619  return -ENOMEM;
1620 
1621  cp->node = of_node_get(np);
1622  cp->data = data;
1623  cp->get = clk_src_get;
1624 
1625  mutex_lock(&of_clk_lock);
1626  list_add(&cp->link, &of_clk_providers);
1627  mutex_unlock(&of_clk_lock);
1628  pr_debug("Added clock from %s\n", np->full_name);
1629 
1630  return 0;
1631 }
1632 EXPORT_SYMBOL_GPL(of_clk_add_provider);
1633 
1638 void of_clk_del_provider(struct device_node *np)
1639 {
1640  struct of_clk_provider *cp;
1641 
1642  mutex_lock(&of_clk_lock);
1643  list_for_each_entry(cp, &of_clk_providers, link) {
1644  if (cp->node == np) {
1645  list_del(&cp->link);
1646  of_node_put(cp->node);
1647  kfree(cp);
1648  break;
1649  }
1650  }
1651  mutex_unlock(&of_clk_lock);
1652 }
1653 EXPORT_SYMBOL_GPL(of_clk_del_provider);
1654 
1655 struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
1656 {
1657  struct of_clk_provider *provider;
1658  struct clk *clk = ERR_PTR(-ENOENT);
1659 
1660  /* Check if we have such a provider in our array */
1661  mutex_lock(&of_clk_lock);
1662  list_for_each_entry(provider, &of_clk_providers, link) {
1663  if (provider->node == clkspec->np)
1664  clk = provider->get(clkspec, provider->data);
1665  if (!IS_ERR(clk))
1666  break;
1667  }
1668  mutex_unlock(&of_clk_lock);
1669 
1670  return clk;
1671 }
1672 
1673 const char *of_clk_get_parent_name(struct device_node *np, int index)
1674 {
1675  struct of_phandle_args clkspec;
1676  const char *clk_name;
1677  int rc;
1678 
1679  if (index < 0)
1680  return NULL;
1681 
1682  rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
1683  &clkspec);
1684  if (rc)
1685  return NULL;
1686 
1687  if (of_property_read_string_index(clkspec.np, "clock-output-names",
1688  clkspec.args_count ? clkspec.args[0] : 0,
1689  &clk_name) < 0)
1690  clk_name = clkspec.np->name;
1691 
1692  of_node_put(clkspec.np);
1693  return clk_name;
1694 }
1695 EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
1696 
1704 void __init of_clk_init(const struct of_device_id *matches)
1705 {
1706  struct device_node *np;
1707 
1708  for_each_matching_node(np, matches) {
1709  const struct of_device_id *match = of_match_node(matches, np);
1710  of_clk_init_cb_t clk_init_cb = match->data;
1711  clk_init_cb(np);
1712  }
1713 }
1714 #endif