1 /*
2 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
3 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
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
20 static DEFINE_SPINLOCK(enable_lock);
21 static DEFINE_MUTEX(prepare_lock);
22
23 static HLIST_HEAD(clk_root_list);
24 static HLIST_HEAD(clk_orphan_list);
25 static LIST_HEAD(clk_notifier_list);
26
27 /*** debugfs support ***/
28
29 #ifdef CONFIG_COMMON_CLK_DEBUG
30 #include <linux/debugfs.h>
31
32 static struct dentry *rootdir;
33 static struct dentry *orphandir;
34 static int inited = 0;
35
36 /* caller must hold prepare_lock */
clk_debug_create_one(struct clk * clk,struct dentry * pdentry)37 static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
38 {
39 struct dentry *d;
40 int ret = -ENOMEM;
41
42 if (!clk || !pdentry) {
43 ret = -EINVAL;
44 goto out;
45 }
46
47 d = debugfs_create_dir(clk->name, pdentry);
48 if (!d)
49 goto out;
50
51 clk->dentry = d;
52
53 d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
54 (u32 *)&clk->rate);
55 if (!d)
56 goto err_out;
57
58 d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
59 (u32 *)&clk->flags);
60 if (!d)
61 goto err_out;
62
63 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
64 (u32 *)&clk->prepare_count);
65 if (!d)
66 goto err_out;
67
68 d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
69 (u32 *)&clk->enable_count);
70 if (!d)
71 goto err_out;
72
73 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
74 (u32 *)&clk->notifier_count);
75 if (!d)
76 goto err_out;
77
78 ret = 0;
79 goto out;
80
81 err_out:
82 debugfs_remove(clk->dentry);
83 out:
84 return ret;
85 }
86
87 /* caller must hold prepare_lock */
clk_debug_create_subtree(struct clk * clk,struct dentry * pdentry)88 static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry)
89 {
90 struct clk *child;
91 struct hlist_node *tmp;
92 int ret = -EINVAL;;
93
94 if (!clk || !pdentry)
95 goto out;
96
97 ret = clk_debug_create_one(clk, pdentry);
98
99 if (ret)
100 goto out;
101
102 hlist_for_each_entry(child, tmp, &clk->children, child_node)
103 clk_debug_create_subtree(child, clk->dentry);
104
105 ret = 0;
106 out:
107 return ret;
108 }
109
110 /**
111 * clk_debug_register - add a clk node to the debugfs clk tree
112 * @clk: the clk being added to the debugfs clk tree
113 *
114 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
115 * initialized. Otherwise it bails out early since the debugfs clk tree
116 * will be created lazily by clk_debug_init as part of a late_initcall.
117 *
118 * Caller must hold prepare_lock. Only clk_init calls this function (so
119 * far) so this is taken care.
120 */
clk_debug_register(struct clk * clk)121 static int clk_debug_register(struct clk *clk)
122 {
123 struct clk *parent;
124 struct dentry *pdentry;
125 int ret = 0;
126
127 if (!inited)
128 goto out;
129
130 parent = clk->parent;
131
132 /*
133 * Check to see if a clk is a root clk. Also check that it is
134 * safe to add this clk to debugfs
135 */
136 if (!parent)
137 if (clk->flags & CLK_IS_ROOT)
138 pdentry = rootdir;
139 else
140 pdentry = orphandir;
141 else
142 if (parent->dentry)
143 pdentry = parent->dentry;
144 else
145 goto out;
146
147 ret = clk_debug_create_subtree(clk, pdentry);
148
149 out:
150 return ret;
151 }
152
153 /**
154 * clk_debug_init - lazily create the debugfs clk tree visualization
155 *
156 * clks are often initialized very early during boot before memory can
157 * be dynamically allocated and well before debugfs is setup.
158 * clk_debug_init walks the clk tree hierarchy while holding
159 * prepare_lock and creates the topology as part of a late_initcall,
160 * thus insuring that clks initialized very early will still be
161 * represented in the debugfs clk tree. This function should only be
162 * called once at boot-time, and all other clks added dynamically will
163 * be done so with clk_debug_register.
164 */
clk_debug_init(void)165 static int __init clk_debug_init(void)
166 {
167 struct clk *clk;
168 struct hlist_node *tmp;
169
170 rootdir = debugfs_create_dir("clk", NULL);
171
172 if (!rootdir)
173 return -ENOMEM;
174
175 orphandir = debugfs_create_dir("orphans", rootdir);
176
177 if (!orphandir)
178 return -ENOMEM;
179
180 mutex_lock(&prepare_lock);
181
182 hlist_for_each_entry(clk, tmp, &clk_root_list, child_node)
183 clk_debug_create_subtree(clk, rootdir);
184
185 hlist_for_each_entry(clk, tmp, &clk_orphan_list, child_node)
186 clk_debug_create_subtree(clk, orphandir);
187
188 inited = 1;
189
190 mutex_unlock(&prepare_lock);
191
192 return 0;
193 }
194 late_initcall(clk_debug_init);
195 #else
clk_debug_register(struct clk * clk)196 static inline int clk_debug_register(struct clk *clk) { return 0; }
197 #endif /* CONFIG_COMMON_CLK_DEBUG */
198
199 #ifdef CONFIG_COMMON_CLK_DISABLE_UNUSED
200 /* caller must hold prepare_lock */
clk_disable_unused_subtree(struct clk * clk)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
clk_disable_unused(void)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 #else
clk_disable_unused(struct clk * clk)250 static inline int clk_disable_unused(struct clk *clk) { return 0; }
251 #endif /* CONFIG_COMMON_CLK_DISABLE_UNUSED */
252
253 /*** helper functions ***/
254
__clk_get_name(struct clk * clk)255 inline const char *__clk_get_name(struct clk *clk)
256 {
257 return !clk ? NULL : clk->name;
258 }
259
__clk_get_hw(struct clk * clk)260 inline struct clk_hw *__clk_get_hw(struct clk *clk)
261 {
262 return !clk ? NULL : clk->hw;
263 }
264
__clk_get_num_parents(struct clk * clk)265 inline u8 __clk_get_num_parents(struct clk *clk)
266 {
267 return !clk ? -EINVAL : clk->num_parents;
268 }
269
__clk_get_parent(struct clk * clk)270 inline struct clk *__clk_get_parent(struct clk *clk)
271 {
272 return !clk ? NULL : clk->parent;
273 }
274
__clk_get_enable_count(struct clk * clk)275 inline int __clk_get_enable_count(struct clk *clk)
276 {
277 return !clk ? -EINVAL : clk->enable_count;
278 }
279
__clk_get_prepare_count(struct clk * clk)280 inline int __clk_get_prepare_count(struct clk *clk)
281 {
282 return !clk ? -EINVAL : clk->prepare_count;
283 }
284
__clk_get_rate(struct clk * clk)285 unsigned long __clk_get_rate(struct clk *clk)
286 {
287 unsigned long ret;
288
289 if (!clk) {
290 ret = -EINVAL;
291 goto out;
292 }
293
294 ret = clk->rate;
295
296 if (clk->flags & CLK_IS_ROOT)
297 goto out;
298
299 if (!clk->parent)
300 ret = -ENODEV;
301
302 out:
303 return ret;
304 }
305
__clk_get_flags(struct clk * clk)306 inline unsigned long __clk_get_flags(struct clk *clk)
307 {
308 return !clk ? -EINVAL : clk->flags;
309 }
310
__clk_is_enabled(struct clk * clk)311 int __clk_is_enabled(struct clk *clk)
312 {
313 int ret;
314
315 if (!clk)
316 return -EINVAL;
317
318 /*
319 * .is_enabled is only mandatory for clocks that gate
320 * fall back to software usage counter if .is_enabled is missing
321 */
322 if (!clk->ops->is_enabled) {
323 ret = clk->enable_count ? 1 : 0;
324 goto out;
325 }
326
327 ret = clk->ops->is_enabled(clk->hw);
328 out:
329 return ret;
330 }
331
__clk_lookup_subtree(const char * name,struct clk * clk)332 static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
333 {
334 struct clk *child;
335 struct clk *ret;
336 struct hlist_node *tmp;
337
338 if (!strcmp(clk->name, name))
339 return clk;
340
341 hlist_for_each_entry(child, tmp, &clk->children, child_node) {
342 ret = __clk_lookup_subtree(name, child);
343 if (ret)
344 return ret;
345 }
346
347 return NULL;
348 }
349
__clk_lookup(const char * name)350 struct clk *__clk_lookup(const char *name)
351 {
352 struct clk *root_clk;
353 struct clk *ret;
354 struct hlist_node *tmp;
355
356 if (!name)
357 return NULL;
358
359 /* search the 'proper' clk tree first */
360 hlist_for_each_entry(root_clk, tmp, &clk_root_list, child_node) {
361 ret = __clk_lookup_subtree(name, root_clk);
362 if (ret)
363 return ret;
364 }
365
366 /* if not found, then search the orphan tree */
367 hlist_for_each_entry(root_clk, tmp, &clk_orphan_list, child_node) {
368 ret = __clk_lookup_subtree(name, root_clk);
369 if (ret)
370 return ret;
371 }
372
373 return NULL;
374 }
375
376 /*** clk api ***/
377
__clk_unprepare(struct clk * clk)378 void __clk_unprepare(struct clk *clk)
379 {
380 if (!clk)
381 return;
382
383 if (WARN_ON(clk->prepare_count == 0))
384 return;
385
386 if (--clk->prepare_count > 0)
387 return;
388
389 WARN_ON(clk->enable_count > 0);
390
391 if (clk->ops->unprepare)
392 clk->ops->unprepare(clk->hw);
393
394 __clk_unprepare(clk->parent);
395 }
396
397 /**
398 * clk_unprepare - undo preparation of a clock source
399 * @clk: the clk being unprepare
400 *
401 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
402 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
403 * if the operation may sleep. One example is a clk which is accessed over
404 * I2c. In the complex case a clk gate operation may require a fast and a slow
405 * part. It is this reason that clk_unprepare and clk_disable are not mutually
406 * exclusive. In fact clk_disable must be called before clk_unprepare.
407 */
clk_unprepare(struct clk * clk)408 void clk_unprepare(struct clk *clk)
409 {
410 mutex_lock(&prepare_lock);
411 __clk_unprepare(clk);
412 mutex_unlock(&prepare_lock);
413 }
414 EXPORT_SYMBOL_GPL(clk_unprepare);
415
__clk_prepare(struct clk * clk)416 int __clk_prepare(struct clk *clk)
417 {
418 int ret = 0;
419
420 if (!clk)
421 return 0;
422
423 if (clk->prepare_count == 0) {
424 ret = __clk_prepare(clk->parent);
425 if (ret)
426 return ret;
427
428 if (clk->ops->prepare) {
429 ret = clk->ops->prepare(clk->hw);
430 if (ret) {
431 __clk_unprepare(clk->parent);
432 return ret;
433 }
434 }
435 }
436
437 clk->prepare_count++;
438
439 return 0;
440 }
441
442 /**
443 * clk_prepare - prepare a clock source
444 * @clk: the clk being prepared
445 *
446 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
447 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
448 * operation may sleep. One example is a clk which is accessed over I2c. In
449 * the complex case a clk ungate operation may require a fast and a slow part.
450 * It is this reason that clk_prepare and clk_enable are not mutually
451 * exclusive. In fact clk_prepare must be called before clk_enable.
452 * Returns 0 on success, -EERROR otherwise.
453 */
clk_prepare(struct clk * clk)454 int clk_prepare(struct clk *clk)
455 {
456 int ret;
457
458 mutex_lock(&prepare_lock);
459 ret = __clk_prepare(clk);
460 mutex_unlock(&prepare_lock);
461
462 return ret;
463 }
464 EXPORT_SYMBOL_GPL(clk_prepare);
465
__clk_disable(struct clk * clk)466 static void __clk_disable(struct clk *clk)
467 {
468 if (!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
483 /**
484 * clk_disable - gate a clock
485 * @clk: the clk being gated
486 *
487 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
488 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
489 * clk if the operation is fast and will never sleep. One example is a
490 * SoC-internal clk which is controlled via simple register writes. In the
491 * complex case a clk gate operation may require a fast and a slow part. It is
492 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
493 * In fact clk_disable must be called before clk_unprepare.
494 */
clk_disable(struct clk * clk)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 }
503 EXPORT_SYMBOL_GPL(clk_disable);
504
__clk_enable(struct clk * clk)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
534 /**
535 * clk_enable - ungate a clock
536 * @clk: the clk being ungated
537 *
538 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
539 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
540 * if the operation will never sleep. One example is a SoC-internal clk which
541 * is controlled via simple register writes. In the complex case a clk ungate
542 * operation may require a fast and a slow part. It is this reason that
543 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
544 * must be called before clk_enable. Returns 0 on success, -EERROR
545 * otherwise.
546 */
clk_enable(struct clk * clk)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 }
558 EXPORT_SYMBOL_GPL(clk_enable);
559
560 /**
561 * clk_get_rate - return the rate of clk
562 * @clk: the clk whose rate is being returned
563 *
564 * Simply returns the cached rate of the clk. Does not query the hardware. If
565 * clk is NULL then returns -EINVAL.
566 */
clk_get_rate(struct clk * clk)567 unsigned long clk_get_rate(struct clk *clk)
568 {
569 unsigned long rate;
570
571 mutex_lock(&prepare_lock);
572 rate = __clk_get_rate(clk);
573 mutex_unlock(&prepare_lock);
574
575 return rate;
576 }
577 EXPORT_SYMBOL_GPL(clk_get_rate);
578
579 /**
580 * __clk_round_rate - round the given rate for a clk
581 * @clk: round the rate of this clock
582 *
583 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
584 */
__clk_round_rate(struct clk * clk,unsigned long rate)585 unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
586 {
587 unsigned long unused;
588
589 if (!clk)
590 return -EINVAL;
591
592 if (!clk->ops->round_rate)
593 return clk->rate;
594
595 if (clk->flags & CLK_SET_RATE_PARENT)
596 return clk->ops->round_rate(clk->hw, rate, &unused);
597 else
598 return clk->ops->round_rate(clk->hw, rate, NULL);
599 }
600
601 /**
602 * clk_round_rate - round the given rate for a clk
603 * @clk: the clk for which we are rounding a rate
604 * @rate: the rate which is to be rounded
605 *
606 * Takes in a rate as input and rounds it to a rate that the clk can actually
607 * use which is then returned. If clk doesn't support round_rate operation
608 * then the parent rate is returned.
609 */
clk_round_rate(struct clk * clk,unsigned long rate)610 long clk_round_rate(struct clk *clk, unsigned long rate)
611 {
612 unsigned long ret;
613
614 mutex_lock(&prepare_lock);
615 ret = __clk_round_rate(clk, rate);
616 mutex_unlock(&prepare_lock);
617
618 return ret;
619 }
620 EXPORT_SYMBOL_GPL(clk_round_rate);
621
622 /**
623 * __clk_notify - call clk notifier chain
624 * @clk: struct clk * that is changing rate
625 * @msg: clk notifier type (see include/linux/clk.h)
626 * @old_rate: old clk rate
627 * @new_rate: new clk rate
628 *
629 * Triggers a notifier call chain on the clk rate-change notification
630 * for 'clk'. Passes a pointer to the struct clk and the previous
631 * and current rates to the notifier callback. Intended to be called by
632 * internal clock code only. Returns NOTIFY_DONE from the last driver
633 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
634 * a driver returns that.
635 */
__clk_notify(struct clk * clk,unsigned long msg,unsigned long old_rate,unsigned long new_rate)636 static int __clk_notify(struct clk *clk, unsigned long msg,
637 unsigned long old_rate, unsigned long new_rate)
638 {
639 struct clk_notifier *cn;
640 struct clk_notifier_data cnd;
641 int ret = NOTIFY_DONE;
642
643 cnd.clk = clk;
644 cnd.old_rate = old_rate;
645 cnd.new_rate = new_rate;
646
647 list_for_each_entry(cn, &clk_notifier_list, node) {
648 if (cn->clk == clk) {
649 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
650 &cnd);
651 break;
652 }
653 }
654
655 return ret;
656 }
657
658 /**
659 * __clk_recalc_rates
660 * @clk: first clk in the subtree
661 * @msg: notification type (see include/linux/clk.h)
662 *
663 * Walks the subtree of clks starting with clk and recalculates rates as it
664 * goes. Note that if a clk does not implement the .recalc_rate callback then
665 * it is assumed that the clock will take on the rate of it's parent.
666 *
667 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
668 * if necessary.
669 *
670 * Caller must hold prepare_lock.
671 */
__clk_recalc_rates(struct clk * clk,unsigned long msg)672 static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
673 {
674 unsigned long old_rate;
675 unsigned long parent_rate = 0;
676 struct hlist_node *tmp;
677 struct clk *child;
678
679 old_rate = clk->rate;
680
681 if (clk->parent)
682 parent_rate = clk->parent->rate;
683
684 if (clk->ops->recalc_rate)
685 clk->rate = clk->ops->recalc_rate(clk->hw, parent_rate);
686 else
687 clk->rate = parent_rate;
688
689 /*
690 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
691 * & ABORT_RATE_CHANGE notifiers
692 */
693 if (clk->notifier_count && msg)
694 __clk_notify(clk, msg, old_rate, clk->rate);
695
696 hlist_for_each_entry(child, tmp, &clk->children, child_node)
697 __clk_recalc_rates(child, msg);
698 }
699
700 /**
701 * __clk_speculate_rates
702 * @clk: first clk in the subtree
703 * @parent_rate: the "future" rate of clk's parent
704 *
705 * Walks the subtree of clks starting with clk, speculating rates as it
706 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
707 *
708 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
709 * pre-rate change notifications and returns early if no clks in the
710 * subtree have subscribed to the notifications. Note that if a clk does not
711 * implement the .recalc_rate callback then it is assumed that the clock will
712 * take on the rate of it's parent.
713 *
714 * Caller must hold prepare_lock.
715 */
__clk_speculate_rates(struct clk * clk,unsigned long parent_rate)716 static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
717 {
718 struct hlist_node *tmp;
719 struct clk *child;
720 unsigned long new_rate;
721 int ret = NOTIFY_DONE;
722
723 if (clk->ops->recalc_rate)
724 new_rate = clk->ops->recalc_rate(clk->hw, parent_rate);
725 else
726 new_rate = parent_rate;
727
728 /* abort the rate change if a driver returns NOTIFY_BAD */
729 if (clk->notifier_count)
730 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
731
732 if (ret == NOTIFY_BAD)
733 goto out;
734
735 hlist_for_each_entry(child, tmp, &clk->children, child_node) {
736 ret = __clk_speculate_rates(child, new_rate);
737 if (ret == NOTIFY_BAD)
738 break;
739 }
740
741 out:
742 return ret;
743 }
744
clk_calc_subtree(struct clk * clk,unsigned long new_rate)745 static void clk_calc_subtree(struct clk *clk, unsigned long new_rate)
746 {
747 struct clk *child;
748 struct hlist_node *tmp;
749
750 clk->new_rate = new_rate;
751
752 hlist_for_each_entry(child, tmp, &clk->children, child_node) {
753 if (child->ops->recalc_rate)
754 child->new_rate = child->ops->recalc_rate(child->hw, new_rate);
755 else
756 child->new_rate = new_rate;
757 clk_calc_subtree(child, child->new_rate);
758 }
759 }
760
761 /*
762 * calculate the new rates returning the topmost clock that has to be
763 * changed.
764 */
clk_calc_new_rates(struct clk * clk,unsigned long rate)765 static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
766 {
767 struct clk *top = clk;
768 unsigned long best_parent_rate = clk->parent->rate;
769 unsigned long new_rate;
770
771 if (!clk->ops->round_rate && !(clk->flags & CLK_SET_RATE_PARENT)) {
772 clk->new_rate = clk->rate;
773 return NULL;
774 }
775
776 if (!clk->ops->round_rate && (clk->flags & CLK_SET_RATE_PARENT)) {
777 top = clk_calc_new_rates(clk->parent, rate);
778 new_rate = clk->new_rate = clk->parent->new_rate;
779
780 goto out;
781 }
782
783 if (clk->flags & CLK_SET_RATE_PARENT)
784 new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
785 else
786 new_rate = clk->ops->round_rate(clk->hw, rate, NULL);
787
788 if (best_parent_rate != clk->parent->rate) {
789 top = clk_calc_new_rates(clk->parent, best_parent_rate);
790
791 goto out;
792 }
793
794 out:
795 clk_calc_subtree(clk, new_rate);
796
797 return top;
798 }
799
800 /*
801 * Notify about rate changes in a subtree. Always walk down the whole tree
802 * so that in case of an error we can walk down the whole tree again and
803 * abort the change.
804 */
clk_propagate_rate_change(struct clk * clk,unsigned long event)805 static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
806 {
807 struct hlist_node *tmp;
808 struct clk *child, *fail_clk = NULL;
809 int ret = NOTIFY_DONE;
810
811 if (clk->rate == clk->new_rate)
812 return 0;
813
814 if (clk->notifier_count) {
815 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
816 if (ret == NOTIFY_BAD)
817 fail_clk = clk;
818 }
819
820 hlist_for_each_entry(child, tmp, &clk->children, child_node) {
821 clk = clk_propagate_rate_change(child, event);
822 if (clk)
823 fail_clk = clk;
824 }
825
826 return fail_clk;
827 }
828
829 /*
830 * walk down a subtree and set the new rates notifying the rate
831 * change on the way
832 */
clk_change_rate(struct clk * clk)833 static void clk_change_rate(struct clk *clk)
834 {
835 struct clk *child;
836 unsigned long old_rate;
837 unsigned long best_parent_rate = 0;
838 struct hlist_node *tmp;
839
840 old_rate = clk->rate;
841
842 if (clk->parent)
843 best_parent_rate = clk->parent->rate;
844
845 if (clk->ops->set_rate)
846 clk->ops->set_rate(clk->hw, clk->new_rate);
847
848 if (clk->ops->recalc_rate)
849 clk->rate = clk->ops->recalc_rate(clk->hw, best_parent_rate);
850 else
851 clk->rate = best_parent_rate;
852
853 if (clk->notifier_count && old_rate != clk->rate)
854 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
855
856 hlist_for_each_entry(child, tmp, &clk->children, child_node)
857 clk_change_rate(child);
858 }
859
860 /**
861 * clk_set_rate - specify a new rate for clk
862 * @clk: the clk whose rate is being changed
863 * @rate: the new rate for clk
864 *
865 * In the simplest case clk_set_rate will only change the rate of clk.
866 *
867 * If clk has the CLK_SET_RATE_GATE flag set and it is enabled this call
868 * will fail; only when the clk is disabled will it be able to change
869 * its rate.
870 *
871 * Setting the CLK_SET_RATE_PARENT flag allows clk_set_rate to
872 * recursively propagate up to clk's parent; whether or not this happens
873 * depends on the outcome of clk's .round_rate implementation. If
874 * *parent_rate is 0 after calling .round_rate then upstream parent
875 * propagation is ignored. If *parent_rate comes back with a new rate
876 * for clk's parent then we propagate up to clk's parent and set it's
877 * rate. Upward propagation will continue until either a clk does not
878 * support the CLK_SET_RATE_PARENT flag or .round_rate stops requesting
879 * changes to clk's parent_rate. If there is a failure during upstream
880 * propagation then clk_set_rate will unwind and restore each clk's rate
881 * that had been successfully changed. Afterwards a rate change abort
882 * notification will be propagated downstream, starting from the clk
883 * that failed.
884 *
885 * At the end of all of the rate setting, clk_set_rate internally calls
886 * __clk_recalc_rates and propagates the rate changes downstream,
887 * starting from the highest clk whose rate was changed. This has the
888 * added benefit of propagating post-rate change notifiers.
889 *
890 * Note that while post-rate change and rate change abort notifications
891 * are guaranteed to be sent to a clk only once per call to
892 * clk_set_rate, pre-change notifications will be sent for every clk
893 * whose rate is changed. Stacking pre-change notifications is noisy
894 * for the drivers subscribed to them, but this allows drivers to react
895 * to intermediate clk rate changes up until the point where the final
896 * rate is achieved at the end of upstream propagation.
897 *
898 * Returns 0 on success, -EERROR otherwise.
899 */
clk_set_rate(struct clk * clk,unsigned long rate)900 int clk_set_rate(struct clk *clk, unsigned long rate)
901 {
902 struct clk *top, *fail_clk;
903 int ret = 0;
904
905 /* prevent racing with updates to the clock topology */
906 mutex_lock(&prepare_lock);
907
908 /* bail early if nothing to do */
909 if (rate == clk->rate)
910 goto out;
911
912 /* calculate new rates and get the topmost changed clock */
913 top = clk_calc_new_rates(clk, rate);
914 if (!top) {
915 ret = -EINVAL;
916 goto out;
917 }
918
919 /* notify that we are about to change rates */
920 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
921 if (fail_clk) {
922 pr_warn("%s: failed to set %s rate\n", __func__,
923 fail_clk->name);
924 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
925 ret = -EBUSY;
926 goto out;
927 }
928
929 /* change the rates */
930 clk_change_rate(top);
931
932 mutex_unlock(&prepare_lock);
933
934 return 0;
935 out:
936 mutex_unlock(&prepare_lock);
937
938 return ret;
939 }
940 EXPORT_SYMBOL_GPL(clk_set_rate);
941
942 /**
943 * clk_get_parent - return the parent of a clk
944 * @clk: the clk whose parent gets returned
945 *
946 * Simply returns clk->parent. Returns NULL if clk is NULL.
947 */
clk_get_parent(struct clk * clk)948 struct clk *clk_get_parent(struct clk *clk)
949 {
950 struct clk *parent;
951
952 mutex_lock(&prepare_lock);
953 parent = __clk_get_parent(clk);
954 mutex_unlock(&prepare_lock);
955
956 return parent;
957 }
958 EXPORT_SYMBOL_GPL(clk_get_parent);
959
960 /*
961 * .get_parent is mandatory for clocks with multiple possible parents. It is
962 * optional for single-parent clocks. Always call .get_parent if it is
963 * available and WARN if it is missing for multi-parent clocks.
964 *
965 * For single-parent clocks without .get_parent, first check to see if the
966 * .parents array exists, and if so use it to avoid an expensive tree
967 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
968 */
__clk_init_parent(struct clk * clk)969 static struct clk *__clk_init_parent(struct clk *clk)
970 {
971 struct clk *ret = NULL;
972 u8 index;
973
974 /* handle the trivial cases */
975
976 if (!clk->num_parents)
977 goto out;
978
979 if (clk->num_parents == 1) {
980 if (IS_ERR_OR_NULL(clk->parent))
981 ret = clk->parent = __clk_lookup(clk->parent_names[0]);
982 ret = clk->parent;
983 goto out;
984 }
985
986 if (!clk->ops->get_parent) {
987 WARN(!clk->ops->get_parent,
988 "%s: multi-parent clocks must implement .get_parent\n",
989 __func__);
990 goto out;
991 };
992
993 /*
994 * Do our best to cache parent clocks in clk->parents. This prevents
995 * unnecessary and expensive calls to __clk_lookup. We don't set
996 * clk->parent here; that is done by the calling function
997 */
998
999 index = clk->ops->get_parent(clk->hw);
1000
1001 if (!clk->parents)
1002 clk->parents =
1003 kzalloc((sizeof(struct clk*) * clk->num_parents),
1004 GFP_KERNEL);
1005
1006 if (!clk->parents)
1007 ret = __clk_lookup(clk->parent_names[index]);
1008 else if (!clk->parents[index])
1009 ret = clk->parents[index] =
1010 __clk_lookup(clk->parent_names[index]);
1011 else
1012 ret = clk->parents[index];
1013
1014 out:
1015 return ret;
1016 }
1017
__clk_reparent(struct clk * clk,struct clk * new_parent)1018 void __clk_reparent(struct clk *clk, struct clk *new_parent)
1019 {
1020 #ifdef CONFIG_COMMON_CLK_DEBUG
1021 struct dentry *d;
1022 struct dentry *new_parent_d;
1023 #endif
1024
1025 if (!clk || !new_parent)
1026 return;
1027
1028 hlist_del(&clk->child_node);
1029
1030 if (new_parent)
1031 hlist_add_head(&clk->child_node, &new_parent->children);
1032 else
1033 hlist_add_head(&clk->child_node, &clk_orphan_list);
1034
1035 #ifdef CONFIG_COMMON_CLK_DEBUG
1036 if (!inited)
1037 goto out;
1038
1039 if (new_parent)
1040 new_parent_d = new_parent->dentry;
1041 else
1042 new_parent_d = orphandir;
1043
1044 d = debugfs_rename(clk->dentry->d_parent, clk->dentry,
1045 new_parent_d, clk->name);
1046 if (d)
1047 clk->dentry = d;
1048 else
1049 pr_debug("%s: failed to rename debugfs entry for %s\n",
1050 __func__, clk->name);
1051 out:
1052 #endif
1053
1054 clk->parent = new_parent;
1055
1056 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1057 }
1058
__clk_set_parent(struct clk * clk,struct clk * parent)1059 static int __clk_set_parent(struct clk *clk, struct clk *parent)
1060 {
1061 struct clk *old_parent;
1062 unsigned long flags;
1063 int ret = -EINVAL;
1064 u8 i;
1065
1066 old_parent = clk->parent;
1067
1068 if (!clk->parents)
1069 clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
1070 GFP_KERNEL);
1071
1072 /*
1073 * find index of new parent clock using cached parent ptrs,
1074 * or if not yet cached, use string name comparison and cache
1075 * them now to avoid future calls to __clk_lookup.
1076 */
1077 for (i = 0; i < clk->num_parents; i++) {
1078 if (clk->parents && clk->parents[i] == parent)
1079 break;
1080 else if (!strcmp(clk->parent_names[i], parent->name)) {
1081 if (clk->parents)
1082 clk->parents[i] = __clk_lookup(parent->name);
1083 break;
1084 }
1085 }
1086
1087 if (i == clk->num_parents) {
1088 pr_debug("%s: clock %s is not a possible parent of clock %s\n",
1089 __func__, parent->name, clk->name);
1090 goto out;
1091 }
1092
1093 /* migrate prepare and enable */
1094 if (clk->prepare_count)
1095 __clk_prepare(parent);
1096
1097 /* FIXME replace with clk_is_enabled(clk) someday */
1098 spin_lock_irqsave(&enable_lock, flags);
1099 if (clk->enable_count)
1100 __clk_enable(parent);
1101 spin_unlock_irqrestore(&enable_lock, flags);
1102
1103 /* change clock input source */
1104 ret = clk->ops->set_parent(clk->hw, i);
1105
1106 /* clean up old prepare and enable */
1107 spin_lock_irqsave(&enable_lock, flags);
1108 if (clk->enable_count)
1109 __clk_disable(old_parent);
1110 spin_unlock_irqrestore(&enable_lock, flags);
1111
1112 if (clk->prepare_count)
1113 __clk_unprepare(old_parent);
1114
1115 out:
1116 return ret;
1117 }
1118
1119 /**
1120 * clk_set_parent - switch the parent of a mux clk
1121 * @clk: the mux clk whose input we are switching
1122 * @parent: the new input to clk
1123 *
1124 * Re-parent clk to use parent as it's new input source. If clk has the
1125 * CLK_SET_PARENT_GATE flag set then clk must be gated for this
1126 * operation to succeed. After successfully changing clk's parent
1127 * clk_set_parent will update the clk topology, sysfs topology and
1128 * propagate rate recalculation via __clk_recalc_rates. Returns 0 on
1129 * success, -EERROR otherwise.
1130 */
clk_set_parent(struct clk * clk,struct clk * parent)1131 int clk_set_parent(struct clk *clk, struct clk *parent)
1132 {
1133 int ret = 0;
1134
1135 if (!clk || !clk->ops)
1136 return -EINVAL;
1137
1138 if (!clk->ops->set_parent)
1139 return -ENOSYS;
1140
1141 /* prevent racing with updates to the clock topology */
1142 mutex_lock(&prepare_lock);
1143
1144 if (clk->parent == parent)
1145 goto out;
1146
1147 /* propagate PRE_RATE_CHANGE notifications */
1148 if (clk->notifier_count)
1149 ret = __clk_speculate_rates(clk, parent->rate);
1150
1151 /* abort if a driver objects */
1152 if (ret == NOTIFY_STOP)
1153 goto out;
1154
1155 /* only re-parent if the clock is not in use */
1156 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count)
1157 ret = -EBUSY;
1158 else
1159 ret = __clk_set_parent(clk, parent);
1160
1161 /* propagate ABORT_RATE_CHANGE if .set_parent failed */
1162 if (ret) {
1163 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
1164 goto out;
1165 }
1166
1167 /* propagate rate recalculation downstream */
1168 __clk_reparent(clk, parent);
1169
1170 out:
1171 mutex_unlock(&prepare_lock);
1172
1173 return ret;
1174 }
1175 EXPORT_SYMBOL_GPL(clk_set_parent);
1176
1177 /**
1178 * __clk_init - initialize the data structures in a struct clk
1179 * @dev: device initializing this clk, placeholder for now
1180 * @clk: clk being initialized
1181 *
1182 * Initializes the lists in struct clk, queries the hardware for the
1183 * parent and rate and sets them both.
1184 *
1185 * Any struct clk passed into __clk_init must have the following members
1186 * populated:
1187 * .name
1188 * .ops
1189 * .hw
1190 * .parent_names
1191 * .num_parents
1192 * .flags
1193 *
1194 * Essentially, everything that would normally be passed into clk_register is
1195 * assumed to be initialized already in __clk_init. The other members may be
1196 * populated, but are optional.
1197 *
1198 * __clk_init is only exposed via clk-private.h and is intended for use with
1199 * very large numbers of clocks that need to be statically initialized. It is
1200 * a layering violation to include clk-private.h from any code which implements
1201 * a clock's .ops; as such any statically initialized clock data MUST be in a
1202 * separate C file from the logic that implements it's operations.
1203 */
__clk_init(struct device * dev,struct clk * clk)1204 void __clk_init(struct device *dev, struct clk *clk)
1205 {
1206 int i;
1207 struct clk *orphan;
1208 struct hlist_node *tmp, *tmp2;
1209
1210 if (!clk)
1211 return;
1212
1213 mutex_lock(&prepare_lock);
1214
1215 /* check to see if a clock with this name is already registered */
1216 if (__clk_lookup(clk->name))
1217 goto out;
1218
1219 /* throw a WARN if any entries in parent_names are NULL */
1220 for (i = 0; i < clk->num_parents; i++)
1221 WARN(!clk->parent_names[i],
1222 "%s: invalid NULL in %s's .parent_names\n",
1223 __func__, clk->name);
1224
1225 /*
1226 * Allocate an array of struct clk *'s to avoid unnecessary string
1227 * look-ups of clk's possible parents. This can fail for clocks passed
1228 * in to clk_init during early boot; thus any access to clk->parents[]
1229 * must always check for a NULL pointer and try to populate it if
1230 * necessary.
1231 *
1232 * If clk->parents is not NULL we skip this entire block. This allows
1233 * for clock drivers to statically initialize clk->parents.
1234 */
1235 if (clk->num_parents && !clk->parents) {
1236 clk->parents = kmalloc((sizeof(struct clk*) * clk->num_parents),
1237 GFP_KERNEL);
1238 /*
1239 * __clk_lookup returns NULL for parents that have not been
1240 * clk_init'd; thus any access to clk->parents[] must check
1241 * for a NULL pointer. We can always perform lazy lookups for
1242 * missing parents later on.
1243 */
1244 if (clk->parents)
1245 for (i = 0; i < clk->num_parents; i++)
1246 clk->parents[i] =
1247 __clk_lookup(clk->parent_names[i]);
1248 }
1249
1250 clk->parent = __clk_init_parent(clk);
1251
1252 /*
1253 * Populate clk->parent if parent has already been __clk_init'd. If
1254 * parent has not yet been __clk_init'd then place clk in the orphan
1255 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1256 * clk list.
1257 *
1258 * Every time a new clk is clk_init'd then we walk the list of orphan
1259 * clocks and re-parent any that are children of the clock currently
1260 * being clk_init'd.
1261 */
1262 if (clk->parent)
1263 hlist_add_head(&clk->child_node,
1264 &clk->parent->children);
1265 else if (clk->flags & CLK_IS_ROOT)
1266 hlist_add_head(&clk->child_node, &clk_root_list);
1267 else
1268 hlist_add_head(&clk->child_node, &clk_orphan_list);
1269
1270 /*
1271 * Set clk's rate. The preferred method is to use .recalc_rate. For
1272 * simple clocks and lazy developers the default fallback is to use the
1273 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1274 * then rate is set to zero.
1275 */
1276 if (clk->ops->recalc_rate)
1277 clk->rate = clk->ops->recalc_rate(clk->hw,
1278 __clk_get_rate(clk->parent));
1279 else if (clk->parent)
1280 clk->rate = clk->parent->rate;
1281 else
1282 clk->rate = 0;
1283
1284 /*
1285 * walk the list of orphan clocks and reparent any that are children of
1286 * this clock
1287 */
1288 hlist_for_each_entry_safe(orphan, tmp, tmp2, &clk_orphan_list, child_node)
1289 for (i = 0; i < orphan->num_parents; i++)
1290 if (!strcmp(clk->name, orphan->parent_names[i])) {
1291 __clk_reparent(orphan, clk);
1292 break;
1293 }
1294
1295 /*
1296 * optional platform-specific magic
1297 *
1298 * The .init callback is not used by any of the basic clock types, but
1299 * exists for weird hardware that must perform initialization magic.
1300 * Please consider other ways of solving initialization problems before
1301 * using this callback, as it's use is discouraged.
1302 */
1303 if (clk->ops->init)
1304 clk->ops->init(clk->hw);
1305
1306 clk_debug_register(clk);
1307
1308 out:
1309 mutex_unlock(&prepare_lock);
1310
1311 return;
1312 }
1313
1314 /**
1315 * clk_register - allocate a new clock, register it and return an opaque cookie
1316 * @dev: device that is registering this clock
1317 * @name: clock name
1318 * @ops: operations this clock supports
1319 * @hw: link to hardware-specific clock data
1320 * @parent_names: array of string names for all possible parents
1321 * @num_parents: number of possible parents
1322 * @flags: framework-level hints and quirks
1323 *
1324 * clk_register is the primary interface for populating the clock tree with new
1325 * clock nodes. It returns a pointer to the newly allocated struct clk which
1326 * cannot be dereferenced by driver code but may be used in conjuction with the
1327 * rest of the clock API.
1328 */
clk_register(struct device * dev,const char * name,const struct clk_ops * ops,struct clk_hw * hw,char ** parent_names,u8 num_parents,unsigned long flags)1329 struct clk *clk_register(struct device *dev, const char *name,
1330 const struct clk_ops *ops, struct clk_hw *hw,
1331 char **parent_names, u8 num_parents, unsigned long flags)
1332 {
1333 struct clk *clk;
1334
1335 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
1336 if (!clk)
1337 return NULL;
1338
1339 clk->name = name;
1340 clk->ops = ops;
1341 clk->hw = hw;
1342 clk->flags = flags;
1343 clk->parent_names = parent_names;
1344 clk->num_parents = num_parents;
1345 hw->clk = clk;
1346
1347 __clk_init(dev, clk);
1348
1349 return clk;
1350 }
1351 EXPORT_SYMBOL_GPL(clk_register);
1352
1353 /*** clk rate change notifiers ***/
1354
1355 /**
1356 * clk_notifier_register - add a clk rate change notifier
1357 * @clk: struct clk * to watch
1358 * @nb: struct notifier_block * with callback info
1359 *
1360 * Request notification when clk's rate changes. This uses an SRCU
1361 * notifier because we want it to block and notifier unregistrations are
1362 * uncommon. The callbacks associated with the notifier must not
1363 * re-enter into the clk framework by calling any top-level clk APIs;
1364 * this will cause a nested prepare_lock mutex.
1365 *
1366 * Pre-change notifier callbacks will be passed the current, pre-change
1367 * rate of the clk via struct clk_notifier_data.old_rate. The new,
1368 * post-change rate of the clk is passed via struct
1369 * clk_notifier_data.new_rate.
1370 *
1371 * Post-change notifiers will pass the now-current, post-change rate of
1372 * the clk in both struct clk_notifier_data.old_rate and struct
1373 * clk_notifier_data.new_rate.
1374 *
1375 * Abort-change notifiers are effectively the opposite of pre-change
1376 * notifiers: the original pre-change clk rate is passed in via struct
1377 * clk_notifier_data.new_rate and the failed post-change rate is passed
1378 * in via struct clk_notifier_data.old_rate.
1379 *
1380 * clk_notifier_register() must be called from non-atomic context.
1381 * Returns -EINVAL if called with null arguments, -ENOMEM upon
1382 * allocation failure; otherwise, passes along the return value of
1383 * srcu_notifier_chain_register().
1384 */
clk_notifier_register(struct clk * clk,struct notifier_block * nb)1385 int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
1386 {
1387 struct clk_notifier *cn;
1388 int ret = -ENOMEM;
1389
1390 if (!clk || !nb)
1391 return -EINVAL;
1392
1393 mutex_lock(&prepare_lock);
1394
1395 /* search the list of notifiers for this clk */
1396 list_for_each_entry(cn, &clk_notifier_list, node)
1397 if (cn->clk == clk)
1398 break;
1399
1400 /* if clk wasn't in the notifier list, allocate new clk_notifier */
1401 if (cn->clk != clk) {
1402 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
1403 if (!cn)
1404 goto out;
1405
1406 cn->clk = clk;
1407 srcu_init_notifier_head(&cn->notifier_head);
1408
1409 list_add(&cn->node, &clk_notifier_list);
1410 }
1411
1412 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
1413
1414 clk->notifier_count++;
1415
1416 out:
1417 mutex_unlock(&prepare_lock);
1418
1419 return ret;
1420 }
1421 EXPORT_SYMBOL_GPL(clk_notifier_register);
1422
1423 /**
1424 * clk_notifier_unregister - remove a clk rate change notifier
1425 * @clk: struct clk *
1426 * @nb: struct notifier_block * with callback info
1427 *
1428 * Request no further notification for changes to 'clk' and frees memory
1429 * allocated in clk_notifier_register.
1430 *
1431 * Returns -EINVAL if called with null arguments; otherwise, passes
1432 * along the return value of srcu_notifier_chain_unregister().
1433 */
clk_notifier_unregister(struct clk * clk,struct notifier_block * nb)1434 int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
1435 {
1436 struct clk_notifier *cn = NULL;
1437 int ret = -EINVAL;
1438
1439 if (!clk || !nb)
1440 return -EINVAL;
1441
1442 mutex_lock(&prepare_lock);
1443
1444 list_for_each_entry(cn, &clk_notifier_list, node)
1445 if (cn->clk == clk)
1446 break;
1447
1448 if (cn->clk == clk) {
1449 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
1450
1451 clk->notifier_count--;
1452
1453 /* XXX the notifier code should handle this better */
1454 if (!cn->notifier_head.head) {
1455 srcu_cleanup_notifier_head(&cn->notifier_head);
1456 list_del(&cn->node);
1457 kfree(cn);
1458 }
1459
1460 } else {
1461 ret = -ENOENT;
1462 }
1463
1464 mutex_unlock(&prepare_lock);
1465
1466 return ret;
1467 }
1468 EXPORT_SYMBOL_GPL(clk_notifier_unregister);
1469