blob: f33f1ccf1b2f22ba51823aaa5f0395a14b84ad39 [file] [log] [blame]
Mike Turquetteb24764902012-03-15 23:11:19 -07001/*
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>
Grant Likely766e6a42012-04-09 14:50:06 -050019#include <linux/of.h>
Stephen Boyd46c87732012-09-24 13:38:04 -070020#include <linux/device.h>
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +053021#include <linux/init.h>
Mike Turquette533ddeb2013-03-28 13:59:02 -070022#include <linux/sched.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070023
24static DEFINE_SPINLOCK(enable_lock);
25static DEFINE_MUTEX(prepare_lock);
26
Mike Turquette533ddeb2013-03-28 13:59:02 -070027static struct task_struct *prepare_owner;
28static struct task_struct *enable_owner;
29
30static int prepare_refcnt;
31static int enable_refcnt;
32
Mike Turquetteb24764902012-03-15 23:11:19 -070033static HLIST_HEAD(clk_root_list);
34static HLIST_HEAD(clk_orphan_list);
35static LIST_HEAD(clk_notifier_list);
36
Mike Turquetteeab89f62013-03-28 13:59:01 -070037/*** locking ***/
38static void clk_prepare_lock(void)
39{
Mike Turquette533ddeb2013-03-28 13:59:02 -070040 if (!mutex_trylock(&prepare_lock)) {
41 if (prepare_owner == current) {
42 prepare_refcnt++;
43 return;
44 }
45 mutex_lock(&prepare_lock);
46 }
47 WARN_ON_ONCE(prepare_owner != NULL);
48 WARN_ON_ONCE(prepare_refcnt != 0);
49 prepare_owner = current;
50 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -070051}
52
53static void clk_prepare_unlock(void)
54{
Mike Turquette533ddeb2013-03-28 13:59:02 -070055 WARN_ON_ONCE(prepare_owner != current);
56 WARN_ON_ONCE(prepare_refcnt == 0);
57
58 if (--prepare_refcnt)
59 return;
60 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -070061 mutex_unlock(&prepare_lock);
62}
63
64static unsigned long clk_enable_lock(void)
65{
66 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -070067
68 if (!spin_trylock_irqsave(&enable_lock, flags)) {
69 if (enable_owner == current) {
70 enable_refcnt++;
71 return flags;
72 }
73 spin_lock_irqsave(&enable_lock, flags);
74 }
75 WARN_ON_ONCE(enable_owner != NULL);
76 WARN_ON_ONCE(enable_refcnt != 0);
77 enable_owner = current;
78 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -070079 return flags;
80}
81
82static void clk_enable_unlock(unsigned long flags)
83{
Mike Turquette533ddeb2013-03-28 13:59:02 -070084 WARN_ON_ONCE(enable_owner != current);
85 WARN_ON_ONCE(enable_refcnt == 0);
86
87 if (--enable_refcnt)
88 return;
89 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -070090 spin_unlock_irqrestore(&enable_lock, flags);
91}
92
Mike Turquetteb24764902012-03-15 23:11:19 -070093/*** debugfs support ***/
94
95#ifdef CONFIG_COMMON_CLK_DEBUG
96#include <linux/debugfs.h>
97
98static struct dentry *rootdir;
99static struct dentry *orphandir;
100static int inited = 0;
101
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530102static void clk_summary_show_one(struct seq_file *s, struct clk *c, int level)
103{
104 if (!c)
105 return;
106
107 seq_printf(s, "%*s%-*s %-11d %-12d %-10lu",
108 level * 3 + 1, "",
109 30 - level * 3, c->name,
Peter De Schrijver670decd2013-06-05 18:06:35 +0300110 c->enable_count, c->prepare_count, clk_get_rate(c));
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530111 seq_printf(s, "\n");
112}
113
114static void clk_summary_show_subtree(struct seq_file *s, struct clk *c,
115 int level)
116{
117 struct clk *child;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530118
119 if (!c)
120 return;
121
122 clk_summary_show_one(s, c, level);
123
Sasha Levinb67bfe02013-02-27 17:06:00 -0800124 hlist_for_each_entry(child, &c->children, child_node)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530125 clk_summary_show_subtree(s, child, level + 1);
126}
127
128static int clk_summary_show(struct seq_file *s, void *data)
129{
130 struct clk *c;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530131
132 seq_printf(s, " clock enable_cnt prepare_cnt rate\n");
133 seq_printf(s, "---------------------------------------------------------------------\n");
134
Mike Turquetteeab89f62013-03-28 13:59:01 -0700135 clk_prepare_lock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530136
Sasha Levinb67bfe02013-02-27 17:06:00 -0800137 hlist_for_each_entry(c, &clk_root_list, child_node)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530138 clk_summary_show_subtree(s, c, 0);
139
Sasha Levinb67bfe02013-02-27 17:06:00 -0800140 hlist_for_each_entry(c, &clk_orphan_list, child_node)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530141 clk_summary_show_subtree(s, c, 0);
142
Mike Turquetteeab89f62013-03-28 13:59:01 -0700143 clk_prepare_unlock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530144
145 return 0;
146}
147
148
149static int clk_summary_open(struct inode *inode, struct file *file)
150{
151 return single_open(file, clk_summary_show, inode->i_private);
152}
153
154static const struct file_operations clk_summary_fops = {
155 .open = clk_summary_open,
156 .read = seq_read,
157 .llseek = seq_lseek,
158 .release = single_release,
159};
160
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530161static void clk_dump_one(struct seq_file *s, struct clk *c, int level)
162{
163 if (!c)
164 return;
165
166 seq_printf(s, "\"%s\": { ", c->name);
167 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
168 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Peter De Schrijver670decd2013-06-05 18:06:35 +0300169 seq_printf(s, "\"rate\": %lu", clk_get_rate(c));
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530170}
171
172static void clk_dump_subtree(struct seq_file *s, struct clk *c, int level)
173{
174 struct clk *child;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530175
176 if (!c)
177 return;
178
179 clk_dump_one(s, c, level);
180
Sasha Levinb67bfe02013-02-27 17:06:00 -0800181 hlist_for_each_entry(child, &c->children, child_node) {
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530182 seq_printf(s, ",");
183 clk_dump_subtree(s, child, level + 1);
184 }
185
186 seq_printf(s, "}");
187}
188
189static int clk_dump(struct seq_file *s, void *data)
190{
191 struct clk *c;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530192 bool first_node = true;
193
194 seq_printf(s, "{");
195
Mike Turquetteeab89f62013-03-28 13:59:01 -0700196 clk_prepare_lock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530197
Sasha Levinb67bfe02013-02-27 17:06:00 -0800198 hlist_for_each_entry(c, &clk_root_list, child_node) {
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530199 if (!first_node)
200 seq_printf(s, ",");
201 first_node = false;
202 clk_dump_subtree(s, c, 0);
203 }
204
Sasha Levinb67bfe02013-02-27 17:06:00 -0800205 hlist_for_each_entry(c, &clk_orphan_list, child_node) {
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530206 seq_printf(s, ",");
207 clk_dump_subtree(s, c, 0);
208 }
209
Mike Turquetteeab89f62013-03-28 13:59:01 -0700210 clk_prepare_unlock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530211
212 seq_printf(s, "}");
213 return 0;
214}
215
216
217static int clk_dump_open(struct inode *inode, struct file *file)
218{
219 return single_open(file, clk_dump, inode->i_private);
220}
221
222static const struct file_operations clk_dump_fops = {
223 .open = clk_dump_open,
224 .read = seq_read,
225 .llseek = seq_lseek,
226 .release = single_release,
227};
228
Mike Turquetteb24764902012-03-15 23:11:19 -0700229/* caller must hold prepare_lock */
230static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
231{
232 struct dentry *d;
233 int ret = -ENOMEM;
234
235 if (!clk || !pdentry) {
236 ret = -EINVAL;
237 goto out;
238 }
239
240 d = debugfs_create_dir(clk->name, pdentry);
241 if (!d)
242 goto out;
243
244 clk->dentry = d;
245
246 d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
247 (u32 *)&clk->rate);
248 if (!d)
249 goto err_out;
250
251 d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
252 (u32 *)&clk->flags);
253 if (!d)
254 goto err_out;
255
256 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
257 (u32 *)&clk->prepare_count);
258 if (!d)
259 goto err_out;
260
261 d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
262 (u32 *)&clk->enable_count);
263 if (!d)
264 goto err_out;
265
266 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
267 (u32 *)&clk->notifier_count);
268 if (!d)
269 goto err_out;
270
271 ret = 0;
272 goto out;
273
274err_out:
275 debugfs_remove(clk->dentry);
276out:
277 return ret;
278}
279
280/* caller must hold prepare_lock */
281static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry)
282{
283 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700284 int ret = -EINVAL;;
285
286 if (!clk || !pdentry)
287 goto out;
288
289 ret = clk_debug_create_one(clk, pdentry);
290
291 if (ret)
292 goto out;
293
Sasha Levinb67bfe02013-02-27 17:06:00 -0800294 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700295 clk_debug_create_subtree(child, clk->dentry);
296
297 ret = 0;
298out:
299 return ret;
300}
301
302/**
303 * clk_debug_register - add a clk node to the debugfs clk tree
304 * @clk: the clk being added to the debugfs clk tree
305 *
306 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
307 * initialized. Otherwise it bails out early since the debugfs clk tree
308 * will be created lazily by clk_debug_init as part of a late_initcall.
309 *
310 * Caller must hold prepare_lock. Only clk_init calls this function (so
311 * far) so this is taken care.
312 */
313static int clk_debug_register(struct clk *clk)
314{
315 struct clk *parent;
316 struct dentry *pdentry;
317 int ret = 0;
318
319 if (!inited)
320 goto out;
321
322 parent = clk->parent;
323
324 /*
325 * Check to see if a clk is a root clk. Also check that it is
326 * safe to add this clk to debugfs
327 */
328 if (!parent)
329 if (clk->flags & CLK_IS_ROOT)
330 pdentry = rootdir;
331 else
332 pdentry = orphandir;
333 else
334 if (parent->dentry)
335 pdentry = parent->dentry;
336 else
337 goto out;
338
339 ret = clk_debug_create_subtree(clk, pdentry);
340
341out:
342 return ret;
343}
344
345/**
Ulf Hanssonb33d2122013-04-02 23:09:37 +0200346 * clk_debug_reparent - reparent clk node in the debugfs clk tree
347 * @clk: the clk being reparented
348 * @new_parent: the new clk parent, may be NULL
349 *
350 * Rename clk entry in the debugfs clk tree if debugfs has been
351 * initialized. Otherwise it bails out early since the debugfs clk tree
352 * will be created lazily by clk_debug_init as part of a late_initcall.
353 *
354 * Caller must hold prepare_lock.
355 */
356static void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
357{
358 struct dentry *d;
359 struct dentry *new_parent_d;
360
361 if (!inited)
362 return;
363
364 if (new_parent)
365 new_parent_d = new_parent->dentry;
366 else
367 new_parent_d = orphandir;
368
369 d = debugfs_rename(clk->dentry->d_parent, clk->dentry,
370 new_parent_d, clk->name);
371 if (d)
372 clk->dentry = d;
373 else
374 pr_debug("%s: failed to rename debugfs entry for %s\n",
375 __func__, clk->name);
376}
377
378/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700379 * clk_debug_init - lazily create the debugfs clk tree visualization
380 *
381 * clks are often initialized very early during boot before memory can
382 * be dynamically allocated and well before debugfs is setup.
383 * clk_debug_init walks the clk tree hierarchy while holding
384 * prepare_lock and creates the topology as part of a late_initcall,
385 * thus insuring that clks initialized very early will still be
386 * represented in the debugfs clk tree. This function should only be
387 * called once at boot-time, and all other clks added dynamically will
388 * be done so with clk_debug_register.
389 */
390static int __init clk_debug_init(void)
391{
392 struct clk *clk;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530393 struct dentry *d;
Mike Turquetteb24764902012-03-15 23:11:19 -0700394
395 rootdir = debugfs_create_dir("clk", NULL);
396
397 if (!rootdir)
398 return -ENOMEM;
399
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530400 d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, NULL,
401 &clk_summary_fops);
402 if (!d)
403 return -ENOMEM;
404
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530405 d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, NULL,
406 &clk_dump_fops);
407 if (!d)
408 return -ENOMEM;
409
Mike Turquetteb24764902012-03-15 23:11:19 -0700410 orphandir = debugfs_create_dir("orphans", rootdir);
411
412 if (!orphandir)
413 return -ENOMEM;
414
Mike Turquetteeab89f62013-03-28 13:59:01 -0700415 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700416
Sasha Levinb67bfe02013-02-27 17:06:00 -0800417 hlist_for_each_entry(clk, &clk_root_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700418 clk_debug_create_subtree(clk, rootdir);
419
Sasha Levinb67bfe02013-02-27 17:06:00 -0800420 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700421 clk_debug_create_subtree(clk, orphandir);
422
423 inited = 1;
424
Mike Turquetteeab89f62013-03-28 13:59:01 -0700425 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700426
427 return 0;
428}
429late_initcall(clk_debug_init);
430#else
431static inline int clk_debug_register(struct clk *clk) { return 0; }
Ulf Hanssonb33d2122013-04-02 23:09:37 +0200432static inline void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
433{
434}
Mike Turquette70d347e2012-03-26 11:53:47 -0700435#endif
Mike Turquetteb24764902012-03-15 23:11:19 -0700436
Mike Turquetteb24764902012-03-15 23:11:19 -0700437/* caller must hold prepare_lock */
Ulf Hansson1c155b32013-03-12 20:26:03 +0100438static void clk_unprepare_unused_subtree(struct clk *clk)
439{
440 struct clk *child;
441
442 if (!clk)
443 return;
444
445 hlist_for_each_entry(child, &clk->children, child_node)
446 clk_unprepare_unused_subtree(child);
447
448 if (clk->prepare_count)
449 return;
450
451 if (clk->flags & CLK_IGNORE_UNUSED)
452 return;
453
Ulf Hansson3cc82472013-03-12 20:26:04 +0100454 if (__clk_is_prepared(clk)) {
455 if (clk->ops->unprepare_unused)
456 clk->ops->unprepare_unused(clk->hw);
457 else if (clk->ops->unprepare)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100458 clk->ops->unprepare(clk->hw);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100459 }
Ulf Hansson1c155b32013-03-12 20:26:03 +0100460}
Sebastian Hesselbarth496620c2013-04-15 08:59:46 +0200461EXPORT_SYMBOL_GPL(__clk_get_flags);
Ulf Hansson1c155b32013-03-12 20:26:03 +0100462
463/* caller must hold prepare_lock */
Mike Turquetteb24764902012-03-15 23:11:19 -0700464static void clk_disable_unused_subtree(struct clk *clk)
465{
466 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700467 unsigned long flags;
468
469 if (!clk)
470 goto out;
471
Sasha Levinb67bfe02013-02-27 17:06:00 -0800472 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700473 clk_disable_unused_subtree(child);
474
Mike Turquetteeab89f62013-03-28 13:59:01 -0700475 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700476
477 if (clk->enable_count)
478 goto unlock_out;
479
480 if (clk->flags & CLK_IGNORE_UNUSED)
481 goto unlock_out;
482
Mike Turquette7c045a52012-12-04 11:00:35 -0800483 /*
484 * some gate clocks have special needs during the disable-unused
485 * sequence. call .disable_unused if available, otherwise fall
486 * back to .disable
487 */
488 if (__clk_is_enabled(clk)) {
489 if (clk->ops->disable_unused)
490 clk->ops->disable_unused(clk->hw);
491 else if (clk->ops->disable)
492 clk->ops->disable(clk->hw);
493 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700494
495unlock_out:
Mike Turquetteeab89f62013-03-28 13:59:01 -0700496 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700497
498out:
499 return;
500}
501
Olof Johansson1e435252013-04-27 14:10:18 -0700502static bool clk_ignore_unused;
503static int __init clk_ignore_unused_setup(char *__unused)
504{
505 clk_ignore_unused = true;
506 return 1;
507}
508__setup("clk_ignore_unused", clk_ignore_unused_setup);
509
Mike Turquetteb24764902012-03-15 23:11:19 -0700510static int clk_disable_unused(void)
511{
512 struct clk *clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700513
Olof Johansson1e435252013-04-27 14:10:18 -0700514 if (clk_ignore_unused) {
515 pr_warn("clk: Not disabling unused clocks\n");
516 return 0;
517 }
518
Mike Turquetteeab89f62013-03-28 13:59:01 -0700519 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700520
Sasha Levinb67bfe02013-02-27 17:06:00 -0800521 hlist_for_each_entry(clk, &clk_root_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700522 clk_disable_unused_subtree(clk);
523
Sasha Levinb67bfe02013-02-27 17:06:00 -0800524 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700525 clk_disable_unused_subtree(clk);
526
Ulf Hansson1c155b32013-03-12 20:26:03 +0100527 hlist_for_each_entry(clk, &clk_root_list, child_node)
528 clk_unprepare_unused_subtree(clk);
529
530 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
531 clk_unprepare_unused_subtree(clk);
532
Mike Turquetteeab89f62013-03-28 13:59:01 -0700533 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700534
535 return 0;
536}
Saravana Kannand41d5802013-05-09 11:35:01 -0700537late_initcall_sync(clk_disable_unused);
Mike Turquetteb24764902012-03-15 23:11:19 -0700538
539/*** helper functions ***/
540
Russ Dill65800b22012-11-26 11:20:09 -0800541const char *__clk_get_name(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700542{
543 return !clk ? NULL : clk->name;
544}
Niels de Vos48950842012-12-13 13:12:25 +0100545EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700546
Russ Dill65800b22012-11-26 11:20:09 -0800547struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700548{
549 return !clk ? NULL : clk->hw;
550}
551
Russ Dill65800b22012-11-26 11:20:09 -0800552u8 __clk_get_num_parents(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700553{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700554 return !clk ? 0 : clk->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -0700555}
556
Russ Dill65800b22012-11-26 11:20:09 -0800557struct clk *__clk_get_parent(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700558{
559 return !clk ? NULL : clk->parent;
560}
561
James Hogan7ef3dcc2013-07-29 12:24:58 +0100562struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
563{
564 if (!clk || index >= clk->num_parents)
565 return NULL;
566 else if (!clk->parents)
567 return __clk_lookup(clk->parent_names[index]);
568 else if (!clk->parents[index])
569 return clk->parents[index] =
570 __clk_lookup(clk->parent_names[index]);
571 else
572 return clk->parents[index];
573}
574
Russ Dill65800b22012-11-26 11:20:09 -0800575unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700576{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700577 return !clk ? 0 : clk->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700578}
579
Russ Dill65800b22012-11-26 11:20:09 -0800580unsigned int __clk_get_prepare_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700581{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700582 return !clk ? 0 : clk->prepare_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700583}
584
585unsigned long __clk_get_rate(struct clk *clk)
586{
587 unsigned long ret;
588
589 if (!clk) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530590 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700591 goto out;
592 }
593
594 ret = clk->rate;
595
596 if (clk->flags & CLK_IS_ROOT)
597 goto out;
598
599 if (!clk->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530600 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700601
602out:
603 return ret;
604}
605
Russ Dill65800b22012-11-26 11:20:09 -0800606unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700607{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700608 return !clk ? 0 : clk->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700609}
610
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100611bool __clk_is_prepared(struct clk *clk)
612{
613 int ret;
614
615 if (!clk)
616 return false;
617
618 /*
619 * .is_prepared is optional for clocks that can prepare
620 * fall back to software usage counter if it is missing
621 */
622 if (!clk->ops->is_prepared) {
623 ret = clk->prepare_count ? 1 : 0;
624 goto out;
625 }
626
627 ret = clk->ops->is_prepared(clk->hw);
628out:
629 return !!ret;
630}
631
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700632bool __clk_is_enabled(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700633{
634 int ret;
635
636 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700637 return false;
Mike Turquetteb24764902012-03-15 23:11:19 -0700638
639 /*
640 * .is_enabled is only mandatory for clocks that gate
641 * fall back to software usage counter if .is_enabled is missing
642 */
643 if (!clk->ops->is_enabled) {
644 ret = clk->enable_count ? 1 : 0;
645 goto out;
646 }
647
648 ret = clk->ops->is_enabled(clk->hw);
649out:
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700650 return !!ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700651}
652
653static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
654{
655 struct clk *child;
656 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700657
658 if (!strcmp(clk->name, name))
659 return clk;
660
Sasha Levinb67bfe02013-02-27 17:06:00 -0800661 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700662 ret = __clk_lookup_subtree(name, child);
663 if (ret)
664 return ret;
665 }
666
667 return NULL;
668}
669
670struct clk *__clk_lookup(const char *name)
671{
672 struct clk *root_clk;
673 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700674
675 if (!name)
676 return NULL;
677
678 /* search the 'proper' clk tree first */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800679 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700680 ret = __clk_lookup_subtree(name, root_clk);
681 if (ret)
682 return ret;
683 }
684
685 /* if not found, then search the orphan tree */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800686 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700687 ret = __clk_lookup_subtree(name, root_clk);
688 if (ret)
689 return ret;
690 }
691
692 return NULL;
693}
694
695/*** clk api ***/
696
697void __clk_unprepare(struct clk *clk)
698{
699 if (!clk)
700 return;
701
702 if (WARN_ON(clk->prepare_count == 0))
703 return;
704
705 if (--clk->prepare_count > 0)
706 return;
707
708 WARN_ON(clk->enable_count > 0);
709
710 if (clk->ops->unprepare)
711 clk->ops->unprepare(clk->hw);
712
713 __clk_unprepare(clk->parent);
714}
715
716/**
717 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200718 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700719 *
720 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
721 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
722 * if the operation may sleep. One example is a clk which is accessed over
723 * I2c. In the complex case a clk gate operation may require a fast and a slow
724 * part. It is this reason that clk_unprepare and clk_disable are not mutually
725 * exclusive. In fact clk_disable must be called before clk_unprepare.
726 */
727void clk_unprepare(struct clk *clk)
728{
Mike Turquetteeab89f62013-03-28 13:59:01 -0700729 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700730 __clk_unprepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700731 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700732}
733EXPORT_SYMBOL_GPL(clk_unprepare);
734
735int __clk_prepare(struct clk *clk)
736{
737 int ret = 0;
738
739 if (!clk)
740 return 0;
741
742 if (clk->prepare_count == 0) {
743 ret = __clk_prepare(clk->parent);
744 if (ret)
745 return ret;
746
747 if (clk->ops->prepare) {
748 ret = clk->ops->prepare(clk->hw);
749 if (ret) {
750 __clk_unprepare(clk->parent);
751 return ret;
752 }
753 }
754 }
755
756 clk->prepare_count++;
757
758 return 0;
759}
760
761/**
762 * clk_prepare - prepare a clock source
763 * @clk: the clk being prepared
764 *
765 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
766 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
767 * operation may sleep. One example is a clk which is accessed over I2c. In
768 * the complex case a clk ungate operation may require a fast and a slow part.
769 * It is this reason that clk_prepare and clk_enable are not mutually
770 * exclusive. In fact clk_prepare must be called before clk_enable.
771 * Returns 0 on success, -EERROR otherwise.
772 */
773int clk_prepare(struct clk *clk)
774{
775 int ret;
776
Mike Turquetteeab89f62013-03-28 13:59:01 -0700777 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700778 ret = __clk_prepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700779 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700780
781 return ret;
782}
783EXPORT_SYMBOL_GPL(clk_prepare);
784
785static void __clk_disable(struct clk *clk)
786{
787 if (!clk)
788 return;
789
Fengguang Wue47c6a32012-07-30 14:39:54 -0700790 if (WARN_ON(IS_ERR(clk)))
791 return;
792
Mike Turquetteb24764902012-03-15 23:11:19 -0700793 if (WARN_ON(clk->enable_count == 0))
794 return;
795
796 if (--clk->enable_count > 0)
797 return;
798
799 if (clk->ops->disable)
800 clk->ops->disable(clk->hw);
801
802 __clk_disable(clk->parent);
803}
804
805/**
806 * clk_disable - gate a clock
807 * @clk: the clk being gated
808 *
809 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
810 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
811 * clk if the operation is fast and will never sleep. One example is a
812 * SoC-internal clk which is controlled via simple register writes. In the
813 * complex case a clk gate operation may require a fast and a slow part. It is
814 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
815 * In fact clk_disable must be called before clk_unprepare.
816 */
817void clk_disable(struct clk *clk)
818{
819 unsigned long flags;
820
Mike Turquetteeab89f62013-03-28 13:59:01 -0700821 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700822 __clk_disable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700823 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700824}
825EXPORT_SYMBOL_GPL(clk_disable);
826
827static int __clk_enable(struct clk *clk)
828{
829 int ret = 0;
830
831 if (!clk)
832 return 0;
833
834 if (WARN_ON(clk->prepare_count == 0))
835 return -ESHUTDOWN;
836
837 if (clk->enable_count == 0) {
838 ret = __clk_enable(clk->parent);
839
840 if (ret)
841 return ret;
842
843 if (clk->ops->enable) {
844 ret = clk->ops->enable(clk->hw);
845 if (ret) {
846 __clk_disable(clk->parent);
847 return ret;
848 }
849 }
850 }
851
852 clk->enable_count++;
853 return 0;
854}
855
856/**
857 * clk_enable - ungate a clock
858 * @clk: the clk being ungated
859 *
860 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
861 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
862 * if the operation will never sleep. One example is a SoC-internal clk which
863 * is controlled via simple register writes. In the complex case a clk ungate
864 * operation may require a fast and a slow part. It is this reason that
865 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
866 * must be called before clk_enable. Returns 0 on success, -EERROR
867 * otherwise.
868 */
869int clk_enable(struct clk *clk)
870{
871 unsigned long flags;
872 int ret;
873
Mike Turquetteeab89f62013-03-28 13:59:01 -0700874 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700875 ret = __clk_enable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700876 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700877
878 return ret;
879}
880EXPORT_SYMBOL_GPL(clk_enable);
881
882/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700883 * __clk_round_rate - round the given rate for a clk
884 * @clk: round the rate of this clock
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200885 * @rate: the rate which is to be rounded
Mike Turquetteb24764902012-03-15 23:11:19 -0700886 *
887 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
888 */
889unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
890{
Shawn Guo81536e02012-04-12 20:50:17 +0800891 unsigned long parent_rate = 0;
James Hogan71472c02013-07-29 12:25:00 +0100892 struct clk *parent;
Mike Turquetteb24764902012-03-15 23:11:19 -0700893
894 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700895 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700896
James Hogan71472c02013-07-29 12:25:00 +0100897 parent = clk->parent;
898 if (parent)
899 parent_rate = parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700900
James Hogan71472c02013-07-29 12:25:00 +0100901 if (clk->ops->determine_rate)
902 return clk->ops->determine_rate(clk->hw, rate, &parent_rate,
903 &parent);
904 else if (clk->ops->round_rate)
905 return clk->ops->round_rate(clk->hw, rate, &parent_rate);
906 else if (clk->flags & CLK_SET_RATE_PARENT)
907 return __clk_round_rate(clk->parent, rate);
908 else
909 return clk->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700910}
911
912/**
913 * clk_round_rate - round the given rate for a clk
914 * @clk: the clk for which we are rounding a rate
915 * @rate: the rate which is to be rounded
916 *
917 * Takes in a rate as input and rounds it to a rate that the clk can actually
918 * use which is then returned. If clk doesn't support round_rate operation
919 * then the parent rate is returned.
920 */
921long clk_round_rate(struct clk *clk, unsigned long rate)
922{
923 unsigned long ret;
924
Mike Turquetteeab89f62013-03-28 13:59:01 -0700925 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700926 ret = __clk_round_rate(clk, rate);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700927 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700928
929 return ret;
930}
931EXPORT_SYMBOL_GPL(clk_round_rate);
932
933/**
934 * __clk_notify - call clk notifier chain
935 * @clk: struct clk * that is changing rate
936 * @msg: clk notifier type (see include/linux/clk.h)
937 * @old_rate: old clk rate
938 * @new_rate: new clk rate
939 *
940 * Triggers a notifier call chain on the clk rate-change notification
941 * for 'clk'. Passes a pointer to the struct clk and the previous
942 * and current rates to the notifier callback. Intended to be called by
943 * internal clock code only. Returns NOTIFY_DONE from the last driver
944 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
945 * a driver returns that.
946 */
947static int __clk_notify(struct clk *clk, unsigned long msg,
948 unsigned long old_rate, unsigned long new_rate)
949{
950 struct clk_notifier *cn;
951 struct clk_notifier_data cnd;
952 int ret = NOTIFY_DONE;
953
954 cnd.clk = clk;
955 cnd.old_rate = old_rate;
956 cnd.new_rate = new_rate;
957
958 list_for_each_entry(cn, &clk_notifier_list, node) {
959 if (cn->clk == clk) {
960 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
961 &cnd);
962 break;
963 }
964 }
965
966 return ret;
967}
968
969/**
970 * __clk_recalc_rates
971 * @clk: first clk in the subtree
972 * @msg: notification type (see include/linux/clk.h)
973 *
974 * Walks the subtree of clks starting with clk and recalculates rates as it
975 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200976 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -0700977 *
978 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
979 * if necessary.
980 *
981 * Caller must hold prepare_lock.
982 */
983static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
984{
985 unsigned long old_rate;
986 unsigned long parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700987 struct clk *child;
988
989 old_rate = clk->rate;
990
991 if (clk->parent)
992 parent_rate = clk->parent->rate;
993
994 if (clk->ops->recalc_rate)
995 clk->rate = clk->ops->recalc_rate(clk->hw, parent_rate);
996 else
997 clk->rate = parent_rate;
998
999 /*
1000 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1001 * & ABORT_RATE_CHANGE notifiers
1002 */
1003 if (clk->notifier_count && msg)
1004 __clk_notify(clk, msg, old_rate, clk->rate);
1005
Sasha Levinb67bfe02013-02-27 17:06:00 -08001006 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001007 __clk_recalc_rates(child, msg);
1008}
1009
1010/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001011 * clk_get_rate - return the rate of clk
1012 * @clk: the clk whose rate is being returned
1013 *
1014 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1015 * is set, which means a recalc_rate will be issued.
1016 * If clk is NULL then returns 0.
1017 */
1018unsigned long clk_get_rate(struct clk *clk)
1019{
1020 unsigned long rate;
1021
Mike Turquetteeab89f62013-03-28 13:59:01 -07001022 clk_prepare_lock();
Ulf Hanssona093bde2012-08-31 14:21:28 +02001023
1024 if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
1025 __clk_recalc_rates(clk, 0);
1026
1027 rate = __clk_get_rate(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001028 clk_prepare_unlock();
Ulf Hanssona093bde2012-08-31 14:21:28 +02001029
1030 return rate;
1031}
1032EXPORT_SYMBOL_GPL(clk_get_rate);
1033
James Hogan4935b222013-07-29 12:24:59 +01001034static u8 clk_fetch_parent_index(struct clk *clk, struct clk *parent)
1035{
1036 u8 i;
1037
1038 if (!clk->parents)
1039 clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
1040 GFP_KERNEL);
1041
1042 /*
1043 * find index of new parent clock using cached parent ptrs,
1044 * or if not yet cached, use string name comparison and cache
1045 * them now to avoid future calls to __clk_lookup.
1046 */
1047 for (i = 0; i < clk->num_parents; i++) {
1048 if (clk->parents && clk->parents[i] == parent)
1049 break;
1050 else if (!strcmp(clk->parent_names[i], parent->name)) {
1051 if (clk->parents)
1052 clk->parents[i] = __clk_lookup(parent->name);
1053 break;
1054 }
1055 }
1056
1057 return i;
1058}
1059
1060static void clk_reparent(struct clk *clk, struct clk *new_parent)
1061{
James Hogan71472c02013-07-29 12:25:00 +01001062 /* avoid duplicate POST_RATE_CHANGE notifications */
1063 if (new_parent->new_child == clk)
1064 new_parent->new_child = NULL;
1065
James Hogan4935b222013-07-29 12:24:59 +01001066 hlist_del(&clk->child_node);
1067
1068 if (new_parent)
1069 hlist_add_head(&clk->child_node, &new_parent->children);
1070 else
1071 hlist_add_head(&clk->child_node, &clk_orphan_list);
1072
1073 clk->parent = new_parent;
1074}
1075
1076static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index)
1077{
1078 unsigned long flags;
1079 int ret = 0;
1080 struct clk *old_parent = clk->parent;
1081
1082 /*
1083 * Migrate prepare state between parents and prevent race with
1084 * clk_enable().
1085 *
1086 * If the clock is not prepared, then a race with
1087 * clk_enable/disable() is impossible since we already have the
1088 * prepare lock (future calls to clk_enable() need to be preceded by
1089 * a clk_prepare()).
1090 *
1091 * If the clock is prepared, migrate the prepared state to the new
1092 * parent and also protect against a race with clk_enable() by
1093 * forcing the clock and the new parent on. This ensures that all
1094 * future calls to clk_enable() are practically NOPs with respect to
1095 * hardware and software states.
1096 *
1097 * See also: Comment for clk_set_parent() below.
1098 */
1099 if (clk->prepare_count) {
1100 __clk_prepare(parent);
1101 clk_enable(parent);
1102 clk_enable(clk);
1103 }
1104
1105 /* update the clk tree topology */
1106 flags = clk_enable_lock();
1107 clk_reparent(clk, parent);
1108 clk_enable_unlock(flags);
1109
1110 /* change clock input source */
1111 if (parent && clk->ops->set_parent)
1112 ret = clk->ops->set_parent(clk->hw, p_index);
1113
1114 if (ret) {
1115 flags = clk_enable_lock();
1116 clk_reparent(clk, old_parent);
1117 clk_enable_unlock(flags);
1118
1119 if (clk->prepare_count) {
1120 clk_disable(clk);
1121 clk_disable(parent);
1122 __clk_unprepare(parent);
1123 }
1124 return ret;
1125 }
1126
1127 /*
1128 * Finish the migration of prepare state and undo the changes done
1129 * for preventing a race with clk_enable().
1130 */
1131 if (clk->prepare_count) {
1132 clk_disable(clk);
1133 clk_disable(old_parent);
1134 __clk_unprepare(old_parent);
1135 }
1136
1137 /* update debugfs with new clk tree topology */
1138 clk_debug_reparent(clk, parent);
1139 return 0;
1140}
1141
Ulf Hanssona093bde2012-08-31 14:21:28 +02001142/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001143 * __clk_speculate_rates
1144 * @clk: first clk in the subtree
1145 * @parent_rate: the "future" rate of clk's parent
1146 *
1147 * Walks the subtree of clks starting with clk, speculating rates as it
1148 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1149 *
1150 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1151 * pre-rate change notifications and returns early if no clks in the
1152 * subtree have subscribed to the notifications. Note that if a clk does not
1153 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001154 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001155 *
1156 * Caller must hold prepare_lock.
1157 */
1158static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
1159{
Mike Turquetteb24764902012-03-15 23:11:19 -07001160 struct clk *child;
1161 unsigned long new_rate;
1162 int ret = NOTIFY_DONE;
1163
1164 if (clk->ops->recalc_rate)
1165 new_rate = clk->ops->recalc_rate(clk->hw, parent_rate);
1166 else
1167 new_rate = parent_rate;
1168
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001169 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Mike Turquetteb24764902012-03-15 23:11:19 -07001170 if (clk->notifier_count)
1171 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
1172
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001173 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001174 goto out;
1175
Sasha Levinb67bfe02013-02-27 17:06:00 -08001176 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001177 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001178 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001179 break;
1180 }
1181
1182out:
1183 return ret;
1184}
1185
James Hogan71472c02013-07-29 12:25:00 +01001186static void clk_calc_subtree(struct clk *clk, unsigned long new_rate,
1187 struct clk *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001188{
1189 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001190
1191 clk->new_rate = new_rate;
James Hogan71472c02013-07-29 12:25:00 +01001192 clk->new_parent = new_parent;
1193 clk->new_parent_index = p_index;
1194 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1195 clk->new_child = NULL;
1196 if (new_parent && new_parent != clk->parent)
1197 new_parent->new_child = clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001198
Sasha Levinb67bfe02013-02-27 17:06:00 -08001199 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001200 if (child->ops->recalc_rate)
1201 child->new_rate = child->ops->recalc_rate(child->hw, new_rate);
1202 else
1203 child->new_rate = new_rate;
James Hogan71472c02013-07-29 12:25:00 +01001204 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001205 }
1206}
1207
1208/*
1209 * calculate the new rates returning the topmost clock that has to be
1210 * changed.
1211 */
1212static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
1213{
1214 struct clk *top = clk;
James Hogan71472c02013-07-29 12:25:00 +01001215 struct clk *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001216 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001217 unsigned long new_rate;
James Hogan71472c02013-07-29 12:25:00 +01001218 u8 p_index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001219
Mike Turquette7452b212012-03-26 14:45:36 -07001220 /* sanity */
1221 if (IS_ERR_OR_NULL(clk))
1222 return NULL;
1223
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001224 /* save parent rate, if it exists */
James Hogan71472c02013-07-29 12:25:00 +01001225 parent = old_parent = clk->parent;
1226 if (parent)
1227 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001228
James Hogan71472c02013-07-29 12:25:00 +01001229 /* find the closest rate and parent clk/rate */
1230 if (clk->ops->determine_rate) {
1231 new_rate = clk->ops->determine_rate(clk->hw, rate,
1232 &best_parent_rate,
1233 &parent);
1234 } else if (clk->ops->round_rate) {
1235 new_rate = clk->ops->round_rate(clk->hw, rate,
1236 &best_parent_rate);
1237 } else if (!parent || !(clk->flags & CLK_SET_RATE_PARENT)) {
1238 /* pass-through clock without adjustable parent */
1239 clk->new_rate = clk->rate;
1240 return NULL;
1241 } else {
1242 /* pass-through clock with adjustable parent */
1243 top = clk_calc_new_rates(parent, rate);
1244 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001245 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001246 }
1247
James Hogan71472c02013-07-29 12:25:00 +01001248 /* some clocks must be gated to change parent */
1249 if (parent != old_parent &&
1250 (clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1251 pr_debug("%s: %s not gated but wants to reparent\n",
1252 __func__, clk->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001253 return NULL;
1254 }
1255
James Hogan71472c02013-07-29 12:25:00 +01001256 /* try finding the new parent index */
1257 if (parent) {
1258 p_index = clk_fetch_parent_index(clk, parent);
1259 if (p_index == clk->num_parents) {
1260 pr_debug("%s: clk %s can not be parent of clk %s\n",
1261 __func__, parent->name, clk->name);
1262 return NULL;
1263 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001264 }
1265
James Hogan71472c02013-07-29 12:25:00 +01001266 if ((clk->flags & CLK_SET_RATE_PARENT) && parent &&
1267 best_parent_rate != parent->rate)
1268 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001269
1270out:
James Hogan71472c02013-07-29 12:25:00 +01001271 clk_calc_subtree(clk, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001272
1273 return top;
1274}
1275
1276/*
1277 * Notify about rate changes in a subtree. Always walk down the whole tree
1278 * so that in case of an error we can walk down the whole tree again and
1279 * abort the change.
1280 */
1281static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
1282{
James Hogan71472c02013-07-29 12:25:00 +01001283 struct clk *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001284 int ret = NOTIFY_DONE;
1285
1286 if (clk->rate == clk->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301287 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001288
1289 if (clk->notifier_count) {
1290 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001291 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001292 fail_clk = clk;
1293 }
1294
Sasha Levinb67bfe02013-02-27 17:06:00 -08001295 hlist_for_each_entry(child, &clk->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001296 /* Skip children who will be reparented to another clock */
1297 if (child->new_parent && child->new_parent != clk)
1298 continue;
1299 tmp_clk = clk_propagate_rate_change(child, event);
1300 if (tmp_clk)
1301 fail_clk = tmp_clk;
1302 }
1303
1304 /* handle the new child who might not be in clk->children yet */
1305 if (clk->new_child) {
1306 tmp_clk = clk_propagate_rate_change(clk->new_child, event);
1307 if (tmp_clk)
1308 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001309 }
1310
1311 return fail_clk;
1312}
1313
1314/*
1315 * walk down a subtree and set the new rates notifying the rate
1316 * change on the way
1317 */
1318static void clk_change_rate(struct clk *clk)
1319{
1320 struct clk *child;
1321 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001322 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001323
1324 old_rate = clk->rate;
1325
James Hogan71472c02013-07-29 12:25:00 +01001326 /* set parent */
1327 if (clk->new_parent && clk->new_parent != clk->parent)
1328 __clk_set_parent(clk, clk->new_parent, clk->new_parent_index);
1329
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001330 if (clk->parent)
1331 best_parent_rate = clk->parent->rate;
1332
Mike Turquetteb24764902012-03-15 23:11:19 -07001333 if (clk->ops->set_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001334 clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001335
1336 if (clk->ops->recalc_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001337 clk->rate = clk->ops->recalc_rate(clk->hw, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001338 else
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001339 clk->rate = best_parent_rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001340
1341 if (clk->notifier_count && old_rate != clk->rate)
1342 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
1343
James Hogan71472c02013-07-29 12:25:00 +01001344 hlist_for_each_entry(child, &clk->children, child_node) {
1345 /* Skip children who will be reparented to another clock */
1346 if (child->new_parent && child->new_parent != clk)
1347 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07001348 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01001349 }
1350
1351 /* handle the new child who might not be in clk->children yet */
1352 if (clk->new_child)
1353 clk_change_rate(clk->new_child);
Mike Turquetteb24764902012-03-15 23:11:19 -07001354}
1355
1356/**
1357 * clk_set_rate - specify a new rate for clk
1358 * @clk: the clk whose rate is being changed
1359 * @rate: the new rate for clk
1360 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001361 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001362 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001363 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1364 * propagate up to clk's parent; whether or not this happens depends on the
1365 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1366 * after calling .round_rate then upstream parent propagation is ignored. If
1367 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001368 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001369 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1370 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001371 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001372 * Rate changes are accomplished via tree traversal that also recalculates the
1373 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001374 *
1375 * Returns 0 on success, -EERROR otherwise.
1376 */
1377int clk_set_rate(struct clk *clk, unsigned long rate)
1378{
1379 struct clk *top, *fail_clk;
1380 int ret = 0;
1381
1382 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001383 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001384
1385 /* bail early if nothing to do */
Peter De Schrijver34e452a2013-06-05 18:06:36 +03001386 if (rate == clk_get_rate(clk))
Mike Turquetteb24764902012-03-15 23:11:19 -07001387 goto out;
1388
Saravana Kannan7e0fa1b2012-05-15 13:43:42 -07001389 if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
Viresh Kumar0e1c0302012-04-11 16:03:42 +05301390 ret = -EBUSY;
1391 goto out;
1392 }
1393
Mike Turquetteb24764902012-03-15 23:11:19 -07001394 /* calculate new rates and get the topmost changed clock */
1395 top = clk_calc_new_rates(clk, rate);
1396 if (!top) {
1397 ret = -EINVAL;
1398 goto out;
1399 }
1400
1401 /* notify that we are about to change rates */
1402 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1403 if (fail_clk) {
1404 pr_warn("%s: failed to set %s rate\n", __func__,
1405 fail_clk->name);
1406 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1407 ret = -EBUSY;
1408 goto out;
1409 }
1410
1411 /* change the rates */
1412 clk_change_rate(top);
1413
Mike Turquetteb24764902012-03-15 23:11:19 -07001414out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001415 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001416
1417 return ret;
1418}
1419EXPORT_SYMBOL_GPL(clk_set_rate);
1420
1421/**
1422 * clk_get_parent - return the parent of a clk
1423 * @clk: the clk whose parent gets returned
1424 *
1425 * Simply returns clk->parent. Returns NULL if clk is NULL.
1426 */
1427struct clk *clk_get_parent(struct clk *clk)
1428{
1429 struct clk *parent;
1430
Mike Turquetteeab89f62013-03-28 13:59:01 -07001431 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001432 parent = __clk_get_parent(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001433 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001434
1435 return parent;
1436}
1437EXPORT_SYMBOL_GPL(clk_get_parent);
1438
1439/*
1440 * .get_parent is mandatory for clocks with multiple possible parents. It is
1441 * optional for single-parent clocks. Always call .get_parent if it is
1442 * available and WARN if it is missing for multi-parent clocks.
1443 *
1444 * For single-parent clocks without .get_parent, first check to see if the
1445 * .parents array exists, and if so use it to avoid an expensive tree
1446 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
1447 */
1448static struct clk *__clk_init_parent(struct clk *clk)
1449{
1450 struct clk *ret = NULL;
1451 u8 index;
1452
1453 /* handle the trivial cases */
1454
1455 if (!clk->num_parents)
1456 goto out;
1457
1458 if (clk->num_parents == 1) {
1459 if (IS_ERR_OR_NULL(clk->parent))
1460 ret = clk->parent = __clk_lookup(clk->parent_names[0]);
1461 ret = clk->parent;
1462 goto out;
1463 }
1464
1465 if (!clk->ops->get_parent) {
1466 WARN(!clk->ops->get_parent,
1467 "%s: multi-parent clocks must implement .get_parent\n",
1468 __func__);
1469 goto out;
1470 };
1471
1472 /*
1473 * Do our best to cache parent clocks in clk->parents. This prevents
1474 * unnecessary and expensive calls to __clk_lookup. We don't set
1475 * clk->parent here; that is done by the calling function
1476 */
1477
1478 index = clk->ops->get_parent(clk->hw);
1479
1480 if (!clk->parents)
1481 clk->parents =
Rajendra Nayak79750592012-06-06 14:41:31 +05301482 kzalloc((sizeof(struct clk*) * clk->num_parents),
Mike Turquetteb24764902012-03-15 23:11:19 -07001483 GFP_KERNEL);
1484
James Hogan7ef3dcc2013-07-29 12:24:58 +01001485 ret = clk_get_parent_by_index(clk, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001486
1487out:
1488 return ret;
1489}
1490
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001491void __clk_reparent(struct clk *clk, struct clk *new_parent)
1492{
1493 clk_reparent(clk, new_parent);
1494 clk_debug_reparent(clk, new_parent);
Mike Turquetteb24764902012-03-15 23:11:19 -07001495 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1496}
1497
Mike Turquetteb24764902012-03-15 23:11:19 -07001498/**
1499 * clk_set_parent - switch the parent of a mux clk
1500 * @clk: the mux clk whose input we are switching
1501 * @parent: the new input to clk
1502 *
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07001503 * Re-parent clk to use parent as its new input source. If clk is in
1504 * prepared state, the clk will get enabled for the duration of this call. If
1505 * that's not acceptable for a specific clk (Eg: the consumer can't handle
1506 * that, the reparenting is glitchy in hardware, etc), use the
1507 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
1508 *
1509 * After successfully changing clk's parent clk_set_parent will update the
1510 * clk topology, sysfs topology and propagate rate recalculation via
1511 * __clk_recalc_rates.
1512 *
1513 * Returns 0 on success, -EERROR otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07001514 */
1515int clk_set_parent(struct clk *clk, struct clk *parent)
1516{
1517 int ret = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001518 u8 p_index = 0;
1519 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001520
1521 if (!clk || !clk->ops)
1522 return -EINVAL;
1523
Ulf Hansson031dcc92013-04-02 23:09:38 +02001524 /* verify ops for for multi-parent clks */
1525 if ((clk->num_parents > 1) && (!clk->ops->set_parent))
Mike Turquetteb24764902012-03-15 23:11:19 -07001526 return -ENOSYS;
1527
1528 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001529 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001530
1531 if (clk->parent == parent)
1532 goto out;
1533
Ulf Hansson031dcc92013-04-02 23:09:38 +02001534 /* check that we are allowed to re-parent if the clock is in use */
1535 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1536 ret = -EBUSY;
1537 goto out;
1538 }
1539
1540 /* try finding the new parent index */
1541 if (parent) {
1542 p_index = clk_fetch_parent_index(clk, parent);
1543 p_rate = parent->rate;
1544 if (p_index == clk->num_parents) {
1545 pr_debug("%s: clk %s can not be parent of clk %s\n",
1546 __func__, parent->name, clk->name);
1547 ret = -EINVAL;
1548 goto out;
1549 }
1550 }
1551
Mike Turquetteb24764902012-03-15 23:11:19 -07001552 /* propagate PRE_RATE_CHANGE notifications */
Soren Brinkmannf3aab5d2013-04-16 10:06:50 -07001553 ret = __clk_speculate_rates(clk, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001554
1555 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001556 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001557 goto out;
1558
Ulf Hansson031dcc92013-04-02 23:09:38 +02001559 /* do the re-parent */
1560 ret = __clk_set_parent(clk, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001561
Ulf Hanssona68de8e2013-04-02 23:09:39 +02001562 /* propagate rate recalculation accordingly */
1563 if (ret)
Mike Turquetteb24764902012-03-15 23:11:19 -07001564 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
Ulf Hanssona68de8e2013-04-02 23:09:39 +02001565 else
1566 __clk_recalc_rates(clk, POST_RATE_CHANGE);
Mike Turquetteb24764902012-03-15 23:11:19 -07001567
1568out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001569 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001570
1571 return ret;
1572}
1573EXPORT_SYMBOL_GPL(clk_set_parent);
1574
1575/**
1576 * __clk_init - initialize the data structures in a struct clk
1577 * @dev: device initializing this clk, placeholder for now
1578 * @clk: clk being initialized
1579 *
1580 * Initializes the lists in struct clk, queries the hardware for the
1581 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07001582 */
Mike Turquetted1302a32012-03-29 14:30:40 -07001583int __clk_init(struct device *dev, struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001584{
Mike Turquetted1302a32012-03-29 14:30:40 -07001585 int i, ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001586 struct clk *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001587 struct hlist_node *tmp2;
Mike Turquetteb24764902012-03-15 23:11:19 -07001588
1589 if (!clk)
Mike Turquetted1302a32012-03-29 14:30:40 -07001590 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001591
Mike Turquetteeab89f62013-03-28 13:59:01 -07001592 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001593
1594 /* check to see if a clock with this name is already registered */
Mike Turquetted1302a32012-03-29 14:30:40 -07001595 if (__clk_lookup(clk->name)) {
1596 pr_debug("%s: clk %s already initialized\n",
1597 __func__, clk->name);
1598 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07001599 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07001600 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001601
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001602 /* check that clk_ops are sane. See Documentation/clk.txt */
1603 if (clk->ops->set_rate &&
James Hogan71472c02013-07-29 12:25:00 +01001604 !((clk->ops->round_rate || clk->ops->determine_rate) &&
1605 clk->ops->recalc_rate)) {
1606 pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001607 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001608 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001609 goto out;
1610 }
1611
1612 if (clk->ops->set_parent && !clk->ops->get_parent) {
1613 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1614 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001615 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001616 goto out;
1617 }
1618
Mike Turquetteb24764902012-03-15 23:11:19 -07001619 /* throw a WARN if any entries in parent_names are NULL */
1620 for (i = 0; i < clk->num_parents; i++)
1621 WARN(!clk->parent_names[i],
1622 "%s: invalid NULL in %s's .parent_names\n",
1623 __func__, clk->name);
1624
1625 /*
1626 * Allocate an array of struct clk *'s to avoid unnecessary string
1627 * look-ups of clk's possible parents. This can fail for clocks passed
1628 * in to clk_init during early boot; thus any access to clk->parents[]
1629 * must always check for a NULL pointer and try to populate it if
1630 * necessary.
1631 *
1632 * If clk->parents is not NULL we skip this entire block. This allows
1633 * for clock drivers to statically initialize clk->parents.
1634 */
Rajendra Nayak9ca1c5a2012-06-06 14:41:30 +05301635 if (clk->num_parents > 1 && !clk->parents) {
1636 clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
Mike Turquetteb24764902012-03-15 23:11:19 -07001637 GFP_KERNEL);
1638 /*
1639 * __clk_lookup returns NULL for parents that have not been
1640 * clk_init'd; thus any access to clk->parents[] must check
1641 * for a NULL pointer. We can always perform lazy lookups for
1642 * missing parents later on.
1643 */
1644 if (clk->parents)
1645 for (i = 0; i < clk->num_parents; i++)
1646 clk->parents[i] =
1647 __clk_lookup(clk->parent_names[i]);
1648 }
1649
1650 clk->parent = __clk_init_parent(clk);
1651
1652 /*
1653 * Populate clk->parent if parent has already been __clk_init'd. If
1654 * parent has not yet been __clk_init'd then place clk in the orphan
1655 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1656 * clk list.
1657 *
1658 * Every time a new clk is clk_init'd then we walk the list of orphan
1659 * clocks and re-parent any that are children of the clock currently
1660 * being clk_init'd.
1661 */
1662 if (clk->parent)
1663 hlist_add_head(&clk->child_node,
1664 &clk->parent->children);
1665 else if (clk->flags & CLK_IS_ROOT)
1666 hlist_add_head(&clk->child_node, &clk_root_list);
1667 else
1668 hlist_add_head(&clk->child_node, &clk_orphan_list);
1669
1670 /*
1671 * Set clk's rate. The preferred method is to use .recalc_rate. For
1672 * simple clocks and lazy developers the default fallback is to use the
1673 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1674 * then rate is set to zero.
1675 */
1676 if (clk->ops->recalc_rate)
1677 clk->rate = clk->ops->recalc_rate(clk->hw,
1678 __clk_get_rate(clk->parent));
1679 else if (clk->parent)
1680 clk->rate = clk->parent->rate;
1681 else
1682 clk->rate = 0;
1683
1684 /*
1685 * walk the list of orphan clocks and reparent any that are children of
1686 * this clock
1687 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001688 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001689 if (orphan->ops->get_parent) {
1690 i = orphan->ops->get_parent(orphan->hw);
1691 if (!strcmp(clk->name, orphan->parent_names[i]))
1692 __clk_reparent(orphan, clk);
1693 continue;
1694 }
1695
Mike Turquetteb24764902012-03-15 23:11:19 -07001696 for (i = 0; i < orphan->num_parents; i++)
1697 if (!strcmp(clk->name, orphan->parent_names[i])) {
1698 __clk_reparent(orphan, clk);
1699 break;
1700 }
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001701 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001702
1703 /*
1704 * optional platform-specific magic
1705 *
1706 * The .init callback is not used by any of the basic clock types, but
1707 * exists for weird hardware that must perform initialization magic.
1708 * Please consider other ways of solving initialization problems before
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001709 * using this callback, as its use is discouraged.
Mike Turquetteb24764902012-03-15 23:11:19 -07001710 */
1711 if (clk->ops->init)
1712 clk->ops->init(clk->hw);
1713
1714 clk_debug_register(clk);
1715
1716out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001717 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001718
Mike Turquetted1302a32012-03-29 14:30:40 -07001719 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001720}
1721
1722/**
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001723 * __clk_register - register a clock and return a cookie.
1724 *
1725 * Same as clk_register, except that the .clk field inside hw shall point to a
1726 * preallocated (generally statically allocated) struct clk. None of the fields
1727 * of the struct clk need to be initialized.
1728 *
1729 * The data pointed to by .init and .clk field shall NOT be marked as init
1730 * data.
1731 *
1732 * __clk_register is only exposed via clk-private.h and is intended for use with
1733 * very large numbers of clocks that need to be statically initialized. It is
1734 * a layering violation to include clk-private.h from any code which implements
1735 * a clock's .ops; as such any statically initialized clock data MUST be in a
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001736 * separate C file from the logic that implements its operations. Returns 0
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001737 * on success, otherwise an error code.
1738 */
1739struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
1740{
1741 int ret;
1742 struct clk *clk;
1743
1744 clk = hw->clk;
1745 clk->name = hw->init->name;
1746 clk->ops = hw->init->ops;
1747 clk->hw = hw;
1748 clk->flags = hw->init->flags;
1749 clk->parent_names = hw->init->parent_names;
1750 clk->num_parents = hw->init->num_parents;
1751
1752 ret = __clk_init(dev, clk);
1753 if (ret)
1754 return ERR_PTR(ret);
1755
1756 return clk;
1757}
1758EXPORT_SYMBOL_GPL(__clk_register);
1759
Stephen Boyd46c87732012-09-24 13:38:04 -07001760static int _clk_register(struct device *dev, struct clk_hw *hw, struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001761{
Mike Turquetted1302a32012-03-29 14:30:40 -07001762 int i, ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001763
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001764 clk->name = kstrdup(hw->init->name, GFP_KERNEL);
1765 if (!clk->name) {
1766 pr_err("%s: could not allocate clk->name\n", __func__);
1767 ret = -ENOMEM;
1768 goto fail_name;
1769 }
1770 clk->ops = hw->init->ops;
Mike Turquetteb24764902012-03-15 23:11:19 -07001771 clk->hw = hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001772 clk->flags = hw->init->flags;
1773 clk->num_parents = hw->init->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -07001774 hw->clk = clk;
1775
Mike Turquetted1302a32012-03-29 14:30:40 -07001776 /* allocate local copy in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001777 clk->parent_names = kzalloc((sizeof(char*) * clk->num_parents),
Mike Turquetted1302a32012-03-29 14:30:40 -07001778 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001779
Mike Turquetted1302a32012-03-29 14:30:40 -07001780 if (!clk->parent_names) {
1781 pr_err("%s: could not allocate clk->parent_names\n", __func__);
1782 ret = -ENOMEM;
1783 goto fail_parent_names;
1784 }
1785
1786
1787 /* copy each string name in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001788 for (i = 0; i < clk->num_parents; i++) {
1789 clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
1790 GFP_KERNEL);
Mike Turquetted1302a32012-03-29 14:30:40 -07001791 if (!clk->parent_names[i]) {
1792 pr_err("%s: could not copy parent_names\n", __func__);
1793 ret = -ENOMEM;
1794 goto fail_parent_names_copy;
1795 }
1796 }
1797
1798 ret = __clk_init(dev, clk);
1799 if (!ret)
Stephen Boyd46c87732012-09-24 13:38:04 -07001800 return 0;
Mike Turquetted1302a32012-03-29 14:30:40 -07001801
1802fail_parent_names_copy:
1803 while (--i >= 0)
1804 kfree(clk->parent_names[i]);
1805 kfree(clk->parent_names);
1806fail_parent_names:
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001807 kfree(clk->name);
1808fail_name:
Stephen Boyd46c87732012-09-24 13:38:04 -07001809 return ret;
1810}
1811
1812/**
1813 * clk_register - allocate a new clock, register it and return an opaque cookie
1814 * @dev: device that is registering this clock
1815 * @hw: link to hardware-specific clock data
1816 *
1817 * clk_register is the primary interface for populating the clock tree with new
1818 * clock nodes. It returns a pointer to the newly allocated struct clk which
1819 * cannot be dereferenced by driver code but may be used in conjuction with the
1820 * rest of the clock API. In the event of an error clk_register will return an
1821 * error code; drivers must test for an error code after calling clk_register.
1822 */
1823struct clk *clk_register(struct device *dev, struct clk_hw *hw)
1824{
1825 int ret;
1826 struct clk *clk;
1827
1828 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
1829 if (!clk) {
1830 pr_err("%s: could not allocate clk\n", __func__);
1831 ret = -ENOMEM;
1832 goto fail_out;
1833 }
1834
1835 ret = _clk_register(dev, hw, clk);
1836 if (!ret)
1837 return clk;
1838
Mike Turquetted1302a32012-03-29 14:30:40 -07001839 kfree(clk);
1840fail_out:
1841 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001842}
1843EXPORT_SYMBOL_GPL(clk_register);
1844
Mark Brown1df5c932012-04-18 09:07:12 +01001845/**
1846 * clk_unregister - unregister a currently registered clock
1847 * @clk: clock to unregister
1848 *
1849 * Currently unimplemented.
1850 */
1851void clk_unregister(struct clk *clk) {}
1852EXPORT_SYMBOL_GPL(clk_unregister);
1853
Stephen Boyd46c87732012-09-24 13:38:04 -07001854static void devm_clk_release(struct device *dev, void *res)
1855{
1856 clk_unregister(res);
1857}
1858
1859/**
1860 * devm_clk_register - resource managed clk_register()
1861 * @dev: device that is registering this clock
1862 * @hw: link to hardware-specific clock data
1863 *
1864 * Managed clk_register(). Clocks returned from this function are
1865 * automatically clk_unregister()ed on driver detach. See clk_register() for
1866 * more information.
1867 */
1868struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
1869{
1870 struct clk *clk;
1871 int ret;
1872
1873 clk = devres_alloc(devm_clk_release, sizeof(*clk), GFP_KERNEL);
1874 if (!clk)
1875 return ERR_PTR(-ENOMEM);
1876
1877 ret = _clk_register(dev, hw, clk);
1878 if (!ret) {
1879 devres_add(dev, clk);
1880 } else {
1881 devres_free(clk);
1882 clk = ERR_PTR(ret);
1883 }
1884
1885 return clk;
1886}
1887EXPORT_SYMBOL_GPL(devm_clk_register);
1888
1889static int devm_clk_match(struct device *dev, void *res, void *data)
1890{
1891 struct clk *c = res;
1892 if (WARN_ON(!c))
1893 return 0;
1894 return c == data;
1895}
1896
1897/**
1898 * devm_clk_unregister - resource managed clk_unregister()
1899 * @clk: clock to unregister
1900 *
1901 * Deallocate a clock allocated with devm_clk_register(). Normally
1902 * this function will not need to be called and the resource management
1903 * code will ensure that the resource is freed.
1904 */
1905void devm_clk_unregister(struct device *dev, struct clk *clk)
1906{
1907 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
1908}
1909EXPORT_SYMBOL_GPL(devm_clk_unregister);
1910
Mike Turquetteb24764902012-03-15 23:11:19 -07001911/*** clk rate change notifiers ***/
1912
1913/**
1914 * clk_notifier_register - add a clk rate change notifier
1915 * @clk: struct clk * to watch
1916 * @nb: struct notifier_block * with callback info
1917 *
1918 * Request notification when clk's rate changes. This uses an SRCU
1919 * notifier because we want it to block and notifier unregistrations are
1920 * uncommon. The callbacks associated with the notifier must not
1921 * re-enter into the clk framework by calling any top-level clk APIs;
1922 * this will cause a nested prepare_lock mutex.
1923 *
1924 * Pre-change notifier callbacks will be passed the current, pre-change
1925 * rate of the clk via struct clk_notifier_data.old_rate. The new,
1926 * post-change rate of the clk is passed via struct
1927 * clk_notifier_data.new_rate.
1928 *
1929 * Post-change notifiers will pass the now-current, post-change rate of
1930 * the clk in both struct clk_notifier_data.old_rate and struct
1931 * clk_notifier_data.new_rate.
1932 *
1933 * Abort-change notifiers are effectively the opposite of pre-change
1934 * notifiers: the original pre-change clk rate is passed in via struct
1935 * clk_notifier_data.new_rate and the failed post-change rate is passed
1936 * in via struct clk_notifier_data.old_rate.
1937 *
1938 * clk_notifier_register() must be called from non-atomic context.
1939 * Returns -EINVAL if called with null arguments, -ENOMEM upon
1940 * allocation failure; otherwise, passes along the return value of
1941 * srcu_notifier_chain_register().
1942 */
1943int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
1944{
1945 struct clk_notifier *cn;
1946 int ret = -ENOMEM;
1947
1948 if (!clk || !nb)
1949 return -EINVAL;
1950
Mike Turquetteeab89f62013-03-28 13:59:01 -07001951 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001952
1953 /* search the list of notifiers for this clk */
1954 list_for_each_entry(cn, &clk_notifier_list, node)
1955 if (cn->clk == clk)
1956 break;
1957
1958 /* if clk wasn't in the notifier list, allocate new clk_notifier */
1959 if (cn->clk != clk) {
1960 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
1961 if (!cn)
1962 goto out;
1963
1964 cn->clk = clk;
1965 srcu_init_notifier_head(&cn->notifier_head);
1966
1967 list_add(&cn->node, &clk_notifier_list);
1968 }
1969
1970 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
1971
1972 clk->notifier_count++;
1973
1974out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001975 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001976
1977 return ret;
1978}
1979EXPORT_SYMBOL_GPL(clk_notifier_register);
1980
1981/**
1982 * clk_notifier_unregister - remove a clk rate change notifier
1983 * @clk: struct clk *
1984 * @nb: struct notifier_block * with callback info
1985 *
1986 * Request no further notification for changes to 'clk' and frees memory
1987 * allocated in clk_notifier_register.
1988 *
1989 * Returns -EINVAL if called with null arguments; otherwise, passes
1990 * along the return value of srcu_notifier_chain_unregister().
1991 */
1992int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
1993{
1994 struct clk_notifier *cn = NULL;
1995 int ret = -EINVAL;
1996
1997 if (!clk || !nb)
1998 return -EINVAL;
1999
Mike Turquetteeab89f62013-03-28 13:59:01 -07002000 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002001
2002 list_for_each_entry(cn, &clk_notifier_list, node)
2003 if (cn->clk == clk)
2004 break;
2005
2006 if (cn->clk == clk) {
2007 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
2008
2009 clk->notifier_count--;
2010
2011 /* XXX the notifier code should handle this better */
2012 if (!cn->notifier_head.head) {
2013 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08002014 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07002015 kfree(cn);
2016 }
2017
2018 } else {
2019 ret = -ENOENT;
2020 }
2021
Mike Turquetteeab89f62013-03-28 13:59:01 -07002022 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002023
2024 return ret;
2025}
2026EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05002027
2028#ifdef CONFIG_OF
2029/**
2030 * struct of_clk_provider - Clock provider registration structure
2031 * @link: Entry in global list of clock providers
2032 * @node: Pointer to device tree node of clock provider
2033 * @get: Get clock callback. Returns NULL or a struct clk for the
2034 * given clock specifier
2035 * @data: context pointer to be passed into @get callback
2036 */
2037struct of_clk_provider {
2038 struct list_head link;
2039
2040 struct device_node *node;
2041 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
2042 void *data;
2043};
2044
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302045extern struct of_device_id __clk_of_table[];
2046
2047static const struct of_device_id __clk_of_table_sentinel
2048 __used __section(__clk_of_table_end);
2049
Grant Likely766e6a42012-04-09 14:50:06 -05002050static LIST_HEAD(of_clk_providers);
2051static DEFINE_MUTEX(of_clk_lock);
2052
2053struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
2054 void *data)
2055{
2056 return data;
2057}
2058EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
2059
Shawn Guo494bfec2012-08-22 21:36:27 +08002060struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
2061{
2062 struct clk_onecell_data *clk_data = data;
2063 unsigned int idx = clkspec->args[0];
2064
2065 if (idx >= clk_data->clk_num) {
2066 pr_err("%s: invalid clock index %d\n", __func__, idx);
2067 return ERR_PTR(-EINVAL);
2068 }
2069
2070 return clk_data->clks[idx];
2071}
2072EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
2073
Grant Likely766e6a42012-04-09 14:50:06 -05002074/**
2075 * of_clk_add_provider() - Register a clock provider for a node
2076 * @np: Device node pointer associated with clock provider
2077 * @clk_src_get: callback for decoding clock
2078 * @data: context pointer for @clk_src_get callback.
2079 */
2080int of_clk_add_provider(struct device_node *np,
2081 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
2082 void *data),
2083 void *data)
2084{
2085 struct of_clk_provider *cp;
2086
2087 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
2088 if (!cp)
2089 return -ENOMEM;
2090
2091 cp->node = of_node_get(np);
2092 cp->data = data;
2093 cp->get = clk_src_get;
2094
2095 mutex_lock(&of_clk_lock);
2096 list_add(&cp->link, &of_clk_providers);
2097 mutex_unlock(&of_clk_lock);
2098 pr_debug("Added clock from %s\n", np->full_name);
2099
2100 return 0;
2101}
2102EXPORT_SYMBOL_GPL(of_clk_add_provider);
2103
2104/**
2105 * of_clk_del_provider() - Remove a previously registered clock provider
2106 * @np: Device node pointer associated with clock provider
2107 */
2108void of_clk_del_provider(struct device_node *np)
2109{
2110 struct of_clk_provider *cp;
2111
2112 mutex_lock(&of_clk_lock);
2113 list_for_each_entry(cp, &of_clk_providers, link) {
2114 if (cp->node == np) {
2115 list_del(&cp->link);
2116 of_node_put(cp->node);
2117 kfree(cp);
2118 break;
2119 }
2120 }
2121 mutex_unlock(&of_clk_lock);
2122}
2123EXPORT_SYMBOL_GPL(of_clk_del_provider);
2124
2125struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
2126{
2127 struct of_clk_provider *provider;
2128 struct clk *clk = ERR_PTR(-ENOENT);
2129
2130 /* Check if we have such a provider in our array */
2131 mutex_lock(&of_clk_lock);
2132 list_for_each_entry(provider, &of_clk_providers, link) {
2133 if (provider->node == clkspec->np)
2134 clk = provider->get(clkspec, provider->data);
2135 if (!IS_ERR(clk))
2136 break;
2137 }
2138 mutex_unlock(&of_clk_lock);
2139
2140 return clk;
2141}
2142
2143const char *of_clk_get_parent_name(struct device_node *np, int index)
2144{
2145 struct of_phandle_args clkspec;
2146 const char *clk_name;
2147 int rc;
2148
2149 if (index < 0)
2150 return NULL;
2151
2152 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
2153 &clkspec);
2154 if (rc)
2155 return NULL;
2156
2157 if (of_property_read_string_index(clkspec.np, "clock-output-names",
2158 clkspec.args_count ? clkspec.args[0] : 0,
2159 &clk_name) < 0)
2160 clk_name = clkspec.np->name;
2161
2162 of_node_put(clkspec.np);
2163 return clk_name;
2164}
2165EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
2166
2167/**
2168 * of_clk_init() - Scan and init clock providers from the DT
2169 * @matches: array of compatible values and init functions for providers.
2170 *
2171 * This function scans the device tree for matching clock providers and
2172 * calls their initialization functions
2173 */
2174void __init of_clk_init(const struct of_device_id *matches)
2175{
2176 struct device_node *np;
2177
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302178 if (!matches)
2179 matches = __clk_of_table;
2180
Grant Likely766e6a42012-04-09 14:50:06 -05002181 for_each_matching_node(np, matches) {
2182 const struct of_device_id *match = of_match_node(matches, np);
2183 of_clk_init_cb_t clk_init_cb = match->data;
2184 clk_init_cb(np);
2185 }
2186}
2187#endif