blob: c83e8e543bab589a6ee0824108cddbf73b4b6556 [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,
110 c->enable_count, c->prepare_count, c->rate);
111 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);
169 seq_printf(s, "\"rate\": %lu", c->rate);
170}
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}
461
462/* caller must hold prepare_lock */
Mike Turquetteb24764902012-03-15 23:11:19 -0700463static void clk_disable_unused_subtree(struct clk *clk)
464{
465 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700466 unsigned long flags;
467
468 if (!clk)
469 goto out;
470
Sasha Levinb67bfe02013-02-27 17:06:00 -0800471 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700472 clk_disable_unused_subtree(child);
473
Mike Turquetteeab89f62013-03-28 13:59:01 -0700474 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700475
476 if (clk->enable_count)
477 goto unlock_out;
478
479 if (clk->flags & CLK_IGNORE_UNUSED)
480 goto unlock_out;
481
Mike Turquette7c045a52012-12-04 11:00:35 -0800482 /*
483 * some gate clocks have special needs during the disable-unused
484 * sequence. call .disable_unused if available, otherwise fall
485 * back to .disable
486 */
487 if (__clk_is_enabled(clk)) {
488 if (clk->ops->disable_unused)
489 clk->ops->disable_unused(clk->hw);
490 else if (clk->ops->disable)
491 clk->ops->disable(clk->hw);
492 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700493
494unlock_out:
Mike Turquetteeab89f62013-03-28 13:59:01 -0700495 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700496
497out:
498 return;
499}
500
501static int clk_disable_unused(void)
502{
503 struct clk *clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700504
Mike Turquetteeab89f62013-03-28 13:59:01 -0700505 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700506
Sasha Levinb67bfe02013-02-27 17:06:00 -0800507 hlist_for_each_entry(clk, &clk_root_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700508 clk_disable_unused_subtree(clk);
509
Sasha Levinb67bfe02013-02-27 17:06:00 -0800510 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700511 clk_disable_unused_subtree(clk);
512
Ulf Hansson1c155b32013-03-12 20:26:03 +0100513 hlist_for_each_entry(clk, &clk_root_list, child_node)
514 clk_unprepare_unused_subtree(clk);
515
516 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
517 clk_unprepare_unused_subtree(clk);
518
Mike Turquetteeab89f62013-03-28 13:59:01 -0700519 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700520
521 return 0;
522}
523late_initcall(clk_disable_unused);
Mike Turquetteb24764902012-03-15 23:11:19 -0700524
525/*** helper functions ***/
526
Russ Dill65800b22012-11-26 11:20:09 -0800527const char *__clk_get_name(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700528{
529 return !clk ? NULL : clk->name;
530}
Niels de Vos48950842012-12-13 13:12:25 +0100531EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700532
Russ Dill65800b22012-11-26 11:20:09 -0800533struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700534{
535 return !clk ? NULL : clk->hw;
536}
537
Russ Dill65800b22012-11-26 11:20:09 -0800538u8 __clk_get_num_parents(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700539{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700540 return !clk ? 0 : clk->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -0700541}
542
Russ Dill65800b22012-11-26 11:20:09 -0800543struct clk *__clk_get_parent(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700544{
545 return !clk ? NULL : clk->parent;
546}
547
Russ Dill65800b22012-11-26 11:20:09 -0800548unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700549{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700550 return !clk ? 0 : clk->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700551}
552
Russ Dill65800b22012-11-26 11:20:09 -0800553unsigned int __clk_get_prepare_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700554{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700555 return !clk ? 0 : clk->prepare_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700556}
557
558unsigned long __clk_get_rate(struct clk *clk)
559{
560 unsigned long ret;
561
562 if (!clk) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530563 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700564 goto out;
565 }
566
567 ret = clk->rate;
568
569 if (clk->flags & CLK_IS_ROOT)
570 goto out;
571
572 if (!clk->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530573 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700574
575out:
576 return ret;
577}
578
Russ Dill65800b22012-11-26 11:20:09 -0800579unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700580{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700581 return !clk ? 0 : clk->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700582}
583
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100584bool __clk_is_prepared(struct clk *clk)
585{
586 int ret;
587
588 if (!clk)
589 return false;
590
591 /*
592 * .is_prepared is optional for clocks that can prepare
593 * fall back to software usage counter if it is missing
594 */
595 if (!clk->ops->is_prepared) {
596 ret = clk->prepare_count ? 1 : 0;
597 goto out;
598 }
599
600 ret = clk->ops->is_prepared(clk->hw);
601out:
602 return !!ret;
603}
604
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700605bool __clk_is_enabled(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700606{
607 int ret;
608
609 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700610 return false;
Mike Turquetteb24764902012-03-15 23:11:19 -0700611
612 /*
613 * .is_enabled is only mandatory for clocks that gate
614 * fall back to software usage counter if .is_enabled is missing
615 */
616 if (!clk->ops->is_enabled) {
617 ret = clk->enable_count ? 1 : 0;
618 goto out;
619 }
620
621 ret = clk->ops->is_enabled(clk->hw);
622out:
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700623 return !!ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700624}
625
626static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
627{
628 struct clk *child;
629 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700630
631 if (!strcmp(clk->name, name))
632 return clk;
633
Sasha Levinb67bfe02013-02-27 17:06:00 -0800634 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700635 ret = __clk_lookup_subtree(name, child);
636 if (ret)
637 return ret;
638 }
639
640 return NULL;
641}
642
643struct clk *__clk_lookup(const char *name)
644{
645 struct clk *root_clk;
646 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700647
648 if (!name)
649 return NULL;
650
651 /* search the 'proper' clk tree first */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800652 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700653 ret = __clk_lookup_subtree(name, root_clk);
654 if (ret)
655 return ret;
656 }
657
658 /* if not found, then search the orphan tree */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800659 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700660 ret = __clk_lookup_subtree(name, root_clk);
661 if (ret)
662 return ret;
663 }
664
665 return NULL;
666}
667
668/*** clk api ***/
669
670void __clk_unprepare(struct clk *clk)
671{
672 if (!clk)
673 return;
674
675 if (WARN_ON(clk->prepare_count == 0))
676 return;
677
678 if (--clk->prepare_count > 0)
679 return;
680
681 WARN_ON(clk->enable_count > 0);
682
683 if (clk->ops->unprepare)
684 clk->ops->unprepare(clk->hw);
685
686 __clk_unprepare(clk->parent);
687}
688
689/**
690 * clk_unprepare - undo preparation of a clock source
691 * @clk: the clk being unprepare
692 *
693 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
694 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
695 * if the operation may sleep. One example is a clk which is accessed over
696 * I2c. In the complex case a clk gate operation may require a fast and a slow
697 * part. It is this reason that clk_unprepare and clk_disable are not mutually
698 * exclusive. In fact clk_disable must be called before clk_unprepare.
699 */
700void clk_unprepare(struct clk *clk)
701{
Mike Turquetteeab89f62013-03-28 13:59:01 -0700702 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700703 __clk_unprepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700704 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700705}
706EXPORT_SYMBOL_GPL(clk_unprepare);
707
708int __clk_prepare(struct clk *clk)
709{
710 int ret = 0;
711
712 if (!clk)
713 return 0;
714
715 if (clk->prepare_count == 0) {
716 ret = __clk_prepare(clk->parent);
717 if (ret)
718 return ret;
719
720 if (clk->ops->prepare) {
721 ret = clk->ops->prepare(clk->hw);
722 if (ret) {
723 __clk_unprepare(clk->parent);
724 return ret;
725 }
726 }
727 }
728
729 clk->prepare_count++;
730
731 return 0;
732}
733
734/**
735 * clk_prepare - prepare a clock source
736 * @clk: the clk being prepared
737 *
738 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
739 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
740 * operation may sleep. One example is a clk which is accessed over I2c. In
741 * the complex case a clk ungate operation may require a fast and a slow part.
742 * It is this reason that clk_prepare and clk_enable are not mutually
743 * exclusive. In fact clk_prepare must be called before clk_enable.
744 * Returns 0 on success, -EERROR otherwise.
745 */
746int clk_prepare(struct clk *clk)
747{
748 int ret;
749
Mike Turquetteeab89f62013-03-28 13:59:01 -0700750 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700751 ret = __clk_prepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700752 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700753
754 return ret;
755}
756EXPORT_SYMBOL_GPL(clk_prepare);
757
758static void __clk_disable(struct clk *clk)
759{
760 if (!clk)
761 return;
762
Fengguang Wue47c6a32012-07-30 14:39:54 -0700763 if (WARN_ON(IS_ERR(clk)))
764 return;
765
Mike Turquetteb24764902012-03-15 23:11:19 -0700766 if (WARN_ON(clk->enable_count == 0))
767 return;
768
769 if (--clk->enable_count > 0)
770 return;
771
772 if (clk->ops->disable)
773 clk->ops->disable(clk->hw);
774
775 __clk_disable(clk->parent);
776}
777
778/**
779 * clk_disable - gate a clock
780 * @clk: the clk being gated
781 *
782 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
783 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
784 * clk if the operation is fast and will never sleep. One example is a
785 * SoC-internal clk which is controlled via simple register writes. In the
786 * complex case a clk gate operation may require a fast and a slow part. It is
787 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
788 * In fact clk_disable must be called before clk_unprepare.
789 */
790void clk_disable(struct clk *clk)
791{
792 unsigned long flags;
793
Mike Turquetteeab89f62013-03-28 13:59:01 -0700794 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700795 __clk_disable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700796 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700797}
798EXPORT_SYMBOL_GPL(clk_disable);
799
800static int __clk_enable(struct clk *clk)
801{
802 int ret = 0;
803
804 if (!clk)
805 return 0;
806
807 if (WARN_ON(clk->prepare_count == 0))
808 return -ESHUTDOWN;
809
810 if (clk->enable_count == 0) {
811 ret = __clk_enable(clk->parent);
812
813 if (ret)
814 return ret;
815
816 if (clk->ops->enable) {
817 ret = clk->ops->enable(clk->hw);
818 if (ret) {
819 __clk_disable(clk->parent);
820 return ret;
821 }
822 }
823 }
824
825 clk->enable_count++;
826 return 0;
827}
828
829/**
830 * clk_enable - ungate a clock
831 * @clk: the clk being ungated
832 *
833 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
834 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
835 * if the operation will never sleep. One example is a SoC-internal clk which
836 * is controlled via simple register writes. In the complex case a clk ungate
837 * operation may require a fast and a slow part. It is this reason that
838 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
839 * must be called before clk_enable. Returns 0 on success, -EERROR
840 * otherwise.
841 */
842int clk_enable(struct clk *clk)
843{
844 unsigned long flags;
845 int ret;
846
Mike Turquetteeab89f62013-03-28 13:59:01 -0700847 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700848 ret = __clk_enable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700849 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700850
851 return ret;
852}
853EXPORT_SYMBOL_GPL(clk_enable);
854
855/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700856 * __clk_round_rate - round the given rate for a clk
857 * @clk: round the rate of this clock
858 *
859 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
860 */
861unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
862{
Shawn Guo81536e02012-04-12 20:50:17 +0800863 unsigned long parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700864
865 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700866 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700867
Shawn Guof4d8af22012-04-12 20:50:19 +0800868 if (!clk->ops->round_rate) {
869 if (clk->flags & CLK_SET_RATE_PARENT)
870 return __clk_round_rate(clk->parent, rate);
871 else
872 return clk->rate;
873 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700874
Shawn Guo81536e02012-04-12 20:50:17 +0800875 if (clk->parent)
876 parent_rate = clk->parent->rate;
877
878 return clk->ops->round_rate(clk->hw, rate, &parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700879}
880
881/**
882 * clk_round_rate - round the given rate for a clk
883 * @clk: the clk for which we are rounding a rate
884 * @rate: the rate which is to be rounded
885 *
886 * Takes in a rate as input and rounds it to a rate that the clk can actually
887 * use which is then returned. If clk doesn't support round_rate operation
888 * then the parent rate is returned.
889 */
890long clk_round_rate(struct clk *clk, unsigned long rate)
891{
892 unsigned long ret;
893
Mike Turquetteeab89f62013-03-28 13:59:01 -0700894 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700895 ret = __clk_round_rate(clk, rate);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700896 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700897
898 return ret;
899}
900EXPORT_SYMBOL_GPL(clk_round_rate);
901
902/**
903 * __clk_notify - call clk notifier chain
904 * @clk: struct clk * that is changing rate
905 * @msg: clk notifier type (see include/linux/clk.h)
906 * @old_rate: old clk rate
907 * @new_rate: new clk rate
908 *
909 * Triggers a notifier call chain on the clk rate-change notification
910 * for 'clk'. Passes a pointer to the struct clk and the previous
911 * and current rates to the notifier callback. Intended to be called by
912 * internal clock code only. Returns NOTIFY_DONE from the last driver
913 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
914 * a driver returns that.
915 */
916static int __clk_notify(struct clk *clk, unsigned long msg,
917 unsigned long old_rate, unsigned long new_rate)
918{
919 struct clk_notifier *cn;
920 struct clk_notifier_data cnd;
921 int ret = NOTIFY_DONE;
922
923 cnd.clk = clk;
924 cnd.old_rate = old_rate;
925 cnd.new_rate = new_rate;
926
927 list_for_each_entry(cn, &clk_notifier_list, node) {
928 if (cn->clk == clk) {
929 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
930 &cnd);
931 break;
932 }
933 }
934
935 return ret;
936}
937
938/**
939 * __clk_recalc_rates
940 * @clk: first clk in the subtree
941 * @msg: notification type (see include/linux/clk.h)
942 *
943 * Walks the subtree of clks starting with clk and recalculates rates as it
944 * goes. Note that if a clk does not implement the .recalc_rate callback then
945 * it is assumed that the clock will take on the rate of it's parent.
946 *
947 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
948 * if necessary.
949 *
950 * Caller must hold prepare_lock.
951 */
952static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
953{
954 unsigned long old_rate;
955 unsigned long parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700956 struct clk *child;
957
958 old_rate = clk->rate;
959
960 if (clk->parent)
961 parent_rate = clk->parent->rate;
962
963 if (clk->ops->recalc_rate)
964 clk->rate = clk->ops->recalc_rate(clk->hw, parent_rate);
965 else
966 clk->rate = parent_rate;
967
968 /*
969 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
970 * & ABORT_RATE_CHANGE notifiers
971 */
972 if (clk->notifier_count && msg)
973 __clk_notify(clk, msg, old_rate, clk->rate);
974
Sasha Levinb67bfe02013-02-27 17:06:00 -0800975 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700976 __clk_recalc_rates(child, msg);
977}
978
979/**
Ulf Hanssona093bde2012-08-31 14:21:28 +0200980 * clk_get_rate - return the rate of clk
981 * @clk: the clk whose rate is being returned
982 *
983 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
984 * is set, which means a recalc_rate will be issued.
985 * If clk is NULL then returns 0.
986 */
987unsigned long clk_get_rate(struct clk *clk)
988{
989 unsigned long rate;
990
Mike Turquetteeab89f62013-03-28 13:59:01 -0700991 clk_prepare_lock();
Ulf Hanssona093bde2012-08-31 14:21:28 +0200992
993 if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
994 __clk_recalc_rates(clk, 0);
995
996 rate = __clk_get_rate(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700997 clk_prepare_unlock();
Ulf Hanssona093bde2012-08-31 14:21:28 +0200998
999 return rate;
1000}
1001EXPORT_SYMBOL_GPL(clk_get_rate);
1002
1003/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001004 * __clk_speculate_rates
1005 * @clk: first clk in the subtree
1006 * @parent_rate: the "future" rate of clk's parent
1007 *
1008 * Walks the subtree of clks starting with clk, speculating rates as it
1009 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1010 *
1011 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1012 * pre-rate change notifications and returns early if no clks in the
1013 * subtree have subscribed to the notifications. Note that if a clk does not
1014 * implement the .recalc_rate callback then it is assumed that the clock will
1015 * take on the rate of it's parent.
1016 *
1017 * Caller must hold prepare_lock.
1018 */
1019static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
1020{
Mike Turquetteb24764902012-03-15 23:11:19 -07001021 struct clk *child;
1022 unsigned long new_rate;
1023 int ret = NOTIFY_DONE;
1024
1025 if (clk->ops->recalc_rate)
1026 new_rate = clk->ops->recalc_rate(clk->hw, parent_rate);
1027 else
1028 new_rate = parent_rate;
1029
1030 /* abort the rate change if a driver returns NOTIFY_BAD */
1031 if (clk->notifier_count)
1032 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
1033
1034 if (ret == NOTIFY_BAD)
1035 goto out;
1036
Sasha Levinb67bfe02013-02-27 17:06:00 -08001037 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001038 ret = __clk_speculate_rates(child, new_rate);
1039 if (ret == NOTIFY_BAD)
1040 break;
1041 }
1042
1043out:
1044 return ret;
1045}
1046
1047static void clk_calc_subtree(struct clk *clk, unsigned long new_rate)
1048{
1049 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001050
1051 clk->new_rate = new_rate;
1052
Sasha Levinb67bfe02013-02-27 17:06:00 -08001053 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001054 if (child->ops->recalc_rate)
1055 child->new_rate = child->ops->recalc_rate(child->hw, new_rate);
1056 else
1057 child->new_rate = new_rate;
1058 clk_calc_subtree(child, child->new_rate);
1059 }
1060}
1061
1062/*
1063 * calculate the new rates returning the topmost clock that has to be
1064 * changed.
1065 */
1066static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
1067{
1068 struct clk *top = clk;
Shawn Guo81536e02012-04-12 20:50:17 +08001069 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001070 unsigned long new_rate;
1071
Mike Turquette7452b212012-03-26 14:45:36 -07001072 /* sanity */
1073 if (IS_ERR_OR_NULL(clk))
1074 return NULL;
1075
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001076 /* save parent rate, if it exists */
1077 if (clk->parent)
1078 best_parent_rate = clk->parent->rate;
1079
Mike Turquette7452b212012-03-26 14:45:36 -07001080 /* never propagate up to the parent */
1081 if (!(clk->flags & CLK_SET_RATE_PARENT)) {
1082 if (!clk->ops->round_rate) {
1083 clk->new_rate = clk->rate;
1084 return NULL;
Mike Turquette7452b212012-03-26 14:45:36 -07001085 }
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001086 new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
1087 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001088 }
1089
1090 /* need clk->parent from here on out */
1091 if (!clk->parent) {
1092 pr_debug("%s: %s has NULL parent\n", __func__, clk->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001093 return NULL;
1094 }
1095
Mike Turquette7452b212012-03-26 14:45:36 -07001096 if (!clk->ops->round_rate) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001097 top = clk_calc_new_rates(clk->parent, rate);
Viresh Kumar1b2f9902012-04-17 16:45:38 +05301098 new_rate = clk->parent->new_rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001099
1100 goto out;
1101 }
1102
Mike Turquette7452b212012-03-26 14:45:36 -07001103 new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001104
1105 if (best_parent_rate != clk->parent->rate) {
1106 top = clk_calc_new_rates(clk->parent, best_parent_rate);
1107
1108 goto out;
1109 }
1110
1111out:
1112 clk_calc_subtree(clk, new_rate);
1113
1114 return top;
1115}
1116
1117/*
1118 * Notify about rate changes in a subtree. Always walk down the whole tree
1119 * so that in case of an error we can walk down the whole tree again and
1120 * abort the change.
1121 */
1122static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
1123{
Mike Turquetteb24764902012-03-15 23:11:19 -07001124 struct clk *child, *fail_clk = NULL;
1125 int ret = NOTIFY_DONE;
1126
1127 if (clk->rate == clk->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301128 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001129
1130 if (clk->notifier_count) {
1131 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
1132 if (ret == NOTIFY_BAD)
1133 fail_clk = clk;
1134 }
1135
Sasha Levinb67bfe02013-02-27 17:06:00 -08001136 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001137 clk = clk_propagate_rate_change(child, event);
1138 if (clk)
1139 fail_clk = clk;
1140 }
1141
1142 return fail_clk;
1143}
1144
1145/*
1146 * walk down a subtree and set the new rates notifying the rate
1147 * change on the way
1148 */
1149static void clk_change_rate(struct clk *clk)
1150{
1151 struct clk *child;
1152 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001153 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001154
1155 old_rate = clk->rate;
1156
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001157 if (clk->parent)
1158 best_parent_rate = clk->parent->rate;
1159
Mike Turquetteb24764902012-03-15 23:11:19 -07001160 if (clk->ops->set_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001161 clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001162
1163 if (clk->ops->recalc_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001164 clk->rate = clk->ops->recalc_rate(clk->hw, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001165 else
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001166 clk->rate = best_parent_rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001167
1168 if (clk->notifier_count && old_rate != clk->rate)
1169 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
1170
Sasha Levinb67bfe02013-02-27 17:06:00 -08001171 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001172 clk_change_rate(child);
1173}
1174
1175/**
1176 * clk_set_rate - specify a new rate for clk
1177 * @clk: the clk whose rate is being changed
1178 * @rate: the new rate for clk
1179 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001180 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001181 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001182 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1183 * propagate up to clk's parent; whether or not this happens depends on the
1184 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1185 * after calling .round_rate then upstream parent propagation is ignored. If
1186 * *parent_rate comes back with a new rate for clk's parent then we propagate
1187 * up to clk's parent and set it's rate. Upward propagation will continue
1188 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1189 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001190 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001191 * Rate changes are accomplished via tree traversal that also recalculates the
1192 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001193 *
1194 * Returns 0 on success, -EERROR otherwise.
1195 */
1196int clk_set_rate(struct clk *clk, unsigned long rate)
1197{
1198 struct clk *top, *fail_clk;
1199 int ret = 0;
1200
1201 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001202 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001203
1204 /* bail early if nothing to do */
1205 if (rate == clk->rate)
1206 goto out;
1207
Saravana Kannan7e0fa1b2012-05-15 13:43:42 -07001208 if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
Viresh Kumar0e1c0302012-04-11 16:03:42 +05301209 ret = -EBUSY;
1210 goto out;
1211 }
1212
Mike Turquetteb24764902012-03-15 23:11:19 -07001213 /* calculate new rates and get the topmost changed clock */
1214 top = clk_calc_new_rates(clk, rate);
1215 if (!top) {
1216 ret = -EINVAL;
1217 goto out;
1218 }
1219
1220 /* notify that we are about to change rates */
1221 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1222 if (fail_clk) {
1223 pr_warn("%s: failed to set %s rate\n", __func__,
1224 fail_clk->name);
1225 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1226 ret = -EBUSY;
1227 goto out;
1228 }
1229
1230 /* change the rates */
1231 clk_change_rate(top);
1232
Mike Turquetteb24764902012-03-15 23:11:19 -07001233out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001234 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001235
1236 return ret;
1237}
1238EXPORT_SYMBOL_GPL(clk_set_rate);
1239
1240/**
1241 * clk_get_parent - return the parent of a clk
1242 * @clk: the clk whose parent gets returned
1243 *
1244 * Simply returns clk->parent. Returns NULL if clk is NULL.
1245 */
1246struct clk *clk_get_parent(struct clk *clk)
1247{
1248 struct clk *parent;
1249
Mike Turquetteeab89f62013-03-28 13:59:01 -07001250 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001251 parent = __clk_get_parent(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001252 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001253
1254 return parent;
1255}
1256EXPORT_SYMBOL_GPL(clk_get_parent);
1257
1258/*
1259 * .get_parent is mandatory for clocks with multiple possible parents. It is
1260 * optional for single-parent clocks. Always call .get_parent if it is
1261 * available and WARN if it is missing for multi-parent clocks.
1262 *
1263 * For single-parent clocks without .get_parent, first check to see if the
1264 * .parents array exists, and if so use it to avoid an expensive tree
1265 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
1266 */
1267static struct clk *__clk_init_parent(struct clk *clk)
1268{
1269 struct clk *ret = NULL;
1270 u8 index;
1271
1272 /* handle the trivial cases */
1273
1274 if (!clk->num_parents)
1275 goto out;
1276
1277 if (clk->num_parents == 1) {
1278 if (IS_ERR_OR_NULL(clk->parent))
1279 ret = clk->parent = __clk_lookup(clk->parent_names[0]);
1280 ret = clk->parent;
1281 goto out;
1282 }
1283
1284 if (!clk->ops->get_parent) {
1285 WARN(!clk->ops->get_parent,
1286 "%s: multi-parent clocks must implement .get_parent\n",
1287 __func__);
1288 goto out;
1289 };
1290
1291 /*
1292 * Do our best to cache parent clocks in clk->parents. This prevents
1293 * unnecessary and expensive calls to __clk_lookup. We don't set
1294 * clk->parent here; that is done by the calling function
1295 */
1296
1297 index = clk->ops->get_parent(clk->hw);
1298
1299 if (!clk->parents)
1300 clk->parents =
Rajendra Nayak79750592012-06-06 14:41:31 +05301301 kzalloc((sizeof(struct clk*) * clk->num_parents),
Mike Turquetteb24764902012-03-15 23:11:19 -07001302 GFP_KERNEL);
1303
1304 if (!clk->parents)
1305 ret = __clk_lookup(clk->parent_names[index]);
1306 else if (!clk->parents[index])
1307 ret = clk->parents[index] =
1308 __clk_lookup(clk->parent_names[index]);
1309 else
1310 ret = clk->parents[index];
1311
1312out:
1313 return ret;
1314}
1315
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001316static void clk_reparent(struct clk *clk, struct clk *new_parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07001317{
Mike Turquetteb24764902012-03-15 23:11:19 -07001318 hlist_del(&clk->child_node);
1319
1320 if (new_parent)
1321 hlist_add_head(&clk->child_node, &new_parent->children);
1322 else
1323 hlist_add_head(&clk->child_node, &clk_orphan_list);
1324
Mike Turquetteb24764902012-03-15 23:11:19 -07001325 clk->parent = new_parent;
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001326}
Mike Turquetteb24764902012-03-15 23:11:19 -07001327
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001328void __clk_reparent(struct clk *clk, struct clk *new_parent)
1329{
1330 clk_reparent(clk, new_parent);
1331 clk_debug_reparent(clk, new_parent);
Mike Turquetteb24764902012-03-15 23:11:19 -07001332 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1333}
1334
Ulf Hansson031dcc92013-04-02 23:09:38 +02001335static u8 clk_fetch_parent_index(struct clk *clk, struct clk *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07001336{
Mike Turquetteb24764902012-03-15 23:11:19 -07001337 u8 i;
1338
Rajendra Nayak863b1322012-07-03 12:11:41 +05301339 if (!clk->parents)
Rajendra Nayak79750592012-06-06 14:41:31 +05301340 clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
1341 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001342
1343 /*
Rajendra Nayak863b1322012-07-03 12:11:41 +05301344 * find index of new parent clock using cached parent ptrs,
1345 * or if not yet cached, use string name comparison and cache
1346 * them now to avoid future calls to __clk_lookup.
Mike Turquetteb24764902012-03-15 23:11:19 -07001347 */
Rajendra Nayak863b1322012-07-03 12:11:41 +05301348 for (i = 0; i < clk->num_parents; i++) {
1349 if (clk->parents && clk->parents[i] == parent)
1350 break;
1351 else if (!strcmp(clk->parent_names[i], parent->name)) {
1352 if (clk->parents)
1353 clk->parents[i] = __clk_lookup(parent->name);
1354 break;
1355 }
1356 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001357
Ulf Hansson031dcc92013-04-02 23:09:38 +02001358 return i;
1359}
1360
1361static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index)
1362{
1363 unsigned long flags;
1364 int ret = 0;
1365 struct clk *old_parent = clk->parent;
Mike Turquetteb24764902012-03-15 23:11:19 -07001366
1367 /* migrate prepare and enable */
1368 if (clk->prepare_count)
1369 __clk_prepare(parent);
1370
1371 /* FIXME replace with clk_is_enabled(clk) someday */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001372 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001373 if (clk->enable_count)
1374 __clk_enable(parent);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001375 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -07001376
1377 /* change clock input source */
Ulf Hansson031dcc92013-04-02 23:09:38 +02001378 if (parent && clk->ops->set_parent)
1379 ret = clk->ops->set_parent(clk->hw, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001380
1381 /* clean up old prepare and enable */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001382 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001383 if (clk->enable_count)
1384 __clk_disable(old_parent);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001385 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -07001386
1387 if (clk->prepare_count)
1388 __clk_unprepare(old_parent);
1389
Mike Turquetteb24764902012-03-15 23:11:19 -07001390 return ret;
1391}
1392
1393/**
1394 * clk_set_parent - switch the parent of a mux clk
1395 * @clk: the mux clk whose input we are switching
1396 * @parent: the new input to clk
1397 *
1398 * Re-parent clk to use parent as it's new input source. If clk has the
1399 * CLK_SET_PARENT_GATE flag set then clk must be gated for this
1400 * operation to succeed. After successfully changing clk's parent
1401 * clk_set_parent will update the clk topology, sysfs topology and
1402 * propagate rate recalculation via __clk_recalc_rates. Returns 0 on
1403 * success, -EERROR otherwise.
1404 */
1405int clk_set_parent(struct clk *clk, struct clk *parent)
1406{
1407 int ret = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001408 u8 p_index = 0;
1409 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001410
1411 if (!clk || !clk->ops)
1412 return -EINVAL;
1413
Ulf Hansson031dcc92013-04-02 23:09:38 +02001414 /* verify ops for for multi-parent clks */
1415 if ((clk->num_parents > 1) && (!clk->ops->set_parent))
Mike Turquetteb24764902012-03-15 23:11:19 -07001416 return -ENOSYS;
1417
1418 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001419 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001420
1421 if (clk->parent == parent)
1422 goto out;
1423
Ulf Hansson031dcc92013-04-02 23:09:38 +02001424 /* check that we are allowed to re-parent if the clock is in use */
1425 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1426 ret = -EBUSY;
1427 goto out;
1428 }
1429
1430 /* try finding the new parent index */
1431 if (parent) {
1432 p_index = clk_fetch_parent_index(clk, parent);
1433 p_rate = parent->rate;
1434 if (p_index == clk->num_parents) {
1435 pr_debug("%s: clk %s can not be parent of clk %s\n",
1436 __func__, parent->name, clk->name);
1437 ret = -EINVAL;
1438 goto out;
1439 }
1440 }
1441
Mike Turquetteb24764902012-03-15 23:11:19 -07001442 /* propagate PRE_RATE_CHANGE notifications */
1443 if (clk->notifier_count)
Ulf Hansson031dcc92013-04-02 23:09:38 +02001444 ret = __clk_speculate_rates(clk, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001445
1446 /* abort if a driver objects */
1447 if (ret == NOTIFY_STOP)
1448 goto out;
1449
Ulf Hansson031dcc92013-04-02 23:09:38 +02001450 /* do the re-parent */
1451 ret = __clk_set_parent(clk, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001452
1453 /* propagate ABORT_RATE_CHANGE if .set_parent failed */
1454 if (ret) {
1455 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
1456 goto out;
1457 }
1458
1459 /* propagate rate recalculation downstream */
1460 __clk_reparent(clk, parent);
1461
1462out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001463 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001464
1465 return ret;
1466}
1467EXPORT_SYMBOL_GPL(clk_set_parent);
1468
1469/**
1470 * __clk_init - initialize the data structures in a struct clk
1471 * @dev: device initializing this clk, placeholder for now
1472 * @clk: clk being initialized
1473 *
1474 * Initializes the lists in struct clk, queries the hardware for the
1475 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07001476 */
Mike Turquetted1302a32012-03-29 14:30:40 -07001477int __clk_init(struct device *dev, struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001478{
Mike Turquetted1302a32012-03-29 14:30:40 -07001479 int i, ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001480 struct clk *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001481 struct hlist_node *tmp2;
Mike Turquetteb24764902012-03-15 23:11:19 -07001482
1483 if (!clk)
Mike Turquetted1302a32012-03-29 14:30:40 -07001484 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001485
Mike Turquetteeab89f62013-03-28 13:59:01 -07001486 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001487
1488 /* check to see if a clock with this name is already registered */
Mike Turquetted1302a32012-03-29 14:30:40 -07001489 if (__clk_lookup(clk->name)) {
1490 pr_debug("%s: clk %s already initialized\n",
1491 __func__, clk->name);
1492 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07001493 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07001494 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001495
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001496 /* check that clk_ops are sane. See Documentation/clk.txt */
1497 if (clk->ops->set_rate &&
1498 !(clk->ops->round_rate && clk->ops->recalc_rate)) {
1499 pr_warning("%s: %s must implement .round_rate & .recalc_rate\n",
1500 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001501 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001502 goto out;
1503 }
1504
1505 if (clk->ops->set_parent && !clk->ops->get_parent) {
1506 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1507 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001508 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001509 goto out;
1510 }
1511
Mike Turquetteb24764902012-03-15 23:11:19 -07001512 /* throw a WARN if any entries in parent_names are NULL */
1513 for (i = 0; i < clk->num_parents; i++)
1514 WARN(!clk->parent_names[i],
1515 "%s: invalid NULL in %s's .parent_names\n",
1516 __func__, clk->name);
1517
1518 /*
1519 * Allocate an array of struct clk *'s to avoid unnecessary string
1520 * look-ups of clk's possible parents. This can fail for clocks passed
1521 * in to clk_init during early boot; thus any access to clk->parents[]
1522 * must always check for a NULL pointer and try to populate it if
1523 * necessary.
1524 *
1525 * If clk->parents is not NULL we skip this entire block. This allows
1526 * for clock drivers to statically initialize clk->parents.
1527 */
Rajendra Nayak9ca1c5a2012-06-06 14:41:30 +05301528 if (clk->num_parents > 1 && !clk->parents) {
1529 clk->parents = kzalloc((sizeof(struct clk*) * clk->num_parents),
Mike Turquetteb24764902012-03-15 23:11:19 -07001530 GFP_KERNEL);
1531 /*
1532 * __clk_lookup returns NULL for parents that have not been
1533 * clk_init'd; thus any access to clk->parents[] must check
1534 * for a NULL pointer. We can always perform lazy lookups for
1535 * missing parents later on.
1536 */
1537 if (clk->parents)
1538 for (i = 0; i < clk->num_parents; i++)
1539 clk->parents[i] =
1540 __clk_lookup(clk->parent_names[i]);
1541 }
1542
1543 clk->parent = __clk_init_parent(clk);
1544
1545 /*
1546 * Populate clk->parent if parent has already been __clk_init'd. If
1547 * parent has not yet been __clk_init'd then place clk in the orphan
1548 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1549 * clk list.
1550 *
1551 * Every time a new clk is clk_init'd then we walk the list of orphan
1552 * clocks and re-parent any that are children of the clock currently
1553 * being clk_init'd.
1554 */
1555 if (clk->parent)
1556 hlist_add_head(&clk->child_node,
1557 &clk->parent->children);
1558 else if (clk->flags & CLK_IS_ROOT)
1559 hlist_add_head(&clk->child_node, &clk_root_list);
1560 else
1561 hlist_add_head(&clk->child_node, &clk_orphan_list);
1562
1563 /*
1564 * Set clk's rate. The preferred method is to use .recalc_rate. For
1565 * simple clocks and lazy developers the default fallback is to use the
1566 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1567 * then rate is set to zero.
1568 */
1569 if (clk->ops->recalc_rate)
1570 clk->rate = clk->ops->recalc_rate(clk->hw,
1571 __clk_get_rate(clk->parent));
1572 else if (clk->parent)
1573 clk->rate = clk->parent->rate;
1574 else
1575 clk->rate = 0;
1576
1577 /*
1578 * walk the list of orphan clocks and reparent any that are children of
1579 * this clock
1580 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001581 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001582 if (orphan->ops->get_parent) {
1583 i = orphan->ops->get_parent(orphan->hw);
1584 if (!strcmp(clk->name, orphan->parent_names[i]))
1585 __clk_reparent(orphan, clk);
1586 continue;
1587 }
1588
Mike Turquetteb24764902012-03-15 23:11:19 -07001589 for (i = 0; i < orphan->num_parents; i++)
1590 if (!strcmp(clk->name, orphan->parent_names[i])) {
1591 __clk_reparent(orphan, clk);
1592 break;
1593 }
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001594 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001595
1596 /*
1597 * optional platform-specific magic
1598 *
1599 * The .init callback is not used by any of the basic clock types, but
1600 * exists for weird hardware that must perform initialization magic.
1601 * Please consider other ways of solving initialization problems before
1602 * using this callback, as it's use is discouraged.
1603 */
1604 if (clk->ops->init)
1605 clk->ops->init(clk->hw);
1606
1607 clk_debug_register(clk);
1608
1609out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001610 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001611
Mike Turquetted1302a32012-03-29 14:30:40 -07001612 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001613}
1614
1615/**
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001616 * __clk_register - register a clock and return a cookie.
1617 *
1618 * Same as clk_register, except that the .clk field inside hw shall point to a
1619 * preallocated (generally statically allocated) struct clk. None of the fields
1620 * of the struct clk need to be initialized.
1621 *
1622 * The data pointed to by .init and .clk field shall NOT be marked as init
1623 * data.
1624 *
1625 * __clk_register is only exposed via clk-private.h and is intended for use with
1626 * very large numbers of clocks that need to be statically initialized. It is
1627 * a layering violation to include clk-private.h from any code which implements
1628 * a clock's .ops; as such any statically initialized clock data MUST be in a
1629 * separate C file from the logic that implements it's operations. Returns 0
1630 * on success, otherwise an error code.
1631 */
1632struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
1633{
1634 int ret;
1635 struct clk *clk;
1636
1637 clk = hw->clk;
1638 clk->name = hw->init->name;
1639 clk->ops = hw->init->ops;
1640 clk->hw = hw;
1641 clk->flags = hw->init->flags;
1642 clk->parent_names = hw->init->parent_names;
1643 clk->num_parents = hw->init->num_parents;
1644
1645 ret = __clk_init(dev, clk);
1646 if (ret)
1647 return ERR_PTR(ret);
1648
1649 return clk;
1650}
1651EXPORT_SYMBOL_GPL(__clk_register);
1652
Stephen Boyd46c87732012-09-24 13:38:04 -07001653static int _clk_register(struct device *dev, struct clk_hw *hw, struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001654{
Mike Turquetted1302a32012-03-29 14:30:40 -07001655 int i, ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001656
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001657 clk->name = kstrdup(hw->init->name, GFP_KERNEL);
1658 if (!clk->name) {
1659 pr_err("%s: could not allocate clk->name\n", __func__);
1660 ret = -ENOMEM;
1661 goto fail_name;
1662 }
1663 clk->ops = hw->init->ops;
Mike Turquetteb24764902012-03-15 23:11:19 -07001664 clk->hw = hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001665 clk->flags = hw->init->flags;
1666 clk->num_parents = hw->init->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -07001667 hw->clk = clk;
1668
Mike Turquetted1302a32012-03-29 14:30:40 -07001669 /* allocate local copy in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001670 clk->parent_names = kzalloc((sizeof(char*) * clk->num_parents),
Mike Turquetted1302a32012-03-29 14:30:40 -07001671 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001672
Mike Turquetted1302a32012-03-29 14:30:40 -07001673 if (!clk->parent_names) {
1674 pr_err("%s: could not allocate clk->parent_names\n", __func__);
1675 ret = -ENOMEM;
1676 goto fail_parent_names;
1677 }
1678
1679
1680 /* copy each string name in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001681 for (i = 0; i < clk->num_parents; i++) {
1682 clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
1683 GFP_KERNEL);
Mike Turquetted1302a32012-03-29 14:30:40 -07001684 if (!clk->parent_names[i]) {
1685 pr_err("%s: could not copy parent_names\n", __func__);
1686 ret = -ENOMEM;
1687 goto fail_parent_names_copy;
1688 }
1689 }
1690
1691 ret = __clk_init(dev, clk);
1692 if (!ret)
Stephen Boyd46c87732012-09-24 13:38:04 -07001693 return 0;
Mike Turquetted1302a32012-03-29 14:30:40 -07001694
1695fail_parent_names_copy:
1696 while (--i >= 0)
1697 kfree(clk->parent_names[i]);
1698 kfree(clk->parent_names);
1699fail_parent_names:
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001700 kfree(clk->name);
1701fail_name:
Stephen Boyd46c87732012-09-24 13:38:04 -07001702 return ret;
1703}
1704
1705/**
1706 * clk_register - allocate a new clock, register it and return an opaque cookie
1707 * @dev: device that is registering this clock
1708 * @hw: link to hardware-specific clock data
1709 *
1710 * clk_register is the primary interface for populating the clock tree with new
1711 * clock nodes. It returns a pointer to the newly allocated struct clk which
1712 * cannot be dereferenced by driver code but may be used in conjuction with the
1713 * rest of the clock API. In the event of an error clk_register will return an
1714 * error code; drivers must test for an error code after calling clk_register.
1715 */
1716struct clk *clk_register(struct device *dev, struct clk_hw *hw)
1717{
1718 int ret;
1719 struct clk *clk;
1720
1721 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
1722 if (!clk) {
1723 pr_err("%s: could not allocate clk\n", __func__);
1724 ret = -ENOMEM;
1725 goto fail_out;
1726 }
1727
1728 ret = _clk_register(dev, hw, clk);
1729 if (!ret)
1730 return clk;
1731
Mike Turquetted1302a32012-03-29 14:30:40 -07001732 kfree(clk);
1733fail_out:
1734 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001735}
1736EXPORT_SYMBOL_GPL(clk_register);
1737
Mark Brown1df5c932012-04-18 09:07:12 +01001738/**
1739 * clk_unregister - unregister a currently registered clock
1740 * @clk: clock to unregister
1741 *
1742 * Currently unimplemented.
1743 */
1744void clk_unregister(struct clk *clk) {}
1745EXPORT_SYMBOL_GPL(clk_unregister);
1746
Stephen Boyd46c87732012-09-24 13:38:04 -07001747static void devm_clk_release(struct device *dev, void *res)
1748{
1749 clk_unregister(res);
1750}
1751
1752/**
1753 * devm_clk_register - resource managed clk_register()
1754 * @dev: device that is registering this clock
1755 * @hw: link to hardware-specific clock data
1756 *
1757 * Managed clk_register(). Clocks returned from this function are
1758 * automatically clk_unregister()ed on driver detach. See clk_register() for
1759 * more information.
1760 */
1761struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
1762{
1763 struct clk *clk;
1764 int ret;
1765
1766 clk = devres_alloc(devm_clk_release, sizeof(*clk), GFP_KERNEL);
1767 if (!clk)
1768 return ERR_PTR(-ENOMEM);
1769
1770 ret = _clk_register(dev, hw, clk);
1771 if (!ret) {
1772 devres_add(dev, clk);
1773 } else {
1774 devres_free(clk);
1775 clk = ERR_PTR(ret);
1776 }
1777
1778 return clk;
1779}
1780EXPORT_SYMBOL_GPL(devm_clk_register);
1781
1782static int devm_clk_match(struct device *dev, void *res, void *data)
1783{
1784 struct clk *c = res;
1785 if (WARN_ON(!c))
1786 return 0;
1787 return c == data;
1788}
1789
1790/**
1791 * devm_clk_unregister - resource managed clk_unregister()
1792 * @clk: clock to unregister
1793 *
1794 * Deallocate a clock allocated with devm_clk_register(). Normally
1795 * this function will not need to be called and the resource management
1796 * code will ensure that the resource is freed.
1797 */
1798void devm_clk_unregister(struct device *dev, struct clk *clk)
1799{
1800 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
1801}
1802EXPORT_SYMBOL_GPL(devm_clk_unregister);
1803
Mike Turquetteb24764902012-03-15 23:11:19 -07001804/*** clk rate change notifiers ***/
1805
1806/**
1807 * clk_notifier_register - add a clk rate change notifier
1808 * @clk: struct clk * to watch
1809 * @nb: struct notifier_block * with callback info
1810 *
1811 * Request notification when clk's rate changes. This uses an SRCU
1812 * notifier because we want it to block and notifier unregistrations are
1813 * uncommon. The callbacks associated with the notifier must not
1814 * re-enter into the clk framework by calling any top-level clk APIs;
1815 * this will cause a nested prepare_lock mutex.
1816 *
1817 * Pre-change notifier callbacks will be passed the current, pre-change
1818 * rate of the clk via struct clk_notifier_data.old_rate. The new,
1819 * post-change rate of the clk is passed via struct
1820 * clk_notifier_data.new_rate.
1821 *
1822 * Post-change notifiers will pass the now-current, post-change rate of
1823 * the clk in both struct clk_notifier_data.old_rate and struct
1824 * clk_notifier_data.new_rate.
1825 *
1826 * Abort-change notifiers are effectively the opposite of pre-change
1827 * notifiers: the original pre-change clk rate is passed in via struct
1828 * clk_notifier_data.new_rate and the failed post-change rate is passed
1829 * in via struct clk_notifier_data.old_rate.
1830 *
1831 * clk_notifier_register() must be called from non-atomic context.
1832 * Returns -EINVAL if called with null arguments, -ENOMEM upon
1833 * allocation failure; otherwise, passes along the return value of
1834 * srcu_notifier_chain_register().
1835 */
1836int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
1837{
1838 struct clk_notifier *cn;
1839 int ret = -ENOMEM;
1840
1841 if (!clk || !nb)
1842 return -EINVAL;
1843
Mike Turquetteeab89f62013-03-28 13:59:01 -07001844 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001845
1846 /* search the list of notifiers for this clk */
1847 list_for_each_entry(cn, &clk_notifier_list, node)
1848 if (cn->clk == clk)
1849 break;
1850
1851 /* if clk wasn't in the notifier list, allocate new clk_notifier */
1852 if (cn->clk != clk) {
1853 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
1854 if (!cn)
1855 goto out;
1856
1857 cn->clk = clk;
1858 srcu_init_notifier_head(&cn->notifier_head);
1859
1860 list_add(&cn->node, &clk_notifier_list);
1861 }
1862
1863 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
1864
1865 clk->notifier_count++;
1866
1867out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001868 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001869
1870 return ret;
1871}
1872EXPORT_SYMBOL_GPL(clk_notifier_register);
1873
1874/**
1875 * clk_notifier_unregister - remove a clk rate change notifier
1876 * @clk: struct clk *
1877 * @nb: struct notifier_block * with callback info
1878 *
1879 * Request no further notification for changes to 'clk' and frees memory
1880 * allocated in clk_notifier_register.
1881 *
1882 * Returns -EINVAL if called with null arguments; otherwise, passes
1883 * along the return value of srcu_notifier_chain_unregister().
1884 */
1885int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
1886{
1887 struct clk_notifier *cn = NULL;
1888 int ret = -EINVAL;
1889
1890 if (!clk || !nb)
1891 return -EINVAL;
1892
Mike Turquetteeab89f62013-03-28 13:59:01 -07001893 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001894
1895 list_for_each_entry(cn, &clk_notifier_list, node)
1896 if (cn->clk == clk)
1897 break;
1898
1899 if (cn->clk == clk) {
1900 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
1901
1902 clk->notifier_count--;
1903
1904 /* XXX the notifier code should handle this better */
1905 if (!cn->notifier_head.head) {
1906 srcu_cleanup_notifier_head(&cn->notifier_head);
1907 kfree(cn);
1908 }
1909
1910 } else {
1911 ret = -ENOENT;
1912 }
1913
Mike Turquetteeab89f62013-03-28 13:59:01 -07001914 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001915
1916 return ret;
1917}
1918EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05001919
1920#ifdef CONFIG_OF
1921/**
1922 * struct of_clk_provider - Clock provider registration structure
1923 * @link: Entry in global list of clock providers
1924 * @node: Pointer to device tree node of clock provider
1925 * @get: Get clock callback. Returns NULL or a struct clk for the
1926 * given clock specifier
1927 * @data: context pointer to be passed into @get callback
1928 */
1929struct of_clk_provider {
1930 struct list_head link;
1931
1932 struct device_node *node;
1933 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
1934 void *data;
1935};
1936
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05301937extern struct of_device_id __clk_of_table[];
1938
1939static const struct of_device_id __clk_of_table_sentinel
1940 __used __section(__clk_of_table_end);
1941
Grant Likely766e6a42012-04-09 14:50:06 -05001942static LIST_HEAD(of_clk_providers);
1943static DEFINE_MUTEX(of_clk_lock);
1944
1945struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
1946 void *data)
1947{
1948 return data;
1949}
1950EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
1951
Shawn Guo494bfec2012-08-22 21:36:27 +08001952struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
1953{
1954 struct clk_onecell_data *clk_data = data;
1955 unsigned int idx = clkspec->args[0];
1956
1957 if (idx >= clk_data->clk_num) {
1958 pr_err("%s: invalid clock index %d\n", __func__, idx);
1959 return ERR_PTR(-EINVAL);
1960 }
1961
1962 return clk_data->clks[idx];
1963}
1964EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
1965
Grant Likely766e6a42012-04-09 14:50:06 -05001966/**
1967 * of_clk_add_provider() - Register a clock provider for a node
1968 * @np: Device node pointer associated with clock provider
1969 * @clk_src_get: callback for decoding clock
1970 * @data: context pointer for @clk_src_get callback.
1971 */
1972int of_clk_add_provider(struct device_node *np,
1973 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
1974 void *data),
1975 void *data)
1976{
1977 struct of_clk_provider *cp;
1978
1979 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
1980 if (!cp)
1981 return -ENOMEM;
1982
1983 cp->node = of_node_get(np);
1984 cp->data = data;
1985 cp->get = clk_src_get;
1986
1987 mutex_lock(&of_clk_lock);
1988 list_add(&cp->link, &of_clk_providers);
1989 mutex_unlock(&of_clk_lock);
1990 pr_debug("Added clock from %s\n", np->full_name);
1991
1992 return 0;
1993}
1994EXPORT_SYMBOL_GPL(of_clk_add_provider);
1995
1996/**
1997 * of_clk_del_provider() - Remove a previously registered clock provider
1998 * @np: Device node pointer associated with clock provider
1999 */
2000void of_clk_del_provider(struct device_node *np)
2001{
2002 struct of_clk_provider *cp;
2003
2004 mutex_lock(&of_clk_lock);
2005 list_for_each_entry(cp, &of_clk_providers, link) {
2006 if (cp->node == np) {
2007 list_del(&cp->link);
2008 of_node_put(cp->node);
2009 kfree(cp);
2010 break;
2011 }
2012 }
2013 mutex_unlock(&of_clk_lock);
2014}
2015EXPORT_SYMBOL_GPL(of_clk_del_provider);
2016
2017struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
2018{
2019 struct of_clk_provider *provider;
2020 struct clk *clk = ERR_PTR(-ENOENT);
2021
2022 /* Check if we have such a provider in our array */
2023 mutex_lock(&of_clk_lock);
2024 list_for_each_entry(provider, &of_clk_providers, link) {
2025 if (provider->node == clkspec->np)
2026 clk = provider->get(clkspec, provider->data);
2027 if (!IS_ERR(clk))
2028 break;
2029 }
2030 mutex_unlock(&of_clk_lock);
2031
2032 return clk;
2033}
2034
2035const char *of_clk_get_parent_name(struct device_node *np, int index)
2036{
2037 struct of_phandle_args clkspec;
2038 const char *clk_name;
2039 int rc;
2040
2041 if (index < 0)
2042 return NULL;
2043
2044 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
2045 &clkspec);
2046 if (rc)
2047 return NULL;
2048
2049 if (of_property_read_string_index(clkspec.np, "clock-output-names",
2050 clkspec.args_count ? clkspec.args[0] : 0,
2051 &clk_name) < 0)
2052 clk_name = clkspec.np->name;
2053
2054 of_node_put(clkspec.np);
2055 return clk_name;
2056}
2057EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
2058
2059/**
2060 * of_clk_init() - Scan and init clock providers from the DT
2061 * @matches: array of compatible values and init functions for providers.
2062 *
2063 * This function scans the device tree for matching clock providers and
2064 * calls their initialization functions
2065 */
2066void __init of_clk_init(const struct of_device_id *matches)
2067{
2068 struct device_node *np;
2069
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302070 if (!matches)
2071 matches = __clk_of_table;
2072
Grant Likely766e6a42012-04-09 14:50:06 -05002073 for_each_matching_node(np, matches) {
2074 const struct of_device_id *match = of_match_node(matches, np);
2075 of_clk_init_cb_t clk_init_cb = match->data;
2076 clk_init_cb(np);
2077 }
2078}
2079#endif