blob: 9ad3970504719df1877ded7f97e0f112663b55e3 [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
Sylwester Nawrockid6782c22013-08-23 17:03:43 +020024#include "clk.h"
25
Mike Turquetteb24764902012-03-15 23:11:19 -070026static DEFINE_SPINLOCK(enable_lock);
27static DEFINE_MUTEX(prepare_lock);
28
Mike Turquette533ddeb2013-03-28 13:59:02 -070029static struct task_struct *prepare_owner;
30static struct task_struct *enable_owner;
31
32static int prepare_refcnt;
33static int enable_refcnt;
34
Mike Turquetteb24764902012-03-15 23:11:19 -070035static HLIST_HEAD(clk_root_list);
36static HLIST_HEAD(clk_orphan_list);
37static LIST_HEAD(clk_notifier_list);
38
Mike Turquetteeab89f62013-03-28 13:59:01 -070039/*** locking ***/
40static void clk_prepare_lock(void)
41{
Mike Turquette533ddeb2013-03-28 13:59:02 -070042 if (!mutex_trylock(&prepare_lock)) {
43 if (prepare_owner == current) {
44 prepare_refcnt++;
45 return;
46 }
47 mutex_lock(&prepare_lock);
48 }
49 WARN_ON_ONCE(prepare_owner != NULL);
50 WARN_ON_ONCE(prepare_refcnt != 0);
51 prepare_owner = current;
52 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -070053}
54
55static void clk_prepare_unlock(void)
56{
Mike Turquette533ddeb2013-03-28 13:59:02 -070057 WARN_ON_ONCE(prepare_owner != current);
58 WARN_ON_ONCE(prepare_refcnt == 0);
59
60 if (--prepare_refcnt)
61 return;
62 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -070063 mutex_unlock(&prepare_lock);
64}
65
66static unsigned long clk_enable_lock(void)
67{
68 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -070069
70 if (!spin_trylock_irqsave(&enable_lock, flags)) {
71 if (enable_owner == current) {
72 enable_refcnt++;
73 return flags;
74 }
75 spin_lock_irqsave(&enable_lock, flags);
76 }
77 WARN_ON_ONCE(enable_owner != NULL);
78 WARN_ON_ONCE(enable_refcnt != 0);
79 enable_owner = current;
80 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -070081 return flags;
82}
83
84static void clk_enable_unlock(unsigned long flags)
85{
Mike Turquette533ddeb2013-03-28 13:59:02 -070086 WARN_ON_ONCE(enable_owner != current);
87 WARN_ON_ONCE(enable_refcnt == 0);
88
89 if (--enable_refcnt)
90 return;
91 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -070092 spin_unlock_irqrestore(&enable_lock, flags);
93}
94
Mike Turquetteb24764902012-03-15 23:11:19 -070095/*** debugfs support ***/
96
Mike Turquetteea72dc22013-12-18 21:38:52 -080097#ifdef CONFIG_DEBUG_FS
Mike Turquetteb24764902012-03-15 23:11:19 -070098#include <linux/debugfs.h>
99
100static struct dentry *rootdir;
Mike Turquetteb24764902012-03-15 23:11:19 -0700101static int inited = 0;
102
Sachin Kamat6b44c8542014-07-01 11:56:34 +0530103static struct hlist_head *all_lists[] = {
104 &clk_root_list,
105 &clk_orphan_list,
106 NULL,
107};
108
109static struct hlist_head *orphan_list[] = {
110 &clk_orphan_list,
111 NULL,
112};
113
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530114static void clk_summary_show_one(struct seq_file *s, struct clk *c, int level)
115{
116 if (!c)
117 return;
118
Geert Uytterhoevenfb8abb72014-03-25 12:16:24 +0100119 seq_printf(s, "%*s%-*s %11d %12d %11lu %10lu\n",
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530120 level * 3 + 1, "",
121 30 - level * 3, c->name,
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100122 c->enable_count, c->prepare_count, clk_get_rate(c),
123 clk_get_accuracy(c));
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530124}
125
126static void clk_summary_show_subtree(struct seq_file *s, struct clk *c,
127 int level)
128{
129 struct clk *child;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530130
131 if (!c)
132 return;
133
134 clk_summary_show_one(s, c, level);
135
Sasha Levinb67bfe02013-02-27 17:06:00 -0800136 hlist_for_each_entry(child, &c->children, child_node)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530137 clk_summary_show_subtree(s, child, level + 1);
138}
139
140static int clk_summary_show(struct seq_file *s, void *data)
141{
142 struct clk *c;
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300143 struct hlist_head **lists = (struct hlist_head **)s->private;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530144
Geert Uytterhoevenfb8abb72014-03-25 12:16:24 +0100145 seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy\n");
146 seq_puts(s, "--------------------------------------------------------------------------------\n");
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530147
Mike Turquetteeab89f62013-03-28 13:59:01 -0700148 clk_prepare_lock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530149
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300150 for (; *lists; lists++)
151 hlist_for_each_entry(c, *lists, child_node)
152 clk_summary_show_subtree(s, c, 0);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530153
Mike Turquetteeab89f62013-03-28 13:59:01 -0700154 clk_prepare_unlock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530155
156 return 0;
157}
158
159
160static int clk_summary_open(struct inode *inode, struct file *file)
161{
162 return single_open(file, clk_summary_show, inode->i_private);
163}
164
165static const struct file_operations clk_summary_fops = {
166 .open = clk_summary_open,
167 .read = seq_read,
168 .llseek = seq_lseek,
169 .release = single_release,
170};
171
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530172static void clk_dump_one(struct seq_file *s, struct clk *c, int level)
173{
174 if (!c)
175 return;
176
177 seq_printf(s, "\"%s\": { ", c->name);
178 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
179 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Peter De Schrijver670decd2013-06-05 18:06:35 +0300180 seq_printf(s, "\"rate\": %lu", clk_get_rate(c));
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100181 seq_printf(s, "\"accuracy\": %lu", clk_get_accuracy(c));
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530182}
183
184static void clk_dump_subtree(struct seq_file *s, struct clk *c, int level)
185{
186 struct clk *child;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530187
188 if (!c)
189 return;
190
191 clk_dump_one(s, c, level);
192
Sasha Levinb67bfe02013-02-27 17:06:00 -0800193 hlist_for_each_entry(child, &c->children, child_node) {
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530194 seq_printf(s, ",");
195 clk_dump_subtree(s, child, level + 1);
196 }
197
198 seq_printf(s, "}");
199}
200
201static int clk_dump(struct seq_file *s, void *data)
202{
203 struct clk *c;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530204 bool first_node = true;
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300205 struct hlist_head **lists = (struct hlist_head **)s->private;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530206
207 seq_printf(s, "{");
208
Mike Turquetteeab89f62013-03-28 13:59:01 -0700209 clk_prepare_lock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530210
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300211 for (; *lists; lists++) {
212 hlist_for_each_entry(c, *lists, child_node) {
213 if (!first_node)
214 seq_puts(s, ",");
215 first_node = false;
216 clk_dump_subtree(s, c, 0);
217 }
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530218 }
219
Mike Turquetteeab89f62013-03-28 13:59:01 -0700220 clk_prepare_unlock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530221
222 seq_printf(s, "}");
223 return 0;
224}
225
226
227static int clk_dump_open(struct inode *inode, struct file *file)
228{
229 return single_open(file, clk_dump, inode->i_private);
230}
231
232static const struct file_operations clk_dump_fops = {
233 .open = clk_dump_open,
234 .read = seq_read,
235 .llseek = seq_lseek,
236 .release = single_release,
237};
238
Mike Turquetteb24764902012-03-15 23:11:19 -0700239/* caller must hold prepare_lock */
240static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
241{
242 struct dentry *d;
243 int ret = -ENOMEM;
244
245 if (!clk || !pdentry) {
246 ret = -EINVAL;
247 goto out;
248 }
249
250 d = debugfs_create_dir(clk->name, pdentry);
251 if (!d)
252 goto out;
253
254 clk->dentry = d;
255
256 d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
257 (u32 *)&clk->rate);
258 if (!d)
259 goto err_out;
260
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100261 d = debugfs_create_u32("clk_accuracy", S_IRUGO, clk->dentry,
262 (u32 *)&clk->accuracy);
263 if (!d)
264 goto err_out;
265
Mike Turquetteb24764902012-03-15 23:11:19 -0700266 d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
267 (u32 *)&clk->flags);
268 if (!d)
269 goto err_out;
270
271 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
272 (u32 *)&clk->prepare_count);
273 if (!d)
274 goto err_out;
275
276 d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
277 (u32 *)&clk->enable_count);
278 if (!d)
279 goto err_out;
280
281 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
282 (u32 *)&clk->notifier_count);
283 if (!d)
284 goto err_out;
285
Alex Elderc646cbf2014-03-21 06:43:56 -0500286 if (clk->ops->debug_init)
287 if (clk->ops->debug_init(clk->hw, clk->dentry))
288 goto err_out;
289
Mike Turquetteb24764902012-03-15 23:11:19 -0700290 ret = 0;
291 goto out;
292
293err_out:
Alex Elderb5f98e62013-11-27 09:39:49 -0600294 debugfs_remove_recursive(clk->dentry);
295 clk->dentry = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -0700296out:
297 return ret;
298}
299
300/* caller must hold prepare_lock */
301static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry)
302{
303 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700304 int ret = -EINVAL;;
305
306 if (!clk || !pdentry)
307 goto out;
308
309 ret = clk_debug_create_one(clk, pdentry);
310
311 if (ret)
312 goto out;
313
Sasha Levinb67bfe02013-02-27 17:06:00 -0800314 hlist_for_each_entry(child, &clk->children, child_node)
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300315 clk_debug_create_subtree(child, pdentry);
Mike Turquetteb24764902012-03-15 23:11:19 -0700316
317 ret = 0;
318out:
319 return ret;
320}
321
322/**
323 * clk_debug_register - add a clk node to the debugfs clk tree
324 * @clk: the clk being added to the debugfs clk tree
325 *
326 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
327 * initialized. Otherwise it bails out early since the debugfs clk tree
328 * will be created lazily by clk_debug_init as part of a late_initcall.
329 *
330 * Caller must hold prepare_lock. Only clk_init calls this function (so
331 * far) so this is taken care.
332 */
333static int clk_debug_register(struct clk *clk)
334{
Mike Turquetteb24764902012-03-15 23:11:19 -0700335 int ret = 0;
336
337 if (!inited)
338 goto out;
339
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300340 ret = clk_debug_create_subtree(clk, rootdir);
Mike Turquetteb24764902012-03-15 23:11:19 -0700341
342out:
343 return ret;
344}
345
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200346 /**
347 * clk_debug_unregister - remove a clk node from the debugfs clk tree
348 * @clk: the clk being removed from the debugfs clk tree
349 *
350 * Dynamically removes a clk and all it's children clk nodes from the
351 * debugfs clk tree if clk->dentry points to debugfs created by
352 * clk_debug_register in __clk_init.
353 *
354 * Caller must hold prepare_lock.
355 */
356static void clk_debug_unregister(struct clk *clk)
357{
358 debugfs_remove_recursive(clk->dentry);
359}
360
Peter De Schrijverfb2b3c92014-06-26 18:00:53 +0300361struct dentry *clk_debugfs_add_file(struct clk *clk, char *name, umode_t mode,
362 void *data, const struct file_operations *fops)
363{
364 struct dentry *d = NULL;
365
366 if (clk->dentry)
367 d = debugfs_create_file(name, mode, clk->dentry, data, fops);
368
369 return d;
370}
371EXPORT_SYMBOL_GPL(clk_debugfs_add_file);
372
Mike Turquetteb24764902012-03-15 23:11:19 -0700373/**
374 * clk_debug_init - lazily create the debugfs clk tree visualization
375 *
376 * clks are often initialized very early during boot before memory can
377 * be dynamically allocated and well before debugfs is setup.
378 * clk_debug_init walks the clk tree hierarchy while holding
379 * prepare_lock and creates the topology as part of a late_initcall,
380 * thus insuring that clks initialized very early will still be
381 * represented in the debugfs clk tree. This function should only be
382 * called once at boot-time, and all other clks added dynamically will
383 * be done so with clk_debug_register.
384 */
385static int __init clk_debug_init(void)
386{
387 struct clk *clk;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530388 struct dentry *d;
Mike Turquetteb24764902012-03-15 23:11:19 -0700389
390 rootdir = debugfs_create_dir("clk", NULL);
391
392 if (!rootdir)
393 return -ENOMEM;
394
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300395 d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, &all_lists,
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530396 &clk_summary_fops);
397 if (!d)
398 return -ENOMEM;
399
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300400 d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, &all_lists,
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530401 &clk_dump_fops);
402 if (!d)
403 return -ENOMEM;
404
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300405 d = debugfs_create_file("clk_orphan_summary", S_IRUGO, rootdir,
406 &orphan_list, &clk_summary_fops);
407 if (!d)
408 return -ENOMEM;
Mike Turquetteb24764902012-03-15 23:11:19 -0700409
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300410 d = debugfs_create_file("clk_orphan_dump", S_IRUGO, rootdir,
411 &orphan_list, &clk_dump_fops);
412 if (!d)
Mike Turquetteb24764902012-03-15 23:11:19 -0700413 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)
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300421 clk_debug_create_subtree(clk, rootdir);
Mike Turquetteb24764902012-03-15 23:11:19 -0700422
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}
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200435static inline void clk_debug_unregister(struct clk *clk)
436{
437}
Mike Turquette70d347e2012-03-26 11:53:47 -0700438#endif
Mike Turquetteb24764902012-03-15 23:11:19 -0700439
Mike Turquetteb24764902012-03-15 23:11:19 -0700440/* caller must hold prepare_lock */
Ulf Hansson1c155b32013-03-12 20:26:03 +0100441static void clk_unprepare_unused_subtree(struct clk *clk)
442{
443 struct clk *child;
444
445 if (!clk)
446 return;
447
448 hlist_for_each_entry(child, &clk->children, child_node)
449 clk_unprepare_unused_subtree(child);
450
451 if (clk->prepare_count)
452 return;
453
454 if (clk->flags & CLK_IGNORE_UNUSED)
455 return;
456
Ulf Hansson3cc82472013-03-12 20:26:04 +0100457 if (__clk_is_prepared(clk)) {
458 if (clk->ops->unprepare_unused)
459 clk->ops->unprepare_unused(clk->hw);
460 else if (clk->ops->unprepare)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100461 clk->ops->unprepare(clk->hw);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100462 }
Ulf Hansson1c155b32013-03-12 20:26:03 +0100463}
464
465/* caller must hold prepare_lock */
Mike Turquetteb24764902012-03-15 23:11:19 -0700466static void clk_disable_unused_subtree(struct clk *clk)
467{
468 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700469 unsigned long flags;
470
471 if (!clk)
472 goto out;
473
Sasha Levinb67bfe02013-02-27 17:06:00 -0800474 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700475 clk_disable_unused_subtree(child);
476
Mike Turquetteeab89f62013-03-28 13:59:01 -0700477 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700478
479 if (clk->enable_count)
480 goto unlock_out;
481
482 if (clk->flags & CLK_IGNORE_UNUSED)
483 goto unlock_out;
484
Mike Turquette7c045a52012-12-04 11:00:35 -0800485 /*
486 * some gate clocks have special needs during the disable-unused
487 * sequence. call .disable_unused if available, otherwise fall
488 * back to .disable
489 */
490 if (__clk_is_enabled(clk)) {
491 if (clk->ops->disable_unused)
492 clk->ops->disable_unused(clk->hw);
493 else if (clk->ops->disable)
494 clk->ops->disable(clk->hw);
495 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700496
497unlock_out:
Mike Turquetteeab89f62013-03-28 13:59:01 -0700498 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700499
500out:
501 return;
502}
503
Olof Johansson1e435252013-04-27 14:10:18 -0700504static bool clk_ignore_unused;
505static int __init clk_ignore_unused_setup(char *__unused)
506{
507 clk_ignore_unused = true;
508 return 1;
509}
510__setup("clk_ignore_unused", clk_ignore_unused_setup);
511
Mike Turquetteb24764902012-03-15 23:11:19 -0700512static int clk_disable_unused(void)
513{
514 struct clk *clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700515
Olof Johansson1e435252013-04-27 14:10:18 -0700516 if (clk_ignore_unused) {
517 pr_warn("clk: Not disabling unused clocks\n");
518 return 0;
519 }
520
Mike Turquetteeab89f62013-03-28 13:59:01 -0700521 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700522
Sasha Levinb67bfe02013-02-27 17:06:00 -0800523 hlist_for_each_entry(clk, &clk_root_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700524 clk_disable_unused_subtree(clk);
525
Sasha Levinb67bfe02013-02-27 17:06:00 -0800526 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700527 clk_disable_unused_subtree(clk);
528
Ulf Hansson1c155b32013-03-12 20:26:03 +0100529 hlist_for_each_entry(clk, &clk_root_list, child_node)
530 clk_unprepare_unused_subtree(clk);
531
532 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
533 clk_unprepare_unused_subtree(clk);
534
Mike Turquetteeab89f62013-03-28 13:59:01 -0700535 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700536
537 return 0;
538}
Saravana Kannand41d5802013-05-09 11:35:01 -0700539late_initcall_sync(clk_disable_unused);
Mike Turquetteb24764902012-03-15 23:11:19 -0700540
541/*** helper functions ***/
542
Russ Dill65800b22012-11-26 11:20:09 -0800543const char *__clk_get_name(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700544{
545 return !clk ? NULL : clk->name;
546}
Niels de Vos48950842012-12-13 13:12:25 +0100547EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700548
Russ Dill65800b22012-11-26 11:20:09 -0800549struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700550{
551 return !clk ? NULL : clk->hw;
552}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800553EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700554
Russ Dill65800b22012-11-26 11:20:09 -0800555u8 __clk_get_num_parents(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700556{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700557 return !clk ? 0 : clk->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -0700558}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800559EXPORT_SYMBOL_GPL(__clk_get_num_parents);
Mike Turquetteb24764902012-03-15 23:11:19 -0700560
Russ Dill65800b22012-11-26 11:20:09 -0800561struct clk *__clk_get_parent(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700562{
563 return !clk ? NULL : clk->parent;
564}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800565EXPORT_SYMBOL_GPL(__clk_get_parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700566
James Hogan7ef3dcc2013-07-29 12:24:58 +0100567struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
568{
569 if (!clk || index >= clk->num_parents)
570 return NULL;
571 else if (!clk->parents)
572 return __clk_lookup(clk->parent_names[index]);
573 else if (!clk->parents[index])
574 return clk->parents[index] =
575 __clk_lookup(clk->parent_names[index]);
576 else
577 return clk->parents[index];
578}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800579EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100580
Russ Dill65800b22012-11-26 11:20:09 -0800581unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700582{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700583 return !clk ? 0 : clk->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700584}
585
Russ Dill65800b22012-11-26 11:20:09 -0800586unsigned int __clk_get_prepare_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700587{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700588 return !clk ? 0 : clk->prepare_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700589}
590
591unsigned long __clk_get_rate(struct clk *clk)
592{
593 unsigned long ret;
594
595 if (!clk) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530596 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700597 goto out;
598 }
599
600 ret = clk->rate;
601
602 if (clk->flags & CLK_IS_ROOT)
603 goto out;
604
605 if (!clk->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530606 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700607
608out:
609 return ret;
610}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800611EXPORT_SYMBOL_GPL(__clk_get_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700612
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100613unsigned long __clk_get_accuracy(struct clk *clk)
614{
615 if (!clk)
616 return 0;
617
618 return clk->accuracy;
619}
620
Russ Dill65800b22012-11-26 11:20:09 -0800621unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700622{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700623 return !clk ? 0 : clk->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700624}
Thierry Redingb05c6832013-09-03 09:43:51 +0200625EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700626
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100627bool __clk_is_prepared(struct clk *clk)
628{
629 int ret;
630
631 if (!clk)
632 return false;
633
634 /*
635 * .is_prepared is optional for clocks that can prepare
636 * fall back to software usage counter if it is missing
637 */
638 if (!clk->ops->is_prepared) {
639 ret = clk->prepare_count ? 1 : 0;
640 goto out;
641 }
642
643 ret = clk->ops->is_prepared(clk->hw);
644out:
645 return !!ret;
646}
647
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700648bool __clk_is_enabled(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700649{
650 int ret;
651
652 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700653 return false;
Mike Turquetteb24764902012-03-15 23:11:19 -0700654
655 /*
656 * .is_enabled is only mandatory for clocks that gate
657 * fall back to software usage counter if .is_enabled is missing
658 */
659 if (!clk->ops->is_enabled) {
660 ret = clk->enable_count ? 1 : 0;
661 goto out;
662 }
663
664 ret = clk->ops->is_enabled(clk->hw);
665out:
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700666 return !!ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700667}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800668EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700669
670static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
671{
672 struct clk *child;
673 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700674
675 if (!strcmp(clk->name, name))
676 return clk;
677
Sasha Levinb67bfe02013-02-27 17:06:00 -0800678 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700679 ret = __clk_lookup_subtree(name, child);
680 if (ret)
681 return ret;
682 }
683
684 return NULL;
685}
686
687struct clk *__clk_lookup(const char *name)
688{
689 struct clk *root_clk;
690 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700691
692 if (!name)
693 return NULL;
694
695 /* search the 'proper' clk tree first */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800696 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700697 ret = __clk_lookup_subtree(name, root_clk);
698 if (ret)
699 return ret;
700 }
701
702 /* if not found, then search the orphan tree */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800703 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700704 ret = __clk_lookup_subtree(name, root_clk);
705 if (ret)
706 return ret;
707 }
708
709 return NULL;
710}
711
James Hogane366fdd2013-07-29 12:25:02 +0100712/*
713 * Helper for finding best parent to provide a given frequency. This can be used
714 * directly as a determine_rate callback (e.g. for a mux), or from a more
715 * complex clock that may combine a mux with other operations.
716 */
717long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate,
718 unsigned long *best_parent_rate,
719 struct clk **best_parent_p)
720{
721 struct clk *clk = hw->clk, *parent, *best_parent = NULL;
722 int i, num_parents;
723 unsigned long parent_rate, best = 0;
724
725 /* if NO_REPARENT flag set, pass through to current parent */
726 if (clk->flags & CLK_SET_RATE_NO_REPARENT) {
727 parent = clk->parent;
728 if (clk->flags & CLK_SET_RATE_PARENT)
729 best = __clk_round_rate(parent, rate);
730 else if (parent)
731 best = __clk_get_rate(parent);
732 else
733 best = __clk_get_rate(clk);
734 goto out;
735 }
736
737 /* find the parent that can provide the fastest rate <= rate */
738 num_parents = clk->num_parents;
739 for (i = 0; i < num_parents; i++) {
740 parent = clk_get_parent_by_index(clk, i);
741 if (!parent)
742 continue;
743 if (clk->flags & CLK_SET_RATE_PARENT)
744 parent_rate = __clk_round_rate(parent, rate);
745 else
746 parent_rate = __clk_get_rate(parent);
747 if (parent_rate <= rate && parent_rate > best) {
748 best_parent = parent;
749 best = parent_rate;
750 }
751 }
752
753out:
754 if (best_parent)
755 *best_parent_p = best_parent;
756 *best_parent_rate = best;
757
758 return best;
759}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800760EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100761
Mike Turquetteb24764902012-03-15 23:11:19 -0700762/*** clk api ***/
763
764void __clk_unprepare(struct clk *clk)
765{
766 if (!clk)
767 return;
768
769 if (WARN_ON(clk->prepare_count == 0))
770 return;
771
772 if (--clk->prepare_count > 0)
773 return;
774
775 WARN_ON(clk->enable_count > 0);
776
777 if (clk->ops->unprepare)
778 clk->ops->unprepare(clk->hw);
779
780 __clk_unprepare(clk->parent);
781}
782
783/**
784 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200785 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700786 *
787 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
788 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
789 * if the operation may sleep. One example is a clk which is accessed over
790 * I2c. In the complex case a clk gate operation may require a fast and a slow
791 * part. It is this reason that clk_unprepare and clk_disable are not mutually
792 * exclusive. In fact clk_disable must be called before clk_unprepare.
793 */
794void clk_unprepare(struct clk *clk)
795{
Stephen Boyd63589e92014-03-26 16:06:37 -0700796 if (IS_ERR_OR_NULL(clk))
797 return;
798
Mike Turquetteeab89f62013-03-28 13:59:01 -0700799 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700800 __clk_unprepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700801 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700802}
803EXPORT_SYMBOL_GPL(clk_unprepare);
804
805int __clk_prepare(struct clk *clk)
806{
807 int ret = 0;
808
809 if (!clk)
810 return 0;
811
812 if (clk->prepare_count == 0) {
813 ret = __clk_prepare(clk->parent);
814 if (ret)
815 return ret;
816
817 if (clk->ops->prepare) {
818 ret = clk->ops->prepare(clk->hw);
819 if (ret) {
820 __clk_unprepare(clk->parent);
821 return ret;
822 }
823 }
824 }
825
826 clk->prepare_count++;
827
828 return 0;
829}
830
831/**
832 * clk_prepare - prepare a clock source
833 * @clk: the clk being prepared
834 *
835 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
836 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
837 * operation may sleep. One example is a clk which is accessed over I2c. In
838 * the complex case a clk ungate operation may require a fast and a slow part.
839 * It is this reason that clk_prepare and clk_enable are not mutually
840 * exclusive. In fact clk_prepare must be called before clk_enable.
841 * Returns 0 on success, -EERROR otherwise.
842 */
843int clk_prepare(struct clk *clk)
844{
845 int ret;
846
Mike Turquetteeab89f62013-03-28 13:59:01 -0700847 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700848 ret = __clk_prepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700849 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700850
851 return ret;
852}
853EXPORT_SYMBOL_GPL(clk_prepare);
854
855static void __clk_disable(struct clk *clk)
856{
857 if (!clk)
858 return;
859
860 if (WARN_ON(clk->enable_count == 0))
861 return;
862
863 if (--clk->enable_count > 0)
864 return;
865
866 if (clk->ops->disable)
867 clk->ops->disable(clk->hw);
868
869 __clk_disable(clk->parent);
870}
871
872/**
873 * clk_disable - gate a clock
874 * @clk: the clk being gated
875 *
876 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
877 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
878 * clk if the operation is fast and will never sleep. One example is a
879 * SoC-internal clk which is controlled via simple register writes. In the
880 * complex case a clk gate operation may require a fast and a slow part. It is
881 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
882 * In fact clk_disable must be called before clk_unprepare.
883 */
884void clk_disable(struct clk *clk)
885{
886 unsigned long flags;
887
Stephen Boyd63589e92014-03-26 16:06:37 -0700888 if (IS_ERR_OR_NULL(clk))
889 return;
890
Mike Turquetteeab89f62013-03-28 13:59:01 -0700891 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700892 __clk_disable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700893 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700894}
895EXPORT_SYMBOL_GPL(clk_disable);
896
897static int __clk_enable(struct clk *clk)
898{
899 int ret = 0;
900
901 if (!clk)
902 return 0;
903
904 if (WARN_ON(clk->prepare_count == 0))
905 return -ESHUTDOWN;
906
907 if (clk->enable_count == 0) {
908 ret = __clk_enable(clk->parent);
909
910 if (ret)
911 return ret;
912
913 if (clk->ops->enable) {
914 ret = clk->ops->enable(clk->hw);
915 if (ret) {
916 __clk_disable(clk->parent);
917 return ret;
918 }
919 }
920 }
921
922 clk->enable_count++;
923 return 0;
924}
925
926/**
927 * clk_enable - ungate a clock
928 * @clk: the clk being ungated
929 *
930 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
931 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
932 * if the operation will never sleep. One example is a SoC-internal clk which
933 * is controlled via simple register writes. In the complex case a clk ungate
934 * operation may require a fast and a slow part. It is this reason that
935 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
936 * must be called before clk_enable. Returns 0 on success, -EERROR
937 * otherwise.
938 */
939int clk_enable(struct clk *clk)
940{
941 unsigned long flags;
942 int ret;
943
Mike Turquetteeab89f62013-03-28 13:59:01 -0700944 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700945 ret = __clk_enable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700946 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700947
948 return ret;
949}
950EXPORT_SYMBOL_GPL(clk_enable);
951
952/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700953 * __clk_round_rate - round the given rate for a clk
954 * @clk: round the rate of this clock
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200955 * @rate: the rate which is to be rounded
Mike Turquetteb24764902012-03-15 23:11:19 -0700956 *
957 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
958 */
959unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
960{
Shawn Guo81536e02012-04-12 20:50:17 +0800961 unsigned long parent_rate = 0;
James Hogan71472c02013-07-29 12:25:00 +0100962 struct clk *parent;
Mike Turquetteb24764902012-03-15 23:11:19 -0700963
964 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700965 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700966
James Hogan71472c02013-07-29 12:25:00 +0100967 parent = clk->parent;
968 if (parent)
969 parent_rate = parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700970
James Hogan71472c02013-07-29 12:25:00 +0100971 if (clk->ops->determine_rate)
972 return clk->ops->determine_rate(clk->hw, rate, &parent_rate,
973 &parent);
974 else if (clk->ops->round_rate)
975 return clk->ops->round_rate(clk->hw, rate, &parent_rate);
976 else if (clk->flags & CLK_SET_RATE_PARENT)
977 return __clk_round_rate(clk->parent, rate);
978 else
979 return clk->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700980}
Arnd Bergmann1cdf8ee2014-06-03 11:40:14 +0200981EXPORT_SYMBOL_GPL(__clk_round_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700982
983/**
984 * clk_round_rate - round the given rate for a clk
985 * @clk: the clk for which we are rounding a rate
986 * @rate: the rate which is to be rounded
987 *
988 * Takes in a rate as input and rounds it to a rate that the clk can actually
989 * use which is then returned. If clk doesn't support round_rate operation
990 * then the parent rate is returned.
991 */
992long clk_round_rate(struct clk *clk, unsigned long rate)
993{
994 unsigned long ret;
995
Mike Turquetteeab89f62013-03-28 13:59:01 -0700996 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700997 ret = __clk_round_rate(clk, rate);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700998 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700999
1000 return ret;
1001}
1002EXPORT_SYMBOL_GPL(clk_round_rate);
1003
1004/**
1005 * __clk_notify - call clk notifier chain
1006 * @clk: struct clk * that is changing rate
1007 * @msg: clk notifier type (see include/linux/clk.h)
1008 * @old_rate: old clk rate
1009 * @new_rate: new clk rate
1010 *
1011 * Triggers a notifier call chain on the clk rate-change notification
1012 * for 'clk'. Passes a pointer to the struct clk and the previous
1013 * and current rates to the notifier callback. Intended to be called by
1014 * internal clock code only. Returns NOTIFY_DONE from the last driver
1015 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1016 * a driver returns that.
1017 */
1018static int __clk_notify(struct clk *clk, unsigned long msg,
1019 unsigned long old_rate, unsigned long new_rate)
1020{
1021 struct clk_notifier *cn;
1022 struct clk_notifier_data cnd;
1023 int ret = NOTIFY_DONE;
1024
1025 cnd.clk = clk;
1026 cnd.old_rate = old_rate;
1027 cnd.new_rate = new_rate;
1028
1029 list_for_each_entry(cn, &clk_notifier_list, node) {
1030 if (cn->clk == clk) {
1031 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1032 &cnd);
1033 break;
1034 }
1035 }
1036
1037 return ret;
1038}
1039
1040/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001041 * __clk_recalc_accuracies
1042 * @clk: first clk in the subtree
1043 *
1044 * Walks the subtree of clks starting with clk and recalculates accuracies as
1045 * it goes. Note that if a clk does not implement the .recalc_accuracy
1046 * callback then it is assumed that the clock will take on the accuracy of it's
1047 * parent.
1048 *
1049 * Caller must hold prepare_lock.
1050 */
1051static void __clk_recalc_accuracies(struct clk *clk)
1052{
1053 unsigned long parent_accuracy = 0;
1054 struct clk *child;
1055
1056 if (clk->parent)
1057 parent_accuracy = clk->parent->accuracy;
1058
1059 if (clk->ops->recalc_accuracy)
1060 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1061 parent_accuracy);
1062 else
1063 clk->accuracy = parent_accuracy;
1064
1065 hlist_for_each_entry(child, &clk->children, child_node)
1066 __clk_recalc_accuracies(child);
1067}
1068
1069/**
1070 * clk_get_accuracy - return the accuracy of clk
1071 * @clk: the clk whose accuracy is being returned
1072 *
1073 * Simply returns the cached accuracy of the clk, unless
1074 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1075 * issued.
1076 * If clk is NULL then returns 0.
1077 */
1078long clk_get_accuracy(struct clk *clk)
1079{
1080 unsigned long accuracy;
1081
1082 clk_prepare_lock();
1083 if (clk && (clk->flags & CLK_GET_ACCURACY_NOCACHE))
1084 __clk_recalc_accuracies(clk);
1085
1086 accuracy = __clk_get_accuracy(clk);
1087 clk_prepare_unlock();
1088
1089 return accuracy;
1090}
1091EXPORT_SYMBOL_GPL(clk_get_accuracy);
1092
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001093static unsigned long clk_recalc(struct clk *clk, unsigned long parent_rate)
1094{
1095 if (clk->ops->recalc_rate)
1096 return clk->ops->recalc_rate(clk->hw, parent_rate);
1097 return parent_rate;
1098}
1099
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001100/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001101 * __clk_recalc_rates
1102 * @clk: first clk in the subtree
1103 * @msg: notification type (see include/linux/clk.h)
1104 *
1105 * Walks the subtree of clks starting with clk and recalculates rates as it
1106 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001107 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001108 *
1109 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1110 * if necessary.
1111 *
1112 * Caller must hold prepare_lock.
1113 */
1114static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
1115{
1116 unsigned long old_rate;
1117 unsigned long parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001118 struct clk *child;
1119
1120 old_rate = clk->rate;
1121
1122 if (clk->parent)
1123 parent_rate = clk->parent->rate;
1124
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001125 clk->rate = clk_recalc(clk, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001126
1127 /*
1128 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1129 * & ABORT_RATE_CHANGE notifiers
1130 */
1131 if (clk->notifier_count && msg)
1132 __clk_notify(clk, msg, old_rate, clk->rate);
1133
Sasha Levinb67bfe02013-02-27 17:06:00 -08001134 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001135 __clk_recalc_rates(child, msg);
1136}
1137
1138/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001139 * clk_get_rate - return the rate of clk
1140 * @clk: the clk whose rate is being returned
1141 *
1142 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1143 * is set, which means a recalc_rate will be issued.
1144 * If clk is NULL then returns 0.
1145 */
1146unsigned long clk_get_rate(struct clk *clk)
1147{
1148 unsigned long rate;
1149
Mike Turquetteeab89f62013-03-28 13:59:01 -07001150 clk_prepare_lock();
Ulf Hanssona093bde2012-08-31 14:21:28 +02001151
1152 if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
1153 __clk_recalc_rates(clk, 0);
1154
1155 rate = __clk_get_rate(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001156 clk_prepare_unlock();
Ulf Hanssona093bde2012-08-31 14:21:28 +02001157
1158 return rate;
1159}
1160EXPORT_SYMBOL_GPL(clk_get_rate);
1161
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001162static int clk_fetch_parent_index(struct clk *clk, struct clk *parent)
James Hogan4935b222013-07-29 12:24:59 +01001163{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001164 int i;
James Hogan4935b222013-07-29 12:24:59 +01001165
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001166 if (!clk->parents) {
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001167 clk->parents = kcalloc(clk->num_parents,
1168 sizeof(struct clk *), GFP_KERNEL);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001169 if (!clk->parents)
1170 return -ENOMEM;
1171 }
James Hogan4935b222013-07-29 12:24:59 +01001172
1173 /*
1174 * find index of new parent clock using cached parent ptrs,
1175 * or if not yet cached, use string name comparison and cache
1176 * them now to avoid future calls to __clk_lookup.
1177 */
1178 for (i = 0; i < clk->num_parents; i++) {
Tomasz Figada0f0b22013-09-29 02:37:16 +02001179 if (clk->parents[i] == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001180 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001181
1182 if (clk->parents[i])
1183 continue;
1184
1185 if (!strcmp(clk->parent_names[i], parent->name)) {
1186 clk->parents[i] = __clk_lookup(parent->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001187 return i;
James Hogan4935b222013-07-29 12:24:59 +01001188 }
1189 }
1190
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001191 return -EINVAL;
James Hogan4935b222013-07-29 12:24:59 +01001192}
1193
1194static void clk_reparent(struct clk *clk, struct clk *new_parent)
1195{
1196 hlist_del(&clk->child_node);
1197
James Hogan903efc52013-08-29 12:10:51 +01001198 if (new_parent) {
1199 /* avoid duplicate POST_RATE_CHANGE notifications */
1200 if (new_parent->new_child == clk)
1201 new_parent->new_child = NULL;
1202
James Hogan4935b222013-07-29 12:24:59 +01001203 hlist_add_head(&clk->child_node, &new_parent->children);
James Hogan903efc52013-08-29 12:10:51 +01001204 } else {
James Hogan4935b222013-07-29 12:24:59 +01001205 hlist_add_head(&clk->child_node, &clk_orphan_list);
James Hogan903efc52013-08-29 12:10:51 +01001206 }
James Hogan4935b222013-07-29 12:24:59 +01001207
1208 clk->parent = new_parent;
1209}
1210
Stephen Boyd3fa22522014-01-15 10:47:22 -08001211static struct clk *__clk_set_parent_before(struct clk *clk, struct clk *parent)
James Hogan4935b222013-07-29 12:24:59 +01001212{
1213 unsigned long flags;
James Hogan4935b222013-07-29 12:24:59 +01001214 struct clk *old_parent = clk->parent;
1215
1216 /*
1217 * Migrate prepare state between parents and prevent race with
1218 * clk_enable().
1219 *
1220 * If the clock is not prepared, then a race with
1221 * clk_enable/disable() is impossible since we already have the
1222 * prepare lock (future calls to clk_enable() need to be preceded by
1223 * a clk_prepare()).
1224 *
1225 * If the clock is prepared, migrate the prepared state to the new
1226 * parent and also protect against a race with clk_enable() by
1227 * forcing the clock and the new parent on. This ensures that all
1228 * future calls to clk_enable() are practically NOPs with respect to
1229 * hardware and software states.
1230 *
1231 * See also: Comment for clk_set_parent() below.
1232 */
1233 if (clk->prepare_count) {
1234 __clk_prepare(parent);
1235 clk_enable(parent);
1236 clk_enable(clk);
1237 }
1238
1239 /* update the clk tree topology */
1240 flags = clk_enable_lock();
1241 clk_reparent(clk, parent);
1242 clk_enable_unlock(flags);
1243
Stephen Boyd3fa22522014-01-15 10:47:22 -08001244 return old_parent;
1245}
1246
1247static void __clk_set_parent_after(struct clk *clk, struct clk *parent,
1248 struct clk *old_parent)
1249{
1250 /*
1251 * Finish the migration of prepare state and undo the changes done
1252 * for preventing a race with clk_enable().
1253 */
1254 if (clk->prepare_count) {
1255 clk_disable(clk);
1256 clk_disable(old_parent);
1257 __clk_unprepare(old_parent);
1258 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001259}
1260
1261static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index)
1262{
1263 unsigned long flags;
1264 int ret = 0;
1265 struct clk *old_parent;
1266
1267 old_parent = __clk_set_parent_before(clk, parent);
1268
James Hogan4935b222013-07-29 12:24:59 +01001269 /* change clock input source */
1270 if (parent && clk->ops->set_parent)
1271 ret = clk->ops->set_parent(clk->hw, p_index);
1272
1273 if (ret) {
1274 flags = clk_enable_lock();
1275 clk_reparent(clk, old_parent);
1276 clk_enable_unlock(flags);
1277
1278 if (clk->prepare_count) {
1279 clk_disable(clk);
1280 clk_disable(parent);
1281 __clk_unprepare(parent);
1282 }
1283 return ret;
1284 }
1285
Stephen Boyd3fa22522014-01-15 10:47:22 -08001286 __clk_set_parent_after(clk, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001287
James Hogan4935b222013-07-29 12:24:59 +01001288 return 0;
1289}
1290
Ulf Hanssona093bde2012-08-31 14:21:28 +02001291/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001292 * __clk_speculate_rates
1293 * @clk: first clk in the subtree
1294 * @parent_rate: the "future" rate of clk's parent
1295 *
1296 * Walks the subtree of clks starting with clk, speculating rates as it
1297 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1298 *
1299 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1300 * pre-rate change notifications and returns early if no clks in the
1301 * subtree have subscribed to the notifications. Note that if a clk does not
1302 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001303 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001304 *
1305 * Caller must hold prepare_lock.
1306 */
1307static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
1308{
Mike Turquetteb24764902012-03-15 23:11:19 -07001309 struct clk *child;
1310 unsigned long new_rate;
1311 int ret = NOTIFY_DONE;
1312
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001313 new_rate = clk_recalc(clk, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001314
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001315 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Mike Turquetteb24764902012-03-15 23:11:19 -07001316 if (clk->notifier_count)
1317 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
1318
Mike Turquette86bcfa22014-02-24 16:08:41 -08001319 if (ret & NOTIFY_STOP_MASK) {
1320 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
1321 __func__, clk->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001322 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001323 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001324
Sasha Levinb67bfe02013-02-27 17:06:00 -08001325 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001326 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001327 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001328 break;
1329 }
1330
1331out:
1332 return ret;
1333}
1334
James Hogan71472c02013-07-29 12:25:00 +01001335static void clk_calc_subtree(struct clk *clk, unsigned long new_rate,
1336 struct clk *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001337{
1338 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001339
1340 clk->new_rate = new_rate;
James Hogan71472c02013-07-29 12:25:00 +01001341 clk->new_parent = new_parent;
1342 clk->new_parent_index = p_index;
1343 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1344 clk->new_child = NULL;
1345 if (new_parent && new_parent != clk->parent)
1346 new_parent->new_child = clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001347
Sasha Levinb67bfe02013-02-27 17:06:00 -08001348 hlist_for_each_entry(child, &clk->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001349 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001350 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001351 }
1352}
1353
1354/*
1355 * calculate the new rates returning the topmost clock that has to be
1356 * changed.
1357 */
1358static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
1359{
1360 struct clk *top = clk;
James Hogan71472c02013-07-29 12:25:00 +01001361 struct clk *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001362 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001363 unsigned long new_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001364 int p_index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001365
Mike Turquette7452b212012-03-26 14:45:36 -07001366 /* sanity */
1367 if (IS_ERR_OR_NULL(clk))
1368 return NULL;
1369
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001370 /* save parent rate, if it exists */
James Hogan71472c02013-07-29 12:25:00 +01001371 parent = old_parent = clk->parent;
1372 if (parent)
1373 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001374
James Hogan71472c02013-07-29 12:25:00 +01001375 /* find the closest rate and parent clk/rate */
1376 if (clk->ops->determine_rate) {
1377 new_rate = clk->ops->determine_rate(clk->hw, rate,
1378 &best_parent_rate,
1379 &parent);
1380 } else if (clk->ops->round_rate) {
1381 new_rate = clk->ops->round_rate(clk->hw, rate,
1382 &best_parent_rate);
1383 } else if (!parent || !(clk->flags & CLK_SET_RATE_PARENT)) {
1384 /* pass-through clock without adjustable parent */
1385 clk->new_rate = clk->rate;
1386 return NULL;
1387 } else {
1388 /* pass-through clock with adjustable parent */
1389 top = clk_calc_new_rates(parent, rate);
1390 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001391 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001392 }
1393
James Hogan71472c02013-07-29 12:25:00 +01001394 /* some clocks must be gated to change parent */
1395 if (parent != old_parent &&
1396 (clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1397 pr_debug("%s: %s not gated but wants to reparent\n",
1398 __func__, clk->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001399 return NULL;
1400 }
1401
James Hogan71472c02013-07-29 12:25:00 +01001402 /* try finding the new parent index */
1403 if (parent) {
1404 p_index = clk_fetch_parent_index(clk, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001405 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001406 pr_debug("%s: clk %s can not be parent of clk %s\n",
1407 __func__, parent->name, clk->name);
1408 return NULL;
1409 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001410 }
1411
James Hogan71472c02013-07-29 12:25:00 +01001412 if ((clk->flags & CLK_SET_RATE_PARENT) && parent &&
1413 best_parent_rate != parent->rate)
1414 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001415
1416out:
James Hogan71472c02013-07-29 12:25:00 +01001417 clk_calc_subtree(clk, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001418
1419 return top;
1420}
1421
1422/*
1423 * Notify about rate changes in a subtree. Always walk down the whole tree
1424 * so that in case of an error we can walk down the whole tree again and
1425 * abort the change.
1426 */
1427static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
1428{
James Hogan71472c02013-07-29 12:25:00 +01001429 struct clk *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001430 int ret = NOTIFY_DONE;
1431
1432 if (clk->rate == clk->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301433 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001434
1435 if (clk->notifier_count) {
1436 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001437 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001438 fail_clk = clk;
1439 }
1440
Sasha Levinb67bfe02013-02-27 17:06:00 -08001441 hlist_for_each_entry(child, &clk->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001442 /* Skip children who will be reparented to another clock */
1443 if (child->new_parent && child->new_parent != clk)
1444 continue;
1445 tmp_clk = clk_propagate_rate_change(child, event);
1446 if (tmp_clk)
1447 fail_clk = tmp_clk;
1448 }
1449
1450 /* handle the new child who might not be in clk->children yet */
1451 if (clk->new_child) {
1452 tmp_clk = clk_propagate_rate_change(clk->new_child, event);
1453 if (tmp_clk)
1454 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001455 }
1456
1457 return fail_clk;
1458}
1459
1460/*
1461 * walk down a subtree and set the new rates notifying the rate
1462 * change on the way
1463 */
1464static void clk_change_rate(struct clk *clk)
1465{
1466 struct clk *child;
1467 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001468 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001469 bool skip_set_rate = false;
1470 struct clk *old_parent;
Mike Turquetteb24764902012-03-15 23:11:19 -07001471
1472 old_rate = clk->rate;
1473
Stephen Boyd3fa22522014-01-15 10:47:22 -08001474 if (clk->new_parent)
1475 best_parent_rate = clk->new_parent->rate;
1476 else if (clk->parent)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001477 best_parent_rate = clk->parent->rate;
1478
Stephen Boyd3fa22522014-01-15 10:47:22 -08001479 if (clk->new_parent && clk->new_parent != clk->parent) {
1480 old_parent = __clk_set_parent_before(clk, clk->new_parent);
1481
1482 if (clk->ops->set_rate_and_parent) {
1483 skip_set_rate = true;
1484 clk->ops->set_rate_and_parent(clk->hw, clk->new_rate,
1485 best_parent_rate,
1486 clk->new_parent_index);
1487 } else if (clk->ops->set_parent) {
1488 clk->ops->set_parent(clk->hw, clk->new_parent_index);
1489 }
1490
1491 __clk_set_parent_after(clk, clk->new_parent, old_parent);
1492 }
1493
1494 if (!skip_set_rate && clk->ops->set_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001495 clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001496
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001497 clk->rate = clk_recalc(clk, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001498
1499 if (clk->notifier_count && old_rate != clk->rate)
1500 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
1501
James Hogan71472c02013-07-29 12:25:00 +01001502 hlist_for_each_entry(child, &clk->children, child_node) {
1503 /* Skip children who will be reparented to another clock */
1504 if (child->new_parent && child->new_parent != clk)
1505 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07001506 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01001507 }
1508
1509 /* handle the new child who might not be in clk->children yet */
1510 if (clk->new_child)
1511 clk_change_rate(clk->new_child);
Mike Turquetteb24764902012-03-15 23:11:19 -07001512}
1513
1514/**
1515 * clk_set_rate - specify a new rate for clk
1516 * @clk: the clk whose rate is being changed
1517 * @rate: the new rate for clk
1518 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001519 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001520 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001521 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1522 * propagate up to clk's parent; whether or not this happens depends on the
1523 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1524 * after calling .round_rate then upstream parent propagation is ignored. If
1525 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001526 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001527 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1528 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001529 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001530 * Rate changes are accomplished via tree traversal that also recalculates the
1531 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001532 *
1533 * Returns 0 on success, -EERROR otherwise.
1534 */
1535int clk_set_rate(struct clk *clk, unsigned long rate)
1536{
1537 struct clk *top, *fail_clk;
1538 int ret = 0;
1539
Mike Turquette89ac8d72013-08-21 23:58:09 -07001540 if (!clk)
1541 return 0;
1542
Mike Turquetteb24764902012-03-15 23:11:19 -07001543 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001544 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001545
1546 /* bail early if nothing to do */
Peter De Schrijver34e452a2013-06-05 18:06:36 +03001547 if (rate == clk_get_rate(clk))
Mike Turquetteb24764902012-03-15 23:11:19 -07001548 goto out;
1549
Saravana Kannan7e0fa1b2012-05-15 13:43:42 -07001550 if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
Viresh Kumar0e1c0302012-04-11 16:03:42 +05301551 ret = -EBUSY;
1552 goto out;
1553 }
1554
Mike Turquetteb24764902012-03-15 23:11:19 -07001555 /* calculate new rates and get the topmost changed clock */
1556 top = clk_calc_new_rates(clk, rate);
1557 if (!top) {
1558 ret = -EINVAL;
1559 goto out;
1560 }
1561
1562 /* notify that we are about to change rates */
1563 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1564 if (fail_clk) {
Sascha Hauerf7363862014-01-16 16:12:55 +01001565 pr_debug("%s: failed to set %s rate\n", __func__,
Mike Turquetteb24764902012-03-15 23:11:19 -07001566 fail_clk->name);
1567 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1568 ret = -EBUSY;
1569 goto out;
1570 }
1571
1572 /* change the rates */
1573 clk_change_rate(top);
1574
Mike Turquetteb24764902012-03-15 23:11:19 -07001575out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001576 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001577
1578 return ret;
1579}
1580EXPORT_SYMBOL_GPL(clk_set_rate);
1581
1582/**
1583 * clk_get_parent - return the parent of a clk
1584 * @clk: the clk whose parent gets returned
1585 *
1586 * Simply returns clk->parent. Returns NULL if clk is NULL.
1587 */
1588struct clk *clk_get_parent(struct clk *clk)
1589{
1590 struct clk *parent;
1591
Mike Turquetteeab89f62013-03-28 13:59:01 -07001592 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001593 parent = __clk_get_parent(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001594 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001595
1596 return parent;
1597}
1598EXPORT_SYMBOL_GPL(clk_get_parent);
1599
1600/*
1601 * .get_parent is mandatory for clocks with multiple possible parents. It is
1602 * optional for single-parent clocks. Always call .get_parent if it is
1603 * available and WARN if it is missing for multi-parent clocks.
1604 *
1605 * For single-parent clocks without .get_parent, first check to see if the
1606 * .parents array exists, and if so use it to avoid an expensive tree
1607 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
1608 */
1609static struct clk *__clk_init_parent(struct clk *clk)
1610{
1611 struct clk *ret = NULL;
1612 u8 index;
1613
1614 /* handle the trivial cases */
1615
1616 if (!clk->num_parents)
1617 goto out;
1618
1619 if (clk->num_parents == 1) {
1620 if (IS_ERR_OR_NULL(clk->parent))
1621 ret = clk->parent = __clk_lookup(clk->parent_names[0]);
1622 ret = clk->parent;
1623 goto out;
1624 }
1625
1626 if (!clk->ops->get_parent) {
1627 WARN(!clk->ops->get_parent,
1628 "%s: multi-parent clocks must implement .get_parent\n",
1629 __func__);
1630 goto out;
1631 };
1632
1633 /*
1634 * Do our best to cache parent clocks in clk->parents. This prevents
1635 * unnecessary and expensive calls to __clk_lookup. We don't set
1636 * clk->parent here; that is done by the calling function
1637 */
1638
1639 index = clk->ops->get_parent(clk->hw);
1640
1641 if (!clk->parents)
1642 clk->parents =
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001643 kcalloc(clk->num_parents, sizeof(struct clk *),
Mike Turquetteb24764902012-03-15 23:11:19 -07001644 GFP_KERNEL);
1645
James Hogan7ef3dcc2013-07-29 12:24:58 +01001646 ret = clk_get_parent_by_index(clk, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001647
1648out:
1649 return ret;
1650}
1651
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001652void __clk_reparent(struct clk *clk, struct clk *new_parent)
1653{
1654 clk_reparent(clk, new_parent);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001655 __clk_recalc_accuracies(clk);
Mike Turquetteb24764902012-03-15 23:11:19 -07001656 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1657}
1658
Mike Turquetteb24764902012-03-15 23:11:19 -07001659/**
1660 * clk_set_parent - switch the parent of a mux clk
1661 * @clk: the mux clk whose input we are switching
1662 * @parent: the new input to clk
1663 *
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07001664 * Re-parent clk to use parent as its new input source. If clk is in
1665 * prepared state, the clk will get enabled for the duration of this call. If
1666 * that's not acceptable for a specific clk (Eg: the consumer can't handle
1667 * that, the reparenting is glitchy in hardware, etc), use the
1668 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
1669 *
1670 * After successfully changing clk's parent clk_set_parent will update the
1671 * clk topology, sysfs topology and propagate rate recalculation via
1672 * __clk_recalc_rates.
1673 *
1674 * Returns 0 on success, -EERROR otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07001675 */
1676int clk_set_parent(struct clk *clk, struct clk *parent)
1677{
1678 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001679 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001680 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001681
Mike Turquette89ac8d72013-08-21 23:58:09 -07001682 if (!clk)
1683 return 0;
1684
Ulf Hansson031dcc92013-04-02 23:09:38 +02001685 /* verify ops for for multi-parent clks */
1686 if ((clk->num_parents > 1) && (!clk->ops->set_parent))
Mike Turquetteb24764902012-03-15 23:11:19 -07001687 return -ENOSYS;
1688
1689 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001690 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001691
1692 if (clk->parent == parent)
1693 goto out;
1694
Ulf Hansson031dcc92013-04-02 23:09:38 +02001695 /* check that we are allowed to re-parent if the clock is in use */
1696 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1697 ret = -EBUSY;
1698 goto out;
1699 }
1700
1701 /* try finding the new parent index */
1702 if (parent) {
1703 p_index = clk_fetch_parent_index(clk, parent);
1704 p_rate = parent->rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001705 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02001706 pr_debug("%s: clk %s can not be parent of clk %s\n",
1707 __func__, parent->name, clk->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001708 ret = p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001709 goto out;
1710 }
1711 }
1712
Mike Turquetteb24764902012-03-15 23:11:19 -07001713 /* propagate PRE_RATE_CHANGE notifications */
Soren Brinkmannf3aab5d2013-04-16 10:06:50 -07001714 ret = __clk_speculate_rates(clk, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001715
1716 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001717 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001718 goto out;
1719
Ulf Hansson031dcc92013-04-02 23:09:38 +02001720 /* do the re-parent */
1721 ret = __clk_set_parent(clk, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001722
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001723 /* propagate rate an accuracy recalculation accordingly */
1724 if (ret) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001725 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001726 } else {
Ulf Hanssona68de8e2013-04-02 23:09:39 +02001727 __clk_recalc_rates(clk, POST_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001728 __clk_recalc_accuracies(clk);
1729 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001730
1731out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001732 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001733
1734 return ret;
1735}
1736EXPORT_SYMBOL_GPL(clk_set_parent);
1737
1738/**
1739 * __clk_init - initialize the data structures in a struct clk
1740 * @dev: device initializing this clk, placeholder for now
1741 * @clk: clk being initialized
1742 *
1743 * Initializes the lists in struct clk, queries the hardware for the
1744 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07001745 */
Mike Turquetted1302a32012-03-29 14:30:40 -07001746int __clk_init(struct device *dev, struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001747{
Mike Turquetted1302a32012-03-29 14:30:40 -07001748 int i, ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001749 struct clk *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001750 struct hlist_node *tmp2;
Mike Turquetteb24764902012-03-15 23:11:19 -07001751
1752 if (!clk)
Mike Turquetted1302a32012-03-29 14:30:40 -07001753 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001754
Mike Turquetteeab89f62013-03-28 13:59:01 -07001755 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001756
1757 /* check to see if a clock with this name is already registered */
Mike Turquetted1302a32012-03-29 14:30:40 -07001758 if (__clk_lookup(clk->name)) {
1759 pr_debug("%s: clk %s already initialized\n",
1760 __func__, clk->name);
1761 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07001762 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07001763 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001764
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001765 /* check that clk_ops are sane. See Documentation/clk.txt */
1766 if (clk->ops->set_rate &&
James Hogan71472c02013-07-29 12:25:00 +01001767 !((clk->ops->round_rate || clk->ops->determine_rate) &&
1768 clk->ops->recalc_rate)) {
1769 pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001770 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001771 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001772 goto out;
1773 }
1774
1775 if (clk->ops->set_parent && !clk->ops->get_parent) {
1776 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1777 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001778 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001779 goto out;
1780 }
1781
Stephen Boyd3fa22522014-01-15 10:47:22 -08001782 if (clk->ops->set_rate_and_parent &&
1783 !(clk->ops->set_parent && clk->ops->set_rate)) {
1784 pr_warn("%s: %s must implement .set_parent & .set_rate\n",
1785 __func__, clk->name);
1786 ret = -EINVAL;
1787 goto out;
1788 }
1789
Mike Turquetteb24764902012-03-15 23:11:19 -07001790 /* throw a WARN if any entries in parent_names are NULL */
1791 for (i = 0; i < clk->num_parents; i++)
1792 WARN(!clk->parent_names[i],
1793 "%s: invalid NULL in %s's .parent_names\n",
1794 __func__, clk->name);
1795
1796 /*
1797 * Allocate an array of struct clk *'s to avoid unnecessary string
1798 * look-ups of clk's possible parents. This can fail for clocks passed
1799 * in to clk_init during early boot; thus any access to clk->parents[]
1800 * must always check for a NULL pointer and try to populate it if
1801 * necessary.
1802 *
1803 * If clk->parents is not NULL we skip this entire block. This allows
1804 * for clock drivers to statically initialize clk->parents.
1805 */
Rajendra Nayak9ca1c5a2012-06-06 14:41:30 +05301806 if (clk->num_parents > 1 && !clk->parents) {
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001807 clk->parents = kcalloc(clk->num_parents, sizeof(struct clk *),
1808 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001809 /*
1810 * __clk_lookup returns NULL for parents that have not been
1811 * clk_init'd; thus any access to clk->parents[] must check
1812 * for a NULL pointer. We can always perform lazy lookups for
1813 * missing parents later on.
1814 */
1815 if (clk->parents)
1816 for (i = 0; i < clk->num_parents; i++)
1817 clk->parents[i] =
1818 __clk_lookup(clk->parent_names[i]);
1819 }
1820
1821 clk->parent = __clk_init_parent(clk);
1822
1823 /*
1824 * Populate clk->parent if parent has already been __clk_init'd. If
1825 * parent has not yet been __clk_init'd then place clk in the orphan
1826 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1827 * clk list.
1828 *
1829 * Every time a new clk is clk_init'd then we walk the list of orphan
1830 * clocks and re-parent any that are children of the clock currently
1831 * being clk_init'd.
1832 */
1833 if (clk->parent)
1834 hlist_add_head(&clk->child_node,
1835 &clk->parent->children);
1836 else if (clk->flags & CLK_IS_ROOT)
1837 hlist_add_head(&clk->child_node, &clk_root_list);
1838 else
1839 hlist_add_head(&clk->child_node, &clk_orphan_list);
1840
1841 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001842 * Set clk's accuracy. The preferred method is to use
1843 * .recalc_accuracy. For simple clocks and lazy developers the default
1844 * fallback is to use the parent's accuracy. If a clock doesn't have a
1845 * parent (or is orphaned) then accuracy is set to zero (perfect
1846 * clock).
1847 */
1848 if (clk->ops->recalc_accuracy)
1849 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1850 __clk_get_accuracy(clk->parent));
1851 else if (clk->parent)
1852 clk->accuracy = clk->parent->accuracy;
1853 else
1854 clk->accuracy = 0;
1855
1856 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07001857 * Set clk's rate. The preferred method is to use .recalc_rate. For
1858 * simple clocks and lazy developers the default fallback is to use the
1859 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1860 * then rate is set to zero.
1861 */
1862 if (clk->ops->recalc_rate)
1863 clk->rate = clk->ops->recalc_rate(clk->hw,
1864 __clk_get_rate(clk->parent));
1865 else if (clk->parent)
1866 clk->rate = clk->parent->rate;
1867 else
1868 clk->rate = 0;
1869
Stephen Boyd3a5aec22013-10-16 00:40:03 -07001870 clk_debug_register(clk);
Mike Turquetteb24764902012-03-15 23:11:19 -07001871 /*
1872 * walk the list of orphan clocks and reparent any that are children of
1873 * this clock
1874 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001875 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Alex Elder12d298862013-09-05 08:33:24 -05001876 if (orphan->num_parents && orphan->ops->get_parent) {
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001877 i = orphan->ops->get_parent(orphan->hw);
1878 if (!strcmp(clk->name, orphan->parent_names[i]))
1879 __clk_reparent(orphan, clk);
1880 continue;
1881 }
1882
Mike Turquetteb24764902012-03-15 23:11:19 -07001883 for (i = 0; i < orphan->num_parents; i++)
1884 if (!strcmp(clk->name, orphan->parent_names[i])) {
1885 __clk_reparent(orphan, clk);
1886 break;
1887 }
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001888 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001889
1890 /*
1891 * optional platform-specific magic
1892 *
1893 * The .init callback is not used by any of the basic clock types, but
1894 * exists for weird hardware that must perform initialization magic.
1895 * Please consider other ways of solving initialization problems before
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001896 * using this callback, as its use is discouraged.
Mike Turquetteb24764902012-03-15 23:11:19 -07001897 */
1898 if (clk->ops->init)
1899 clk->ops->init(clk->hw);
1900
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02001901 kref_init(&clk->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07001902out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001903 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001904
Mike Turquetted1302a32012-03-29 14:30:40 -07001905 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001906}
1907
1908/**
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001909 * __clk_register - register a clock and return a cookie.
1910 *
1911 * Same as clk_register, except that the .clk field inside hw shall point to a
1912 * preallocated (generally statically allocated) struct clk. None of the fields
1913 * of the struct clk need to be initialized.
1914 *
1915 * The data pointed to by .init and .clk field shall NOT be marked as init
1916 * data.
1917 *
1918 * __clk_register is only exposed via clk-private.h and is intended for use with
1919 * very large numbers of clocks that need to be statically initialized. It is
1920 * a layering violation to include clk-private.h from any code which implements
1921 * a clock's .ops; as such any statically initialized clock data MUST be in a
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001922 * separate C file from the logic that implements its operations. Returns 0
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001923 * on success, otherwise an error code.
1924 */
1925struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
1926{
1927 int ret;
1928 struct clk *clk;
1929
1930 clk = hw->clk;
1931 clk->name = hw->init->name;
1932 clk->ops = hw->init->ops;
1933 clk->hw = hw;
1934 clk->flags = hw->init->flags;
1935 clk->parent_names = hw->init->parent_names;
1936 clk->num_parents = hw->init->num_parents;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02001937 if (dev && dev->driver)
1938 clk->owner = dev->driver->owner;
1939 else
1940 clk->owner = NULL;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001941
1942 ret = __clk_init(dev, clk);
1943 if (ret)
1944 return ERR_PTR(ret);
1945
1946 return clk;
1947}
1948EXPORT_SYMBOL_GPL(__clk_register);
1949
Stephen Boyd293ba3b2014-04-18 16:29:42 -07001950/**
1951 * clk_register - allocate a new clock, register it and return an opaque cookie
1952 * @dev: device that is registering this clock
1953 * @hw: link to hardware-specific clock data
1954 *
1955 * clk_register is the primary interface for populating the clock tree with new
1956 * clock nodes. It returns a pointer to the newly allocated struct clk which
1957 * cannot be dereferenced by driver code but may be used in conjuction with the
1958 * rest of the clock API. In the event of an error clk_register will return an
1959 * error code; drivers must test for an error code after calling clk_register.
1960 */
1961struct clk *clk_register(struct device *dev, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07001962{
Mike Turquetted1302a32012-03-29 14:30:40 -07001963 int i, ret;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07001964 struct clk *clk;
1965
1966 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
1967 if (!clk) {
1968 pr_err("%s: could not allocate clk\n", __func__);
1969 ret = -ENOMEM;
1970 goto fail_out;
1971 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001972
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001973 clk->name = kstrdup(hw->init->name, GFP_KERNEL);
1974 if (!clk->name) {
1975 pr_err("%s: could not allocate clk->name\n", __func__);
1976 ret = -ENOMEM;
1977 goto fail_name;
1978 }
1979 clk->ops = hw->init->ops;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02001980 if (dev && dev->driver)
1981 clk->owner = dev->driver->owner;
Mike Turquetteb24764902012-03-15 23:11:19 -07001982 clk->hw = hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001983 clk->flags = hw->init->flags;
1984 clk->num_parents = hw->init->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -07001985 hw->clk = clk;
1986
Mike Turquetted1302a32012-03-29 14:30:40 -07001987 /* allocate local copy in case parent_names is __initdata */
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001988 clk->parent_names = kcalloc(clk->num_parents, sizeof(char *),
1989 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001990
Mike Turquetted1302a32012-03-29 14:30:40 -07001991 if (!clk->parent_names) {
1992 pr_err("%s: could not allocate clk->parent_names\n", __func__);
1993 ret = -ENOMEM;
1994 goto fail_parent_names;
1995 }
1996
1997
1998 /* copy each string name in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001999 for (i = 0; i < clk->num_parents; i++) {
2000 clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
2001 GFP_KERNEL);
Mike Turquetted1302a32012-03-29 14:30:40 -07002002 if (!clk->parent_names[i]) {
2003 pr_err("%s: could not copy parent_names\n", __func__);
2004 ret = -ENOMEM;
2005 goto fail_parent_names_copy;
2006 }
2007 }
2008
2009 ret = __clk_init(dev, clk);
2010 if (!ret)
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002011 return clk;
Mike Turquetted1302a32012-03-29 14:30:40 -07002012
2013fail_parent_names_copy:
2014 while (--i >= 0)
2015 kfree(clk->parent_names[i]);
2016 kfree(clk->parent_names);
2017fail_parent_names:
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002018 kfree(clk->name);
2019fail_name:
Mike Turquetted1302a32012-03-29 14:30:40 -07002020 kfree(clk);
2021fail_out:
2022 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07002023}
2024EXPORT_SYMBOL_GPL(clk_register);
2025
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002026/*
2027 * Free memory allocated for a clock.
2028 * Caller must hold prepare_lock.
2029 */
2030static void __clk_release(struct kref *ref)
2031{
2032 struct clk *clk = container_of(ref, struct clk, ref);
2033 int i = clk->num_parents;
2034
2035 kfree(clk->parents);
2036 while (--i >= 0)
2037 kfree(clk->parent_names[i]);
2038
2039 kfree(clk->parent_names);
2040 kfree(clk->name);
2041 kfree(clk);
2042}
2043
2044/*
2045 * Empty clk_ops for unregistered clocks. These are used temporarily
2046 * after clk_unregister() was called on a clock and until last clock
2047 * consumer calls clk_put() and the struct clk object is freed.
2048 */
2049static int clk_nodrv_prepare_enable(struct clk_hw *hw)
2050{
2051 return -ENXIO;
2052}
2053
2054static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
2055{
2056 WARN_ON_ONCE(1);
2057}
2058
2059static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
2060 unsigned long parent_rate)
2061{
2062 return -ENXIO;
2063}
2064
2065static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
2066{
2067 return -ENXIO;
2068}
2069
2070static const struct clk_ops clk_nodrv_ops = {
2071 .enable = clk_nodrv_prepare_enable,
2072 .disable = clk_nodrv_disable_unprepare,
2073 .prepare = clk_nodrv_prepare_enable,
2074 .unprepare = clk_nodrv_disable_unprepare,
2075 .set_rate = clk_nodrv_set_rate,
2076 .set_parent = clk_nodrv_set_parent,
2077};
2078
Mark Brown1df5c932012-04-18 09:07:12 +01002079/**
2080 * clk_unregister - unregister a currently registered clock
2081 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01002082 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002083void clk_unregister(struct clk *clk)
2084{
2085 unsigned long flags;
2086
2087 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
2088 return;
2089
2090 clk_prepare_lock();
2091
2092 if (clk->ops == &clk_nodrv_ops) {
2093 pr_err("%s: unregistered clock: %s\n", __func__, clk->name);
2094 goto out;
2095 }
2096 /*
2097 * Assign empty clock ops for consumers that might still hold
2098 * a reference to this clock.
2099 */
2100 flags = clk_enable_lock();
2101 clk->ops = &clk_nodrv_ops;
2102 clk_enable_unlock(flags);
2103
2104 if (!hlist_empty(&clk->children)) {
2105 struct clk *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07002106 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002107
2108 /* Reparent all children to the orphan list. */
Stephen Boyd874f2242014-04-18 16:29:43 -07002109 hlist_for_each_entry_safe(child, t, &clk->children, child_node)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002110 clk_set_parent(child, NULL);
2111 }
2112
2113 clk_debug_unregister(clk);
2114
2115 hlist_del_init(&clk->child_node);
2116
2117 if (clk->prepare_count)
2118 pr_warn("%s: unregistering prepared clock: %s\n",
2119 __func__, clk->name);
2120
2121 kref_put(&clk->ref, __clk_release);
2122out:
2123 clk_prepare_unlock();
2124}
Mark Brown1df5c932012-04-18 09:07:12 +01002125EXPORT_SYMBOL_GPL(clk_unregister);
2126
Stephen Boyd46c87732012-09-24 13:38:04 -07002127static void devm_clk_release(struct device *dev, void *res)
2128{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002129 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07002130}
2131
2132/**
2133 * devm_clk_register - resource managed clk_register()
2134 * @dev: device that is registering this clock
2135 * @hw: link to hardware-specific clock data
2136 *
2137 * Managed clk_register(). Clocks returned from this function are
2138 * automatically clk_unregister()ed on driver detach. See clk_register() for
2139 * more information.
2140 */
2141struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
2142{
2143 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002144 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07002145
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002146 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
2147 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07002148 return ERR_PTR(-ENOMEM);
2149
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002150 clk = clk_register(dev, hw);
2151 if (!IS_ERR(clk)) {
2152 *clkp = clk;
2153 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002154 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002155 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002156 }
2157
2158 return clk;
2159}
2160EXPORT_SYMBOL_GPL(devm_clk_register);
2161
2162static int devm_clk_match(struct device *dev, void *res, void *data)
2163{
2164 struct clk *c = res;
2165 if (WARN_ON(!c))
2166 return 0;
2167 return c == data;
2168}
2169
2170/**
2171 * devm_clk_unregister - resource managed clk_unregister()
2172 * @clk: clock to unregister
2173 *
2174 * Deallocate a clock allocated with devm_clk_register(). Normally
2175 * this function will not need to be called and the resource management
2176 * code will ensure that the resource is freed.
2177 */
2178void devm_clk_unregister(struct device *dev, struct clk *clk)
2179{
2180 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
2181}
2182EXPORT_SYMBOL_GPL(devm_clk_unregister);
2183
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002184/*
2185 * clkdev helpers
2186 */
2187int __clk_get(struct clk *clk)
2188{
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002189 if (clk) {
2190 if (!try_module_get(clk->owner))
2191 return 0;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002192
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002193 kref_get(&clk->ref);
2194 }
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002195 return 1;
2196}
2197
2198void __clk_put(struct clk *clk)
2199{
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002200 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002201 return;
2202
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002203 clk_prepare_lock();
2204 kref_put(&clk->ref, __clk_release);
2205 clk_prepare_unlock();
2206
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002207 module_put(clk->owner);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002208}
2209
Mike Turquetteb24764902012-03-15 23:11:19 -07002210/*** clk rate change notifiers ***/
2211
2212/**
2213 * clk_notifier_register - add a clk rate change notifier
2214 * @clk: struct clk * to watch
2215 * @nb: struct notifier_block * with callback info
2216 *
2217 * Request notification when clk's rate changes. This uses an SRCU
2218 * notifier because we want it to block and notifier unregistrations are
2219 * uncommon. The callbacks associated with the notifier must not
2220 * re-enter into the clk framework by calling any top-level clk APIs;
2221 * this will cause a nested prepare_lock mutex.
2222 *
Soren Brinkmann5324fda2014-01-22 11:48:37 -08002223 * In all notification cases cases (pre, post and abort rate change) the
2224 * original clock rate is passed to the callback via struct
2225 * clk_notifier_data.old_rate and the new frequency is passed via struct
Mike Turquetteb24764902012-03-15 23:11:19 -07002226 * clk_notifier_data.new_rate.
2227 *
Mike Turquetteb24764902012-03-15 23:11:19 -07002228 * clk_notifier_register() must be called from non-atomic context.
2229 * Returns -EINVAL if called with null arguments, -ENOMEM upon
2230 * allocation failure; otherwise, passes along the return value of
2231 * srcu_notifier_chain_register().
2232 */
2233int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
2234{
2235 struct clk_notifier *cn;
2236 int ret = -ENOMEM;
2237
2238 if (!clk || !nb)
2239 return -EINVAL;
2240
Mike Turquetteeab89f62013-03-28 13:59:01 -07002241 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002242
2243 /* search the list of notifiers for this clk */
2244 list_for_each_entry(cn, &clk_notifier_list, node)
2245 if (cn->clk == clk)
2246 break;
2247
2248 /* if clk wasn't in the notifier list, allocate new clk_notifier */
2249 if (cn->clk != clk) {
2250 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
2251 if (!cn)
2252 goto out;
2253
2254 cn->clk = clk;
2255 srcu_init_notifier_head(&cn->notifier_head);
2256
2257 list_add(&cn->node, &clk_notifier_list);
2258 }
2259
2260 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
2261
2262 clk->notifier_count++;
2263
2264out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002265 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002266
2267 return ret;
2268}
2269EXPORT_SYMBOL_GPL(clk_notifier_register);
2270
2271/**
2272 * clk_notifier_unregister - remove a clk rate change notifier
2273 * @clk: struct clk *
2274 * @nb: struct notifier_block * with callback info
2275 *
2276 * Request no further notification for changes to 'clk' and frees memory
2277 * allocated in clk_notifier_register.
2278 *
2279 * Returns -EINVAL if called with null arguments; otherwise, passes
2280 * along the return value of srcu_notifier_chain_unregister().
2281 */
2282int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
2283{
2284 struct clk_notifier *cn = NULL;
2285 int ret = -EINVAL;
2286
2287 if (!clk || !nb)
2288 return -EINVAL;
2289
Mike Turquetteeab89f62013-03-28 13:59:01 -07002290 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002291
2292 list_for_each_entry(cn, &clk_notifier_list, node)
2293 if (cn->clk == clk)
2294 break;
2295
2296 if (cn->clk == clk) {
2297 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
2298
2299 clk->notifier_count--;
2300
2301 /* XXX the notifier code should handle this better */
2302 if (!cn->notifier_head.head) {
2303 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08002304 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07002305 kfree(cn);
2306 }
2307
2308 } else {
2309 ret = -ENOENT;
2310 }
2311
Mike Turquetteeab89f62013-03-28 13:59:01 -07002312 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002313
2314 return ret;
2315}
2316EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05002317
2318#ifdef CONFIG_OF
2319/**
2320 * struct of_clk_provider - Clock provider registration structure
2321 * @link: Entry in global list of clock providers
2322 * @node: Pointer to device tree node of clock provider
2323 * @get: Get clock callback. Returns NULL or a struct clk for the
2324 * given clock specifier
2325 * @data: context pointer to be passed into @get callback
2326 */
2327struct of_clk_provider {
2328 struct list_head link;
2329
2330 struct device_node *node;
2331 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
2332 void *data;
2333};
2334
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302335static const struct of_device_id __clk_of_table_sentinel
2336 __used __section(__clk_of_table_end);
2337
Grant Likely766e6a42012-04-09 14:50:06 -05002338static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002339static DEFINE_MUTEX(of_clk_mutex);
2340
2341/* of_clk_provider list locking helpers */
2342void of_clk_lock(void)
2343{
2344 mutex_lock(&of_clk_mutex);
2345}
2346
2347void of_clk_unlock(void)
2348{
2349 mutex_unlock(&of_clk_mutex);
2350}
Grant Likely766e6a42012-04-09 14:50:06 -05002351
2352struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
2353 void *data)
2354{
2355 return data;
2356}
2357EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
2358
Shawn Guo494bfec2012-08-22 21:36:27 +08002359struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
2360{
2361 struct clk_onecell_data *clk_data = data;
2362 unsigned int idx = clkspec->args[0];
2363
2364 if (idx >= clk_data->clk_num) {
2365 pr_err("%s: invalid clock index %d\n", __func__, idx);
2366 return ERR_PTR(-EINVAL);
2367 }
2368
2369 return clk_data->clks[idx];
2370}
2371EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
2372
Grant Likely766e6a42012-04-09 14:50:06 -05002373/**
2374 * of_clk_add_provider() - Register a clock provider for a node
2375 * @np: Device node pointer associated with clock provider
2376 * @clk_src_get: callback for decoding clock
2377 * @data: context pointer for @clk_src_get callback.
2378 */
2379int of_clk_add_provider(struct device_node *np,
2380 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
2381 void *data),
2382 void *data)
2383{
2384 struct of_clk_provider *cp;
2385
2386 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
2387 if (!cp)
2388 return -ENOMEM;
2389
2390 cp->node = of_node_get(np);
2391 cp->data = data;
2392 cp->get = clk_src_get;
2393
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002394 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002395 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002396 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002397 pr_debug("Added clock from %s\n", np->full_name);
2398
2399 return 0;
2400}
2401EXPORT_SYMBOL_GPL(of_clk_add_provider);
2402
2403/**
2404 * of_clk_del_provider() - Remove a previously registered clock provider
2405 * @np: Device node pointer associated with clock provider
2406 */
2407void of_clk_del_provider(struct device_node *np)
2408{
2409 struct of_clk_provider *cp;
2410
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002411 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002412 list_for_each_entry(cp, &of_clk_providers, link) {
2413 if (cp->node == np) {
2414 list_del(&cp->link);
2415 of_node_put(cp->node);
2416 kfree(cp);
2417 break;
2418 }
2419 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002420 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002421}
2422EXPORT_SYMBOL_GPL(of_clk_del_provider);
2423
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002424struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec)
Grant Likely766e6a42012-04-09 14:50:06 -05002425{
2426 struct of_clk_provider *provider;
Jean-Francois Moinea34cd462013-11-25 19:47:04 +01002427 struct clk *clk = ERR_PTR(-EPROBE_DEFER);
Grant Likely766e6a42012-04-09 14:50:06 -05002428
2429 /* Check if we have such a provider in our array */
Grant Likely766e6a42012-04-09 14:50:06 -05002430 list_for_each_entry(provider, &of_clk_providers, link) {
2431 if (provider->node == clkspec->np)
2432 clk = provider->get(clkspec, provider->data);
2433 if (!IS_ERR(clk))
2434 break;
2435 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002436
2437 return clk;
2438}
2439
2440struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
2441{
2442 struct clk *clk;
2443
2444 mutex_lock(&of_clk_mutex);
2445 clk = __of_clk_get_from_provider(clkspec);
2446 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002447
2448 return clk;
2449}
2450
Mike Turquettef6102742013-10-07 23:12:13 -07002451int of_clk_get_parent_count(struct device_node *np)
2452{
2453 return of_count_phandle_with_args(np, "clocks", "#clock-cells");
2454}
2455EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
2456
Grant Likely766e6a42012-04-09 14:50:06 -05002457const char *of_clk_get_parent_name(struct device_node *np, int index)
2458{
2459 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002460 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05002461 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002462 const __be32 *vp;
2463 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05002464 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002465 int count;
Grant Likely766e6a42012-04-09 14:50:06 -05002466
2467 if (index < 0)
2468 return NULL;
2469
2470 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
2471 &clkspec);
2472 if (rc)
2473 return NULL;
2474
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002475 index = clkspec.args_count ? clkspec.args[0] : 0;
2476 count = 0;
2477
2478 /* if there is an indices property, use it to transfer the index
2479 * specified into an array offset for the clock-output-names property.
2480 */
2481 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
2482 if (index == pv) {
2483 index = count;
2484 break;
2485 }
2486 count++;
2487 }
2488
Grant Likely766e6a42012-04-09 14:50:06 -05002489 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002490 index,
Grant Likely766e6a42012-04-09 14:50:06 -05002491 &clk_name) < 0)
2492 clk_name = clkspec.np->name;
2493
2494 of_node_put(clkspec.np);
2495 return clk_name;
2496}
2497EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
2498
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002499struct clock_provider {
2500 of_clk_init_cb_t clk_init_cb;
2501 struct device_node *np;
2502 struct list_head node;
2503};
2504
2505static LIST_HEAD(clk_provider_list);
2506
2507/*
2508 * This function looks for a parent clock. If there is one, then it
2509 * checks that the provider for this parent clock was initialized, in
2510 * this case the parent clock will be ready.
2511 */
2512static int parent_ready(struct device_node *np)
2513{
2514 int i = 0;
2515
2516 while (true) {
2517 struct clk *clk = of_clk_get(np, i);
2518
2519 /* this parent is ready we can check the next one */
2520 if (!IS_ERR(clk)) {
2521 clk_put(clk);
2522 i++;
2523 continue;
2524 }
2525
2526 /* at least one parent is not ready, we exit now */
2527 if (PTR_ERR(clk) == -EPROBE_DEFER)
2528 return 0;
2529
2530 /*
2531 * Here we make assumption that the device tree is
2532 * written correctly. So an error means that there is
2533 * no more parent. As we didn't exit yet, then the
2534 * previous parent are ready. If there is no clock
2535 * parent, no need to wait for them, then we can
2536 * consider their absence as being ready
2537 */
2538 return 1;
2539 }
2540}
2541
Grant Likely766e6a42012-04-09 14:50:06 -05002542/**
2543 * of_clk_init() - Scan and init clock providers from the DT
2544 * @matches: array of compatible values and init functions for providers.
2545 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002546 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01002547 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002548 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05002549 */
2550void __init of_clk_init(const struct of_device_id *matches)
2551{
Alex Elder7f7ed582013-08-22 11:31:31 -05002552 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05002553 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002554 struct clock_provider *clk_provider, *next;
2555 bool is_init_done;
2556 bool force = false;
Grant Likely766e6a42012-04-09 14:50:06 -05002557
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302558 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03002559 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302560
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002561 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05002562 for_each_matching_node_and_match(np, matches, &match) {
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002563 struct clock_provider *parent =
2564 kzalloc(sizeof(struct clock_provider), GFP_KERNEL);
2565
2566 parent->clk_init_cb = match->data;
2567 parent->np = np;
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01002568 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002569 }
2570
2571 while (!list_empty(&clk_provider_list)) {
2572 is_init_done = false;
2573 list_for_each_entry_safe(clk_provider, next,
2574 &clk_provider_list, node) {
2575 if (force || parent_ready(clk_provider->np)) {
2576 clk_provider->clk_init_cb(clk_provider->np);
2577 list_del(&clk_provider->node);
2578 kfree(clk_provider);
2579 is_init_done = true;
2580 }
2581 }
2582
2583 /*
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01002584 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002585 * remaining providers during the last loop, so now we
2586 * initialize all the remaining ones unconditionally
2587 * in case the clock parent was not mandatory
2588 */
2589 if (!is_init_done)
2590 force = true;
2591
Grant Likely766e6a42012-04-09 14:50:06 -05002592 }
2593}
2594#endif