blob: 8ca28189e4e96444c366286b531ace80f5c763c9 [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>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020013#include <linux/clk/clk-conf.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070014#include <linux/module.h>
15#include <linux/mutex.h>
16#include <linux/spinlock.h>
17#include <linux/err.h>
18#include <linux/list.h>
19#include <linux/slab.h>
Grant Likely766e6a42012-04-09 14:50:06 -050020#include <linux/of.h>
Stephen Boyd46c87732012-09-24 13:38:04 -070021#include <linux/device.h>
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +053022#include <linux/init.h>
Mike Turquette533ddeb2013-03-28 13:59:02 -070023#include <linux/sched.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070024
Sylwester Nawrockid6782c22013-08-23 17:03:43 +020025#include "clk.h"
26
Mike Turquetteb24764902012-03-15 23:11:19 -070027static DEFINE_SPINLOCK(enable_lock);
28static DEFINE_MUTEX(prepare_lock);
29
Mike Turquette533ddeb2013-03-28 13:59:02 -070030static struct task_struct *prepare_owner;
31static struct task_struct *enable_owner;
32
33static int prepare_refcnt;
34static int enable_refcnt;
35
Mike Turquetteb24764902012-03-15 23:11:19 -070036static HLIST_HEAD(clk_root_list);
37static HLIST_HEAD(clk_orphan_list);
38static LIST_HEAD(clk_notifier_list);
39
Mike Turquetteeab89f62013-03-28 13:59:01 -070040/*** locking ***/
41static void clk_prepare_lock(void)
42{
Mike Turquette533ddeb2013-03-28 13:59:02 -070043 if (!mutex_trylock(&prepare_lock)) {
44 if (prepare_owner == current) {
45 prepare_refcnt++;
46 return;
47 }
48 mutex_lock(&prepare_lock);
49 }
50 WARN_ON_ONCE(prepare_owner != NULL);
51 WARN_ON_ONCE(prepare_refcnt != 0);
52 prepare_owner = current;
53 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -070054}
55
56static void clk_prepare_unlock(void)
57{
Mike Turquette533ddeb2013-03-28 13:59:02 -070058 WARN_ON_ONCE(prepare_owner != current);
59 WARN_ON_ONCE(prepare_refcnt == 0);
60
61 if (--prepare_refcnt)
62 return;
63 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -070064 mutex_unlock(&prepare_lock);
65}
66
67static unsigned long clk_enable_lock(void)
68{
69 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -070070
71 if (!spin_trylock_irqsave(&enable_lock, flags)) {
72 if (enable_owner == current) {
73 enable_refcnt++;
74 return flags;
75 }
76 spin_lock_irqsave(&enable_lock, flags);
77 }
78 WARN_ON_ONCE(enable_owner != NULL);
79 WARN_ON_ONCE(enable_refcnt != 0);
80 enable_owner = current;
81 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -070082 return flags;
83}
84
85static void clk_enable_unlock(unsigned long flags)
86{
Mike Turquette533ddeb2013-03-28 13:59:02 -070087 WARN_ON_ONCE(enable_owner != current);
88 WARN_ON_ONCE(enable_refcnt == 0);
89
90 if (--enable_refcnt)
91 return;
92 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -070093 spin_unlock_irqrestore(&enable_lock, flags);
94}
95
Mike Turquetteb24764902012-03-15 23:11:19 -070096/*** debugfs support ***/
97
Mike Turquetteea72dc22013-12-18 21:38:52 -080098#ifdef CONFIG_DEBUG_FS
Mike Turquetteb24764902012-03-15 23:11:19 -070099#include <linux/debugfs.h>
100
101static struct dentry *rootdir;
Mike Turquetteb24764902012-03-15 23:11:19 -0700102static int inited = 0;
Stephen Boyd6314b672014-09-04 23:37:49 -0700103static DEFINE_MUTEX(clk_debug_lock);
104static HLIST_HEAD(clk_debug_list);
Mike Turquetteb24764902012-03-15 23:11:19 -0700105
Sachin Kamat6b44c8542014-07-01 11:56:34 +0530106static struct hlist_head *all_lists[] = {
107 &clk_root_list,
108 &clk_orphan_list,
109 NULL,
110};
111
112static struct hlist_head *orphan_list[] = {
113 &clk_orphan_list,
114 NULL,
115};
116
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530117static void clk_summary_show_one(struct seq_file *s, struct clk *c, int level)
118{
119 if (!c)
120 return;
121
Geert Uytterhoevenfb8abb72014-03-25 12:16:24 +0100122 seq_printf(s, "%*s%-*s %11d %12d %11lu %10lu\n",
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530123 level * 3 + 1, "",
124 30 - level * 3, c->name,
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100125 c->enable_count, c->prepare_count, clk_get_rate(c),
126 clk_get_accuracy(c));
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530127}
128
129static void clk_summary_show_subtree(struct seq_file *s, struct clk *c,
130 int level)
131{
132 struct clk *child;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530133
134 if (!c)
135 return;
136
137 clk_summary_show_one(s, c, level);
138
Sasha Levinb67bfe02013-02-27 17:06:00 -0800139 hlist_for_each_entry(child, &c->children, child_node)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530140 clk_summary_show_subtree(s, child, level + 1);
141}
142
143static int clk_summary_show(struct seq_file *s, void *data)
144{
145 struct clk *c;
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300146 struct hlist_head **lists = (struct hlist_head **)s->private;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530147
Geert Uytterhoevenfb8abb72014-03-25 12:16:24 +0100148 seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy\n");
149 seq_puts(s, "--------------------------------------------------------------------------------\n");
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530150
Mike Turquetteeab89f62013-03-28 13:59:01 -0700151 clk_prepare_lock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530152
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300153 for (; *lists; lists++)
154 hlist_for_each_entry(c, *lists, child_node)
155 clk_summary_show_subtree(s, c, 0);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530156
Mike Turquetteeab89f62013-03-28 13:59:01 -0700157 clk_prepare_unlock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530158
159 return 0;
160}
161
162
163static int clk_summary_open(struct inode *inode, struct file *file)
164{
165 return single_open(file, clk_summary_show, inode->i_private);
166}
167
168static const struct file_operations clk_summary_fops = {
169 .open = clk_summary_open,
170 .read = seq_read,
171 .llseek = seq_lseek,
172 .release = single_release,
173};
174
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530175static void clk_dump_one(struct seq_file *s, struct clk *c, int level)
176{
177 if (!c)
178 return;
179
180 seq_printf(s, "\"%s\": { ", c->name);
181 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
182 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Peter De Schrijver670decd2013-06-05 18:06:35 +0300183 seq_printf(s, "\"rate\": %lu", clk_get_rate(c));
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100184 seq_printf(s, "\"accuracy\": %lu", clk_get_accuracy(c));
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530185}
186
187static void clk_dump_subtree(struct seq_file *s, struct clk *c, int level)
188{
189 struct clk *child;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530190
191 if (!c)
192 return;
193
194 clk_dump_one(s, c, level);
195
Sasha Levinb67bfe02013-02-27 17:06:00 -0800196 hlist_for_each_entry(child, &c->children, child_node) {
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530197 seq_printf(s, ",");
198 clk_dump_subtree(s, child, level + 1);
199 }
200
201 seq_printf(s, "}");
202}
203
204static int clk_dump(struct seq_file *s, void *data)
205{
206 struct clk *c;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530207 bool first_node = true;
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300208 struct hlist_head **lists = (struct hlist_head **)s->private;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530209
210 seq_printf(s, "{");
211
Mike Turquetteeab89f62013-03-28 13:59:01 -0700212 clk_prepare_lock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530213
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300214 for (; *lists; lists++) {
215 hlist_for_each_entry(c, *lists, child_node) {
216 if (!first_node)
217 seq_puts(s, ",");
218 first_node = false;
219 clk_dump_subtree(s, c, 0);
220 }
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530221 }
222
Mike Turquetteeab89f62013-03-28 13:59:01 -0700223 clk_prepare_unlock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530224
225 seq_printf(s, "}");
226 return 0;
227}
228
229
230static int clk_dump_open(struct inode *inode, struct file *file)
231{
232 return single_open(file, clk_dump, inode->i_private);
233}
234
235static const struct file_operations clk_dump_fops = {
236 .open = clk_dump_open,
237 .read = seq_read,
238 .llseek = seq_lseek,
239 .release = single_release,
240};
241
Mike Turquetteb24764902012-03-15 23:11:19 -0700242/* caller must hold prepare_lock */
243static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry)
244{
245 struct dentry *d;
246 int ret = -ENOMEM;
247
248 if (!clk || !pdentry) {
249 ret = -EINVAL;
250 goto out;
251 }
252
253 d = debugfs_create_dir(clk->name, pdentry);
254 if (!d)
255 goto out;
256
257 clk->dentry = d;
258
259 d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
260 (u32 *)&clk->rate);
261 if (!d)
262 goto err_out;
263
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100264 d = debugfs_create_u32("clk_accuracy", S_IRUGO, clk->dentry,
265 (u32 *)&clk->accuracy);
266 if (!d)
267 goto err_out;
268
Mike Turquetteb24764902012-03-15 23:11:19 -0700269 d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
270 (u32 *)&clk->flags);
271 if (!d)
272 goto err_out;
273
274 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
275 (u32 *)&clk->prepare_count);
276 if (!d)
277 goto err_out;
278
279 d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
280 (u32 *)&clk->enable_count);
281 if (!d)
282 goto err_out;
283
284 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
285 (u32 *)&clk->notifier_count);
286 if (!d)
287 goto err_out;
288
Chris Brandabeab452014-07-03 14:01:29 -0700289 if (clk->ops->debug_init) {
290 ret = clk->ops->debug_init(clk->hw, clk->dentry);
291 if (ret)
Alex Elderc646cbf2014-03-21 06:43:56 -0500292 goto err_out;
Chris Brandabeab452014-07-03 14:01:29 -0700293 }
Alex Elderc646cbf2014-03-21 06:43:56 -0500294
Mike Turquetteb24764902012-03-15 23:11:19 -0700295 ret = 0;
296 goto out;
297
298err_out:
Alex Elderb5f98e62013-11-27 09:39:49 -0600299 debugfs_remove_recursive(clk->dentry);
300 clk->dentry = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -0700301out:
302 return ret;
303}
304
Mike Turquetteb24764902012-03-15 23:11:19 -0700305/**
306 * clk_debug_register - add a clk node to the debugfs clk tree
307 * @clk: the clk being added to the debugfs clk tree
308 *
309 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
310 * initialized. Otherwise it bails out early since the debugfs clk tree
311 * will be created lazily by clk_debug_init as part of a late_initcall.
Mike Turquetteb24764902012-03-15 23:11:19 -0700312 */
313static int clk_debug_register(struct clk *clk)
314{
Mike Turquetteb24764902012-03-15 23:11:19 -0700315 int ret = 0;
316
Stephen Boyd6314b672014-09-04 23:37:49 -0700317 mutex_lock(&clk_debug_lock);
318 hlist_add_head(&clk->debug_node, &clk_debug_list);
319
Mike Turquetteb24764902012-03-15 23:11:19 -0700320 if (!inited)
Stephen Boyd6314b672014-09-04 23:37:49 -0700321 goto unlock;
Mike Turquetteb24764902012-03-15 23:11:19 -0700322
Stephen Boyd6314b672014-09-04 23:37:49 -0700323 ret = clk_debug_create_one(clk, rootdir);
324unlock:
325 mutex_unlock(&clk_debug_lock);
Mike Turquetteb24764902012-03-15 23:11:19 -0700326
Mike Turquetteb24764902012-03-15 23:11:19 -0700327 return ret;
328}
329
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200330 /**
331 * clk_debug_unregister - remove a clk node from the debugfs clk tree
332 * @clk: the clk being removed from the debugfs clk tree
333 *
334 * Dynamically removes a clk and all it's children clk nodes from the
335 * debugfs clk tree if clk->dentry points to debugfs created by
336 * clk_debug_register in __clk_init.
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200337 */
338static void clk_debug_unregister(struct clk *clk)
339{
Stephen Boyd6314b672014-09-04 23:37:49 -0700340 mutex_lock(&clk_debug_lock);
341 if (!clk->dentry)
342 goto out;
343
344 hlist_del_init(&clk->debug_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200345 debugfs_remove_recursive(clk->dentry);
Stephen Boyd6314b672014-09-04 23:37:49 -0700346 clk->dentry = NULL;
347out:
348 mutex_unlock(&clk_debug_lock);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200349}
350
Peter De Schrijverfb2b3c92014-06-26 18:00:53 +0300351struct dentry *clk_debugfs_add_file(struct clk *clk, char *name, umode_t mode,
352 void *data, const struct file_operations *fops)
353{
354 struct dentry *d = NULL;
355
356 if (clk->dentry)
357 d = debugfs_create_file(name, mode, clk->dentry, data, fops);
358
359 return d;
360}
361EXPORT_SYMBOL_GPL(clk_debugfs_add_file);
362
Mike Turquetteb24764902012-03-15 23:11:19 -0700363/**
364 * clk_debug_init - lazily create the debugfs clk tree visualization
365 *
366 * clks are often initialized very early during boot before memory can
367 * be dynamically allocated and well before debugfs is setup.
368 * clk_debug_init walks the clk tree hierarchy while holding
369 * prepare_lock and creates the topology as part of a late_initcall,
370 * thus insuring that clks initialized very early will still be
371 * represented in the debugfs clk tree. This function should only be
372 * called once at boot-time, and all other clks added dynamically will
373 * be done so with clk_debug_register.
374 */
375static int __init clk_debug_init(void)
376{
377 struct clk *clk;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530378 struct dentry *d;
Mike Turquetteb24764902012-03-15 23:11:19 -0700379
380 rootdir = debugfs_create_dir("clk", NULL);
381
382 if (!rootdir)
383 return -ENOMEM;
384
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300385 d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, &all_lists,
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530386 &clk_summary_fops);
387 if (!d)
388 return -ENOMEM;
389
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300390 d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, &all_lists,
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530391 &clk_dump_fops);
392 if (!d)
393 return -ENOMEM;
394
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300395 d = debugfs_create_file("clk_orphan_summary", S_IRUGO, rootdir,
396 &orphan_list, &clk_summary_fops);
397 if (!d)
398 return -ENOMEM;
Mike Turquetteb24764902012-03-15 23:11:19 -0700399
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300400 d = debugfs_create_file("clk_orphan_dump", S_IRUGO, rootdir,
401 &orphan_list, &clk_dump_fops);
402 if (!d)
Mike Turquetteb24764902012-03-15 23:11:19 -0700403 return -ENOMEM;
404
Stephen Boyd6314b672014-09-04 23:37:49 -0700405 mutex_lock(&clk_debug_lock);
406 hlist_for_each_entry(clk, &clk_debug_list, debug_node)
407 clk_debug_create_one(clk, rootdir);
Mike Turquetteb24764902012-03-15 23:11:19 -0700408
409 inited = 1;
Stephen Boyd6314b672014-09-04 23:37:49 -0700410 mutex_unlock(&clk_debug_lock);
Mike Turquetteb24764902012-03-15 23:11:19 -0700411
412 return 0;
413}
414late_initcall(clk_debug_init);
415#else
416static inline int clk_debug_register(struct clk *clk) { return 0; }
Ulf Hanssonb33d2122013-04-02 23:09:37 +0200417static inline void clk_debug_reparent(struct clk *clk, struct clk *new_parent)
418{
419}
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200420static inline void clk_debug_unregister(struct clk *clk)
421{
422}
Mike Turquette70d347e2012-03-26 11:53:47 -0700423#endif
Mike Turquetteb24764902012-03-15 23:11:19 -0700424
Mike Turquetteb24764902012-03-15 23:11:19 -0700425/* caller must hold prepare_lock */
Ulf Hansson1c155b32013-03-12 20:26:03 +0100426static void clk_unprepare_unused_subtree(struct clk *clk)
427{
428 struct clk *child;
429
430 if (!clk)
431 return;
432
433 hlist_for_each_entry(child, &clk->children, child_node)
434 clk_unprepare_unused_subtree(child);
435
436 if (clk->prepare_count)
437 return;
438
439 if (clk->flags & CLK_IGNORE_UNUSED)
440 return;
441
Ulf Hansson3cc82472013-03-12 20:26:04 +0100442 if (__clk_is_prepared(clk)) {
443 if (clk->ops->unprepare_unused)
444 clk->ops->unprepare_unused(clk->hw);
445 else if (clk->ops->unprepare)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100446 clk->ops->unprepare(clk->hw);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100447 }
Ulf Hansson1c155b32013-03-12 20:26:03 +0100448}
449
450/* caller must hold prepare_lock */
Mike Turquetteb24764902012-03-15 23:11:19 -0700451static void clk_disable_unused_subtree(struct clk *clk)
452{
453 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700454 unsigned long flags;
455
456 if (!clk)
457 goto out;
458
Sasha Levinb67bfe02013-02-27 17:06:00 -0800459 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700460 clk_disable_unused_subtree(child);
461
Mike Turquetteeab89f62013-03-28 13:59:01 -0700462 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700463
464 if (clk->enable_count)
465 goto unlock_out;
466
467 if (clk->flags & CLK_IGNORE_UNUSED)
468 goto unlock_out;
469
Mike Turquette7c045a52012-12-04 11:00:35 -0800470 /*
471 * some gate clocks have special needs during the disable-unused
472 * sequence. call .disable_unused if available, otherwise fall
473 * back to .disable
474 */
475 if (__clk_is_enabled(clk)) {
476 if (clk->ops->disable_unused)
477 clk->ops->disable_unused(clk->hw);
478 else if (clk->ops->disable)
479 clk->ops->disable(clk->hw);
480 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700481
482unlock_out:
Mike Turquetteeab89f62013-03-28 13:59:01 -0700483 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700484
485out:
486 return;
487}
488
Olof Johansson1e435252013-04-27 14:10:18 -0700489static bool clk_ignore_unused;
490static int __init clk_ignore_unused_setup(char *__unused)
491{
492 clk_ignore_unused = true;
493 return 1;
494}
495__setup("clk_ignore_unused", clk_ignore_unused_setup);
496
Mike Turquetteb24764902012-03-15 23:11:19 -0700497static int clk_disable_unused(void)
498{
499 struct clk *clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700500
Olof Johansson1e435252013-04-27 14:10:18 -0700501 if (clk_ignore_unused) {
502 pr_warn("clk: Not disabling unused clocks\n");
503 return 0;
504 }
505
Mike Turquetteeab89f62013-03-28 13:59:01 -0700506 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700507
Sasha Levinb67bfe02013-02-27 17:06:00 -0800508 hlist_for_each_entry(clk, &clk_root_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700509 clk_disable_unused_subtree(clk);
510
Sasha Levinb67bfe02013-02-27 17:06:00 -0800511 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700512 clk_disable_unused_subtree(clk);
513
Ulf Hansson1c155b32013-03-12 20:26:03 +0100514 hlist_for_each_entry(clk, &clk_root_list, child_node)
515 clk_unprepare_unused_subtree(clk);
516
517 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
518 clk_unprepare_unused_subtree(clk);
519
Mike Turquetteeab89f62013-03-28 13:59:01 -0700520 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700521
522 return 0;
523}
Saravana Kannand41d5802013-05-09 11:35:01 -0700524late_initcall_sync(clk_disable_unused);
Mike Turquetteb24764902012-03-15 23:11:19 -0700525
526/*** helper functions ***/
527
Russ Dill65800b22012-11-26 11:20:09 -0800528const char *__clk_get_name(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700529{
530 return !clk ? NULL : clk->name;
531}
Niels de Vos48950842012-12-13 13:12:25 +0100532EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700533
Russ Dill65800b22012-11-26 11:20:09 -0800534struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700535{
536 return !clk ? NULL : clk->hw;
537}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800538EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700539
Russ Dill65800b22012-11-26 11:20:09 -0800540u8 __clk_get_num_parents(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700541{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700542 return !clk ? 0 : clk->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -0700543}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800544EXPORT_SYMBOL_GPL(__clk_get_num_parents);
Mike Turquetteb24764902012-03-15 23:11:19 -0700545
Russ Dill65800b22012-11-26 11:20:09 -0800546struct clk *__clk_get_parent(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700547{
548 return !clk ? NULL : clk->parent;
549}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800550EXPORT_SYMBOL_GPL(__clk_get_parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700551
James Hogan7ef3dcc2013-07-29 12:24:58 +0100552struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
553{
554 if (!clk || index >= clk->num_parents)
555 return NULL;
556 else if (!clk->parents)
557 return __clk_lookup(clk->parent_names[index]);
558 else if (!clk->parents[index])
559 return clk->parents[index] =
560 __clk_lookup(clk->parent_names[index]);
561 else
562 return clk->parents[index];
563}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800564EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100565
Russ Dill65800b22012-11-26 11:20:09 -0800566unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700567{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700568 return !clk ? 0 : clk->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700569}
570
Russ Dill65800b22012-11-26 11:20:09 -0800571unsigned int __clk_get_prepare_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700572{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700573 return !clk ? 0 : clk->prepare_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700574}
575
576unsigned long __clk_get_rate(struct clk *clk)
577{
578 unsigned long ret;
579
580 if (!clk) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530581 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700582 goto out;
583 }
584
585 ret = clk->rate;
586
587 if (clk->flags & CLK_IS_ROOT)
588 goto out;
589
590 if (!clk->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530591 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700592
593out:
594 return ret;
595}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800596EXPORT_SYMBOL_GPL(__clk_get_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700597
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100598unsigned long __clk_get_accuracy(struct clk *clk)
599{
600 if (!clk)
601 return 0;
602
603 return clk->accuracy;
604}
605
Russ Dill65800b22012-11-26 11:20:09 -0800606unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700607{
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700608 return !clk ? 0 : clk->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700609}
Thierry Redingb05c6832013-09-03 09:43:51 +0200610EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700611
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100612bool __clk_is_prepared(struct clk *clk)
613{
614 int ret;
615
616 if (!clk)
617 return false;
618
619 /*
620 * .is_prepared is optional for clocks that can prepare
621 * fall back to software usage counter if it is missing
622 */
623 if (!clk->ops->is_prepared) {
624 ret = clk->prepare_count ? 1 : 0;
625 goto out;
626 }
627
628 ret = clk->ops->is_prepared(clk->hw);
629out:
630 return !!ret;
631}
632
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700633bool __clk_is_enabled(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700634{
635 int ret;
636
637 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700638 return false;
Mike Turquetteb24764902012-03-15 23:11:19 -0700639
640 /*
641 * .is_enabled is only mandatory for clocks that gate
642 * fall back to software usage counter if .is_enabled is missing
643 */
644 if (!clk->ops->is_enabled) {
645 ret = clk->enable_count ? 1 : 0;
646 goto out;
647 }
648
649 ret = clk->ops->is_enabled(clk->hw);
650out:
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700651 return !!ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700652}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800653EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700654
655static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
656{
657 struct clk *child;
658 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700659
660 if (!strcmp(clk->name, name))
661 return clk;
662
Sasha Levinb67bfe02013-02-27 17:06:00 -0800663 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700664 ret = __clk_lookup_subtree(name, child);
665 if (ret)
666 return ret;
667 }
668
669 return NULL;
670}
671
672struct clk *__clk_lookup(const char *name)
673{
674 struct clk *root_clk;
675 struct clk *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700676
677 if (!name)
678 return NULL;
679
680 /* search the 'proper' clk tree first */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800681 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700682 ret = __clk_lookup_subtree(name, root_clk);
683 if (ret)
684 return ret;
685 }
686
687 /* if not found, then search the orphan tree */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800688 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700689 ret = __clk_lookup_subtree(name, root_clk);
690 if (ret)
691 return ret;
692 }
693
694 return NULL;
695}
696
James Hogane366fdd2013-07-29 12:25:02 +0100697/*
698 * Helper for finding best parent to provide a given frequency. This can be used
699 * directly as a determine_rate callback (e.g. for a mux), or from a more
700 * complex clock that may combine a mux with other operations.
701 */
702long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate,
703 unsigned long *best_parent_rate,
704 struct clk **best_parent_p)
705{
706 struct clk *clk = hw->clk, *parent, *best_parent = NULL;
707 int i, num_parents;
708 unsigned long parent_rate, best = 0;
709
710 /* if NO_REPARENT flag set, pass through to current parent */
711 if (clk->flags & CLK_SET_RATE_NO_REPARENT) {
712 parent = clk->parent;
713 if (clk->flags & CLK_SET_RATE_PARENT)
714 best = __clk_round_rate(parent, rate);
715 else if (parent)
716 best = __clk_get_rate(parent);
717 else
718 best = __clk_get_rate(clk);
719 goto out;
720 }
721
722 /* find the parent that can provide the fastest rate <= rate */
723 num_parents = clk->num_parents;
724 for (i = 0; i < num_parents; i++) {
725 parent = clk_get_parent_by_index(clk, i);
726 if (!parent)
727 continue;
728 if (clk->flags & CLK_SET_RATE_PARENT)
729 parent_rate = __clk_round_rate(parent, rate);
730 else
731 parent_rate = __clk_get_rate(parent);
732 if (parent_rate <= rate && parent_rate > best) {
733 best_parent = parent;
734 best = parent_rate;
735 }
736 }
737
738out:
739 if (best_parent)
740 *best_parent_p = best_parent;
741 *best_parent_rate = best;
742
743 return best;
744}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800745EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100746
Mike Turquetteb24764902012-03-15 23:11:19 -0700747/*** clk api ***/
748
749void __clk_unprepare(struct clk *clk)
750{
751 if (!clk)
752 return;
753
754 if (WARN_ON(clk->prepare_count == 0))
755 return;
756
757 if (--clk->prepare_count > 0)
758 return;
759
760 WARN_ON(clk->enable_count > 0);
761
762 if (clk->ops->unprepare)
763 clk->ops->unprepare(clk->hw);
764
765 __clk_unprepare(clk->parent);
766}
767
768/**
769 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200770 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700771 *
772 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
773 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
774 * if the operation may sleep. One example is a clk which is accessed over
775 * I2c. In the complex case a clk gate operation may require a fast and a slow
776 * part. It is this reason that clk_unprepare and clk_disable are not mutually
777 * exclusive. In fact clk_disable must be called before clk_unprepare.
778 */
779void clk_unprepare(struct clk *clk)
780{
Stephen Boyd63589e92014-03-26 16:06:37 -0700781 if (IS_ERR_OR_NULL(clk))
782 return;
783
Mike Turquetteeab89f62013-03-28 13:59:01 -0700784 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700785 __clk_unprepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700786 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700787}
788EXPORT_SYMBOL_GPL(clk_unprepare);
789
790int __clk_prepare(struct clk *clk)
791{
792 int ret = 0;
793
794 if (!clk)
795 return 0;
796
797 if (clk->prepare_count == 0) {
798 ret = __clk_prepare(clk->parent);
799 if (ret)
800 return ret;
801
802 if (clk->ops->prepare) {
803 ret = clk->ops->prepare(clk->hw);
804 if (ret) {
805 __clk_unprepare(clk->parent);
806 return ret;
807 }
808 }
809 }
810
811 clk->prepare_count++;
812
813 return 0;
814}
815
816/**
817 * clk_prepare - prepare a clock source
818 * @clk: the clk being prepared
819 *
820 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
821 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
822 * operation may sleep. One example is a clk which is accessed over I2c. In
823 * the complex case a clk ungate operation may require a fast and a slow part.
824 * It is this reason that clk_prepare and clk_enable are not mutually
825 * exclusive. In fact clk_prepare must be called before clk_enable.
826 * Returns 0 on success, -EERROR otherwise.
827 */
828int clk_prepare(struct clk *clk)
829{
830 int ret;
831
Mike Turquetteeab89f62013-03-28 13:59:01 -0700832 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700833 ret = __clk_prepare(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700834 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700835
836 return ret;
837}
838EXPORT_SYMBOL_GPL(clk_prepare);
839
840static void __clk_disable(struct clk *clk)
841{
842 if (!clk)
843 return;
844
845 if (WARN_ON(clk->enable_count == 0))
846 return;
847
848 if (--clk->enable_count > 0)
849 return;
850
851 if (clk->ops->disable)
852 clk->ops->disable(clk->hw);
853
854 __clk_disable(clk->parent);
855}
856
857/**
858 * clk_disable - gate a clock
859 * @clk: the clk being gated
860 *
861 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
862 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
863 * clk if the operation is fast and will never sleep. One example is a
864 * SoC-internal clk which is controlled via simple register writes. In the
865 * complex case a clk gate operation may require a fast and a slow part. It is
866 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
867 * In fact clk_disable must be called before clk_unprepare.
868 */
869void clk_disable(struct clk *clk)
870{
871 unsigned long flags;
872
Stephen Boyd63589e92014-03-26 16:06:37 -0700873 if (IS_ERR_OR_NULL(clk))
874 return;
875
Mike Turquetteeab89f62013-03-28 13:59:01 -0700876 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700877 __clk_disable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700878 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700879}
880EXPORT_SYMBOL_GPL(clk_disable);
881
882static int __clk_enable(struct clk *clk)
883{
884 int ret = 0;
885
886 if (!clk)
887 return 0;
888
889 if (WARN_ON(clk->prepare_count == 0))
890 return -ESHUTDOWN;
891
892 if (clk->enable_count == 0) {
893 ret = __clk_enable(clk->parent);
894
895 if (ret)
896 return ret;
897
898 if (clk->ops->enable) {
899 ret = clk->ops->enable(clk->hw);
900 if (ret) {
901 __clk_disable(clk->parent);
902 return ret;
903 }
904 }
905 }
906
907 clk->enable_count++;
908 return 0;
909}
910
911/**
912 * clk_enable - ungate a clock
913 * @clk: the clk being ungated
914 *
915 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
916 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
917 * if the operation will never sleep. One example is a SoC-internal clk which
918 * is controlled via simple register writes. In the complex case a clk ungate
919 * operation may require a fast and a slow part. It is this reason that
920 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
921 * must be called before clk_enable. Returns 0 on success, -EERROR
922 * otherwise.
923 */
924int clk_enable(struct clk *clk)
925{
926 unsigned long flags;
927 int ret;
928
Mike Turquetteeab89f62013-03-28 13:59:01 -0700929 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700930 ret = __clk_enable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700931 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700932
933 return ret;
934}
935EXPORT_SYMBOL_GPL(clk_enable);
936
937/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700938 * __clk_round_rate - round the given rate for a clk
939 * @clk: round the rate of this clock
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200940 * @rate: the rate which is to be rounded
Mike Turquetteb24764902012-03-15 23:11:19 -0700941 *
942 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
943 */
944unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
945{
Shawn Guo81536e02012-04-12 20:50:17 +0800946 unsigned long parent_rate = 0;
James Hogan71472c02013-07-29 12:25:00 +0100947 struct clk *parent;
Mike Turquetteb24764902012-03-15 23:11:19 -0700948
949 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700950 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700951
James Hogan71472c02013-07-29 12:25:00 +0100952 parent = clk->parent;
953 if (parent)
954 parent_rate = parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700955
James Hogan71472c02013-07-29 12:25:00 +0100956 if (clk->ops->determine_rate)
957 return clk->ops->determine_rate(clk->hw, rate, &parent_rate,
958 &parent);
959 else if (clk->ops->round_rate)
960 return clk->ops->round_rate(clk->hw, rate, &parent_rate);
961 else if (clk->flags & CLK_SET_RATE_PARENT)
962 return __clk_round_rate(clk->parent, rate);
963 else
964 return clk->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700965}
Arnd Bergmann1cdf8ee2014-06-03 11:40:14 +0200966EXPORT_SYMBOL_GPL(__clk_round_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700967
968/**
969 * clk_round_rate - round the given rate for a clk
970 * @clk: the clk for which we are rounding a rate
971 * @rate: the rate which is to be rounded
972 *
973 * Takes in a rate as input and rounds it to a rate that the clk can actually
974 * use which is then returned. If clk doesn't support round_rate operation
975 * then the parent rate is returned.
976 */
977long clk_round_rate(struct clk *clk, unsigned long rate)
978{
979 unsigned long ret;
980
Mike Turquetteeab89f62013-03-28 13:59:01 -0700981 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700982 ret = __clk_round_rate(clk, rate);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700983 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700984
985 return ret;
986}
987EXPORT_SYMBOL_GPL(clk_round_rate);
988
989/**
990 * __clk_notify - call clk notifier chain
991 * @clk: struct clk * that is changing rate
992 * @msg: clk notifier type (see include/linux/clk.h)
993 * @old_rate: old clk rate
994 * @new_rate: new clk rate
995 *
996 * Triggers a notifier call chain on the clk rate-change notification
997 * for 'clk'. Passes a pointer to the struct clk and the previous
998 * and current rates to the notifier callback. Intended to be called by
999 * internal clock code only. Returns NOTIFY_DONE from the last driver
1000 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1001 * a driver returns that.
1002 */
1003static int __clk_notify(struct clk *clk, unsigned long msg,
1004 unsigned long old_rate, unsigned long new_rate)
1005{
1006 struct clk_notifier *cn;
1007 struct clk_notifier_data cnd;
1008 int ret = NOTIFY_DONE;
1009
1010 cnd.clk = clk;
1011 cnd.old_rate = old_rate;
1012 cnd.new_rate = new_rate;
1013
1014 list_for_each_entry(cn, &clk_notifier_list, node) {
1015 if (cn->clk == clk) {
1016 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1017 &cnd);
1018 break;
1019 }
1020 }
1021
1022 return ret;
1023}
1024
1025/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001026 * __clk_recalc_accuracies
1027 * @clk: first clk in the subtree
1028 *
1029 * Walks the subtree of clks starting with clk and recalculates accuracies as
1030 * it goes. Note that if a clk does not implement the .recalc_accuracy
1031 * callback then it is assumed that the clock will take on the accuracy of it's
1032 * parent.
1033 *
1034 * Caller must hold prepare_lock.
1035 */
1036static void __clk_recalc_accuracies(struct clk *clk)
1037{
1038 unsigned long parent_accuracy = 0;
1039 struct clk *child;
1040
1041 if (clk->parent)
1042 parent_accuracy = clk->parent->accuracy;
1043
1044 if (clk->ops->recalc_accuracy)
1045 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1046 parent_accuracy);
1047 else
1048 clk->accuracy = parent_accuracy;
1049
1050 hlist_for_each_entry(child, &clk->children, child_node)
1051 __clk_recalc_accuracies(child);
1052}
1053
1054/**
1055 * clk_get_accuracy - return the accuracy of clk
1056 * @clk: the clk whose accuracy is being returned
1057 *
1058 * Simply returns the cached accuracy of the clk, unless
1059 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1060 * issued.
1061 * If clk is NULL then returns 0.
1062 */
1063long clk_get_accuracy(struct clk *clk)
1064{
1065 unsigned long accuracy;
1066
1067 clk_prepare_lock();
1068 if (clk && (clk->flags & CLK_GET_ACCURACY_NOCACHE))
1069 __clk_recalc_accuracies(clk);
1070
1071 accuracy = __clk_get_accuracy(clk);
1072 clk_prepare_unlock();
1073
1074 return accuracy;
1075}
1076EXPORT_SYMBOL_GPL(clk_get_accuracy);
1077
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001078static unsigned long clk_recalc(struct clk *clk, unsigned long parent_rate)
1079{
1080 if (clk->ops->recalc_rate)
1081 return clk->ops->recalc_rate(clk->hw, parent_rate);
1082 return parent_rate;
1083}
1084
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001085/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001086 * __clk_recalc_rates
1087 * @clk: first clk in the subtree
1088 * @msg: notification type (see include/linux/clk.h)
1089 *
1090 * Walks the subtree of clks starting with clk and recalculates rates as it
1091 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001092 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001093 *
1094 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1095 * if necessary.
1096 *
1097 * Caller must hold prepare_lock.
1098 */
1099static void __clk_recalc_rates(struct clk *clk, unsigned long msg)
1100{
1101 unsigned long old_rate;
1102 unsigned long parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001103 struct clk *child;
1104
1105 old_rate = clk->rate;
1106
1107 if (clk->parent)
1108 parent_rate = clk->parent->rate;
1109
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001110 clk->rate = clk_recalc(clk, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001111
1112 /*
1113 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1114 * & ABORT_RATE_CHANGE notifiers
1115 */
1116 if (clk->notifier_count && msg)
1117 __clk_notify(clk, msg, old_rate, clk->rate);
1118
Sasha Levinb67bfe02013-02-27 17:06:00 -08001119 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001120 __clk_recalc_rates(child, msg);
1121}
1122
1123/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001124 * clk_get_rate - return the rate of clk
1125 * @clk: the clk whose rate is being returned
1126 *
1127 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1128 * is set, which means a recalc_rate will be issued.
1129 * If clk is NULL then returns 0.
1130 */
1131unsigned long clk_get_rate(struct clk *clk)
1132{
1133 unsigned long rate;
1134
Mike Turquetteeab89f62013-03-28 13:59:01 -07001135 clk_prepare_lock();
Ulf Hanssona093bde2012-08-31 14:21:28 +02001136
1137 if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
1138 __clk_recalc_rates(clk, 0);
1139
1140 rate = __clk_get_rate(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001141 clk_prepare_unlock();
Ulf Hanssona093bde2012-08-31 14:21:28 +02001142
1143 return rate;
1144}
1145EXPORT_SYMBOL_GPL(clk_get_rate);
1146
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001147static int clk_fetch_parent_index(struct clk *clk, struct clk *parent)
James Hogan4935b222013-07-29 12:24:59 +01001148{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001149 int i;
James Hogan4935b222013-07-29 12:24:59 +01001150
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001151 if (!clk->parents) {
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001152 clk->parents = kcalloc(clk->num_parents,
1153 sizeof(struct clk *), GFP_KERNEL);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001154 if (!clk->parents)
1155 return -ENOMEM;
1156 }
James Hogan4935b222013-07-29 12:24:59 +01001157
1158 /*
1159 * find index of new parent clock using cached parent ptrs,
1160 * or if not yet cached, use string name comparison and cache
1161 * them now to avoid future calls to __clk_lookup.
1162 */
1163 for (i = 0; i < clk->num_parents; i++) {
Tomasz Figada0f0b22013-09-29 02:37:16 +02001164 if (clk->parents[i] == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001165 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001166
1167 if (clk->parents[i])
1168 continue;
1169
1170 if (!strcmp(clk->parent_names[i], parent->name)) {
1171 clk->parents[i] = __clk_lookup(parent->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001172 return i;
James Hogan4935b222013-07-29 12:24:59 +01001173 }
1174 }
1175
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001176 return -EINVAL;
James Hogan4935b222013-07-29 12:24:59 +01001177}
1178
1179static void clk_reparent(struct clk *clk, struct clk *new_parent)
1180{
1181 hlist_del(&clk->child_node);
1182
James Hogan903efc52013-08-29 12:10:51 +01001183 if (new_parent) {
1184 /* avoid duplicate POST_RATE_CHANGE notifications */
1185 if (new_parent->new_child == clk)
1186 new_parent->new_child = NULL;
1187
James Hogan4935b222013-07-29 12:24:59 +01001188 hlist_add_head(&clk->child_node, &new_parent->children);
James Hogan903efc52013-08-29 12:10:51 +01001189 } else {
James Hogan4935b222013-07-29 12:24:59 +01001190 hlist_add_head(&clk->child_node, &clk_orphan_list);
James Hogan903efc52013-08-29 12:10:51 +01001191 }
James Hogan4935b222013-07-29 12:24:59 +01001192
1193 clk->parent = new_parent;
1194}
1195
Stephen Boyd3fa22522014-01-15 10:47:22 -08001196static struct clk *__clk_set_parent_before(struct clk *clk, struct clk *parent)
James Hogan4935b222013-07-29 12:24:59 +01001197{
1198 unsigned long flags;
James Hogan4935b222013-07-29 12:24:59 +01001199 struct clk *old_parent = clk->parent;
1200
1201 /*
1202 * Migrate prepare state between parents and prevent race with
1203 * clk_enable().
1204 *
1205 * If the clock is not prepared, then a race with
1206 * clk_enable/disable() is impossible since we already have the
1207 * prepare lock (future calls to clk_enable() need to be preceded by
1208 * a clk_prepare()).
1209 *
1210 * If the clock is prepared, migrate the prepared state to the new
1211 * parent and also protect against a race with clk_enable() by
1212 * forcing the clock and the new parent on. This ensures that all
1213 * future calls to clk_enable() are practically NOPs with respect to
1214 * hardware and software states.
1215 *
1216 * See also: Comment for clk_set_parent() below.
1217 */
1218 if (clk->prepare_count) {
1219 __clk_prepare(parent);
1220 clk_enable(parent);
1221 clk_enable(clk);
1222 }
1223
1224 /* update the clk tree topology */
1225 flags = clk_enable_lock();
1226 clk_reparent(clk, parent);
1227 clk_enable_unlock(flags);
1228
Stephen Boyd3fa22522014-01-15 10:47:22 -08001229 return old_parent;
1230}
1231
1232static void __clk_set_parent_after(struct clk *clk, struct clk *parent,
1233 struct clk *old_parent)
1234{
1235 /*
1236 * Finish the migration of prepare state and undo the changes done
1237 * for preventing a race with clk_enable().
1238 */
1239 if (clk->prepare_count) {
1240 clk_disable(clk);
1241 clk_disable(old_parent);
1242 __clk_unprepare(old_parent);
1243 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001244}
1245
1246static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index)
1247{
1248 unsigned long flags;
1249 int ret = 0;
1250 struct clk *old_parent;
1251
1252 old_parent = __clk_set_parent_before(clk, parent);
1253
James Hogan4935b222013-07-29 12:24:59 +01001254 /* change clock input source */
1255 if (parent && clk->ops->set_parent)
1256 ret = clk->ops->set_parent(clk->hw, p_index);
1257
1258 if (ret) {
1259 flags = clk_enable_lock();
1260 clk_reparent(clk, old_parent);
1261 clk_enable_unlock(flags);
1262
1263 if (clk->prepare_count) {
1264 clk_disable(clk);
1265 clk_disable(parent);
1266 __clk_unprepare(parent);
1267 }
1268 return ret;
1269 }
1270
Stephen Boyd3fa22522014-01-15 10:47:22 -08001271 __clk_set_parent_after(clk, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001272
James Hogan4935b222013-07-29 12:24:59 +01001273 return 0;
1274}
1275
Ulf Hanssona093bde2012-08-31 14:21:28 +02001276/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001277 * __clk_speculate_rates
1278 * @clk: first clk in the subtree
1279 * @parent_rate: the "future" rate of clk's parent
1280 *
1281 * Walks the subtree of clks starting with clk, speculating rates as it
1282 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1283 *
1284 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1285 * pre-rate change notifications and returns early if no clks in the
1286 * subtree have subscribed to the notifications. Note that if a clk does not
1287 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001288 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001289 *
1290 * Caller must hold prepare_lock.
1291 */
1292static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate)
1293{
Mike Turquetteb24764902012-03-15 23:11:19 -07001294 struct clk *child;
1295 unsigned long new_rate;
1296 int ret = NOTIFY_DONE;
1297
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001298 new_rate = clk_recalc(clk, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001299
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001300 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Mike Turquetteb24764902012-03-15 23:11:19 -07001301 if (clk->notifier_count)
1302 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
1303
Mike Turquette86bcfa22014-02-24 16:08:41 -08001304 if (ret & NOTIFY_STOP_MASK) {
1305 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
1306 __func__, clk->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001307 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001308 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001309
Sasha Levinb67bfe02013-02-27 17:06:00 -08001310 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001311 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001312 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001313 break;
1314 }
1315
1316out:
1317 return ret;
1318}
1319
James Hogan71472c02013-07-29 12:25:00 +01001320static void clk_calc_subtree(struct clk *clk, unsigned long new_rate,
1321 struct clk *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001322{
1323 struct clk *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001324
1325 clk->new_rate = new_rate;
James Hogan71472c02013-07-29 12:25:00 +01001326 clk->new_parent = new_parent;
1327 clk->new_parent_index = p_index;
1328 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1329 clk->new_child = NULL;
1330 if (new_parent && new_parent != clk->parent)
1331 new_parent->new_child = clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001332
Sasha Levinb67bfe02013-02-27 17:06:00 -08001333 hlist_for_each_entry(child, &clk->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001334 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001335 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001336 }
1337}
1338
1339/*
1340 * calculate the new rates returning the topmost clock that has to be
1341 * changed.
1342 */
1343static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
1344{
1345 struct clk *top = clk;
James Hogan71472c02013-07-29 12:25:00 +01001346 struct clk *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001347 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001348 unsigned long new_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001349 int p_index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001350
Mike Turquette7452b212012-03-26 14:45:36 -07001351 /* sanity */
1352 if (IS_ERR_OR_NULL(clk))
1353 return NULL;
1354
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001355 /* save parent rate, if it exists */
James Hogan71472c02013-07-29 12:25:00 +01001356 parent = old_parent = clk->parent;
1357 if (parent)
1358 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001359
James Hogan71472c02013-07-29 12:25:00 +01001360 /* find the closest rate and parent clk/rate */
1361 if (clk->ops->determine_rate) {
1362 new_rate = clk->ops->determine_rate(clk->hw, rate,
1363 &best_parent_rate,
1364 &parent);
1365 } else if (clk->ops->round_rate) {
1366 new_rate = clk->ops->round_rate(clk->hw, rate,
1367 &best_parent_rate);
1368 } else if (!parent || !(clk->flags & CLK_SET_RATE_PARENT)) {
1369 /* pass-through clock without adjustable parent */
1370 clk->new_rate = clk->rate;
1371 return NULL;
1372 } else {
1373 /* pass-through clock with adjustable parent */
1374 top = clk_calc_new_rates(parent, rate);
1375 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001376 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001377 }
1378
James Hogan71472c02013-07-29 12:25:00 +01001379 /* some clocks must be gated to change parent */
1380 if (parent != old_parent &&
1381 (clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1382 pr_debug("%s: %s not gated but wants to reparent\n",
1383 __func__, clk->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001384 return NULL;
1385 }
1386
James Hogan71472c02013-07-29 12:25:00 +01001387 /* try finding the new parent index */
1388 if (parent) {
1389 p_index = clk_fetch_parent_index(clk, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001390 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001391 pr_debug("%s: clk %s can not be parent of clk %s\n",
1392 __func__, parent->name, clk->name);
1393 return NULL;
1394 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001395 }
1396
James Hogan71472c02013-07-29 12:25:00 +01001397 if ((clk->flags & CLK_SET_RATE_PARENT) && parent &&
1398 best_parent_rate != parent->rate)
1399 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001400
1401out:
James Hogan71472c02013-07-29 12:25:00 +01001402 clk_calc_subtree(clk, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001403
1404 return top;
1405}
1406
1407/*
1408 * Notify about rate changes in a subtree. Always walk down the whole tree
1409 * so that in case of an error we can walk down the whole tree again and
1410 * abort the change.
1411 */
1412static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event)
1413{
James Hogan71472c02013-07-29 12:25:00 +01001414 struct clk *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001415 int ret = NOTIFY_DONE;
1416
1417 if (clk->rate == clk->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301418 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001419
1420 if (clk->notifier_count) {
1421 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001422 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001423 fail_clk = clk;
1424 }
1425
Sasha Levinb67bfe02013-02-27 17:06:00 -08001426 hlist_for_each_entry(child, &clk->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001427 /* Skip children who will be reparented to another clock */
1428 if (child->new_parent && child->new_parent != clk)
1429 continue;
1430 tmp_clk = clk_propagate_rate_change(child, event);
1431 if (tmp_clk)
1432 fail_clk = tmp_clk;
1433 }
1434
1435 /* handle the new child who might not be in clk->children yet */
1436 if (clk->new_child) {
1437 tmp_clk = clk_propagate_rate_change(clk->new_child, event);
1438 if (tmp_clk)
1439 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001440 }
1441
1442 return fail_clk;
1443}
1444
1445/*
1446 * walk down a subtree and set the new rates notifying the rate
1447 * change on the way
1448 */
1449static void clk_change_rate(struct clk *clk)
1450{
1451 struct clk *child;
1452 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001453 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001454 bool skip_set_rate = false;
1455 struct clk *old_parent;
Mike Turquetteb24764902012-03-15 23:11:19 -07001456
1457 old_rate = clk->rate;
1458
Stephen Boyd3fa22522014-01-15 10:47:22 -08001459 if (clk->new_parent)
1460 best_parent_rate = clk->new_parent->rate;
1461 else if (clk->parent)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001462 best_parent_rate = clk->parent->rate;
1463
Stephen Boyd3fa22522014-01-15 10:47:22 -08001464 if (clk->new_parent && clk->new_parent != clk->parent) {
1465 old_parent = __clk_set_parent_before(clk, clk->new_parent);
1466
1467 if (clk->ops->set_rate_and_parent) {
1468 skip_set_rate = true;
1469 clk->ops->set_rate_and_parent(clk->hw, clk->new_rate,
1470 best_parent_rate,
1471 clk->new_parent_index);
1472 } else if (clk->ops->set_parent) {
1473 clk->ops->set_parent(clk->hw, clk->new_parent_index);
1474 }
1475
1476 __clk_set_parent_after(clk, clk->new_parent, old_parent);
1477 }
1478
1479 if (!skip_set_rate && clk->ops->set_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001480 clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001481
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001482 clk->rate = clk_recalc(clk, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001483
1484 if (clk->notifier_count && old_rate != clk->rate)
1485 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
1486
James Hogan71472c02013-07-29 12:25:00 +01001487 hlist_for_each_entry(child, &clk->children, child_node) {
1488 /* Skip children who will be reparented to another clock */
1489 if (child->new_parent && child->new_parent != clk)
1490 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07001491 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01001492 }
1493
1494 /* handle the new child who might not be in clk->children yet */
1495 if (clk->new_child)
1496 clk_change_rate(clk->new_child);
Mike Turquetteb24764902012-03-15 23:11:19 -07001497}
1498
1499/**
1500 * clk_set_rate - specify a new rate for clk
1501 * @clk: the clk whose rate is being changed
1502 * @rate: the new rate for clk
1503 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001504 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001505 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001506 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1507 * propagate up to clk's parent; whether or not this happens depends on the
1508 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1509 * after calling .round_rate then upstream parent propagation is ignored. If
1510 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001511 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001512 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1513 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001514 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001515 * Rate changes are accomplished via tree traversal that also recalculates the
1516 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001517 *
1518 * Returns 0 on success, -EERROR otherwise.
1519 */
1520int clk_set_rate(struct clk *clk, unsigned long rate)
1521{
1522 struct clk *top, *fail_clk;
1523 int ret = 0;
1524
Mike Turquette89ac8d72013-08-21 23:58:09 -07001525 if (!clk)
1526 return 0;
1527
Mike Turquetteb24764902012-03-15 23:11:19 -07001528 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001529 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001530
1531 /* bail early if nothing to do */
Peter De Schrijver34e452a2013-06-05 18:06:36 +03001532 if (rate == clk_get_rate(clk))
Mike Turquetteb24764902012-03-15 23:11:19 -07001533 goto out;
1534
Saravana Kannan7e0fa1b2012-05-15 13:43:42 -07001535 if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) {
Viresh Kumar0e1c0302012-04-11 16:03:42 +05301536 ret = -EBUSY;
1537 goto out;
1538 }
1539
Mike Turquetteb24764902012-03-15 23:11:19 -07001540 /* calculate new rates and get the topmost changed clock */
1541 top = clk_calc_new_rates(clk, rate);
1542 if (!top) {
1543 ret = -EINVAL;
1544 goto out;
1545 }
1546
1547 /* notify that we are about to change rates */
1548 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1549 if (fail_clk) {
Sascha Hauerf7363862014-01-16 16:12:55 +01001550 pr_debug("%s: failed to set %s rate\n", __func__,
Mike Turquetteb24764902012-03-15 23:11:19 -07001551 fail_clk->name);
1552 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1553 ret = -EBUSY;
1554 goto out;
1555 }
1556
1557 /* change the rates */
1558 clk_change_rate(top);
1559
Mike Turquetteb24764902012-03-15 23:11:19 -07001560out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001561 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001562
1563 return ret;
1564}
1565EXPORT_SYMBOL_GPL(clk_set_rate);
1566
1567/**
1568 * clk_get_parent - return the parent of a clk
1569 * @clk: the clk whose parent gets returned
1570 *
1571 * Simply returns clk->parent. Returns NULL if clk is NULL.
1572 */
1573struct clk *clk_get_parent(struct clk *clk)
1574{
1575 struct clk *parent;
1576
Mike Turquetteeab89f62013-03-28 13:59:01 -07001577 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001578 parent = __clk_get_parent(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001579 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001580
1581 return parent;
1582}
1583EXPORT_SYMBOL_GPL(clk_get_parent);
1584
1585/*
1586 * .get_parent is mandatory for clocks with multiple possible parents. It is
1587 * optional for single-parent clocks. Always call .get_parent if it is
1588 * available and WARN if it is missing for multi-parent clocks.
1589 *
1590 * For single-parent clocks without .get_parent, first check to see if the
1591 * .parents array exists, and if so use it to avoid an expensive tree
1592 * traversal. If .parents does not exist then walk the tree with __clk_lookup.
1593 */
1594static struct clk *__clk_init_parent(struct clk *clk)
1595{
1596 struct clk *ret = NULL;
1597 u8 index;
1598
1599 /* handle the trivial cases */
1600
1601 if (!clk->num_parents)
1602 goto out;
1603
1604 if (clk->num_parents == 1) {
1605 if (IS_ERR_OR_NULL(clk->parent))
1606 ret = clk->parent = __clk_lookup(clk->parent_names[0]);
1607 ret = clk->parent;
1608 goto out;
1609 }
1610
1611 if (!clk->ops->get_parent) {
1612 WARN(!clk->ops->get_parent,
1613 "%s: multi-parent clocks must implement .get_parent\n",
1614 __func__);
1615 goto out;
1616 };
1617
1618 /*
1619 * Do our best to cache parent clocks in clk->parents. This prevents
1620 * unnecessary and expensive calls to __clk_lookup. We don't set
1621 * clk->parent here; that is done by the calling function
1622 */
1623
1624 index = clk->ops->get_parent(clk->hw);
1625
1626 if (!clk->parents)
1627 clk->parents =
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001628 kcalloc(clk->num_parents, sizeof(struct clk *),
Mike Turquetteb24764902012-03-15 23:11:19 -07001629 GFP_KERNEL);
1630
James Hogan7ef3dcc2013-07-29 12:24:58 +01001631 ret = clk_get_parent_by_index(clk, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001632
1633out:
1634 return ret;
1635}
1636
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001637void __clk_reparent(struct clk *clk, struct clk *new_parent)
1638{
1639 clk_reparent(clk, new_parent);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001640 __clk_recalc_accuracies(clk);
Mike Turquetteb24764902012-03-15 23:11:19 -07001641 __clk_recalc_rates(clk, POST_RATE_CHANGE);
1642}
1643
Mike Turquetteb24764902012-03-15 23:11:19 -07001644/**
1645 * clk_set_parent - switch the parent of a mux clk
1646 * @clk: the mux clk whose input we are switching
1647 * @parent: the new input to clk
1648 *
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07001649 * Re-parent clk to use parent as its new input source. If clk is in
1650 * prepared state, the clk will get enabled for the duration of this call. If
1651 * that's not acceptable for a specific clk (Eg: the consumer can't handle
1652 * that, the reparenting is glitchy in hardware, etc), use the
1653 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
1654 *
1655 * After successfully changing clk's parent clk_set_parent will update the
1656 * clk topology, sysfs topology and propagate rate recalculation via
1657 * __clk_recalc_rates.
1658 *
1659 * Returns 0 on success, -EERROR otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07001660 */
1661int clk_set_parent(struct clk *clk, struct clk *parent)
1662{
1663 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001664 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001665 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001666
Mike Turquette89ac8d72013-08-21 23:58:09 -07001667 if (!clk)
1668 return 0;
1669
Ulf Hansson031dcc92013-04-02 23:09:38 +02001670 /* verify ops for for multi-parent clks */
1671 if ((clk->num_parents > 1) && (!clk->ops->set_parent))
Mike Turquetteb24764902012-03-15 23:11:19 -07001672 return -ENOSYS;
1673
1674 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001675 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001676
1677 if (clk->parent == parent)
1678 goto out;
1679
Ulf Hansson031dcc92013-04-02 23:09:38 +02001680 /* check that we are allowed to re-parent if the clock is in use */
1681 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1682 ret = -EBUSY;
1683 goto out;
1684 }
1685
1686 /* try finding the new parent index */
1687 if (parent) {
1688 p_index = clk_fetch_parent_index(clk, parent);
1689 p_rate = parent->rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001690 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02001691 pr_debug("%s: clk %s can not be parent of clk %s\n",
1692 __func__, parent->name, clk->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001693 ret = p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001694 goto out;
1695 }
1696 }
1697
Mike Turquetteb24764902012-03-15 23:11:19 -07001698 /* propagate PRE_RATE_CHANGE notifications */
Soren Brinkmannf3aab5d2013-04-16 10:06:50 -07001699 ret = __clk_speculate_rates(clk, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001700
1701 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001702 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001703 goto out;
1704
Ulf Hansson031dcc92013-04-02 23:09:38 +02001705 /* do the re-parent */
1706 ret = __clk_set_parent(clk, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001707
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001708 /* propagate rate an accuracy recalculation accordingly */
1709 if (ret) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001710 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001711 } else {
Ulf Hanssona68de8e2013-04-02 23:09:39 +02001712 __clk_recalc_rates(clk, POST_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001713 __clk_recalc_accuracies(clk);
1714 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001715
1716out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001717 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001718
1719 return ret;
1720}
1721EXPORT_SYMBOL_GPL(clk_set_parent);
1722
1723/**
1724 * __clk_init - initialize the data structures in a struct clk
1725 * @dev: device initializing this clk, placeholder for now
1726 * @clk: clk being initialized
1727 *
1728 * Initializes the lists in struct clk, queries the hardware for the
1729 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07001730 */
Mike Turquetted1302a32012-03-29 14:30:40 -07001731int __clk_init(struct device *dev, struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001732{
Mike Turquetted1302a32012-03-29 14:30:40 -07001733 int i, ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001734 struct clk *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001735 struct hlist_node *tmp2;
Mike Turquetteb24764902012-03-15 23:11:19 -07001736
1737 if (!clk)
Mike Turquetted1302a32012-03-29 14:30:40 -07001738 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001739
Mike Turquetteeab89f62013-03-28 13:59:01 -07001740 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001741
1742 /* check to see if a clock with this name is already registered */
Mike Turquetted1302a32012-03-29 14:30:40 -07001743 if (__clk_lookup(clk->name)) {
1744 pr_debug("%s: clk %s already initialized\n",
1745 __func__, clk->name);
1746 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07001747 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07001748 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001749
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001750 /* check that clk_ops are sane. See Documentation/clk.txt */
1751 if (clk->ops->set_rate &&
James Hogan71472c02013-07-29 12:25:00 +01001752 !((clk->ops->round_rate || clk->ops->determine_rate) &&
1753 clk->ops->recalc_rate)) {
1754 pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001755 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001756 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001757 goto out;
1758 }
1759
1760 if (clk->ops->set_parent && !clk->ops->get_parent) {
1761 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
1762 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07001763 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07001764 goto out;
1765 }
1766
Stephen Boyd3fa22522014-01-15 10:47:22 -08001767 if (clk->ops->set_rate_and_parent &&
1768 !(clk->ops->set_parent && clk->ops->set_rate)) {
1769 pr_warn("%s: %s must implement .set_parent & .set_rate\n",
1770 __func__, clk->name);
1771 ret = -EINVAL;
1772 goto out;
1773 }
1774
Mike Turquetteb24764902012-03-15 23:11:19 -07001775 /* throw a WARN if any entries in parent_names are NULL */
1776 for (i = 0; i < clk->num_parents; i++)
1777 WARN(!clk->parent_names[i],
1778 "%s: invalid NULL in %s's .parent_names\n",
1779 __func__, clk->name);
1780
1781 /*
1782 * Allocate an array of struct clk *'s to avoid unnecessary string
1783 * look-ups of clk's possible parents. This can fail for clocks passed
1784 * in to clk_init during early boot; thus any access to clk->parents[]
1785 * must always check for a NULL pointer and try to populate it if
1786 * necessary.
1787 *
1788 * If clk->parents is not NULL we skip this entire block. This allows
1789 * for clock drivers to statically initialize clk->parents.
1790 */
Rajendra Nayak9ca1c5a2012-06-06 14:41:30 +05301791 if (clk->num_parents > 1 && !clk->parents) {
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001792 clk->parents = kcalloc(clk->num_parents, sizeof(struct clk *),
1793 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001794 /*
1795 * __clk_lookup returns NULL for parents that have not been
1796 * clk_init'd; thus any access to clk->parents[] must check
1797 * for a NULL pointer. We can always perform lazy lookups for
1798 * missing parents later on.
1799 */
1800 if (clk->parents)
1801 for (i = 0; i < clk->num_parents; i++)
1802 clk->parents[i] =
1803 __clk_lookup(clk->parent_names[i]);
1804 }
1805
1806 clk->parent = __clk_init_parent(clk);
1807
1808 /*
1809 * Populate clk->parent if parent has already been __clk_init'd. If
1810 * parent has not yet been __clk_init'd then place clk in the orphan
1811 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
1812 * clk list.
1813 *
1814 * Every time a new clk is clk_init'd then we walk the list of orphan
1815 * clocks and re-parent any that are children of the clock currently
1816 * being clk_init'd.
1817 */
1818 if (clk->parent)
1819 hlist_add_head(&clk->child_node,
1820 &clk->parent->children);
1821 else if (clk->flags & CLK_IS_ROOT)
1822 hlist_add_head(&clk->child_node, &clk_root_list);
1823 else
1824 hlist_add_head(&clk->child_node, &clk_orphan_list);
1825
1826 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001827 * Set clk's accuracy. The preferred method is to use
1828 * .recalc_accuracy. For simple clocks and lazy developers the default
1829 * fallback is to use the parent's accuracy. If a clock doesn't have a
1830 * parent (or is orphaned) then accuracy is set to zero (perfect
1831 * clock).
1832 */
1833 if (clk->ops->recalc_accuracy)
1834 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1835 __clk_get_accuracy(clk->parent));
1836 else if (clk->parent)
1837 clk->accuracy = clk->parent->accuracy;
1838 else
1839 clk->accuracy = 0;
1840
1841 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07001842 * Set clk's rate. The preferred method is to use .recalc_rate. For
1843 * simple clocks and lazy developers the default fallback is to use the
1844 * parent's rate. If a clock doesn't have a parent (or is orphaned)
1845 * then rate is set to zero.
1846 */
1847 if (clk->ops->recalc_rate)
1848 clk->rate = clk->ops->recalc_rate(clk->hw,
1849 __clk_get_rate(clk->parent));
1850 else if (clk->parent)
1851 clk->rate = clk->parent->rate;
1852 else
1853 clk->rate = 0;
1854
Stephen Boyd3a5aec22013-10-16 00:40:03 -07001855 clk_debug_register(clk);
Mike Turquetteb24764902012-03-15 23:11:19 -07001856 /*
1857 * walk the list of orphan clocks and reparent any that are children of
1858 * this clock
1859 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08001860 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Alex Elder12d298862013-09-05 08:33:24 -05001861 if (orphan->num_parents && orphan->ops->get_parent) {
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001862 i = orphan->ops->get_parent(orphan->hw);
1863 if (!strcmp(clk->name, orphan->parent_names[i]))
1864 __clk_reparent(orphan, clk);
1865 continue;
1866 }
1867
Mike Turquetteb24764902012-03-15 23:11:19 -07001868 for (i = 0; i < orphan->num_parents; i++)
1869 if (!strcmp(clk->name, orphan->parent_names[i])) {
1870 __clk_reparent(orphan, clk);
1871 break;
1872 }
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01001873 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001874
1875 /*
1876 * optional platform-specific magic
1877 *
1878 * The .init callback is not used by any of the basic clock types, but
1879 * exists for weird hardware that must perform initialization magic.
1880 * Please consider other ways of solving initialization problems before
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001881 * using this callback, as its use is discouraged.
Mike Turquetteb24764902012-03-15 23:11:19 -07001882 */
1883 if (clk->ops->init)
1884 clk->ops->init(clk->hw);
1885
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02001886 kref_init(&clk->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07001887out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001888 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001889
Mike Turquetted1302a32012-03-29 14:30:40 -07001890 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001891}
1892
1893/**
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001894 * __clk_register - register a clock and return a cookie.
1895 *
1896 * Same as clk_register, except that the .clk field inside hw shall point to a
1897 * preallocated (generally statically allocated) struct clk. None of the fields
1898 * of the struct clk need to be initialized.
1899 *
1900 * The data pointed to by .init and .clk field shall NOT be marked as init
1901 * data.
1902 *
1903 * __clk_register is only exposed via clk-private.h and is intended for use with
1904 * very large numbers of clocks that need to be statically initialized. It is
1905 * a layering violation to include clk-private.h from any code which implements
1906 * a clock's .ops; as such any statically initialized clock data MUST be in a
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001907 * separate C file from the logic that implements its operations. Returns 0
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001908 * on success, otherwise an error code.
1909 */
1910struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
1911{
1912 int ret;
1913 struct clk *clk;
1914
1915 clk = hw->clk;
1916 clk->name = hw->init->name;
1917 clk->ops = hw->init->ops;
1918 clk->hw = hw;
1919 clk->flags = hw->init->flags;
1920 clk->parent_names = hw->init->parent_names;
1921 clk->num_parents = hw->init->num_parents;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02001922 if (dev && dev->driver)
1923 clk->owner = dev->driver->owner;
1924 else
1925 clk->owner = NULL;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001926
1927 ret = __clk_init(dev, clk);
1928 if (ret)
1929 return ERR_PTR(ret);
1930
1931 return clk;
1932}
1933EXPORT_SYMBOL_GPL(__clk_register);
1934
Stephen Boyd293ba3b2014-04-18 16:29:42 -07001935/**
1936 * clk_register - allocate a new clock, register it and return an opaque cookie
1937 * @dev: device that is registering this clock
1938 * @hw: link to hardware-specific clock data
1939 *
1940 * clk_register is the primary interface for populating the clock tree with new
1941 * clock nodes. It returns a pointer to the newly allocated struct clk which
1942 * cannot be dereferenced by driver code but may be used in conjuction with the
1943 * rest of the clock API. In the event of an error clk_register will return an
1944 * error code; drivers must test for an error code after calling clk_register.
1945 */
1946struct clk *clk_register(struct device *dev, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07001947{
Mike Turquetted1302a32012-03-29 14:30:40 -07001948 int i, ret;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07001949 struct clk *clk;
1950
1951 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
1952 if (!clk) {
1953 pr_err("%s: could not allocate clk\n", __func__);
1954 ret = -ENOMEM;
1955 goto fail_out;
1956 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001957
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001958 clk->name = kstrdup(hw->init->name, GFP_KERNEL);
1959 if (!clk->name) {
1960 pr_err("%s: could not allocate clk->name\n", __func__);
1961 ret = -ENOMEM;
1962 goto fail_name;
1963 }
1964 clk->ops = hw->init->ops;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02001965 if (dev && dev->driver)
1966 clk->owner = dev->driver->owner;
Mike Turquetteb24764902012-03-15 23:11:19 -07001967 clk->hw = hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001968 clk->flags = hw->init->flags;
1969 clk->num_parents = hw->init->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -07001970 hw->clk = clk;
1971
Mike Turquetted1302a32012-03-29 14:30:40 -07001972 /* allocate local copy in case parent_names is __initdata */
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001973 clk->parent_names = kcalloc(clk->num_parents, sizeof(char *),
1974 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07001975
Mike Turquetted1302a32012-03-29 14:30:40 -07001976 if (!clk->parent_names) {
1977 pr_err("%s: could not allocate clk->parent_names\n", __func__);
1978 ret = -ENOMEM;
1979 goto fail_parent_names;
1980 }
1981
1982
1983 /* copy each string name in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07001984 for (i = 0; i < clk->num_parents; i++) {
1985 clk->parent_names[i] = kstrdup(hw->init->parent_names[i],
1986 GFP_KERNEL);
Mike Turquetted1302a32012-03-29 14:30:40 -07001987 if (!clk->parent_names[i]) {
1988 pr_err("%s: could not copy parent_names\n", __func__);
1989 ret = -ENOMEM;
1990 goto fail_parent_names_copy;
1991 }
1992 }
1993
1994 ret = __clk_init(dev, clk);
1995 if (!ret)
Stephen Boyd293ba3b2014-04-18 16:29:42 -07001996 return clk;
Mike Turquetted1302a32012-03-29 14:30:40 -07001997
1998fail_parent_names_copy:
1999 while (--i >= 0)
2000 kfree(clk->parent_names[i]);
2001 kfree(clk->parent_names);
2002fail_parent_names:
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002003 kfree(clk->name);
2004fail_name:
Mike Turquetted1302a32012-03-29 14:30:40 -07002005 kfree(clk);
2006fail_out:
2007 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07002008}
2009EXPORT_SYMBOL_GPL(clk_register);
2010
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002011/*
2012 * Free memory allocated for a clock.
2013 * Caller must hold prepare_lock.
2014 */
2015static void __clk_release(struct kref *ref)
2016{
2017 struct clk *clk = container_of(ref, struct clk, ref);
2018 int i = clk->num_parents;
2019
2020 kfree(clk->parents);
2021 while (--i >= 0)
2022 kfree(clk->parent_names[i]);
2023
2024 kfree(clk->parent_names);
2025 kfree(clk->name);
2026 kfree(clk);
2027}
2028
2029/*
2030 * Empty clk_ops for unregistered clocks. These are used temporarily
2031 * after clk_unregister() was called on a clock and until last clock
2032 * consumer calls clk_put() and the struct clk object is freed.
2033 */
2034static int clk_nodrv_prepare_enable(struct clk_hw *hw)
2035{
2036 return -ENXIO;
2037}
2038
2039static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
2040{
2041 WARN_ON_ONCE(1);
2042}
2043
2044static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
2045 unsigned long parent_rate)
2046{
2047 return -ENXIO;
2048}
2049
2050static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
2051{
2052 return -ENXIO;
2053}
2054
2055static const struct clk_ops clk_nodrv_ops = {
2056 .enable = clk_nodrv_prepare_enable,
2057 .disable = clk_nodrv_disable_unprepare,
2058 .prepare = clk_nodrv_prepare_enable,
2059 .unprepare = clk_nodrv_disable_unprepare,
2060 .set_rate = clk_nodrv_set_rate,
2061 .set_parent = clk_nodrv_set_parent,
2062};
2063
Mark Brown1df5c932012-04-18 09:07:12 +01002064/**
2065 * clk_unregister - unregister a currently registered clock
2066 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01002067 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002068void clk_unregister(struct clk *clk)
2069{
2070 unsigned long flags;
2071
Stephen Boyd6314b672014-09-04 23:37:49 -07002072 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
2073 return;
2074
2075 clk_debug_unregister(clk);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002076
2077 clk_prepare_lock();
2078
2079 if (clk->ops == &clk_nodrv_ops) {
2080 pr_err("%s: unregistered clock: %s\n", __func__, clk->name);
Stephen Boyd6314b672014-09-04 23:37:49 -07002081 return;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002082 }
2083 /*
2084 * Assign empty clock ops for consumers that might still hold
2085 * a reference to this clock.
2086 */
2087 flags = clk_enable_lock();
2088 clk->ops = &clk_nodrv_ops;
2089 clk_enable_unlock(flags);
2090
2091 if (!hlist_empty(&clk->children)) {
2092 struct clk *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07002093 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002094
2095 /* Reparent all children to the orphan list. */
Stephen Boyd874f2242014-04-18 16:29:43 -07002096 hlist_for_each_entry_safe(child, t, &clk->children, child_node)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002097 clk_set_parent(child, NULL);
2098 }
2099
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002100 hlist_del_init(&clk->child_node);
2101
2102 if (clk->prepare_count)
2103 pr_warn("%s: unregistering prepared clock: %s\n",
2104 __func__, clk->name);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002105 kref_put(&clk->ref, __clk_release);
Stephen Boyd6314b672014-09-04 23:37:49 -07002106
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002107 clk_prepare_unlock();
2108}
Mark Brown1df5c932012-04-18 09:07:12 +01002109EXPORT_SYMBOL_GPL(clk_unregister);
2110
Stephen Boyd46c87732012-09-24 13:38:04 -07002111static void devm_clk_release(struct device *dev, void *res)
2112{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002113 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07002114}
2115
2116/**
2117 * devm_clk_register - resource managed clk_register()
2118 * @dev: device that is registering this clock
2119 * @hw: link to hardware-specific clock data
2120 *
2121 * Managed clk_register(). Clocks returned from this function are
2122 * automatically clk_unregister()ed on driver detach. See clk_register() for
2123 * more information.
2124 */
2125struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
2126{
2127 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002128 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07002129
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002130 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
2131 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07002132 return ERR_PTR(-ENOMEM);
2133
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002134 clk = clk_register(dev, hw);
2135 if (!IS_ERR(clk)) {
2136 *clkp = clk;
2137 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002138 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002139 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002140 }
2141
2142 return clk;
2143}
2144EXPORT_SYMBOL_GPL(devm_clk_register);
2145
2146static int devm_clk_match(struct device *dev, void *res, void *data)
2147{
2148 struct clk *c = res;
2149 if (WARN_ON(!c))
2150 return 0;
2151 return c == data;
2152}
2153
2154/**
2155 * devm_clk_unregister - resource managed clk_unregister()
2156 * @clk: clock to unregister
2157 *
2158 * Deallocate a clock allocated with devm_clk_register(). Normally
2159 * this function will not need to be called and the resource management
2160 * code will ensure that the resource is freed.
2161 */
2162void devm_clk_unregister(struct device *dev, struct clk *clk)
2163{
2164 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
2165}
2166EXPORT_SYMBOL_GPL(devm_clk_unregister);
2167
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002168/*
2169 * clkdev helpers
2170 */
2171int __clk_get(struct clk *clk)
2172{
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002173 if (clk) {
2174 if (!try_module_get(clk->owner))
2175 return 0;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002176
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002177 kref_get(&clk->ref);
2178 }
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002179 return 1;
2180}
2181
2182void __clk_put(struct clk *clk)
2183{
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002184 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002185 return;
2186
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002187 clk_prepare_lock();
2188 kref_put(&clk->ref, __clk_release);
2189 clk_prepare_unlock();
2190
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002191 module_put(clk->owner);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002192}
2193
Mike Turquetteb24764902012-03-15 23:11:19 -07002194/*** clk rate change notifiers ***/
2195
2196/**
2197 * clk_notifier_register - add a clk rate change notifier
2198 * @clk: struct clk * to watch
2199 * @nb: struct notifier_block * with callback info
2200 *
2201 * Request notification when clk's rate changes. This uses an SRCU
2202 * notifier because we want it to block and notifier unregistrations are
2203 * uncommon. The callbacks associated with the notifier must not
2204 * re-enter into the clk framework by calling any top-level clk APIs;
2205 * this will cause a nested prepare_lock mutex.
2206 *
Soren Brinkmann5324fda2014-01-22 11:48:37 -08002207 * In all notification cases cases (pre, post and abort rate change) the
2208 * original clock rate is passed to the callback via struct
2209 * clk_notifier_data.old_rate and the new frequency is passed via struct
Mike Turquetteb24764902012-03-15 23:11:19 -07002210 * clk_notifier_data.new_rate.
2211 *
Mike Turquetteb24764902012-03-15 23:11:19 -07002212 * clk_notifier_register() must be called from non-atomic context.
2213 * Returns -EINVAL if called with null arguments, -ENOMEM upon
2214 * allocation failure; otherwise, passes along the return value of
2215 * srcu_notifier_chain_register().
2216 */
2217int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
2218{
2219 struct clk_notifier *cn;
2220 int ret = -ENOMEM;
2221
2222 if (!clk || !nb)
2223 return -EINVAL;
2224
Mike Turquetteeab89f62013-03-28 13:59:01 -07002225 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002226
2227 /* search the list of notifiers for this clk */
2228 list_for_each_entry(cn, &clk_notifier_list, node)
2229 if (cn->clk == clk)
2230 break;
2231
2232 /* if clk wasn't in the notifier list, allocate new clk_notifier */
2233 if (cn->clk != clk) {
2234 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
2235 if (!cn)
2236 goto out;
2237
2238 cn->clk = clk;
2239 srcu_init_notifier_head(&cn->notifier_head);
2240
2241 list_add(&cn->node, &clk_notifier_list);
2242 }
2243
2244 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
2245
2246 clk->notifier_count++;
2247
2248out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002249 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002250
2251 return ret;
2252}
2253EXPORT_SYMBOL_GPL(clk_notifier_register);
2254
2255/**
2256 * clk_notifier_unregister - remove a clk rate change notifier
2257 * @clk: struct clk *
2258 * @nb: struct notifier_block * with callback info
2259 *
2260 * Request no further notification for changes to 'clk' and frees memory
2261 * allocated in clk_notifier_register.
2262 *
2263 * Returns -EINVAL if called with null arguments; otherwise, passes
2264 * along the return value of srcu_notifier_chain_unregister().
2265 */
2266int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
2267{
2268 struct clk_notifier *cn = NULL;
2269 int ret = -EINVAL;
2270
2271 if (!clk || !nb)
2272 return -EINVAL;
2273
Mike Turquetteeab89f62013-03-28 13:59:01 -07002274 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002275
2276 list_for_each_entry(cn, &clk_notifier_list, node)
2277 if (cn->clk == clk)
2278 break;
2279
2280 if (cn->clk == clk) {
2281 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
2282
2283 clk->notifier_count--;
2284
2285 /* XXX the notifier code should handle this better */
2286 if (!cn->notifier_head.head) {
2287 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08002288 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07002289 kfree(cn);
2290 }
2291
2292 } else {
2293 ret = -ENOENT;
2294 }
2295
Mike Turquetteeab89f62013-03-28 13:59:01 -07002296 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002297
2298 return ret;
2299}
2300EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05002301
2302#ifdef CONFIG_OF
2303/**
2304 * struct of_clk_provider - Clock provider registration structure
2305 * @link: Entry in global list of clock providers
2306 * @node: Pointer to device tree node of clock provider
2307 * @get: Get clock callback. Returns NULL or a struct clk for the
2308 * given clock specifier
2309 * @data: context pointer to be passed into @get callback
2310 */
2311struct of_clk_provider {
2312 struct list_head link;
2313
2314 struct device_node *node;
2315 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
2316 void *data;
2317};
2318
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302319static const struct of_device_id __clk_of_table_sentinel
2320 __used __section(__clk_of_table_end);
2321
Grant Likely766e6a42012-04-09 14:50:06 -05002322static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002323static DEFINE_MUTEX(of_clk_mutex);
2324
2325/* of_clk_provider list locking helpers */
2326void of_clk_lock(void)
2327{
2328 mutex_lock(&of_clk_mutex);
2329}
2330
2331void of_clk_unlock(void)
2332{
2333 mutex_unlock(&of_clk_mutex);
2334}
Grant Likely766e6a42012-04-09 14:50:06 -05002335
2336struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
2337 void *data)
2338{
2339 return data;
2340}
2341EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
2342
Shawn Guo494bfec2012-08-22 21:36:27 +08002343struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
2344{
2345 struct clk_onecell_data *clk_data = data;
2346 unsigned int idx = clkspec->args[0];
2347
2348 if (idx >= clk_data->clk_num) {
2349 pr_err("%s: invalid clock index %d\n", __func__, idx);
2350 return ERR_PTR(-EINVAL);
2351 }
2352
2353 return clk_data->clks[idx];
2354}
2355EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
2356
Grant Likely766e6a42012-04-09 14:50:06 -05002357/**
2358 * of_clk_add_provider() - Register a clock provider for a node
2359 * @np: Device node pointer associated with clock provider
2360 * @clk_src_get: callback for decoding clock
2361 * @data: context pointer for @clk_src_get callback.
2362 */
2363int of_clk_add_provider(struct device_node *np,
2364 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
2365 void *data),
2366 void *data)
2367{
2368 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002369 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05002370
2371 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
2372 if (!cp)
2373 return -ENOMEM;
2374
2375 cp->node = of_node_get(np);
2376 cp->data = data;
2377 cp->get = clk_src_get;
2378
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002379 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002380 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002381 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002382 pr_debug("Added clock from %s\n", np->full_name);
2383
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002384 ret = of_clk_set_defaults(np, true);
2385 if (ret < 0)
2386 of_clk_del_provider(np);
2387
2388 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05002389}
2390EXPORT_SYMBOL_GPL(of_clk_add_provider);
2391
2392/**
2393 * of_clk_del_provider() - Remove a previously registered clock provider
2394 * @np: Device node pointer associated with clock provider
2395 */
2396void of_clk_del_provider(struct device_node *np)
2397{
2398 struct of_clk_provider *cp;
2399
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002400 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002401 list_for_each_entry(cp, &of_clk_providers, link) {
2402 if (cp->node == np) {
2403 list_del(&cp->link);
2404 of_node_put(cp->node);
2405 kfree(cp);
2406 break;
2407 }
2408 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002409 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002410}
2411EXPORT_SYMBOL_GPL(of_clk_del_provider);
2412
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002413struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec)
Grant Likely766e6a42012-04-09 14:50:06 -05002414{
2415 struct of_clk_provider *provider;
Jean-Francois Moinea34cd462013-11-25 19:47:04 +01002416 struct clk *clk = ERR_PTR(-EPROBE_DEFER);
Grant Likely766e6a42012-04-09 14:50:06 -05002417
2418 /* Check if we have such a provider in our array */
Grant Likely766e6a42012-04-09 14:50:06 -05002419 list_for_each_entry(provider, &of_clk_providers, link) {
2420 if (provider->node == clkspec->np)
2421 clk = provider->get(clkspec, provider->data);
2422 if (!IS_ERR(clk))
2423 break;
2424 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002425
2426 return clk;
2427}
2428
2429struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
2430{
2431 struct clk *clk;
2432
2433 mutex_lock(&of_clk_mutex);
2434 clk = __of_clk_get_from_provider(clkspec);
2435 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002436
2437 return clk;
2438}
2439
Mike Turquettef6102742013-10-07 23:12:13 -07002440int of_clk_get_parent_count(struct device_node *np)
2441{
2442 return of_count_phandle_with_args(np, "clocks", "#clock-cells");
2443}
2444EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
2445
Grant Likely766e6a42012-04-09 14:50:06 -05002446const char *of_clk_get_parent_name(struct device_node *np, int index)
2447{
2448 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002449 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05002450 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002451 const __be32 *vp;
2452 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05002453 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002454 int count;
Grant Likely766e6a42012-04-09 14:50:06 -05002455
2456 if (index < 0)
2457 return NULL;
2458
2459 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
2460 &clkspec);
2461 if (rc)
2462 return NULL;
2463
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002464 index = clkspec.args_count ? clkspec.args[0] : 0;
2465 count = 0;
2466
2467 /* if there is an indices property, use it to transfer the index
2468 * specified into an array offset for the clock-output-names property.
2469 */
2470 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
2471 if (index == pv) {
2472 index = count;
2473 break;
2474 }
2475 count++;
2476 }
2477
Grant Likely766e6a42012-04-09 14:50:06 -05002478 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00002479 index,
Grant Likely766e6a42012-04-09 14:50:06 -05002480 &clk_name) < 0)
2481 clk_name = clkspec.np->name;
2482
2483 of_node_put(clkspec.np);
2484 return clk_name;
2485}
2486EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
2487
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002488struct clock_provider {
2489 of_clk_init_cb_t clk_init_cb;
2490 struct device_node *np;
2491 struct list_head node;
2492};
2493
2494static LIST_HEAD(clk_provider_list);
2495
2496/*
2497 * This function looks for a parent clock. If there is one, then it
2498 * checks that the provider for this parent clock was initialized, in
2499 * this case the parent clock will be ready.
2500 */
2501static int parent_ready(struct device_node *np)
2502{
2503 int i = 0;
2504
2505 while (true) {
2506 struct clk *clk = of_clk_get(np, i);
2507
2508 /* this parent is ready we can check the next one */
2509 if (!IS_ERR(clk)) {
2510 clk_put(clk);
2511 i++;
2512 continue;
2513 }
2514
2515 /* at least one parent is not ready, we exit now */
2516 if (PTR_ERR(clk) == -EPROBE_DEFER)
2517 return 0;
2518
2519 /*
2520 * Here we make assumption that the device tree is
2521 * written correctly. So an error means that there is
2522 * no more parent. As we didn't exit yet, then the
2523 * previous parent are ready. If there is no clock
2524 * parent, no need to wait for them, then we can
2525 * consider their absence as being ready
2526 */
2527 return 1;
2528 }
2529}
2530
Grant Likely766e6a42012-04-09 14:50:06 -05002531/**
2532 * of_clk_init() - Scan and init clock providers from the DT
2533 * @matches: array of compatible values and init functions for providers.
2534 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002535 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01002536 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002537 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05002538 */
2539void __init of_clk_init(const struct of_device_id *matches)
2540{
Alex Elder7f7ed582013-08-22 11:31:31 -05002541 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05002542 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002543 struct clock_provider *clk_provider, *next;
2544 bool is_init_done;
2545 bool force = false;
Grant Likely766e6a42012-04-09 14:50:06 -05002546
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302547 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03002548 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302549
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002550 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05002551 for_each_matching_node_and_match(np, matches, &match) {
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002552 struct clock_provider *parent =
2553 kzalloc(sizeof(struct clock_provider), GFP_KERNEL);
2554
2555 parent->clk_init_cb = match->data;
2556 parent->np = np;
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01002557 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002558 }
2559
2560 while (!list_empty(&clk_provider_list)) {
2561 is_init_done = false;
2562 list_for_each_entry_safe(clk_provider, next,
2563 &clk_provider_list, node) {
2564 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002565
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002566 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002567 of_clk_set_defaults(clk_provider->np, true);
2568
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002569 list_del(&clk_provider->node);
2570 kfree(clk_provider);
2571 is_init_done = true;
2572 }
2573 }
2574
2575 /*
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01002576 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01002577 * remaining providers during the last loop, so now we
2578 * initialize all the remaining ones unconditionally
2579 * in case the clock parent was not mandatory
2580 */
2581 if (!is_init_done)
2582 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05002583 }
2584}
2585#endif