blob: 9f9cadd00bc8396aa6a339d7e8c4ced54ffe0aed [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
Michael Turquetteb09d6d92015-01-29 14:22:50 -080012#include <linux/clk-provider.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
Tomeu Vizoso035a61c2015-01-23 12:03:30 +010040static long clk_core_get_accuracy(struct clk_core *clk);
41static unsigned long clk_core_get_rate(struct clk_core *clk);
42static int clk_core_get_phase(struct clk_core *clk);
43static bool clk_core_is_prepared(struct clk_core *clk);
44static bool clk_core_is_enabled(struct clk_core *clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +010045static struct clk_core *clk_core_lookup(const char *name);
46
Michael Turquetteb09d6d92015-01-29 14:22:50 -080047/*** private data structures ***/
48
49struct clk_core {
50 const char *name;
51 const struct clk_ops *ops;
52 struct clk_hw *hw;
53 struct module *owner;
54 struct clk_core *parent;
55 const char **parent_names;
56 struct clk_core **parents;
57 u8 num_parents;
58 u8 new_parent_index;
59 unsigned long rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010060 unsigned long req_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080061 unsigned long new_rate;
62 struct clk_core *new_parent;
63 struct clk_core *new_child;
64 unsigned long flags;
65 unsigned int enable_count;
66 unsigned int prepare_count;
67 unsigned long accuracy;
68 int phase;
69 struct hlist_head children;
70 struct hlist_node child_node;
71 struct hlist_node debug_node;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010072 struct hlist_head clks;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080073 unsigned int notifier_count;
74#ifdef CONFIG_DEBUG_FS
75 struct dentry *dentry;
76#endif
77 struct kref ref;
78};
79
Stephen Boyddfc202e2015-02-02 14:37:41 -080080#define CREATE_TRACE_POINTS
81#include <trace/events/clk.h>
82
Michael Turquetteb09d6d92015-01-29 14:22:50 -080083struct clk {
84 struct clk_core *core;
85 const char *dev_id;
86 const char *con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010087 unsigned long min_rate;
88 unsigned long max_rate;
Stephen Boyd50595f82015-02-06 11:42:44 -080089 struct hlist_node clks_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080090};
91
Mike Turquetteeab89f62013-03-28 13:59:01 -070092/*** locking ***/
93static void clk_prepare_lock(void)
94{
Mike Turquette533ddeb2013-03-28 13:59:02 -070095 if (!mutex_trylock(&prepare_lock)) {
96 if (prepare_owner == current) {
97 prepare_refcnt++;
98 return;
99 }
100 mutex_lock(&prepare_lock);
101 }
102 WARN_ON_ONCE(prepare_owner != NULL);
103 WARN_ON_ONCE(prepare_refcnt != 0);
104 prepare_owner = current;
105 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700106}
107
108static void clk_prepare_unlock(void)
109{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700110 WARN_ON_ONCE(prepare_owner != current);
111 WARN_ON_ONCE(prepare_refcnt == 0);
112
113 if (--prepare_refcnt)
114 return;
115 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700116 mutex_unlock(&prepare_lock);
117}
118
119static unsigned long clk_enable_lock(void)
120{
121 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -0700122
123 if (!spin_trylock_irqsave(&enable_lock, flags)) {
124 if (enable_owner == current) {
125 enable_refcnt++;
126 return flags;
127 }
128 spin_lock_irqsave(&enable_lock, flags);
129 }
130 WARN_ON_ONCE(enable_owner != NULL);
131 WARN_ON_ONCE(enable_refcnt != 0);
132 enable_owner = current;
133 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700134 return flags;
135}
136
137static void clk_enable_unlock(unsigned long flags)
138{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700139 WARN_ON_ONCE(enable_owner != current);
140 WARN_ON_ONCE(enable_refcnt == 0);
141
142 if (--enable_refcnt)
143 return;
144 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700145 spin_unlock_irqrestore(&enable_lock, flags);
146}
147
Mike Turquetteb24764902012-03-15 23:11:19 -0700148/*** debugfs support ***/
149
Mike Turquetteea72dc22013-12-18 21:38:52 -0800150#ifdef CONFIG_DEBUG_FS
Mike Turquetteb24764902012-03-15 23:11:19 -0700151#include <linux/debugfs.h>
152
153static struct dentry *rootdir;
Mike Turquetteb24764902012-03-15 23:11:19 -0700154static int inited = 0;
Stephen Boyd6314b672014-09-04 23:37:49 -0700155static DEFINE_MUTEX(clk_debug_lock);
156static HLIST_HEAD(clk_debug_list);
Mike Turquetteb24764902012-03-15 23:11:19 -0700157
Sachin Kamat6b44c8542014-07-01 11:56:34 +0530158static struct hlist_head *all_lists[] = {
159 &clk_root_list,
160 &clk_orphan_list,
161 NULL,
162};
163
164static struct hlist_head *orphan_list[] = {
165 &clk_orphan_list,
166 NULL,
167};
168
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100169static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
170 int level)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530171{
172 if (!c)
173 return;
174
Mike Turquettee59c5372014-02-18 21:21:25 -0800175 seq_printf(s, "%*s%-*s %11d %12d %11lu %10lu %-3d\n",
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530176 level * 3 + 1, "",
177 30 - level * 3, c->name,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100178 c->enable_count, c->prepare_count, clk_core_get_rate(c),
179 clk_core_get_accuracy(c), clk_core_get_phase(c));
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530180}
181
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100182static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530183 int level)
184{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100185 struct clk_core *child;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530186
187 if (!c)
188 return;
189
190 clk_summary_show_one(s, c, level);
191
Sasha Levinb67bfe02013-02-27 17:06:00 -0800192 hlist_for_each_entry(child, &c->children, child_node)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530193 clk_summary_show_subtree(s, child, level + 1);
194}
195
196static int clk_summary_show(struct seq_file *s, void *data)
197{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100198 struct clk_core *c;
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300199 struct hlist_head **lists = (struct hlist_head **)s->private;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530200
Mike Turquettee59c5372014-02-18 21:21:25 -0800201 seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy phase\n");
202 seq_puts(s, "----------------------------------------------------------------------------------------\n");
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530203
Mike Turquetteeab89f62013-03-28 13:59:01 -0700204 clk_prepare_lock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530205
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300206 for (; *lists; lists++)
207 hlist_for_each_entry(c, *lists, child_node)
208 clk_summary_show_subtree(s, c, 0);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530209
Mike Turquetteeab89f62013-03-28 13:59:01 -0700210 clk_prepare_unlock();
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530211
212 return 0;
213}
214
215
216static int clk_summary_open(struct inode *inode, struct file *file)
217{
218 return single_open(file, clk_summary_show, inode->i_private);
219}
220
221static const struct file_operations clk_summary_fops = {
222 .open = clk_summary_open,
223 .read = seq_read,
224 .llseek = seq_lseek,
225 .release = single_release,
226};
227
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100228static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530229{
230 if (!c)
231 return;
232
Stefan Wahrenc4087d12015-04-29 16:36:43 +0000233 /* This should be JSON format, i.e. elements separated with a comma */
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530234 seq_printf(s, "\"%s\": { ", c->name);
235 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
236 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Stefan Wahrenc4087d12015-04-29 16:36:43 +0000237 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate(c));
238 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy(c));
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100239 seq_printf(s, "\"phase\": %d", clk_core_get_phase(c));
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530240}
241
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100242static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530243{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100244 struct clk_core *child;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530245
246 if (!c)
247 return;
248
249 clk_dump_one(s, c, level);
250
Sasha Levinb67bfe02013-02-27 17:06:00 -0800251 hlist_for_each_entry(child, &c->children, child_node) {
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530252 seq_printf(s, ",");
253 clk_dump_subtree(s, child, level + 1);
254 }
255
256 seq_printf(s, "}");
257}
258
259static int clk_dump(struct seq_file *s, void *data)
260{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100261 struct clk_core *c;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530262 bool first_node = true;
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300263 struct hlist_head **lists = (struct hlist_head **)s->private;
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530264
265 seq_printf(s, "{");
266
Mike Turquetteeab89f62013-03-28 13:59:01 -0700267 clk_prepare_lock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530268
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300269 for (; *lists; lists++) {
270 hlist_for_each_entry(c, *lists, child_node) {
271 if (!first_node)
272 seq_puts(s, ",");
273 first_node = false;
274 clk_dump_subtree(s, c, 0);
275 }
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530276 }
277
Mike Turquetteeab89f62013-03-28 13:59:01 -0700278 clk_prepare_unlock();
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530279
280 seq_printf(s, "}");
281 return 0;
282}
283
284
285static int clk_dump_open(struct inode *inode, struct file *file)
286{
287 return single_open(file, clk_dump, inode->i_private);
288}
289
290static const struct file_operations clk_dump_fops = {
291 .open = clk_dump_open,
292 .read = seq_read,
293 .llseek = seq_lseek,
294 .release = single_release,
295};
296
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100297static int clk_debug_create_one(struct clk_core *clk, struct dentry *pdentry)
Mike Turquetteb24764902012-03-15 23:11:19 -0700298{
299 struct dentry *d;
300 int ret = -ENOMEM;
301
302 if (!clk || !pdentry) {
303 ret = -EINVAL;
304 goto out;
305 }
306
307 d = debugfs_create_dir(clk->name, pdentry);
308 if (!d)
309 goto out;
310
311 clk->dentry = d;
312
313 d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry,
314 (u32 *)&clk->rate);
315 if (!d)
316 goto err_out;
317
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100318 d = debugfs_create_u32("clk_accuracy", S_IRUGO, clk->dentry,
319 (u32 *)&clk->accuracy);
320 if (!d)
321 goto err_out;
322
Mike Turquettee59c5372014-02-18 21:21:25 -0800323 d = debugfs_create_u32("clk_phase", S_IRUGO, clk->dentry,
324 (u32 *)&clk->phase);
325 if (!d)
326 goto err_out;
327
Mike Turquetteb24764902012-03-15 23:11:19 -0700328 d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry,
329 (u32 *)&clk->flags);
330 if (!d)
331 goto err_out;
332
333 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry,
334 (u32 *)&clk->prepare_count);
335 if (!d)
336 goto err_out;
337
338 d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry,
339 (u32 *)&clk->enable_count);
340 if (!d)
341 goto err_out;
342
343 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry,
344 (u32 *)&clk->notifier_count);
345 if (!d)
346 goto err_out;
347
Chris Brandabeab452014-07-03 14:01:29 -0700348 if (clk->ops->debug_init) {
349 ret = clk->ops->debug_init(clk->hw, clk->dentry);
350 if (ret)
Alex Elderc646cbf2014-03-21 06:43:56 -0500351 goto err_out;
Chris Brandabeab452014-07-03 14:01:29 -0700352 }
Alex Elderc646cbf2014-03-21 06:43:56 -0500353
Mike Turquetteb24764902012-03-15 23:11:19 -0700354 ret = 0;
355 goto out;
356
357err_out:
Alex Elderb5f98e62013-11-27 09:39:49 -0600358 debugfs_remove_recursive(clk->dentry);
359 clk->dentry = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -0700360out:
361 return ret;
362}
363
Mike Turquetteb24764902012-03-15 23:11:19 -0700364/**
365 * clk_debug_register - add a clk node to the debugfs clk tree
366 * @clk: the clk being added to the debugfs clk tree
367 *
368 * Dynamically adds a clk to the debugfs clk tree if debugfs has been
369 * initialized. Otherwise it bails out early since the debugfs clk tree
370 * will be created lazily by clk_debug_init as part of a late_initcall.
Mike Turquetteb24764902012-03-15 23:11:19 -0700371 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100372static int clk_debug_register(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700373{
Mike Turquetteb24764902012-03-15 23:11:19 -0700374 int ret = 0;
375
Stephen Boyd6314b672014-09-04 23:37:49 -0700376 mutex_lock(&clk_debug_lock);
377 hlist_add_head(&clk->debug_node, &clk_debug_list);
378
Mike Turquetteb24764902012-03-15 23:11:19 -0700379 if (!inited)
Stephen Boyd6314b672014-09-04 23:37:49 -0700380 goto unlock;
Mike Turquetteb24764902012-03-15 23:11:19 -0700381
Stephen Boyd6314b672014-09-04 23:37:49 -0700382 ret = clk_debug_create_one(clk, rootdir);
383unlock:
384 mutex_unlock(&clk_debug_lock);
Mike Turquetteb24764902012-03-15 23:11:19 -0700385
Mike Turquetteb24764902012-03-15 23:11:19 -0700386 return ret;
387}
388
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200389 /**
390 * clk_debug_unregister - remove a clk node from the debugfs clk tree
391 * @clk: the clk being removed from the debugfs clk tree
392 *
393 * Dynamically removes a clk and all it's children clk nodes from the
394 * debugfs clk tree if clk->dentry points to debugfs created by
395 * clk_debug_register in __clk_init.
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200396 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100397static void clk_debug_unregister(struct clk_core *clk)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200398{
Stephen Boyd6314b672014-09-04 23:37:49 -0700399 mutex_lock(&clk_debug_lock);
Stephen Boyd6314b672014-09-04 23:37:49 -0700400 hlist_del_init(&clk->debug_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200401 debugfs_remove_recursive(clk->dentry);
Stephen Boyd6314b672014-09-04 23:37:49 -0700402 clk->dentry = NULL;
Stephen Boyd6314b672014-09-04 23:37:49 -0700403 mutex_unlock(&clk_debug_lock);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200404}
405
Tomeu Vizoso61c7cdd2014-12-02 08:54:21 +0100406struct dentry *clk_debugfs_add_file(struct clk_hw *hw, char *name, umode_t mode,
Peter De Schrijverfb2b3c92014-06-26 18:00:53 +0300407 void *data, const struct file_operations *fops)
408{
409 struct dentry *d = NULL;
410
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100411 if (hw->core->dentry)
412 d = debugfs_create_file(name, mode, hw->core->dentry, data,
413 fops);
Peter De Schrijverfb2b3c92014-06-26 18:00:53 +0300414
415 return d;
416}
417EXPORT_SYMBOL_GPL(clk_debugfs_add_file);
418
Mike Turquetteb24764902012-03-15 23:11:19 -0700419/**
420 * clk_debug_init - lazily create the debugfs clk tree visualization
421 *
422 * clks are often initialized very early during boot before memory can
423 * be dynamically allocated and well before debugfs is setup.
424 * clk_debug_init walks the clk tree hierarchy while holding
425 * prepare_lock and creates the topology as part of a late_initcall,
426 * thus insuring that clks initialized very early will still be
427 * represented in the debugfs clk tree. This function should only be
428 * called once at boot-time, and all other clks added dynamically will
429 * be done so with clk_debug_register.
430 */
431static int __init clk_debug_init(void)
432{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100433 struct clk_core *clk;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530434 struct dentry *d;
Mike Turquetteb24764902012-03-15 23:11:19 -0700435
436 rootdir = debugfs_create_dir("clk", NULL);
437
438 if (!rootdir)
439 return -ENOMEM;
440
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300441 d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, &all_lists,
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530442 &clk_summary_fops);
443 if (!d)
444 return -ENOMEM;
445
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300446 d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, &all_lists,
Prashant Gaikwadbddca892012-12-26 19:16:23 +0530447 &clk_dump_fops);
448 if (!d)
449 return -ENOMEM;
450
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300451 d = debugfs_create_file("clk_orphan_summary", S_IRUGO, rootdir,
452 &orphan_list, &clk_summary_fops);
453 if (!d)
454 return -ENOMEM;
Mike Turquetteb24764902012-03-15 23:11:19 -0700455
Peter De Schrijver27b8d5f2014-05-30 18:03:57 +0300456 d = debugfs_create_file("clk_orphan_dump", S_IRUGO, rootdir,
457 &orphan_list, &clk_dump_fops);
458 if (!d)
Mike Turquetteb24764902012-03-15 23:11:19 -0700459 return -ENOMEM;
460
Stephen Boyd6314b672014-09-04 23:37:49 -0700461 mutex_lock(&clk_debug_lock);
462 hlist_for_each_entry(clk, &clk_debug_list, debug_node)
463 clk_debug_create_one(clk, rootdir);
Mike Turquetteb24764902012-03-15 23:11:19 -0700464
465 inited = 1;
Stephen Boyd6314b672014-09-04 23:37:49 -0700466 mutex_unlock(&clk_debug_lock);
Mike Turquetteb24764902012-03-15 23:11:19 -0700467
468 return 0;
469}
470late_initcall(clk_debug_init);
471#else
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100472static inline int clk_debug_register(struct clk_core *clk) { return 0; }
473static inline void clk_debug_reparent(struct clk_core *clk,
474 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +0200475{
476}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100477static inline void clk_debug_unregister(struct clk_core *clk)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +0200478{
479}
Mike Turquette70d347e2012-03-26 11:53:47 -0700480#endif
Mike Turquetteb24764902012-03-15 23:11:19 -0700481
Mike Turquetteb24764902012-03-15 23:11:19 -0700482/* caller must hold prepare_lock */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100483static void clk_unprepare_unused_subtree(struct clk_core *clk)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100484{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100485 struct clk_core *child;
Ulf Hansson1c155b32013-03-12 20:26:03 +0100486
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100487 lockdep_assert_held(&prepare_lock);
488
Ulf Hansson1c155b32013-03-12 20:26:03 +0100489 hlist_for_each_entry(child, &clk->children, child_node)
490 clk_unprepare_unused_subtree(child);
491
492 if (clk->prepare_count)
493 return;
494
495 if (clk->flags & CLK_IGNORE_UNUSED)
496 return;
497
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100498 if (clk_core_is_prepared(clk)) {
Stephen Boyddfc202e2015-02-02 14:37:41 -0800499 trace_clk_unprepare(clk);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100500 if (clk->ops->unprepare_unused)
501 clk->ops->unprepare_unused(clk->hw);
502 else if (clk->ops->unprepare)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100503 clk->ops->unprepare(clk->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800504 trace_clk_unprepare_complete(clk);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100505 }
Ulf Hansson1c155b32013-03-12 20:26:03 +0100506}
507
508/* caller must hold prepare_lock */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100509static void clk_disable_unused_subtree(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700510{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100511 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700512 unsigned long flags;
513
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100514 lockdep_assert_held(&prepare_lock);
515
Sasha Levinb67bfe02013-02-27 17:06:00 -0800516 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700517 clk_disable_unused_subtree(child);
518
Mike Turquetteeab89f62013-03-28 13:59:01 -0700519 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700520
521 if (clk->enable_count)
522 goto unlock_out;
523
524 if (clk->flags & CLK_IGNORE_UNUSED)
525 goto unlock_out;
526
Mike Turquette7c045a52012-12-04 11:00:35 -0800527 /*
528 * some gate clocks have special needs during the disable-unused
529 * sequence. call .disable_unused if available, otherwise fall
530 * back to .disable
531 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100532 if (clk_core_is_enabled(clk)) {
Stephen Boyddfc202e2015-02-02 14:37:41 -0800533 trace_clk_disable(clk);
Mike Turquette7c045a52012-12-04 11:00:35 -0800534 if (clk->ops->disable_unused)
535 clk->ops->disable_unused(clk->hw);
536 else if (clk->ops->disable)
537 clk->ops->disable(clk->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800538 trace_clk_disable_complete(clk);
Mike Turquette7c045a52012-12-04 11:00:35 -0800539 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700540
541unlock_out:
Mike Turquetteeab89f62013-03-28 13:59:01 -0700542 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700543}
544
Olof Johansson1e435252013-04-27 14:10:18 -0700545static bool clk_ignore_unused;
546static int __init clk_ignore_unused_setup(char *__unused)
547{
548 clk_ignore_unused = true;
549 return 1;
550}
551__setup("clk_ignore_unused", clk_ignore_unused_setup);
552
Mike Turquetteb24764902012-03-15 23:11:19 -0700553static int clk_disable_unused(void)
554{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100555 struct clk_core *clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700556
Olof Johansson1e435252013-04-27 14:10:18 -0700557 if (clk_ignore_unused) {
558 pr_warn("clk: Not disabling unused clocks\n");
559 return 0;
560 }
561
Mike Turquetteeab89f62013-03-28 13:59:01 -0700562 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700563
Sasha Levinb67bfe02013-02-27 17:06:00 -0800564 hlist_for_each_entry(clk, &clk_root_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700565 clk_disable_unused_subtree(clk);
566
Sasha Levinb67bfe02013-02-27 17:06:00 -0800567 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700568 clk_disable_unused_subtree(clk);
569
Ulf Hansson1c155b32013-03-12 20:26:03 +0100570 hlist_for_each_entry(clk, &clk_root_list, child_node)
571 clk_unprepare_unused_subtree(clk);
572
573 hlist_for_each_entry(clk, &clk_orphan_list, child_node)
574 clk_unprepare_unused_subtree(clk);
575
Mike Turquetteeab89f62013-03-28 13:59:01 -0700576 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700577
578 return 0;
579}
Saravana Kannand41d5802013-05-09 11:35:01 -0700580late_initcall_sync(clk_disable_unused);
Mike Turquetteb24764902012-03-15 23:11:19 -0700581
582/*** helper functions ***/
583
Russ Dill65800b22012-11-26 11:20:09 -0800584const char *__clk_get_name(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700585{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100586 return !clk ? NULL : clk->core->name;
Mike Turquetteb24764902012-03-15 23:11:19 -0700587}
Niels de Vos48950842012-12-13 13:12:25 +0100588EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700589
Russ Dill65800b22012-11-26 11:20:09 -0800590struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700591{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100592 return !clk ? NULL : clk->core->hw;
Mike Turquetteb24764902012-03-15 23:11:19 -0700593}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800594EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700595
Russ Dill65800b22012-11-26 11:20:09 -0800596u8 __clk_get_num_parents(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700597{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100598 return !clk ? 0 : clk->core->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -0700599}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800600EXPORT_SYMBOL_GPL(__clk_get_num_parents);
Mike Turquetteb24764902012-03-15 23:11:19 -0700601
Russ Dill65800b22012-11-26 11:20:09 -0800602struct clk *__clk_get_parent(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700603{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100604 if (!clk)
605 return NULL;
606
607 /* TODO: Create a per-user clk and change callers to call clk_put */
608 return !clk->core->parent ? NULL : clk->core->parent->hw->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700609}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800610EXPORT_SYMBOL_GPL(__clk_get_parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700611
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100612static struct clk_core *clk_core_get_parent_by_index(struct clk_core *clk,
613 u8 index)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100614{
615 if (!clk || index >= clk->num_parents)
616 return NULL;
617 else if (!clk->parents)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100618 return clk_core_lookup(clk->parent_names[index]);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100619 else if (!clk->parents[index])
620 return clk->parents[index] =
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100621 clk_core_lookup(clk->parent_names[index]);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100622 else
623 return clk->parents[index];
624}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100625
626struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
627{
628 struct clk_core *parent;
629
630 if (!clk)
631 return NULL;
632
633 parent = clk_core_get_parent_by_index(clk->core, index);
634
635 return !parent ? NULL : parent->hw->clk;
636}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800637EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100638
Russ Dill65800b22012-11-26 11:20:09 -0800639unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700640{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100641 return !clk ? 0 : clk->core->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700642}
643
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100644static unsigned long clk_core_get_rate_nolock(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700645{
646 unsigned long ret;
647
648 if (!clk) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530649 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700650 goto out;
651 }
652
653 ret = clk->rate;
654
655 if (clk->flags & CLK_IS_ROOT)
656 goto out;
657
658 if (!clk->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530659 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700660
661out:
662 return ret;
663}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100664
665unsigned long __clk_get_rate(struct clk *clk)
666{
667 if (!clk)
668 return 0;
669
670 return clk_core_get_rate_nolock(clk->core);
671}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800672EXPORT_SYMBOL_GPL(__clk_get_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700673
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100674static unsigned long __clk_get_accuracy(struct clk_core *clk)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100675{
676 if (!clk)
677 return 0;
678
679 return clk->accuracy;
680}
681
Russ Dill65800b22012-11-26 11:20:09 -0800682unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700683{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100684 return !clk ? 0 : clk->core->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700685}
Thierry Redingb05c6832013-09-03 09:43:51 +0200686EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700687
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100688static bool clk_core_is_prepared(struct clk_core *clk)
Ulf Hansson3d6ee282013-03-12 20:26:02 +0100689{
690 int ret;
691
692 if (!clk)
693 return false;
694
695 /*
696 * .is_prepared is optional for clocks that can prepare
697 * fall back to software usage counter if it is missing
698 */
699 if (!clk->ops->is_prepared) {
700 ret = clk->prepare_count ? 1 : 0;
701 goto out;
702 }
703
704 ret = clk->ops->is_prepared(clk->hw);
705out:
706 return !!ret;
707}
708
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100709bool __clk_is_prepared(struct clk *clk)
710{
711 if (!clk)
712 return false;
713
714 return clk_core_is_prepared(clk->core);
715}
716
717static bool clk_core_is_enabled(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700718{
719 int ret;
720
721 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700722 return false;
Mike Turquetteb24764902012-03-15 23:11:19 -0700723
724 /*
725 * .is_enabled is only mandatory for clocks that gate
726 * fall back to software usage counter if .is_enabled is missing
727 */
728 if (!clk->ops->is_enabled) {
729 ret = clk->enable_count ? 1 : 0;
730 goto out;
731 }
732
733 ret = clk->ops->is_enabled(clk->hw);
734out:
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700735 return !!ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700736}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100737
738bool __clk_is_enabled(struct clk *clk)
739{
740 if (!clk)
741 return false;
742
743 return clk_core_is_enabled(clk->core);
744}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800745EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700746
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100747static struct clk_core *__clk_lookup_subtree(const char *name,
748 struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700749{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100750 struct clk_core *child;
751 struct clk_core *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700752
753 if (!strcmp(clk->name, name))
754 return clk;
755
Sasha Levinb67bfe02013-02-27 17:06:00 -0800756 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700757 ret = __clk_lookup_subtree(name, child);
758 if (ret)
759 return ret;
760 }
761
762 return NULL;
763}
764
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100765static struct clk_core *clk_core_lookup(const char *name)
Mike Turquetteb24764902012-03-15 23:11:19 -0700766{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100767 struct clk_core *root_clk;
768 struct clk_core *ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700769
770 if (!name)
771 return NULL;
772
773 /* search the 'proper' clk tree first */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800774 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700775 ret = __clk_lookup_subtree(name, root_clk);
776 if (ret)
777 return ret;
778 }
779
780 /* if not found, then search the orphan tree */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800781 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -0700782 ret = __clk_lookup_subtree(name, root_clk);
783 if (ret)
784 return ret;
785 }
786
787 return NULL;
788}
789
Stephen Boyd15a02c12015-01-19 18:05:28 -0800790static bool mux_is_better_rate(unsigned long rate, unsigned long now,
791 unsigned long best, unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100792{
Stephen Boyd15a02c12015-01-19 18:05:28 -0800793 if (flags & CLK_MUX_ROUND_CLOSEST)
794 return abs(now - rate) < abs(best - rate);
795
796 return now <= rate && now > best;
797}
798
799static long
800clk_mux_determine_rate_flags(struct clk_hw *hw, unsigned long rate,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100801 unsigned long min_rate,
802 unsigned long max_rate,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800803 unsigned long *best_parent_rate,
804 struct clk_hw **best_parent_p,
805 unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100806{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100807 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
James Hogane366fdd2013-07-29 12:25:02 +0100808 int i, num_parents;
809 unsigned long parent_rate, best = 0;
810
811 /* if NO_REPARENT flag set, pass through to current parent */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100812 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
813 parent = core->parent;
814 if (core->flags & CLK_SET_RATE_PARENT)
Javier Martinez Canillas9e0ad7d2015-02-12 14:58:28 +0100815 best = __clk_determine_rate(parent ? parent->hw : NULL,
816 rate, min_rate, max_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100817 else if (parent)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100818 best = clk_core_get_rate_nolock(parent);
James Hogane366fdd2013-07-29 12:25:02 +0100819 else
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100820 best = clk_core_get_rate_nolock(core);
James Hogane366fdd2013-07-29 12:25:02 +0100821 goto out;
822 }
823
824 /* find the parent that can provide the fastest rate <= rate */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100825 num_parents = core->num_parents;
James Hogane366fdd2013-07-29 12:25:02 +0100826 for (i = 0; i < num_parents; i++) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100827 parent = clk_core_get_parent_by_index(core, i);
James Hogane366fdd2013-07-29 12:25:02 +0100828 if (!parent)
829 continue;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100830 if (core->flags & CLK_SET_RATE_PARENT)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100831 parent_rate = __clk_determine_rate(parent->hw, rate,
832 min_rate,
833 max_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100834 else
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100835 parent_rate = clk_core_get_rate_nolock(parent);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800836 if (mux_is_better_rate(rate, parent_rate, best, flags)) {
James Hogane366fdd2013-07-29 12:25:02 +0100837 best_parent = parent;
838 best = parent_rate;
839 }
840 }
841
842out:
843 if (best_parent)
Tomeu Vizoso646cafc2014-12-02 08:54:22 +0100844 *best_parent_p = best_parent->hw;
James Hogane366fdd2013-07-29 12:25:02 +0100845 *best_parent_rate = best;
846
847 return best;
848}
Stephen Boyd15a02c12015-01-19 18:05:28 -0800849
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100850struct clk *__clk_lookup(const char *name)
851{
852 struct clk_core *core = clk_core_lookup(name);
853
854 return !core ? NULL : core->hw->clk;
855}
856
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100857static void clk_core_get_boundaries(struct clk_core *clk,
858 unsigned long *min_rate,
859 unsigned long *max_rate)
860{
861 struct clk *clk_user;
862
863 *min_rate = 0;
864 *max_rate = ULONG_MAX;
865
Stephen Boyd50595f82015-02-06 11:42:44 -0800866 hlist_for_each_entry(clk_user, &clk->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100867 *min_rate = max(*min_rate, clk_user->min_rate);
868
Stephen Boyd50595f82015-02-06 11:42:44 -0800869 hlist_for_each_entry(clk_user, &clk->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100870 *max_rate = min(*max_rate, clk_user->max_rate);
871}
872
Stephen Boyd15a02c12015-01-19 18:05:28 -0800873/*
874 * Helper for finding best parent to provide a given frequency. This can be used
875 * directly as a determine_rate callback (e.g. for a mux), or from a more
876 * complex clock that may combine a mux with other operations.
877 */
878long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100879 unsigned long min_rate,
880 unsigned long max_rate,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800881 unsigned long *best_parent_rate,
882 struct clk_hw **best_parent_p)
883{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100884 return clk_mux_determine_rate_flags(hw, rate, min_rate, max_rate,
885 best_parent_rate,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800886 best_parent_p, 0);
887}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800888EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100889
Stephen Boyd15a02c12015-01-19 18:05:28 -0800890long __clk_mux_determine_rate_closest(struct clk_hw *hw, unsigned long rate,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100891 unsigned long min_rate,
892 unsigned long max_rate,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800893 unsigned long *best_parent_rate,
894 struct clk_hw **best_parent_p)
895{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100896 return clk_mux_determine_rate_flags(hw, rate, min_rate, max_rate,
897 best_parent_rate,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800898 best_parent_p,
899 CLK_MUX_ROUND_CLOSEST);
900}
901EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
902
Mike Turquetteb24764902012-03-15 23:11:19 -0700903/*** clk api ***/
904
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100905static void clk_core_unprepare(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700906{
907 if (!clk)
908 return;
909
910 if (WARN_ON(clk->prepare_count == 0))
911 return;
912
913 if (--clk->prepare_count > 0)
914 return;
915
916 WARN_ON(clk->enable_count > 0);
917
Stephen Boyddfc202e2015-02-02 14:37:41 -0800918 trace_clk_unprepare(clk);
919
Mike Turquetteb24764902012-03-15 23:11:19 -0700920 if (clk->ops->unprepare)
921 clk->ops->unprepare(clk->hw);
922
Stephen Boyddfc202e2015-02-02 14:37:41 -0800923 trace_clk_unprepare_complete(clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100924 clk_core_unprepare(clk->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700925}
926
927/**
928 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200929 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700930 *
931 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
932 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
933 * if the operation may sleep. One example is a clk which is accessed over
934 * I2c. In the complex case a clk gate operation may require a fast and a slow
935 * part. It is this reason that clk_unprepare and clk_disable are not mutually
936 * exclusive. In fact clk_disable must be called before clk_unprepare.
937 */
938void clk_unprepare(struct clk *clk)
939{
Stephen Boyd63589e92014-03-26 16:06:37 -0700940 if (IS_ERR_OR_NULL(clk))
941 return;
942
Mike Turquetteeab89f62013-03-28 13:59:01 -0700943 clk_prepare_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100944 clk_core_unprepare(clk->core);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700945 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700946}
947EXPORT_SYMBOL_GPL(clk_unprepare);
948
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100949static int clk_core_prepare(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700950{
951 int ret = 0;
952
953 if (!clk)
954 return 0;
955
956 if (clk->prepare_count == 0) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100957 ret = clk_core_prepare(clk->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700958 if (ret)
959 return ret;
960
Stephen Boyddfc202e2015-02-02 14:37:41 -0800961 trace_clk_prepare(clk);
962
963 if (clk->ops->prepare)
Mike Turquetteb24764902012-03-15 23:11:19 -0700964 ret = clk->ops->prepare(clk->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800965
966 trace_clk_prepare_complete(clk);
967
968 if (ret) {
969 clk_core_unprepare(clk->parent);
970 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700971 }
972 }
973
974 clk->prepare_count++;
975
976 return 0;
977}
978
979/**
980 * clk_prepare - prepare a clock source
981 * @clk: the clk being prepared
982 *
983 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
984 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
985 * operation may sleep. One example is a clk which is accessed over I2c. In
986 * the complex case a clk ungate operation may require a fast and a slow part.
987 * It is this reason that clk_prepare and clk_enable are not mutually
988 * exclusive. In fact clk_prepare must be called before clk_enable.
989 * Returns 0 on success, -EERROR otherwise.
990 */
991int clk_prepare(struct clk *clk)
992{
993 int ret;
994
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100995 if (!clk)
996 return 0;
997
Mike Turquetteeab89f62013-03-28 13:59:01 -0700998 clk_prepare_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100999 ret = clk_core_prepare(clk->core);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001000 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001001
1002 return ret;
1003}
1004EXPORT_SYMBOL_GPL(clk_prepare);
1005
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001006static void clk_core_disable(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001007{
1008 if (!clk)
1009 return;
1010
1011 if (WARN_ON(clk->enable_count == 0))
1012 return;
1013
1014 if (--clk->enable_count > 0)
1015 return;
1016
Stephen Boyddfc202e2015-02-02 14:37:41 -08001017 trace_clk_disable(clk);
1018
Mike Turquetteb24764902012-03-15 23:11:19 -07001019 if (clk->ops->disable)
1020 clk->ops->disable(clk->hw);
1021
Stephen Boyddfc202e2015-02-02 14:37:41 -08001022 trace_clk_disable_complete(clk);
1023
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001024 clk_core_disable(clk->parent);
1025}
1026
1027static void __clk_disable(struct clk *clk)
1028{
1029 if (!clk)
1030 return;
1031
1032 clk_core_disable(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -07001033}
1034
1035/**
1036 * clk_disable - gate a clock
1037 * @clk: the clk being gated
1038 *
1039 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1040 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1041 * clk if the operation is fast and will never sleep. One example is a
1042 * SoC-internal clk which is controlled via simple register writes. In the
1043 * complex case a clk gate operation may require a fast and a slow part. It is
1044 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1045 * In fact clk_disable must be called before clk_unprepare.
1046 */
1047void clk_disable(struct clk *clk)
1048{
1049 unsigned long flags;
1050
Stephen Boyd63589e92014-03-26 16:06:37 -07001051 if (IS_ERR_OR_NULL(clk))
1052 return;
1053
Mike Turquetteeab89f62013-03-28 13:59:01 -07001054 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001055 __clk_disable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001056 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -07001057}
1058EXPORT_SYMBOL_GPL(clk_disable);
1059
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001060static int clk_core_enable(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001061{
1062 int ret = 0;
1063
1064 if (!clk)
1065 return 0;
1066
1067 if (WARN_ON(clk->prepare_count == 0))
1068 return -ESHUTDOWN;
1069
1070 if (clk->enable_count == 0) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001071 ret = clk_core_enable(clk->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -07001072
1073 if (ret)
1074 return ret;
1075
Stephen Boyddfc202e2015-02-02 14:37:41 -08001076 trace_clk_enable(clk);
1077
1078 if (clk->ops->enable)
Mike Turquetteb24764902012-03-15 23:11:19 -07001079 ret = clk->ops->enable(clk->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001080
1081 trace_clk_enable_complete(clk);
1082
1083 if (ret) {
1084 clk_core_disable(clk->parent);
1085 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001086 }
1087 }
1088
1089 clk->enable_count++;
1090 return 0;
1091}
1092
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001093static int __clk_enable(struct clk *clk)
1094{
1095 if (!clk)
1096 return 0;
1097
1098 return clk_core_enable(clk->core);
1099}
1100
Mike Turquetteb24764902012-03-15 23:11:19 -07001101/**
1102 * clk_enable - ungate a clock
1103 * @clk: the clk being ungated
1104 *
1105 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1106 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1107 * if the operation will never sleep. One example is a SoC-internal clk which
1108 * is controlled via simple register writes. In the complex case a clk ungate
1109 * operation may require a fast and a slow part. It is this reason that
1110 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1111 * must be called before clk_enable. Returns 0 on success, -EERROR
1112 * otherwise.
1113 */
1114int clk_enable(struct clk *clk)
1115{
1116 unsigned long flags;
1117 int ret;
1118
Mike Turquetteeab89f62013-03-28 13:59:01 -07001119 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001120 ret = __clk_enable(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001121 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -07001122
1123 return ret;
1124}
1125EXPORT_SYMBOL_GPL(clk_enable);
1126
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001127static unsigned long clk_core_round_rate_nolock(struct clk_core *clk,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001128 unsigned long rate,
1129 unsigned long min_rate,
1130 unsigned long max_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001131{
Shawn Guo81536e02012-04-12 20:50:17 +08001132 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001133 struct clk_core *parent;
Tomeu Vizoso646cafc2014-12-02 08:54:22 +01001134 struct clk_hw *parent_hw;
Mike Turquetteb24764902012-03-15 23:11:19 -07001135
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001136 lockdep_assert_held(&prepare_lock);
1137
Mike Turquetteb24764902012-03-15 23:11:19 -07001138 if (!clk)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -07001139 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001140
James Hogan71472c02013-07-29 12:25:00 +01001141 parent = clk->parent;
1142 if (parent)
1143 parent_rate = parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001144
Tomeu Vizoso646cafc2014-12-02 08:54:22 +01001145 if (clk->ops->determine_rate) {
1146 parent_hw = parent ? parent->hw : NULL;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001147 return clk->ops->determine_rate(clk->hw, rate,
1148 min_rate, max_rate,
1149 &parent_rate, &parent_hw);
Tomeu Vizoso646cafc2014-12-02 08:54:22 +01001150 } else if (clk->ops->round_rate)
James Hogan71472c02013-07-29 12:25:00 +01001151 return clk->ops->round_rate(clk->hw, rate, &parent_rate);
1152 else if (clk->flags & CLK_SET_RATE_PARENT)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001153 return clk_core_round_rate_nolock(clk->parent, rate, min_rate,
1154 max_rate);
James Hogan71472c02013-07-29 12:25:00 +01001155 else
1156 return clk->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001157}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001158
1159/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001160 * __clk_determine_rate - get the closest rate actually supported by a clock
1161 * @hw: determine the rate of this clock
1162 * @rate: target rate
1163 * @min_rate: returned rate must be greater than this rate
1164 * @max_rate: returned rate must be less than this rate
1165 *
1166 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate and
1167 * .determine_rate.
1168 */
1169unsigned long __clk_determine_rate(struct clk_hw *hw,
1170 unsigned long rate,
1171 unsigned long min_rate,
1172 unsigned long max_rate)
1173{
1174 if (!hw)
1175 return 0;
1176
1177 return clk_core_round_rate_nolock(hw->core, rate, min_rate, max_rate);
1178}
1179EXPORT_SYMBOL_GPL(__clk_determine_rate);
1180
1181/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001182 * __clk_round_rate - round the given rate for a clk
1183 * @clk: round the rate of this clock
1184 * @rate: the rate which is to be rounded
1185 *
1186 * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate
1187 */
1188unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
1189{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001190 unsigned long min_rate;
1191 unsigned long max_rate;
1192
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001193 if (!clk)
1194 return 0;
1195
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001196 clk_core_get_boundaries(clk->core, &min_rate, &max_rate);
1197
1198 return clk_core_round_rate_nolock(clk->core, rate, min_rate, max_rate);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001199}
Arnd Bergmann1cdf8ee2014-06-03 11:40:14 +02001200EXPORT_SYMBOL_GPL(__clk_round_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001201
1202/**
1203 * clk_round_rate - round the given rate for a clk
1204 * @clk: the clk for which we are rounding a rate
1205 * @rate: the rate which is to be rounded
1206 *
1207 * Takes in a rate as input and rounds it to a rate that the clk can actually
1208 * use which is then returned. If clk doesn't support round_rate operation
1209 * then the parent rate is returned.
1210 */
1211long clk_round_rate(struct clk *clk, unsigned long rate)
1212{
1213 unsigned long ret;
1214
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001215 if (!clk)
1216 return 0;
1217
Mike Turquetteeab89f62013-03-28 13:59:01 -07001218 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001219 ret = __clk_round_rate(clk, rate);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001220 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001221
1222 return ret;
1223}
1224EXPORT_SYMBOL_GPL(clk_round_rate);
1225
1226/**
1227 * __clk_notify - call clk notifier chain
1228 * @clk: struct clk * that is changing rate
1229 * @msg: clk notifier type (see include/linux/clk.h)
1230 * @old_rate: old clk rate
1231 * @new_rate: new clk rate
1232 *
1233 * Triggers a notifier call chain on the clk rate-change notification
1234 * for 'clk'. Passes a pointer to the struct clk and the previous
1235 * and current rates to the notifier callback. Intended to be called by
1236 * internal clock code only. Returns NOTIFY_DONE from the last driver
1237 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1238 * a driver returns that.
1239 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001240static int __clk_notify(struct clk_core *clk, unsigned long msg,
Mike Turquetteb24764902012-03-15 23:11:19 -07001241 unsigned long old_rate, unsigned long new_rate)
1242{
1243 struct clk_notifier *cn;
1244 struct clk_notifier_data cnd;
1245 int ret = NOTIFY_DONE;
1246
Mike Turquetteb24764902012-03-15 23:11:19 -07001247 cnd.old_rate = old_rate;
1248 cnd.new_rate = new_rate;
1249
1250 list_for_each_entry(cn, &clk_notifier_list, node) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001251 if (cn->clk->core == clk) {
1252 cnd.clk = cn->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001253 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1254 &cnd);
Mike Turquetteb24764902012-03-15 23:11:19 -07001255 }
1256 }
1257
1258 return ret;
1259}
1260
1261/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001262 * __clk_recalc_accuracies
1263 * @clk: first clk in the subtree
1264 *
1265 * Walks the subtree of clks starting with clk and recalculates accuracies as
1266 * it goes. Note that if a clk does not implement the .recalc_accuracy
1267 * callback then it is assumed that the clock will take on the accuracy of it's
1268 * parent.
1269 *
1270 * Caller must hold prepare_lock.
1271 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001272static void __clk_recalc_accuracies(struct clk_core *clk)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001273{
1274 unsigned long parent_accuracy = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001275 struct clk_core *child;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001276
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001277 lockdep_assert_held(&prepare_lock);
1278
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001279 if (clk->parent)
1280 parent_accuracy = clk->parent->accuracy;
1281
1282 if (clk->ops->recalc_accuracy)
1283 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
1284 parent_accuracy);
1285 else
1286 clk->accuracy = parent_accuracy;
1287
1288 hlist_for_each_entry(child, &clk->children, child_node)
1289 __clk_recalc_accuracies(child);
1290}
1291
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001292static long clk_core_get_accuracy(struct clk_core *clk)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001293{
1294 unsigned long accuracy;
1295
1296 clk_prepare_lock();
1297 if (clk && (clk->flags & CLK_GET_ACCURACY_NOCACHE))
1298 __clk_recalc_accuracies(clk);
1299
1300 accuracy = __clk_get_accuracy(clk);
1301 clk_prepare_unlock();
1302
1303 return accuracy;
1304}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001305
1306/**
1307 * clk_get_accuracy - return the accuracy of clk
1308 * @clk: the clk whose accuracy is being returned
1309 *
1310 * Simply returns the cached accuracy of the clk, unless
1311 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1312 * issued.
1313 * If clk is NULL then returns 0.
1314 */
1315long clk_get_accuracy(struct clk *clk)
1316{
1317 if (!clk)
1318 return 0;
1319
1320 return clk_core_get_accuracy(clk->core);
1321}
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001322EXPORT_SYMBOL_GPL(clk_get_accuracy);
1323
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001324static unsigned long clk_recalc(struct clk_core *clk,
1325 unsigned long parent_rate)
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001326{
1327 if (clk->ops->recalc_rate)
1328 return clk->ops->recalc_rate(clk->hw, parent_rate);
1329 return parent_rate;
1330}
1331
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001332/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001333 * __clk_recalc_rates
1334 * @clk: first clk in the subtree
1335 * @msg: notification type (see include/linux/clk.h)
1336 *
1337 * Walks the subtree of clks starting with clk and recalculates rates as it
1338 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001339 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001340 *
1341 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1342 * if necessary.
1343 *
1344 * Caller must hold prepare_lock.
1345 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001346static void __clk_recalc_rates(struct clk_core *clk, unsigned long msg)
Mike Turquetteb24764902012-03-15 23:11:19 -07001347{
1348 unsigned long old_rate;
1349 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001350 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001351
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001352 lockdep_assert_held(&prepare_lock);
1353
Mike Turquetteb24764902012-03-15 23:11:19 -07001354 old_rate = clk->rate;
1355
1356 if (clk->parent)
1357 parent_rate = clk->parent->rate;
1358
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001359 clk->rate = clk_recalc(clk, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001360
1361 /*
1362 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1363 * & ABORT_RATE_CHANGE notifiers
1364 */
1365 if (clk->notifier_count && msg)
1366 __clk_notify(clk, msg, old_rate, clk->rate);
1367
Sasha Levinb67bfe02013-02-27 17:06:00 -08001368 hlist_for_each_entry(child, &clk->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001369 __clk_recalc_rates(child, msg);
1370}
1371
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001372static unsigned long clk_core_get_rate(struct clk_core *clk)
1373{
1374 unsigned long rate;
1375
1376 clk_prepare_lock();
1377
1378 if (clk && (clk->flags & CLK_GET_RATE_NOCACHE))
1379 __clk_recalc_rates(clk, 0);
1380
1381 rate = clk_core_get_rate_nolock(clk);
1382 clk_prepare_unlock();
1383
1384 return rate;
1385}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001386
Mike Turquetteb24764902012-03-15 23:11:19 -07001387/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001388 * clk_get_rate - return the rate of clk
1389 * @clk: the clk whose rate is being returned
1390 *
1391 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1392 * is set, which means a recalc_rate will be issued.
1393 * If clk is NULL then returns 0.
1394 */
1395unsigned long clk_get_rate(struct clk *clk)
1396{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001397 if (!clk)
1398 return 0;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001399
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001400 return clk_core_get_rate(clk->core);
Ulf Hanssona093bde2012-08-31 14:21:28 +02001401}
1402EXPORT_SYMBOL_GPL(clk_get_rate);
1403
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001404static int clk_fetch_parent_index(struct clk_core *clk,
1405 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001406{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001407 int i;
James Hogan4935b222013-07-29 12:24:59 +01001408
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001409 if (!clk->parents) {
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001410 clk->parents = kcalloc(clk->num_parents,
1411 sizeof(struct clk *), GFP_KERNEL);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001412 if (!clk->parents)
1413 return -ENOMEM;
1414 }
James Hogan4935b222013-07-29 12:24:59 +01001415
1416 /*
1417 * find index of new parent clock using cached parent ptrs,
1418 * or if not yet cached, use string name comparison and cache
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001419 * them now to avoid future calls to clk_core_lookup.
James Hogan4935b222013-07-29 12:24:59 +01001420 */
1421 for (i = 0; i < clk->num_parents; i++) {
Tomasz Figada0f0b22013-09-29 02:37:16 +02001422 if (clk->parents[i] == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001423 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001424
1425 if (clk->parents[i])
1426 continue;
1427
1428 if (!strcmp(clk->parent_names[i], parent->name)) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001429 clk->parents[i] = clk_core_lookup(parent->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001430 return i;
James Hogan4935b222013-07-29 12:24:59 +01001431 }
1432 }
1433
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001434 return -EINVAL;
James Hogan4935b222013-07-29 12:24:59 +01001435}
1436
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001437static void clk_reparent(struct clk_core *clk, struct clk_core *new_parent)
James Hogan4935b222013-07-29 12:24:59 +01001438{
1439 hlist_del(&clk->child_node);
1440
James Hogan903efc52013-08-29 12:10:51 +01001441 if (new_parent) {
1442 /* avoid duplicate POST_RATE_CHANGE notifications */
1443 if (new_parent->new_child == clk)
1444 new_parent->new_child = NULL;
1445
James Hogan4935b222013-07-29 12:24:59 +01001446 hlist_add_head(&clk->child_node, &new_parent->children);
James Hogan903efc52013-08-29 12:10:51 +01001447 } else {
James Hogan4935b222013-07-29 12:24:59 +01001448 hlist_add_head(&clk->child_node, &clk_orphan_list);
James Hogan903efc52013-08-29 12:10:51 +01001449 }
James Hogan4935b222013-07-29 12:24:59 +01001450
1451 clk->parent = new_parent;
1452}
1453
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001454static struct clk_core *__clk_set_parent_before(struct clk_core *clk,
1455 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001456{
1457 unsigned long flags;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001458 struct clk_core *old_parent = clk->parent;
James Hogan4935b222013-07-29 12:24:59 +01001459
1460 /*
1461 * Migrate prepare state between parents and prevent race with
1462 * clk_enable().
1463 *
1464 * If the clock is not prepared, then a race with
1465 * clk_enable/disable() is impossible since we already have the
1466 * prepare lock (future calls to clk_enable() need to be preceded by
1467 * a clk_prepare()).
1468 *
1469 * If the clock is prepared, migrate the prepared state to the new
1470 * parent and also protect against a race with clk_enable() by
1471 * forcing the clock and the new parent on. This ensures that all
1472 * future calls to clk_enable() are practically NOPs with respect to
1473 * hardware and software states.
1474 *
1475 * See also: Comment for clk_set_parent() below.
1476 */
1477 if (clk->prepare_count) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001478 clk_core_prepare(parent);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001479 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001480 clk_core_enable(parent);
1481 clk_core_enable(clk);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001482 clk_enable_unlock(flags);
James Hogan4935b222013-07-29 12:24:59 +01001483 }
1484
1485 /* update the clk tree topology */
1486 flags = clk_enable_lock();
1487 clk_reparent(clk, parent);
1488 clk_enable_unlock(flags);
1489
Stephen Boyd3fa22522014-01-15 10:47:22 -08001490 return old_parent;
1491}
1492
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001493static void __clk_set_parent_after(struct clk_core *core,
1494 struct clk_core *parent,
1495 struct clk_core *old_parent)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001496{
Dong Aishengd2a5d462015-04-15 22:26:36 +08001497 unsigned long flags;
1498
Stephen Boyd3fa22522014-01-15 10:47:22 -08001499 /*
1500 * Finish the migration of prepare state and undo the changes done
1501 * for preventing a race with clk_enable().
1502 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001503 if (core->prepare_count) {
Dong Aishengd2a5d462015-04-15 22:26:36 +08001504 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001505 clk_core_disable(core);
1506 clk_core_disable(old_parent);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001507 clk_enable_unlock(flags);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001508 clk_core_unprepare(old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001509 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001510}
1511
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001512static int __clk_set_parent(struct clk_core *clk, struct clk_core *parent,
1513 u8 p_index)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001514{
1515 unsigned long flags;
1516 int ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001517 struct clk_core *old_parent;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001518
1519 old_parent = __clk_set_parent_before(clk, parent);
1520
Stephen Boyddfc202e2015-02-02 14:37:41 -08001521 trace_clk_set_parent(clk, parent);
1522
James Hogan4935b222013-07-29 12:24:59 +01001523 /* change clock input source */
1524 if (parent && clk->ops->set_parent)
1525 ret = clk->ops->set_parent(clk->hw, p_index);
1526
Stephen Boyddfc202e2015-02-02 14:37:41 -08001527 trace_clk_set_parent_complete(clk, parent);
1528
James Hogan4935b222013-07-29 12:24:59 +01001529 if (ret) {
1530 flags = clk_enable_lock();
1531 clk_reparent(clk, old_parent);
1532 clk_enable_unlock(flags);
1533
1534 if (clk->prepare_count) {
Dong Aishengd2a5d462015-04-15 22:26:36 +08001535 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001536 clk_core_disable(clk);
1537 clk_core_disable(parent);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001538 clk_enable_unlock(flags);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001539 clk_core_unprepare(parent);
James Hogan4935b222013-07-29 12:24:59 +01001540 }
1541 return ret;
1542 }
1543
Stephen Boyd3fa22522014-01-15 10:47:22 -08001544 __clk_set_parent_after(clk, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001545
James Hogan4935b222013-07-29 12:24:59 +01001546 return 0;
1547}
1548
Ulf Hanssona093bde2012-08-31 14:21:28 +02001549/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001550 * __clk_speculate_rates
1551 * @clk: first clk in the subtree
1552 * @parent_rate: the "future" rate of clk's parent
1553 *
1554 * Walks the subtree of clks starting with clk, speculating rates as it
1555 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1556 *
1557 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1558 * pre-rate change notifications and returns early if no clks in the
1559 * subtree have subscribed to the notifications. Note that if a clk does not
1560 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001561 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001562 *
1563 * Caller must hold prepare_lock.
1564 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001565static int __clk_speculate_rates(struct clk_core *clk,
1566 unsigned long parent_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001567{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001568 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001569 unsigned long new_rate;
1570 int ret = NOTIFY_DONE;
1571
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001572 lockdep_assert_held(&prepare_lock);
1573
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001574 new_rate = clk_recalc(clk, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001575
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001576 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Mike Turquetteb24764902012-03-15 23:11:19 -07001577 if (clk->notifier_count)
1578 ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate);
1579
Mike Turquette86bcfa22014-02-24 16:08:41 -08001580 if (ret & NOTIFY_STOP_MASK) {
1581 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
1582 __func__, clk->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001583 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001584 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001585
Sasha Levinb67bfe02013-02-27 17:06:00 -08001586 hlist_for_each_entry(child, &clk->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001587 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001588 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001589 break;
1590 }
1591
1592out:
1593 return ret;
1594}
1595
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001596static void clk_calc_subtree(struct clk_core *clk, unsigned long new_rate,
1597 struct clk_core *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001598{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001599 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001600
1601 clk->new_rate = new_rate;
James Hogan71472c02013-07-29 12:25:00 +01001602 clk->new_parent = new_parent;
1603 clk->new_parent_index = p_index;
1604 /* include clk in new parent's PRE_RATE_CHANGE notifications */
1605 clk->new_child = NULL;
1606 if (new_parent && new_parent != clk->parent)
1607 new_parent->new_child = clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001608
Sasha Levinb67bfe02013-02-27 17:06:00 -08001609 hlist_for_each_entry(child, &clk->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001610 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001611 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001612 }
1613}
1614
1615/*
1616 * calculate the new rates returning the topmost clock that has to be
1617 * changed.
1618 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001619static struct clk_core *clk_calc_new_rates(struct clk_core *clk,
1620 unsigned long rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001621{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001622 struct clk_core *top = clk;
1623 struct clk_core *old_parent, *parent;
Tomeu Vizoso646cafc2014-12-02 08:54:22 +01001624 struct clk_hw *parent_hw;
Shawn Guo81536e02012-04-12 20:50:17 +08001625 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001626 unsigned long new_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001627 unsigned long min_rate;
1628 unsigned long max_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001629 int p_index = 0;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001630 long ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001631
Mike Turquette7452b212012-03-26 14:45:36 -07001632 /* sanity */
1633 if (IS_ERR_OR_NULL(clk))
1634 return NULL;
1635
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001636 /* save parent rate, if it exists */
James Hogan71472c02013-07-29 12:25:00 +01001637 parent = old_parent = clk->parent;
1638 if (parent)
1639 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001640
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001641 clk_core_get_boundaries(clk, &min_rate, &max_rate);
1642
James Hogan71472c02013-07-29 12:25:00 +01001643 /* find the closest rate and parent clk/rate */
1644 if (clk->ops->determine_rate) {
Tomeu Vizoso646cafc2014-12-02 08:54:22 +01001645 parent_hw = parent ? parent->hw : NULL;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001646 ret = clk->ops->determine_rate(clk->hw, rate,
1647 min_rate,
1648 max_rate,
1649 &best_parent_rate,
1650 &parent_hw);
1651 if (ret < 0)
1652 return NULL;
1653
1654 new_rate = ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001655 parent = parent_hw ? parent_hw->core : NULL;
James Hogan71472c02013-07-29 12:25:00 +01001656 } else if (clk->ops->round_rate) {
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001657 ret = clk->ops->round_rate(clk->hw, rate,
1658 &best_parent_rate);
1659 if (ret < 0)
1660 return NULL;
1661
1662 new_rate = ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001663 if (new_rate < min_rate || new_rate > max_rate)
1664 return NULL;
James Hogan71472c02013-07-29 12:25:00 +01001665 } else if (!parent || !(clk->flags & CLK_SET_RATE_PARENT)) {
1666 /* pass-through clock without adjustable parent */
1667 clk->new_rate = clk->rate;
1668 return NULL;
1669 } else {
1670 /* pass-through clock with adjustable parent */
1671 top = clk_calc_new_rates(parent, rate);
1672 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001673 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001674 }
1675
James Hogan71472c02013-07-29 12:25:00 +01001676 /* some clocks must be gated to change parent */
1677 if (parent != old_parent &&
1678 (clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
1679 pr_debug("%s: %s not gated but wants to reparent\n",
1680 __func__, clk->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001681 return NULL;
1682 }
1683
James Hogan71472c02013-07-29 12:25:00 +01001684 /* try finding the new parent index */
Stephen Boyd4526e7b2014-12-22 11:26:42 -08001685 if (parent && clk->num_parents > 1) {
James Hogan71472c02013-07-29 12:25:00 +01001686 p_index = clk_fetch_parent_index(clk, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001687 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001688 pr_debug("%s: clk %s can not be parent of clk %s\n",
1689 __func__, parent->name, clk->name);
1690 return NULL;
1691 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001692 }
1693
James Hogan71472c02013-07-29 12:25:00 +01001694 if ((clk->flags & CLK_SET_RATE_PARENT) && parent &&
1695 best_parent_rate != parent->rate)
1696 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001697
1698out:
James Hogan71472c02013-07-29 12:25:00 +01001699 clk_calc_subtree(clk, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001700
1701 return top;
1702}
1703
1704/*
1705 * Notify about rate changes in a subtree. Always walk down the whole tree
1706 * so that in case of an error we can walk down the whole tree again and
1707 * abort the change.
1708 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001709static struct clk_core *clk_propagate_rate_change(struct clk_core *clk,
1710 unsigned long event)
Mike Turquetteb24764902012-03-15 23:11:19 -07001711{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001712 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001713 int ret = NOTIFY_DONE;
1714
1715 if (clk->rate == clk->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301716 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001717
1718 if (clk->notifier_count) {
1719 ret = __clk_notify(clk, event, clk->rate, clk->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001720 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001721 fail_clk = clk;
1722 }
1723
Sasha Levinb67bfe02013-02-27 17:06:00 -08001724 hlist_for_each_entry(child, &clk->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001725 /* Skip children who will be reparented to another clock */
1726 if (child->new_parent && child->new_parent != clk)
1727 continue;
1728 tmp_clk = clk_propagate_rate_change(child, event);
1729 if (tmp_clk)
1730 fail_clk = tmp_clk;
1731 }
1732
1733 /* handle the new child who might not be in clk->children yet */
1734 if (clk->new_child) {
1735 tmp_clk = clk_propagate_rate_change(clk->new_child, event);
1736 if (tmp_clk)
1737 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001738 }
1739
1740 return fail_clk;
1741}
1742
1743/*
1744 * walk down a subtree and set the new rates notifying the rate
1745 * change on the way
1746 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001747static void clk_change_rate(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001748{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001749 struct clk_core *child;
Tero Kristo067bb172014-08-21 16:47:45 +03001750 struct hlist_node *tmp;
Mike Turquetteb24764902012-03-15 23:11:19 -07001751 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001752 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001753 bool skip_set_rate = false;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001754 struct clk_core *old_parent;
Mike Turquetteb24764902012-03-15 23:11:19 -07001755
1756 old_rate = clk->rate;
1757
Stephen Boyd3fa22522014-01-15 10:47:22 -08001758 if (clk->new_parent)
1759 best_parent_rate = clk->new_parent->rate;
1760 else if (clk->parent)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001761 best_parent_rate = clk->parent->rate;
1762
Stephen Boyd3fa22522014-01-15 10:47:22 -08001763 if (clk->new_parent && clk->new_parent != clk->parent) {
1764 old_parent = __clk_set_parent_before(clk, clk->new_parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001765 trace_clk_set_parent(clk, clk->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001766
1767 if (clk->ops->set_rate_and_parent) {
1768 skip_set_rate = true;
1769 clk->ops->set_rate_and_parent(clk->hw, clk->new_rate,
1770 best_parent_rate,
1771 clk->new_parent_index);
1772 } else if (clk->ops->set_parent) {
1773 clk->ops->set_parent(clk->hw, clk->new_parent_index);
1774 }
1775
Stephen Boyddfc202e2015-02-02 14:37:41 -08001776 trace_clk_set_parent_complete(clk, clk->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001777 __clk_set_parent_after(clk, clk->new_parent, old_parent);
1778 }
1779
Stephen Boyddfc202e2015-02-02 14:37:41 -08001780 trace_clk_set_rate(clk, clk->new_rate);
1781
Stephen Boyd3fa22522014-01-15 10:47:22 -08001782 if (!skip_set_rate && clk->ops->set_rate)
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001783 clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001784
Stephen Boyddfc202e2015-02-02 14:37:41 -08001785 trace_clk_set_rate_complete(clk, clk->new_rate);
1786
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001787 clk->rate = clk_recalc(clk, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001788
1789 if (clk->notifier_count && old_rate != clk->rate)
1790 __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate);
1791
Tero Kristo067bb172014-08-21 16:47:45 +03001792 /*
1793 * Use safe iteration, as change_rate can actually swap parents
1794 * for certain clock types.
1795 */
1796 hlist_for_each_entry_safe(child, tmp, &clk->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001797 /* Skip children who will be reparented to another clock */
1798 if (child->new_parent && child->new_parent != clk)
1799 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07001800 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01001801 }
1802
1803 /* handle the new child who might not be in clk->children yet */
1804 if (clk->new_child)
1805 clk_change_rate(clk->new_child);
Mike Turquetteb24764902012-03-15 23:11:19 -07001806}
1807
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001808static int clk_core_set_rate_nolock(struct clk_core *clk,
1809 unsigned long req_rate)
1810{
1811 struct clk_core *top, *fail_clk;
1812 unsigned long rate = req_rate;
1813 int ret = 0;
1814
1815 if (!clk)
1816 return 0;
1817
1818 /* bail early if nothing to do */
1819 if (rate == clk_core_get_rate_nolock(clk))
1820 return 0;
1821
1822 if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count)
1823 return -EBUSY;
1824
1825 /* calculate new rates and get the topmost changed clock */
1826 top = clk_calc_new_rates(clk, rate);
1827 if (!top)
1828 return -EINVAL;
1829
1830 /* notify that we are about to change rates */
1831 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1832 if (fail_clk) {
1833 pr_debug("%s: failed to set %s rate\n", __func__,
1834 fail_clk->name);
1835 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1836 return -EBUSY;
1837 }
1838
1839 /* change the rates */
1840 clk_change_rate(top);
1841
1842 clk->req_rate = req_rate;
1843
1844 return ret;
1845}
1846
Mike Turquetteb24764902012-03-15 23:11:19 -07001847/**
1848 * clk_set_rate - specify a new rate for clk
1849 * @clk: the clk whose rate is being changed
1850 * @rate: the new rate for clk
1851 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001852 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001853 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001854 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1855 * propagate up to clk's parent; whether or not this happens depends on the
1856 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1857 * after calling .round_rate then upstream parent propagation is ignored. If
1858 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001859 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001860 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1861 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001862 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001863 * Rate changes are accomplished via tree traversal that also recalculates the
1864 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001865 *
1866 * Returns 0 on success, -EERROR otherwise.
1867 */
1868int clk_set_rate(struct clk *clk, unsigned long rate)
1869{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001870 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001871
Mike Turquette89ac8d72013-08-21 23:58:09 -07001872 if (!clk)
1873 return 0;
1874
Mike Turquetteb24764902012-03-15 23:11:19 -07001875 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001876 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001877
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001878 ret = clk_core_set_rate_nolock(clk->core, rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001879
Mike Turquetteeab89f62013-03-28 13:59:01 -07001880 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001881
1882 return ret;
1883}
1884EXPORT_SYMBOL_GPL(clk_set_rate);
1885
1886/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001887 * clk_set_rate_range - set a rate range for a clock source
1888 * @clk: clock source
1889 * @min: desired minimum clock rate in Hz, inclusive
1890 * @max: desired maximum clock rate in Hz, inclusive
1891 *
1892 * Returns success (0) or negative errno.
1893 */
1894int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
1895{
1896 int ret = 0;
1897
1898 if (!clk)
1899 return 0;
1900
1901 if (min > max) {
1902 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
1903 __func__, clk->core->name, clk->dev_id, clk->con_id,
1904 min, max);
1905 return -EINVAL;
1906 }
1907
1908 clk_prepare_lock();
1909
1910 if (min != clk->min_rate || max != clk->max_rate) {
1911 clk->min_rate = min;
1912 clk->max_rate = max;
1913 ret = clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
1914 }
1915
1916 clk_prepare_unlock();
1917
1918 return ret;
1919}
1920EXPORT_SYMBOL_GPL(clk_set_rate_range);
1921
1922/**
1923 * clk_set_min_rate - set a minimum clock rate for a clock source
1924 * @clk: clock source
1925 * @rate: desired minimum clock rate in Hz, inclusive
1926 *
1927 * Returns success (0) or negative errno.
1928 */
1929int clk_set_min_rate(struct clk *clk, unsigned long rate)
1930{
1931 if (!clk)
1932 return 0;
1933
1934 return clk_set_rate_range(clk, rate, clk->max_rate);
1935}
1936EXPORT_SYMBOL_GPL(clk_set_min_rate);
1937
1938/**
1939 * clk_set_max_rate - set a maximum clock rate for a clock source
1940 * @clk: clock source
1941 * @rate: desired maximum clock rate in Hz, inclusive
1942 *
1943 * Returns success (0) or negative errno.
1944 */
1945int clk_set_max_rate(struct clk *clk, unsigned long rate)
1946{
1947 if (!clk)
1948 return 0;
1949
1950 return clk_set_rate_range(clk, clk->min_rate, rate);
1951}
1952EXPORT_SYMBOL_GPL(clk_set_max_rate);
1953
1954/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001955 * clk_get_parent - return the parent of a clk
1956 * @clk: the clk whose parent gets returned
1957 *
1958 * Simply returns clk->parent. Returns NULL if clk is NULL.
1959 */
1960struct clk *clk_get_parent(struct clk *clk)
1961{
1962 struct clk *parent;
1963
Mike Turquetteeab89f62013-03-28 13:59:01 -07001964 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001965 parent = __clk_get_parent(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001966 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001967
1968 return parent;
1969}
1970EXPORT_SYMBOL_GPL(clk_get_parent);
1971
1972/*
1973 * .get_parent is mandatory for clocks with multiple possible parents. It is
1974 * optional for single-parent clocks. Always call .get_parent if it is
1975 * available and WARN if it is missing for multi-parent clocks.
1976 *
1977 * For single-parent clocks without .get_parent, first check to see if the
1978 * .parents array exists, and if so use it to avoid an expensive tree
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001979 * traversal. If .parents does not exist then walk the tree.
Mike Turquetteb24764902012-03-15 23:11:19 -07001980 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001981static struct clk_core *__clk_init_parent(struct clk_core *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -07001982{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001983 struct clk_core *ret = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001984 u8 index;
1985
1986 /* handle the trivial cases */
1987
1988 if (!clk->num_parents)
1989 goto out;
1990
1991 if (clk->num_parents == 1) {
1992 if (IS_ERR_OR_NULL(clk->parent))
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001993 clk->parent = clk_core_lookup(clk->parent_names[0]);
Mike Turquetteb24764902012-03-15 23:11:19 -07001994 ret = clk->parent;
1995 goto out;
1996 }
1997
1998 if (!clk->ops->get_parent) {
1999 WARN(!clk->ops->get_parent,
2000 "%s: multi-parent clocks must implement .get_parent\n",
2001 __func__);
2002 goto out;
2003 };
2004
2005 /*
2006 * Do our best to cache parent clocks in clk->parents. This prevents
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002007 * unnecessary and expensive lookups. We don't set clk->parent here;
2008 * that is done by the calling function.
Mike Turquetteb24764902012-03-15 23:11:19 -07002009 */
2010
2011 index = clk->ops->get_parent(clk->hw);
2012
2013 if (!clk->parents)
2014 clk->parents =
Tomasz Figa96a7ed92013-09-29 02:37:15 +02002015 kcalloc(clk->num_parents, sizeof(struct clk *),
Mike Turquetteb24764902012-03-15 23:11:19 -07002016 GFP_KERNEL);
2017
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002018 ret = clk_core_get_parent_by_index(clk, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002019
2020out:
2021 return ret;
2022}
2023
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002024static void clk_core_reparent(struct clk_core *clk,
2025 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +02002026{
2027 clk_reparent(clk, new_parent);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002028 __clk_recalc_accuracies(clk);
Mike Turquetteb24764902012-03-15 23:11:19 -07002029 __clk_recalc_rates(clk, POST_RATE_CHANGE);
2030}
2031
Mike Turquetteb24764902012-03-15 23:11:19 -07002032/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002033 * clk_has_parent - check if a clock is a possible parent for another
2034 * @clk: clock source
2035 * @parent: parent clock source
Mike Turquetteb24764902012-03-15 23:11:19 -07002036 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002037 * This function can be used in drivers that need to check that a clock can be
2038 * the parent of another without actually changing the parent.
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07002039 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002040 * Returns true if @parent is a possible parent for @clk, false otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07002041 */
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002042bool clk_has_parent(struct clk *clk, struct clk *parent)
2043{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002044 struct clk_core *core, *parent_core;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002045 unsigned int i;
2046
2047 /* NULL clocks should be nops, so return success if either is NULL. */
2048 if (!clk || !parent)
2049 return true;
2050
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002051 core = clk->core;
2052 parent_core = parent->core;
2053
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002054 /* Optimize for the case where the parent is already the parent. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002055 if (core->parent == parent_core)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002056 return true;
2057
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002058 for (i = 0; i < core->num_parents; i++)
2059 if (strcmp(core->parent_names[i], parent_core->name) == 0)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002060 return true;
2061
2062 return false;
2063}
2064EXPORT_SYMBOL_GPL(clk_has_parent);
2065
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002066static int clk_core_set_parent(struct clk_core *clk, struct clk_core *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07002067{
2068 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002069 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002070 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002071
Mike Turquette89ac8d72013-08-21 23:58:09 -07002072 if (!clk)
2073 return 0;
2074
Mike Turquetteb24764902012-03-15 23:11:19 -07002075 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07002076 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002077
2078 if (clk->parent == parent)
2079 goto out;
2080
Stephen Boydb61c43c2015-02-02 14:11:25 -08002081 /* verify ops for for multi-parent clks */
2082 if ((clk->num_parents > 1) && (!clk->ops->set_parent)) {
2083 ret = -ENOSYS;
2084 goto out;
2085 }
2086
Ulf Hansson031dcc92013-04-02 23:09:38 +02002087 /* check that we are allowed to re-parent if the clock is in use */
2088 if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) {
2089 ret = -EBUSY;
2090 goto out;
2091 }
2092
2093 /* try finding the new parent index */
2094 if (parent) {
2095 p_index = clk_fetch_parent_index(clk, parent);
2096 p_rate = parent->rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002097 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02002098 pr_debug("%s: clk %s can not be parent of clk %s\n",
2099 __func__, parent->name, clk->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002100 ret = p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002101 goto out;
2102 }
2103 }
2104
Mike Turquetteb24764902012-03-15 23:11:19 -07002105 /* propagate PRE_RATE_CHANGE notifications */
Soren Brinkmannf3aab5d2013-04-16 10:06:50 -07002106 ret = __clk_speculate_rates(clk, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002107
2108 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07002109 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07002110 goto out;
2111
Ulf Hansson031dcc92013-04-02 23:09:38 +02002112 /* do the re-parent */
2113 ret = __clk_set_parent(clk, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002114
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002115 /* propagate rate an accuracy recalculation accordingly */
2116 if (ret) {
Mike Turquetteb24764902012-03-15 23:11:19 -07002117 __clk_recalc_rates(clk, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002118 } else {
Ulf Hanssona68de8e2013-04-02 23:09:39 +02002119 __clk_recalc_rates(clk, POST_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002120 __clk_recalc_accuracies(clk);
2121 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002122
2123out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002124 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002125
2126 return ret;
2127}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002128
2129/**
2130 * clk_set_parent - switch the parent of a mux clk
2131 * @clk: the mux clk whose input we are switching
2132 * @parent: the new input to clk
2133 *
2134 * Re-parent clk to use parent as its new input source. If clk is in
2135 * prepared state, the clk will get enabled for the duration of this call. If
2136 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2137 * that, the reparenting is glitchy in hardware, etc), use the
2138 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2139 *
2140 * After successfully changing clk's parent clk_set_parent will update the
2141 * clk topology, sysfs topology and propagate rate recalculation via
2142 * __clk_recalc_rates.
2143 *
2144 * Returns 0 on success, -EERROR otherwise.
2145 */
2146int clk_set_parent(struct clk *clk, struct clk *parent)
2147{
2148 if (!clk)
2149 return 0;
2150
2151 return clk_core_set_parent(clk->core, parent ? parent->core : NULL);
2152}
Mike Turquetteb24764902012-03-15 23:11:19 -07002153EXPORT_SYMBOL_GPL(clk_set_parent);
2154
2155/**
Mike Turquettee59c5372014-02-18 21:21:25 -08002156 * clk_set_phase - adjust the phase shift of a clock signal
2157 * @clk: clock signal source
2158 * @degrees: number of degrees the signal is shifted
2159 *
2160 * Shifts the phase of a clock signal by the specified
2161 * degrees. Returns 0 on success, -EERROR otherwise.
2162 *
2163 * This function makes no distinction about the input or reference
2164 * signal that we adjust the clock signal phase against. For example
2165 * phase locked-loop clock signal generators we may shift phase with
2166 * respect to feedback clock signal input, but for other cases the
2167 * clock phase may be shifted with respect to some other, unspecified
2168 * signal.
2169 *
2170 * Additionally the concept of phase shift does not propagate through
2171 * the clock tree hierarchy, which sets it apart from clock rates and
2172 * clock accuracy. A parent clock phase attribute does not have an
2173 * impact on the phase attribute of a child clock.
2174 */
2175int clk_set_phase(struct clk *clk, int degrees)
2176{
Stephen Boyd08b95752015-02-02 14:09:43 -08002177 int ret = -EINVAL;
Mike Turquettee59c5372014-02-18 21:21:25 -08002178
2179 if (!clk)
Stephen Boyd08b95752015-02-02 14:09:43 -08002180 return 0;
Mike Turquettee59c5372014-02-18 21:21:25 -08002181
2182 /* sanity check degrees */
2183 degrees %= 360;
2184 if (degrees < 0)
2185 degrees += 360;
2186
2187 clk_prepare_lock();
2188
Stephen Boyddfc202e2015-02-02 14:37:41 -08002189 trace_clk_set_phase(clk->core, degrees);
2190
Stephen Boyd08b95752015-02-02 14:09:43 -08002191 if (clk->core->ops->set_phase)
2192 ret = clk->core->ops->set_phase(clk->core->hw, degrees);
Mike Turquettee59c5372014-02-18 21:21:25 -08002193
Stephen Boyddfc202e2015-02-02 14:37:41 -08002194 trace_clk_set_phase_complete(clk->core, degrees);
2195
Mike Turquettee59c5372014-02-18 21:21:25 -08002196 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002197 clk->core->phase = degrees;
Mike Turquettee59c5372014-02-18 21:21:25 -08002198
Mike Turquettee59c5372014-02-18 21:21:25 -08002199 clk_prepare_unlock();
2200
Mike Turquettee59c5372014-02-18 21:21:25 -08002201 return ret;
2202}
Maxime Ripard9767b042015-01-20 22:23:43 +01002203EXPORT_SYMBOL_GPL(clk_set_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08002204
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002205static int clk_core_get_phase(struct clk_core *clk)
Mike Turquettee59c5372014-02-18 21:21:25 -08002206{
2207 int ret = 0;
2208
2209 if (!clk)
2210 goto out;
2211
2212 clk_prepare_lock();
2213 ret = clk->phase;
2214 clk_prepare_unlock();
2215
2216out:
2217 return ret;
2218}
Maxime Ripard9767b042015-01-20 22:23:43 +01002219EXPORT_SYMBOL_GPL(clk_get_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08002220
2221/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002222 * clk_get_phase - return the phase shift of a clock signal
2223 * @clk: clock signal source
2224 *
2225 * Returns the phase shift of a clock node in degrees, otherwise returns
2226 * -EERROR.
2227 */
2228int clk_get_phase(struct clk *clk)
2229{
2230 if (!clk)
2231 return 0;
2232
2233 return clk_core_get_phase(clk->core);
2234}
Mike Turquetteb24764902012-03-15 23:11:19 -07002235
2236/**
Michael Turquette3d3801e2015-02-25 09:11:01 -08002237 * clk_is_match - check if two clk's point to the same hardware clock
2238 * @p: clk compared against q
2239 * @q: clk compared against p
2240 *
2241 * Returns true if the two struct clk pointers both point to the same hardware
2242 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2243 * share the same struct clk_core object.
2244 *
2245 * Returns false otherwise. Note that two NULL clks are treated as matching.
2246 */
2247bool clk_is_match(const struct clk *p, const struct clk *q)
2248{
2249 /* trivial case: identical struct clk's or both NULL */
2250 if (p == q)
2251 return true;
2252
2253 /* true if clk->core pointers match. Avoid derefing garbage */
2254 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
2255 if (p->core == q->core)
2256 return true;
2257
2258 return false;
2259}
2260EXPORT_SYMBOL_GPL(clk_is_match);
2261
2262/**
Mike Turquetteb24764902012-03-15 23:11:19 -07002263 * __clk_init - initialize the data structures in a struct clk
2264 * @dev: device initializing this clk, placeholder for now
2265 * @clk: clk being initialized
2266 *
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002267 * Initializes the lists in struct clk_core, queries the hardware for the
Mike Turquetteb24764902012-03-15 23:11:19 -07002268 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07002269 */
Michael Turquetteb09d6d92015-01-29 14:22:50 -08002270static int __clk_init(struct device *dev, struct clk *clk_user)
Mike Turquetteb24764902012-03-15 23:11:19 -07002271{
Mike Turquetted1302a32012-03-29 14:30:40 -07002272 int i, ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002273 struct clk_core *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002274 struct hlist_node *tmp2;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002275 struct clk_core *clk;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002276 unsigned long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002277
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002278 if (!clk_user)
Mike Turquetted1302a32012-03-29 14:30:40 -07002279 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07002280
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002281 clk = clk_user->core;
2282
Mike Turquetteeab89f62013-03-28 13:59:01 -07002283 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002284
2285 /* check to see if a clock with this name is already registered */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002286 if (clk_core_lookup(clk->name)) {
Mike Turquetted1302a32012-03-29 14:30:40 -07002287 pr_debug("%s: clk %s already initialized\n",
2288 __func__, clk->name);
2289 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07002290 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07002291 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002292
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002293 /* check that clk_ops are sane. See Documentation/clk.txt */
2294 if (clk->ops->set_rate &&
James Hogan71472c02013-07-29 12:25:00 +01002295 !((clk->ops->round_rate || clk->ops->determine_rate) &&
2296 clk->ops->recalc_rate)) {
2297 pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002298 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002299 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002300 goto out;
2301 }
2302
2303 if (clk->ops->set_parent && !clk->ops->get_parent) {
2304 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
2305 __func__, clk->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002306 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002307 goto out;
2308 }
2309
Stephen Boyd3fa22522014-01-15 10:47:22 -08002310 if (clk->ops->set_rate_and_parent &&
2311 !(clk->ops->set_parent && clk->ops->set_rate)) {
2312 pr_warn("%s: %s must implement .set_parent & .set_rate\n",
2313 __func__, clk->name);
2314 ret = -EINVAL;
2315 goto out;
2316 }
2317
Mike Turquetteb24764902012-03-15 23:11:19 -07002318 /* throw a WARN if any entries in parent_names are NULL */
2319 for (i = 0; i < clk->num_parents; i++)
2320 WARN(!clk->parent_names[i],
2321 "%s: invalid NULL in %s's .parent_names\n",
2322 __func__, clk->name);
2323
2324 /*
2325 * Allocate an array of struct clk *'s to avoid unnecessary string
2326 * look-ups of clk's possible parents. This can fail for clocks passed
2327 * in to clk_init during early boot; thus any access to clk->parents[]
2328 * must always check for a NULL pointer and try to populate it if
2329 * necessary.
2330 *
2331 * If clk->parents is not NULL we skip this entire block. This allows
2332 * for clock drivers to statically initialize clk->parents.
2333 */
Rajendra Nayak9ca1c5a2012-06-06 14:41:30 +05302334 if (clk->num_parents > 1 && !clk->parents) {
Tomasz Figa96a7ed92013-09-29 02:37:15 +02002335 clk->parents = kcalloc(clk->num_parents, sizeof(struct clk *),
2336 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07002337 /*
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002338 * clk_core_lookup returns NULL for parents that have not been
Mike Turquetteb24764902012-03-15 23:11:19 -07002339 * clk_init'd; thus any access to clk->parents[] must check
2340 * for a NULL pointer. We can always perform lazy lookups for
2341 * missing parents later on.
2342 */
2343 if (clk->parents)
2344 for (i = 0; i < clk->num_parents; i++)
2345 clk->parents[i] =
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002346 clk_core_lookup(clk->parent_names[i]);
Mike Turquetteb24764902012-03-15 23:11:19 -07002347 }
2348
2349 clk->parent = __clk_init_parent(clk);
2350
2351 /*
2352 * Populate clk->parent if parent has already been __clk_init'd. If
2353 * parent has not yet been __clk_init'd then place clk in the orphan
2354 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
2355 * clk list.
2356 *
2357 * Every time a new clk is clk_init'd then we walk the list of orphan
2358 * clocks and re-parent any that are children of the clock currently
2359 * being clk_init'd.
2360 */
2361 if (clk->parent)
2362 hlist_add_head(&clk->child_node,
2363 &clk->parent->children);
2364 else if (clk->flags & CLK_IS_ROOT)
2365 hlist_add_head(&clk->child_node, &clk_root_list);
2366 else
2367 hlist_add_head(&clk->child_node, &clk_orphan_list);
2368
2369 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002370 * Set clk's accuracy. The preferred method is to use
2371 * .recalc_accuracy. For simple clocks and lazy developers the default
2372 * fallback is to use the parent's accuracy. If a clock doesn't have a
2373 * parent (or is orphaned) then accuracy is set to zero (perfect
2374 * clock).
2375 */
2376 if (clk->ops->recalc_accuracy)
2377 clk->accuracy = clk->ops->recalc_accuracy(clk->hw,
2378 __clk_get_accuracy(clk->parent));
2379 else if (clk->parent)
2380 clk->accuracy = clk->parent->accuracy;
2381 else
2382 clk->accuracy = 0;
2383
2384 /*
Maxime Ripard9824cf72014-07-14 13:53:27 +02002385 * Set clk's phase.
2386 * Since a phase is by definition relative to its parent, just
2387 * query the current clock phase, or just assume it's in phase.
2388 */
2389 if (clk->ops->get_phase)
2390 clk->phase = clk->ops->get_phase(clk->hw);
2391 else
2392 clk->phase = 0;
2393
2394 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07002395 * Set clk's rate. The preferred method is to use .recalc_rate. For
2396 * simple clocks and lazy developers the default fallback is to use the
2397 * parent's rate. If a clock doesn't have a parent (or is orphaned)
2398 * then rate is set to zero.
2399 */
2400 if (clk->ops->recalc_rate)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002401 rate = clk->ops->recalc_rate(clk->hw,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002402 clk_core_get_rate_nolock(clk->parent));
Mike Turquetteb24764902012-03-15 23:11:19 -07002403 else if (clk->parent)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002404 rate = clk->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002405 else
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002406 rate = 0;
2407 clk->rate = clk->req_rate = rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002408
2409 /*
2410 * walk the list of orphan clocks and reparent any that are children of
2411 * this clock
2412 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08002413 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Alex Elder12d298862013-09-05 08:33:24 -05002414 if (orphan->num_parents && orphan->ops->get_parent) {
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002415 i = orphan->ops->get_parent(orphan->hw);
2416 if (!strcmp(clk->name, orphan->parent_names[i]))
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002417 clk_core_reparent(orphan, clk);
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002418 continue;
2419 }
2420
Mike Turquetteb24764902012-03-15 23:11:19 -07002421 for (i = 0; i < orphan->num_parents; i++)
2422 if (!strcmp(clk->name, orphan->parent_names[i])) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002423 clk_core_reparent(orphan, clk);
Mike Turquetteb24764902012-03-15 23:11:19 -07002424 break;
2425 }
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002426 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002427
2428 /*
2429 * optional platform-specific magic
2430 *
2431 * The .init callback is not used by any of the basic clock types, but
2432 * exists for weird hardware that must perform initialization magic.
2433 * Please consider other ways of solving initialization problems before
Peter Meerwald24ee1a02013-06-29 15:14:19 +02002434 * using this callback, as its use is discouraged.
Mike Turquetteb24764902012-03-15 23:11:19 -07002435 */
2436 if (clk->ops->init)
2437 clk->ops->init(clk->hw);
2438
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002439 kref_init(&clk->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07002440out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002441 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002442
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08002443 if (!ret)
2444 clk_debug_register(clk);
2445
Mike Turquetted1302a32012-03-29 14:30:40 -07002446 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07002447}
2448
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002449struct clk *__clk_create_clk(struct clk_hw *hw, const char *dev_id,
2450 const char *con_id)
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002451{
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002452 struct clk *clk;
2453
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002454 /* This is to allow this function to be chained to others */
2455 if (!hw || IS_ERR(hw))
2456 return (struct clk *) hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002457
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002458 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
2459 if (!clk)
2460 return ERR_PTR(-ENOMEM);
2461
2462 clk->core = hw->core;
2463 clk->dev_id = dev_id;
2464 clk->con_id = con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002465 clk->max_rate = ULONG_MAX;
2466
2467 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08002468 hlist_add_head(&clk->clks_node, &hw->core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002469 clk_prepare_unlock();
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002470
2471 return clk;
2472}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002473
Stephen Boyd73e0e492015-02-06 11:42:43 -08002474void __clk_free_clk(struct clk *clk)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002475{
2476 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08002477 hlist_del(&clk->clks_node);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002478 clk_prepare_unlock();
2479
2480 kfree(clk);
2481}
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002482
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002483/**
2484 * clk_register - allocate a new clock, register it and return an opaque cookie
2485 * @dev: device that is registering this clock
2486 * @hw: link to hardware-specific clock data
2487 *
2488 * clk_register is the primary interface for populating the clock tree with new
2489 * clock nodes. It returns a pointer to the newly allocated struct clk which
2490 * cannot be dereferenced by driver code but may be used in conjuction with the
2491 * rest of the clock API. In the event of an error clk_register will return an
2492 * error code; drivers must test for an error code after calling clk_register.
2493 */
2494struct clk *clk_register(struct device *dev, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07002495{
Mike Turquetted1302a32012-03-29 14:30:40 -07002496 int i, ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002497 struct clk_core *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002498
2499 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
2500 if (!clk) {
2501 pr_err("%s: could not allocate clk\n", __func__);
2502 ret = -ENOMEM;
2503 goto fail_out;
2504 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002505
Andrzej Hajda612936f2015-02-13 14:36:33 -08002506 clk->name = kstrdup_const(hw->init->name, GFP_KERNEL);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002507 if (!clk->name) {
2508 pr_err("%s: could not allocate clk->name\n", __func__);
2509 ret = -ENOMEM;
2510 goto fail_name;
2511 }
2512 clk->ops = hw->init->ops;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002513 if (dev && dev->driver)
2514 clk->owner = dev->driver->owner;
Mike Turquetteb24764902012-03-15 23:11:19 -07002515 clk->hw = hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002516 clk->flags = hw->init->flags;
2517 clk->num_parents = hw->init->num_parents;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002518 hw->core = clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07002519
Mike Turquetted1302a32012-03-29 14:30:40 -07002520 /* allocate local copy in case parent_names is __initdata */
Tomasz Figa96a7ed92013-09-29 02:37:15 +02002521 clk->parent_names = kcalloc(clk->num_parents, sizeof(char *),
2522 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07002523
Mike Turquetted1302a32012-03-29 14:30:40 -07002524 if (!clk->parent_names) {
2525 pr_err("%s: could not allocate clk->parent_names\n", __func__);
2526 ret = -ENOMEM;
2527 goto fail_parent_names;
2528 }
2529
2530
2531 /* copy each string name in case parent_names is __initdata */
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002532 for (i = 0; i < clk->num_parents; i++) {
Andrzej Hajda612936f2015-02-13 14:36:33 -08002533 clk->parent_names[i] = kstrdup_const(hw->init->parent_names[i],
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002534 GFP_KERNEL);
Mike Turquetted1302a32012-03-29 14:30:40 -07002535 if (!clk->parent_names[i]) {
2536 pr_err("%s: could not copy parent_names\n", __func__);
2537 ret = -ENOMEM;
2538 goto fail_parent_names_copy;
2539 }
2540 }
2541
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002542 INIT_HLIST_HEAD(&clk->clks);
2543
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002544 hw->clk = __clk_create_clk(hw, NULL, NULL);
2545 if (IS_ERR(hw->clk)) {
2546 pr_err("%s: could not allocate per-user clk\n", __func__);
2547 ret = PTR_ERR(hw->clk);
2548 goto fail_parent_names_copy;
2549 }
Mike Turquetted1302a32012-03-29 14:30:40 -07002550
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002551 ret = __clk_init(dev, hw->clk);
Mike Turquetted1302a32012-03-29 14:30:40 -07002552 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002553 return hw->clk;
2554
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002555 __clk_free_clk(hw->clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002556 hw->clk = NULL;
Mike Turquetted1302a32012-03-29 14:30:40 -07002557
2558fail_parent_names_copy:
2559 while (--i >= 0)
Andrzej Hajda612936f2015-02-13 14:36:33 -08002560 kfree_const(clk->parent_names[i]);
Mike Turquetted1302a32012-03-29 14:30:40 -07002561 kfree(clk->parent_names);
2562fail_parent_names:
Andrzej Hajda612936f2015-02-13 14:36:33 -08002563 kfree_const(clk->name);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002564fail_name:
Mike Turquetted1302a32012-03-29 14:30:40 -07002565 kfree(clk);
2566fail_out:
2567 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07002568}
2569EXPORT_SYMBOL_GPL(clk_register);
2570
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002571/*
2572 * Free memory allocated for a clock.
2573 * Caller must hold prepare_lock.
2574 */
2575static void __clk_release(struct kref *ref)
2576{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002577 struct clk_core *clk = container_of(ref, struct clk_core, ref);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002578 int i = clk->num_parents;
2579
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01002580 lockdep_assert_held(&prepare_lock);
2581
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002582 kfree(clk->parents);
2583 while (--i >= 0)
Andrzej Hajda612936f2015-02-13 14:36:33 -08002584 kfree_const(clk->parent_names[i]);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002585
2586 kfree(clk->parent_names);
Andrzej Hajda612936f2015-02-13 14:36:33 -08002587 kfree_const(clk->name);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002588 kfree(clk);
2589}
2590
2591/*
2592 * Empty clk_ops for unregistered clocks. These are used temporarily
2593 * after clk_unregister() was called on a clock and until last clock
2594 * consumer calls clk_put() and the struct clk object is freed.
2595 */
2596static int clk_nodrv_prepare_enable(struct clk_hw *hw)
2597{
2598 return -ENXIO;
2599}
2600
2601static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
2602{
2603 WARN_ON_ONCE(1);
2604}
2605
2606static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
2607 unsigned long parent_rate)
2608{
2609 return -ENXIO;
2610}
2611
2612static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
2613{
2614 return -ENXIO;
2615}
2616
2617static const struct clk_ops clk_nodrv_ops = {
2618 .enable = clk_nodrv_prepare_enable,
2619 .disable = clk_nodrv_disable_unprepare,
2620 .prepare = clk_nodrv_prepare_enable,
2621 .unprepare = clk_nodrv_disable_unprepare,
2622 .set_rate = clk_nodrv_set_rate,
2623 .set_parent = clk_nodrv_set_parent,
2624};
2625
Mark Brown1df5c932012-04-18 09:07:12 +01002626/**
2627 * clk_unregister - unregister a currently registered clock
2628 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01002629 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002630void clk_unregister(struct clk *clk)
2631{
2632 unsigned long flags;
2633
Stephen Boyd6314b672014-09-04 23:37:49 -07002634 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
2635 return;
2636
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002637 clk_debug_unregister(clk->core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002638
2639 clk_prepare_lock();
2640
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002641 if (clk->core->ops == &clk_nodrv_ops) {
2642 pr_err("%s: unregistered clock: %s\n", __func__,
2643 clk->core->name);
Stephen Boyd6314b672014-09-04 23:37:49 -07002644 return;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002645 }
2646 /*
2647 * Assign empty clock ops for consumers that might still hold
2648 * a reference to this clock.
2649 */
2650 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002651 clk->core->ops = &clk_nodrv_ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002652 clk_enable_unlock(flags);
2653
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002654 if (!hlist_empty(&clk->core->children)) {
2655 struct clk_core *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07002656 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002657
2658 /* Reparent all children to the orphan list. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002659 hlist_for_each_entry_safe(child, t, &clk->core->children,
2660 child_node)
2661 clk_core_set_parent(child, NULL);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002662 }
2663
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002664 hlist_del_init(&clk->core->child_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002665
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002666 if (clk->core->prepare_count)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002667 pr_warn("%s: unregistering prepared clock: %s\n",
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002668 __func__, clk->core->name);
2669 kref_put(&clk->core->ref, __clk_release);
Stephen Boyd6314b672014-09-04 23:37:49 -07002670
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002671 clk_prepare_unlock();
2672}
Mark Brown1df5c932012-04-18 09:07:12 +01002673EXPORT_SYMBOL_GPL(clk_unregister);
2674
Stephen Boyd46c87732012-09-24 13:38:04 -07002675static void devm_clk_release(struct device *dev, void *res)
2676{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002677 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07002678}
2679
2680/**
2681 * devm_clk_register - resource managed clk_register()
2682 * @dev: device that is registering this clock
2683 * @hw: link to hardware-specific clock data
2684 *
2685 * Managed clk_register(). Clocks returned from this function are
2686 * automatically clk_unregister()ed on driver detach. See clk_register() for
2687 * more information.
2688 */
2689struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
2690{
2691 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002692 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07002693
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002694 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
2695 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07002696 return ERR_PTR(-ENOMEM);
2697
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002698 clk = clk_register(dev, hw);
2699 if (!IS_ERR(clk)) {
2700 *clkp = clk;
2701 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002702 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002703 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002704 }
2705
2706 return clk;
2707}
2708EXPORT_SYMBOL_GPL(devm_clk_register);
2709
2710static int devm_clk_match(struct device *dev, void *res, void *data)
2711{
2712 struct clk *c = res;
2713 if (WARN_ON(!c))
2714 return 0;
2715 return c == data;
2716}
2717
2718/**
2719 * devm_clk_unregister - resource managed clk_unregister()
2720 * @clk: clock to unregister
2721 *
2722 * Deallocate a clock allocated with devm_clk_register(). Normally
2723 * this function will not need to be called and the resource management
2724 * code will ensure that the resource is freed.
2725 */
2726void devm_clk_unregister(struct device *dev, struct clk *clk)
2727{
2728 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
2729}
2730EXPORT_SYMBOL_GPL(devm_clk_unregister);
2731
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002732/*
2733 * clkdev helpers
2734 */
2735int __clk_get(struct clk *clk)
2736{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002737 struct clk_core *core = !clk ? NULL : clk->core;
2738
2739 if (core) {
2740 if (!try_module_get(core->owner))
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002741 return 0;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002742
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002743 kref_get(&core->ref);
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002744 }
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002745 return 1;
2746}
2747
2748void __clk_put(struct clk *clk)
2749{
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01002750 struct module *owner;
2751
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002752 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002753 return;
2754
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002755 clk_prepare_lock();
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002756
Stephen Boyd50595f82015-02-06 11:42:44 -08002757 hlist_del(&clk->clks_node);
Tomeu Vizosoec02ace2015-02-06 15:13:01 +01002758 if (clk->min_rate > clk->core->req_rate ||
2759 clk->max_rate < clk->core->req_rate)
2760 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
2761
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002762 owner = clk->core->owner;
2763 kref_put(&clk->core->ref, __clk_release);
2764
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002765 clk_prepare_unlock();
2766
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01002767 module_put(owner);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002768
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002769 kfree(clk);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002770}
2771
Mike Turquetteb24764902012-03-15 23:11:19 -07002772/*** clk rate change notifiers ***/
2773
2774/**
2775 * clk_notifier_register - add a clk rate change notifier
2776 * @clk: struct clk * to watch
2777 * @nb: struct notifier_block * with callback info
2778 *
2779 * Request notification when clk's rate changes. This uses an SRCU
2780 * notifier because we want it to block and notifier unregistrations are
2781 * uncommon. The callbacks associated with the notifier must not
2782 * re-enter into the clk framework by calling any top-level clk APIs;
2783 * this will cause a nested prepare_lock mutex.
2784 *
Soren Brinkmann5324fda2014-01-22 11:48:37 -08002785 * In all notification cases cases (pre, post and abort rate change) the
2786 * original clock rate is passed to the callback via struct
2787 * clk_notifier_data.old_rate and the new frequency is passed via struct
Mike Turquetteb24764902012-03-15 23:11:19 -07002788 * clk_notifier_data.new_rate.
2789 *
Mike Turquetteb24764902012-03-15 23:11:19 -07002790 * clk_notifier_register() must be called from non-atomic context.
2791 * Returns -EINVAL if called with null arguments, -ENOMEM upon
2792 * allocation failure; otherwise, passes along the return value of
2793 * srcu_notifier_chain_register().
2794 */
2795int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
2796{
2797 struct clk_notifier *cn;
2798 int ret = -ENOMEM;
2799
2800 if (!clk || !nb)
2801 return -EINVAL;
2802
Mike Turquetteeab89f62013-03-28 13:59:01 -07002803 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002804
2805 /* search the list of notifiers for this clk */
2806 list_for_each_entry(cn, &clk_notifier_list, node)
2807 if (cn->clk == clk)
2808 break;
2809
2810 /* if clk wasn't in the notifier list, allocate new clk_notifier */
2811 if (cn->clk != clk) {
2812 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
2813 if (!cn)
2814 goto out;
2815
2816 cn->clk = clk;
2817 srcu_init_notifier_head(&cn->notifier_head);
2818
2819 list_add(&cn->node, &clk_notifier_list);
2820 }
2821
2822 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
2823
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002824 clk->core->notifier_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07002825
2826out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002827 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002828
2829 return ret;
2830}
2831EXPORT_SYMBOL_GPL(clk_notifier_register);
2832
2833/**
2834 * clk_notifier_unregister - remove a clk rate change notifier
2835 * @clk: struct clk *
2836 * @nb: struct notifier_block * with callback info
2837 *
2838 * Request no further notification for changes to 'clk' and frees memory
2839 * allocated in clk_notifier_register.
2840 *
2841 * Returns -EINVAL if called with null arguments; otherwise, passes
2842 * along the return value of srcu_notifier_chain_unregister().
2843 */
2844int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
2845{
2846 struct clk_notifier *cn = NULL;
2847 int ret = -EINVAL;
2848
2849 if (!clk || !nb)
2850 return -EINVAL;
2851
Mike Turquetteeab89f62013-03-28 13:59:01 -07002852 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002853
2854 list_for_each_entry(cn, &clk_notifier_list, node)
2855 if (cn->clk == clk)
2856 break;
2857
2858 if (cn->clk == clk) {
2859 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
2860
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002861 clk->core->notifier_count--;
Mike Turquetteb24764902012-03-15 23:11:19 -07002862
2863 /* XXX the notifier code should handle this better */
2864 if (!cn->notifier_head.head) {
2865 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08002866 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07002867 kfree(cn);
2868 }
2869
2870 } else {
2871 ret = -ENOENT;
2872 }
2873
Mike Turquetteeab89f62013-03-28 13:59:01 -07002874 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002875
2876 return ret;
2877}
2878EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05002879
2880#ifdef CONFIG_OF
2881/**
2882 * struct of_clk_provider - Clock provider registration structure
2883 * @link: Entry in global list of clock providers
2884 * @node: Pointer to device tree node of clock provider
2885 * @get: Get clock callback. Returns NULL or a struct clk for the
2886 * given clock specifier
2887 * @data: context pointer to be passed into @get callback
2888 */
2889struct of_clk_provider {
2890 struct list_head link;
2891
2892 struct device_node *node;
2893 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
2894 void *data;
2895};
2896
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302897static const struct of_device_id __clk_of_table_sentinel
2898 __used __section(__clk_of_table_end);
2899
Grant Likely766e6a42012-04-09 14:50:06 -05002900static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002901static DEFINE_MUTEX(of_clk_mutex);
2902
Grant Likely766e6a42012-04-09 14:50:06 -05002903struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
2904 void *data)
2905{
2906 return data;
2907}
2908EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
2909
Shawn Guo494bfec2012-08-22 21:36:27 +08002910struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
2911{
2912 struct clk_onecell_data *clk_data = data;
2913 unsigned int idx = clkspec->args[0];
2914
2915 if (idx >= clk_data->clk_num) {
2916 pr_err("%s: invalid clock index %d\n", __func__, idx);
2917 return ERR_PTR(-EINVAL);
2918 }
2919
2920 return clk_data->clks[idx];
2921}
2922EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
2923
Grant Likely766e6a42012-04-09 14:50:06 -05002924/**
2925 * of_clk_add_provider() - Register a clock provider for a node
2926 * @np: Device node pointer associated with clock provider
2927 * @clk_src_get: callback for decoding clock
2928 * @data: context pointer for @clk_src_get callback.
2929 */
2930int of_clk_add_provider(struct device_node *np,
2931 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
2932 void *data),
2933 void *data)
2934{
2935 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002936 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05002937
2938 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
2939 if (!cp)
2940 return -ENOMEM;
2941
2942 cp->node = of_node_get(np);
2943 cp->data = data;
2944 cp->get = clk_src_get;
2945
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002946 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002947 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002948 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002949 pr_debug("Added clock from %s\n", np->full_name);
2950
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002951 ret = of_clk_set_defaults(np, true);
2952 if (ret < 0)
2953 of_clk_del_provider(np);
2954
2955 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05002956}
2957EXPORT_SYMBOL_GPL(of_clk_add_provider);
2958
2959/**
2960 * of_clk_del_provider() - Remove a previously registered clock provider
2961 * @np: Device node pointer associated with clock provider
2962 */
2963void of_clk_del_provider(struct device_node *np)
2964{
2965 struct of_clk_provider *cp;
2966
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002967 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002968 list_for_each_entry(cp, &of_clk_providers, link) {
2969 if (cp->node == np) {
2970 list_del(&cp->link);
2971 of_node_put(cp->node);
2972 kfree(cp);
2973 break;
2974 }
2975 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002976 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002977}
2978EXPORT_SYMBOL_GPL(of_clk_del_provider);
2979
Stephen Boyd73e0e492015-02-06 11:42:43 -08002980struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec,
2981 const char *dev_id, const char *con_id)
Grant Likely766e6a42012-04-09 14:50:06 -05002982{
2983 struct of_clk_provider *provider;
Jean-Francois Moinea34cd462013-11-25 19:47:04 +01002984 struct clk *clk = ERR_PTR(-EPROBE_DEFER);
Grant Likely766e6a42012-04-09 14:50:06 -05002985
Stephen Boyd306c3422015-02-05 15:39:11 -08002986 if (!clkspec)
2987 return ERR_PTR(-EINVAL);
2988
Grant Likely766e6a42012-04-09 14:50:06 -05002989 /* Check if we have such a provider in our array */
Stephen Boyd306c3422015-02-05 15:39:11 -08002990 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002991 list_for_each_entry(provider, &of_clk_providers, link) {
2992 if (provider->node == clkspec->np)
2993 clk = provider->get(clkspec, provider->data);
Stephen Boyd73e0e492015-02-06 11:42:43 -08002994 if (!IS_ERR(clk)) {
2995 clk = __clk_create_clk(__clk_get_hw(clk), dev_id,
2996 con_id);
2997
2998 if (!IS_ERR(clk) && !__clk_get(clk)) {
2999 __clk_free_clk(clk);
3000 clk = ERR_PTR(-ENOENT);
3001 }
3002
Grant Likely766e6a42012-04-09 14:50:06 -05003003 break;
Stephen Boyd73e0e492015-02-06 11:42:43 -08003004 }
Grant Likely766e6a42012-04-09 14:50:06 -05003005 }
Stephen Boyd306c3422015-02-05 15:39:11 -08003006 mutex_unlock(&of_clk_mutex);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003007
3008 return clk;
3009}
3010
Stephen Boyd306c3422015-02-05 15:39:11 -08003011/**
3012 * of_clk_get_from_provider() - Lookup a clock from a clock provider
3013 * @clkspec: pointer to a clock specifier data structure
3014 *
3015 * This function looks up a struct clk from the registered list of clock
3016 * providers, an input is a clock specifier data structure as returned
3017 * from the of_parse_phandle_with_args() function call.
3018 */
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003019struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
3020{
Stephen Boyd306c3422015-02-05 15:39:11 -08003021 return __of_clk_get_from_provider(clkspec, NULL, __func__);
Grant Likely766e6a42012-04-09 14:50:06 -05003022}
3023
Mike Turquettef6102742013-10-07 23:12:13 -07003024int of_clk_get_parent_count(struct device_node *np)
3025{
3026 return of_count_phandle_with_args(np, "clocks", "#clock-cells");
3027}
3028EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
3029
Grant Likely766e6a42012-04-09 14:50:06 -05003030const char *of_clk_get_parent_name(struct device_node *np, int index)
3031{
3032 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003033 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05003034 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003035 const __be32 *vp;
3036 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05003037 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003038 int count;
Grant Likely766e6a42012-04-09 14:50:06 -05003039
3040 if (index < 0)
3041 return NULL;
3042
3043 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
3044 &clkspec);
3045 if (rc)
3046 return NULL;
3047
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003048 index = clkspec.args_count ? clkspec.args[0] : 0;
3049 count = 0;
3050
3051 /* if there is an indices property, use it to transfer the index
3052 * specified into an array offset for the clock-output-names property.
3053 */
3054 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
3055 if (index == pv) {
3056 index = count;
3057 break;
3058 }
3059 count++;
3060 }
3061
Grant Likely766e6a42012-04-09 14:50:06 -05003062 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003063 index,
Grant Likely766e6a42012-04-09 14:50:06 -05003064 &clk_name) < 0)
3065 clk_name = clkspec.np->name;
3066
3067 of_node_put(clkspec.np);
3068 return clk_name;
3069}
3070EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
3071
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003072struct clock_provider {
3073 of_clk_init_cb_t clk_init_cb;
3074 struct device_node *np;
3075 struct list_head node;
3076};
3077
3078static LIST_HEAD(clk_provider_list);
3079
3080/*
3081 * This function looks for a parent clock. If there is one, then it
3082 * checks that the provider for this parent clock was initialized, in
3083 * this case the parent clock will be ready.
3084 */
3085static int parent_ready(struct device_node *np)
3086{
3087 int i = 0;
3088
3089 while (true) {
3090 struct clk *clk = of_clk_get(np, i);
3091
3092 /* this parent is ready we can check the next one */
3093 if (!IS_ERR(clk)) {
3094 clk_put(clk);
3095 i++;
3096 continue;
3097 }
3098
3099 /* at least one parent is not ready, we exit now */
3100 if (PTR_ERR(clk) == -EPROBE_DEFER)
3101 return 0;
3102
3103 /*
3104 * Here we make assumption that the device tree is
3105 * written correctly. So an error means that there is
3106 * no more parent. As we didn't exit yet, then the
3107 * previous parent are ready. If there is no clock
3108 * parent, no need to wait for them, then we can
3109 * consider their absence as being ready
3110 */
3111 return 1;
3112 }
3113}
3114
Grant Likely766e6a42012-04-09 14:50:06 -05003115/**
3116 * of_clk_init() - Scan and init clock providers from the DT
3117 * @matches: array of compatible values and init functions for providers.
3118 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003119 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01003120 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003121 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05003122 */
3123void __init of_clk_init(const struct of_device_id *matches)
3124{
Alex Elder7f7ed582013-08-22 11:31:31 -05003125 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05003126 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003127 struct clock_provider *clk_provider, *next;
3128 bool is_init_done;
3129 bool force = false;
Grant Likely766e6a42012-04-09 14:50:06 -05003130
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05303131 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03003132 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05303133
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003134 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05003135 for_each_matching_node_and_match(np, matches, &match) {
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003136 struct clock_provider *parent =
3137 kzalloc(sizeof(struct clock_provider), GFP_KERNEL);
3138
3139 parent->clk_init_cb = match->data;
3140 parent->np = np;
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01003141 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003142 }
3143
3144 while (!list_empty(&clk_provider_list)) {
3145 is_init_done = false;
3146 list_for_each_entry_safe(clk_provider, next,
3147 &clk_provider_list, node) {
3148 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02003149
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003150 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02003151 of_clk_set_defaults(clk_provider->np, true);
3152
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003153 list_del(&clk_provider->node);
3154 kfree(clk_provider);
3155 is_init_done = true;
3156 }
3157 }
3158
3159 /*
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01003160 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003161 * remaining providers during the last loop, so now we
3162 * initialize all the remaining ones unconditionally
3163 * in case the clock parent was not mandatory
3164 */
3165 if (!is_init_done)
3166 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05003167 }
3168}
3169#endif