blob: 4e9ff928ef88ddbe500cbfc8d78fbf22692aa97c [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>
Stephen Boyd562ef0b2015-05-01 12:16:14 -070024#include <linux/clkdev.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070025
Sylwester Nawrockid6782c22013-08-23 17:03:43 +020026#include "clk.h"
27
Mike Turquetteb24764902012-03-15 23:11:19 -070028static DEFINE_SPINLOCK(enable_lock);
29static DEFINE_MUTEX(prepare_lock);
30
Mike Turquette533ddeb2013-03-28 13:59:02 -070031static struct task_struct *prepare_owner;
32static struct task_struct *enable_owner;
33
34static int prepare_refcnt;
35static int enable_refcnt;
36
Mike Turquetteb24764902012-03-15 23:11:19 -070037static HLIST_HEAD(clk_root_list);
38static HLIST_HEAD(clk_orphan_list);
39static LIST_HEAD(clk_notifier_list);
40
Michael Turquetteb09d6d92015-01-29 14:22:50 -080041/*** private data structures ***/
42
43struct clk_core {
44 const char *name;
45 const struct clk_ops *ops;
46 struct clk_hw *hw;
47 struct module *owner;
48 struct clk_core *parent;
49 const char **parent_names;
50 struct clk_core **parents;
51 u8 num_parents;
52 u8 new_parent_index;
53 unsigned long rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010054 unsigned long req_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080055 unsigned long new_rate;
56 struct clk_core *new_parent;
57 struct clk_core *new_child;
58 unsigned long flags;
59 unsigned int enable_count;
60 unsigned int prepare_count;
61 unsigned long accuracy;
62 int phase;
63 struct hlist_head children;
64 struct hlist_node child_node;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010065 struct hlist_head clks;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080066 unsigned int notifier_count;
67#ifdef CONFIG_DEBUG_FS
68 struct dentry *dentry;
Maxime Coquelin8c9a8a82015-06-10 13:28:27 +020069 struct hlist_node debug_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080070#endif
71 struct kref ref;
72};
73
Stephen Boyddfc202e2015-02-02 14:37:41 -080074#define CREATE_TRACE_POINTS
75#include <trace/events/clk.h>
76
Michael Turquetteb09d6d92015-01-29 14:22:50 -080077struct clk {
78 struct clk_core *core;
79 const char *dev_id;
80 const char *con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010081 unsigned long min_rate;
82 unsigned long max_rate;
Stephen Boyd50595f82015-02-06 11:42:44 -080083 struct hlist_node clks_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080084};
85
Mike Turquetteeab89f62013-03-28 13:59:01 -070086/*** locking ***/
87static void clk_prepare_lock(void)
88{
Mike Turquette533ddeb2013-03-28 13:59:02 -070089 if (!mutex_trylock(&prepare_lock)) {
90 if (prepare_owner == current) {
91 prepare_refcnt++;
92 return;
93 }
94 mutex_lock(&prepare_lock);
95 }
96 WARN_ON_ONCE(prepare_owner != NULL);
97 WARN_ON_ONCE(prepare_refcnt != 0);
98 prepare_owner = current;
99 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700100}
101
102static void clk_prepare_unlock(void)
103{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700104 WARN_ON_ONCE(prepare_owner != current);
105 WARN_ON_ONCE(prepare_refcnt == 0);
106
107 if (--prepare_refcnt)
108 return;
109 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700110 mutex_unlock(&prepare_lock);
111}
112
113static unsigned long clk_enable_lock(void)
114{
115 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -0700116
117 if (!spin_trylock_irqsave(&enable_lock, flags)) {
118 if (enable_owner == current) {
119 enable_refcnt++;
120 return flags;
121 }
122 spin_lock_irqsave(&enable_lock, flags);
123 }
124 WARN_ON_ONCE(enable_owner != NULL);
125 WARN_ON_ONCE(enable_refcnt != 0);
126 enable_owner = current;
127 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700128 return flags;
129}
130
131static void clk_enable_unlock(unsigned long flags)
132{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700133 WARN_ON_ONCE(enable_owner != current);
134 WARN_ON_ONCE(enable_refcnt == 0);
135
136 if (--enable_refcnt)
137 return;
138 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700139 spin_unlock_irqrestore(&enable_lock, flags);
140}
141
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700142static bool clk_core_is_prepared(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530143{
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700144 /*
145 * .is_prepared is optional for clocks that can prepare
146 * fall back to software usage counter if it is missing
147 */
148 if (!core->ops->is_prepared)
149 return core->prepare_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530150
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700151 return core->ops->is_prepared(core->hw);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530152}
153
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700154static bool clk_core_is_enabled(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530155{
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700156 /*
157 * .is_enabled is only mandatory for clocks that gate
158 * fall back to software usage counter if .is_enabled is missing
159 */
160 if (!core->ops->is_enabled)
161 return core->enable_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530162
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700163 return core->ops->is_enabled(core->hw);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530164}
165
Stephen Boydd6968fc2015-04-30 13:54:13 -0700166static void clk_unprepare_unused_subtree(struct clk_core *core)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100167{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100168 struct clk_core *child;
Ulf Hansson1c155b32013-03-12 20:26:03 +0100169
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100170 lockdep_assert_held(&prepare_lock);
171
Stephen Boydd6968fc2015-04-30 13:54:13 -0700172 hlist_for_each_entry(child, &core->children, child_node)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100173 clk_unprepare_unused_subtree(child);
174
Stephen Boydd6968fc2015-04-30 13:54:13 -0700175 if (core->prepare_count)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100176 return;
177
Stephen Boydd6968fc2015-04-30 13:54:13 -0700178 if (core->flags & CLK_IGNORE_UNUSED)
Ulf Hansson1c155b32013-03-12 20:26:03 +0100179 return;
180
Stephen Boydd6968fc2015-04-30 13:54:13 -0700181 if (clk_core_is_prepared(core)) {
182 trace_clk_unprepare(core);
183 if (core->ops->unprepare_unused)
184 core->ops->unprepare_unused(core->hw);
185 else if (core->ops->unprepare)
186 core->ops->unprepare(core->hw);
187 trace_clk_unprepare_complete(core);
Ulf Hansson3cc82472013-03-12 20:26:04 +0100188 }
Ulf Hansson1c155b32013-03-12 20:26:03 +0100189}
190
Stephen Boydd6968fc2015-04-30 13:54:13 -0700191static void clk_disable_unused_subtree(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700192{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100193 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700194 unsigned long flags;
195
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100196 lockdep_assert_held(&prepare_lock);
197
Stephen Boydd6968fc2015-04-30 13:54:13 -0700198 hlist_for_each_entry(child, &core->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -0700199 clk_disable_unused_subtree(child);
200
Mike Turquetteeab89f62013-03-28 13:59:01 -0700201 flags = clk_enable_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700202
Stephen Boydd6968fc2015-04-30 13:54:13 -0700203 if (core->enable_count)
Mike Turquetteb24764902012-03-15 23:11:19 -0700204 goto unlock_out;
205
Stephen Boydd6968fc2015-04-30 13:54:13 -0700206 if (core->flags & CLK_IGNORE_UNUSED)
Mike Turquetteb24764902012-03-15 23:11:19 -0700207 goto unlock_out;
208
Mike Turquette7c045a52012-12-04 11:00:35 -0800209 /*
210 * some gate clocks have special needs during the disable-unused
211 * sequence. call .disable_unused if available, otherwise fall
212 * back to .disable
213 */
Stephen Boydd6968fc2015-04-30 13:54:13 -0700214 if (clk_core_is_enabled(core)) {
215 trace_clk_disable(core);
216 if (core->ops->disable_unused)
217 core->ops->disable_unused(core->hw);
218 else if (core->ops->disable)
219 core->ops->disable(core->hw);
220 trace_clk_disable_complete(core);
Mike Turquette7c045a52012-12-04 11:00:35 -0800221 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700222
223unlock_out:
Mike Turquetteeab89f62013-03-28 13:59:01 -0700224 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700225}
226
Olof Johansson1e435252013-04-27 14:10:18 -0700227static bool clk_ignore_unused;
228static int __init clk_ignore_unused_setup(char *__unused)
229{
230 clk_ignore_unused = true;
231 return 1;
232}
233__setup("clk_ignore_unused", clk_ignore_unused_setup);
234
Mike Turquetteb24764902012-03-15 23:11:19 -0700235static int clk_disable_unused(void)
236{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700237 struct clk_core *core;
Mike Turquetteb24764902012-03-15 23:11:19 -0700238
Olof Johansson1e435252013-04-27 14:10:18 -0700239 if (clk_ignore_unused) {
240 pr_warn("clk: Not disabling unused clocks\n");
241 return 0;
242 }
243
Mike Turquetteeab89f62013-03-28 13:59:01 -0700244 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700245
Stephen Boydd6968fc2015-04-30 13:54:13 -0700246 hlist_for_each_entry(core, &clk_root_list, child_node)
247 clk_disable_unused_subtree(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700248
Stephen Boydd6968fc2015-04-30 13:54:13 -0700249 hlist_for_each_entry(core, &clk_orphan_list, child_node)
250 clk_disable_unused_subtree(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700251
Stephen Boydd6968fc2015-04-30 13:54:13 -0700252 hlist_for_each_entry(core, &clk_root_list, child_node)
253 clk_unprepare_unused_subtree(core);
Ulf Hansson1c155b32013-03-12 20:26:03 +0100254
Stephen Boydd6968fc2015-04-30 13:54:13 -0700255 hlist_for_each_entry(core, &clk_orphan_list, child_node)
256 clk_unprepare_unused_subtree(core);
Ulf Hansson1c155b32013-03-12 20:26:03 +0100257
Mike Turquetteeab89f62013-03-28 13:59:01 -0700258 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700259
260 return 0;
261}
Saravana Kannand41d5802013-05-09 11:35:01 -0700262late_initcall_sync(clk_disable_unused);
Mike Turquetteb24764902012-03-15 23:11:19 -0700263
264/*** helper functions ***/
265
Russ Dill65800b22012-11-26 11:20:09 -0800266const char *__clk_get_name(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700267{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100268 return !clk ? NULL : clk->core->name;
Mike Turquetteb24764902012-03-15 23:11:19 -0700269}
Niels de Vos48950842012-12-13 13:12:25 +0100270EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700271
Russ Dill65800b22012-11-26 11:20:09 -0800272struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700273{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100274 return !clk ? NULL : clk->core->hw;
Mike Turquetteb24764902012-03-15 23:11:19 -0700275}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800276EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700277
Russ Dill65800b22012-11-26 11:20:09 -0800278u8 __clk_get_num_parents(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700279{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100280 return !clk ? 0 : clk->core->num_parents;
Mike Turquetteb24764902012-03-15 23:11:19 -0700281}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800282EXPORT_SYMBOL_GPL(__clk_get_num_parents);
Mike Turquetteb24764902012-03-15 23:11:19 -0700283
Russ Dill65800b22012-11-26 11:20:09 -0800284struct clk *__clk_get_parent(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700285{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100286 if (!clk)
287 return NULL;
288
289 /* TODO: Create a per-user clk and change callers to call clk_put */
290 return !clk->core->parent ? NULL : clk->core->parent->hw->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700291}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800292EXPORT_SYMBOL_GPL(__clk_get_parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700293
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700294static struct clk_core *__clk_lookup_subtree(const char *name,
295 struct clk_core *core)
296{
297 struct clk_core *child;
298 struct clk_core *ret;
299
300 if (!strcmp(core->name, name))
301 return core;
302
303 hlist_for_each_entry(child, &core->children, child_node) {
304 ret = __clk_lookup_subtree(name, child);
305 if (ret)
306 return ret;
307 }
308
309 return NULL;
310}
311
312static struct clk_core *clk_core_lookup(const char *name)
313{
314 struct clk_core *root_clk;
315 struct clk_core *ret;
316
317 if (!name)
318 return NULL;
319
320 /* search the 'proper' clk tree first */
321 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
322 ret = __clk_lookup_subtree(name, root_clk);
323 if (ret)
324 return ret;
325 }
326
327 /* if not found, then search the orphan tree */
328 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
329 ret = __clk_lookup_subtree(name, root_clk);
330 if (ret)
331 return ret;
332 }
333
334 return NULL;
335}
336
Stephen Boydd6968fc2015-04-30 13:54:13 -0700337static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100338 u8 index)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100339{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700340 if (!core || index >= core->num_parents)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100341 return NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -0700342 else if (!core->parents)
343 return clk_core_lookup(core->parent_names[index]);
344 else if (!core->parents[index])
345 return core->parents[index] =
346 clk_core_lookup(core->parent_names[index]);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100347 else
Stephen Boydd6968fc2015-04-30 13:54:13 -0700348 return core->parents[index];
James Hogan7ef3dcc2013-07-29 12:24:58 +0100349}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100350
351struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
352{
353 struct clk_core *parent;
354
355 if (!clk)
356 return NULL;
357
358 parent = clk_core_get_parent_by_index(clk->core, index);
359
360 return !parent ? NULL : parent->hw->clk;
361}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800362EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
James Hogan7ef3dcc2013-07-29 12:24:58 +0100363
Russ Dill65800b22012-11-26 11:20:09 -0800364unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700365{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100366 return !clk ? 0 : clk->core->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700367}
368
Stephen Boydd6968fc2015-04-30 13:54:13 -0700369static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700370{
371 unsigned long ret;
372
Stephen Boydd6968fc2015-04-30 13:54:13 -0700373 if (!core) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530374 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700375 goto out;
376 }
377
Stephen Boydd6968fc2015-04-30 13:54:13 -0700378 ret = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700379
Stephen Boydd6968fc2015-04-30 13:54:13 -0700380 if (core->flags & CLK_IS_ROOT)
Mike Turquetteb24764902012-03-15 23:11:19 -0700381 goto out;
382
Stephen Boydd6968fc2015-04-30 13:54:13 -0700383 if (!core->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530384 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700385
386out:
387 return ret;
388}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100389
390unsigned long __clk_get_rate(struct clk *clk)
391{
392 if (!clk)
393 return 0;
394
395 return clk_core_get_rate_nolock(clk->core);
396}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800397EXPORT_SYMBOL_GPL(__clk_get_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700398
Stephen Boydd6968fc2015-04-30 13:54:13 -0700399static unsigned long __clk_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100400{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700401 if (!core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100402 return 0;
403
Stephen Boydd6968fc2015-04-30 13:54:13 -0700404 return core->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100405}
406
Russ Dill65800b22012-11-26 11:20:09 -0800407unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700408{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100409 return !clk ? 0 : clk->core->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700410}
Thierry Redingb05c6832013-09-03 09:43:51 +0200411EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700412
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100413bool __clk_is_prepared(struct clk *clk)
414{
415 if (!clk)
416 return false;
417
418 return clk_core_is_prepared(clk->core);
419}
420
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100421bool __clk_is_enabled(struct clk *clk)
422{
423 if (!clk)
424 return false;
425
426 return clk_core_is_enabled(clk->core);
427}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800428EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700429
Stephen Boyd15a02c12015-01-19 18:05:28 -0800430static bool mux_is_better_rate(unsigned long rate, unsigned long now,
431 unsigned long best, unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100432{
Stephen Boyd15a02c12015-01-19 18:05:28 -0800433 if (flags & CLK_MUX_ROUND_CLOSEST)
434 return abs(now - rate) < abs(best - rate);
435
436 return now <= rate && now > best;
437}
438
Boris Brezillon0817b622015-07-07 20:48:08 +0200439static int
440clk_mux_determine_rate_flags(struct clk_hw *hw, struct clk_rate_request *req,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800441 unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100442{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100443 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
Boris Brezillon0817b622015-07-07 20:48:08 +0200444 int i, num_parents, ret;
445 unsigned long best = 0;
446 struct clk_rate_request parent_req = *req;
James Hogane366fdd2013-07-29 12:25:02 +0100447
448 /* if NO_REPARENT flag set, pass through to current parent */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100449 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
450 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200451 if (core->flags & CLK_SET_RATE_PARENT) {
452 ret = __clk_determine_rate(parent ? parent->hw : NULL,
453 &parent_req);
454 if (ret)
455 return ret;
456
457 best = parent_req.rate;
458 } else if (parent) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100459 best = clk_core_get_rate_nolock(parent);
Boris Brezillon0817b622015-07-07 20:48:08 +0200460 } else {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100461 best = clk_core_get_rate_nolock(core);
Boris Brezillon0817b622015-07-07 20:48:08 +0200462 }
463
James Hogane366fdd2013-07-29 12:25:02 +0100464 goto out;
465 }
466
467 /* find the parent that can provide the fastest rate <= rate */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100468 num_parents = core->num_parents;
James Hogane366fdd2013-07-29 12:25:02 +0100469 for (i = 0; i < num_parents; i++) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100470 parent = clk_core_get_parent_by_index(core, i);
James Hogane366fdd2013-07-29 12:25:02 +0100471 if (!parent)
472 continue;
Boris Brezillon0817b622015-07-07 20:48:08 +0200473
474 if (core->flags & CLK_SET_RATE_PARENT) {
475 parent_req = *req;
476 ret = __clk_determine_rate(parent->hw, &parent_req);
477 if (ret)
478 continue;
479 } else {
480 parent_req.rate = clk_core_get_rate_nolock(parent);
481 }
482
483 if (mux_is_better_rate(req->rate, parent_req.rate,
484 best, flags)) {
James Hogane366fdd2013-07-29 12:25:02 +0100485 best_parent = parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200486 best = parent_req.rate;
James Hogane366fdd2013-07-29 12:25:02 +0100487 }
488 }
489
490out:
491 if (best_parent)
Boris Brezillon0817b622015-07-07 20:48:08 +0200492 req->best_parent_hw = best_parent->hw;
493 req->best_parent_rate = best;
494 req->rate = best;
James Hogane366fdd2013-07-29 12:25:02 +0100495
Boris Brezillon0817b622015-07-07 20:48:08 +0200496 return 0;
James Hogane366fdd2013-07-29 12:25:02 +0100497}
Stephen Boyd15a02c12015-01-19 18:05:28 -0800498
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100499struct clk *__clk_lookup(const char *name)
500{
501 struct clk_core *core = clk_core_lookup(name);
502
503 return !core ? NULL : core->hw->clk;
504}
505
Stephen Boydd6968fc2015-04-30 13:54:13 -0700506static void clk_core_get_boundaries(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100507 unsigned long *min_rate,
508 unsigned long *max_rate)
509{
510 struct clk *clk_user;
511
512 *min_rate = 0;
513 *max_rate = ULONG_MAX;
514
Stephen Boydd6968fc2015-04-30 13:54:13 -0700515 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100516 *min_rate = max(*min_rate, clk_user->min_rate);
517
Stephen Boydd6968fc2015-04-30 13:54:13 -0700518 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100519 *max_rate = min(*max_rate, clk_user->max_rate);
520}
521
Stephen Boyd15a02c12015-01-19 18:05:28 -0800522/*
523 * Helper for finding best parent to provide a given frequency. This can be used
524 * directly as a determine_rate callback (e.g. for a mux), or from a more
525 * complex clock that may combine a mux with other operations.
526 */
Boris Brezillon0817b622015-07-07 20:48:08 +0200527int __clk_mux_determine_rate(struct clk_hw *hw,
528 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800529{
Boris Brezillon0817b622015-07-07 20:48:08 +0200530 return clk_mux_determine_rate_flags(hw, req, 0);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800531}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800532EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100533
Boris Brezillon0817b622015-07-07 20:48:08 +0200534int __clk_mux_determine_rate_closest(struct clk_hw *hw,
535 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800536{
Boris Brezillon0817b622015-07-07 20:48:08 +0200537 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800538}
539EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
540
Mike Turquetteb24764902012-03-15 23:11:19 -0700541/*** clk api ***/
542
Stephen Boydd6968fc2015-04-30 13:54:13 -0700543static void clk_core_unprepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700544{
Stephen Boyda6334722015-05-06 17:00:54 -0700545 lockdep_assert_held(&prepare_lock);
546
Stephen Boydd6968fc2015-04-30 13:54:13 -0700547 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700548 return;
549
Stephen Boydd6968fc2015-04-30 13:54:13 -0700550 if (WARN_ON(core->prepare_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700551 return;
552
Stephen Boydd6968fc2015-04-30 13:54:13 -0700553 if (--core->prepare_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700554 return;
555
Stephen Boydd6968fc2015-04-30 13:54:13 -0700556 WARN_ON(core->enable_count > 0);
Mike Turquetteb24764902012-03-15 23:11:19 -0700557
Stephen Boydd6968fc2015-04-30 13:54:13 -0700558 trace_clk_unprepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800559
Stephen Boydd6968fc2015-04-30 13:54:13 -0700560 if (core->ops->unprepare)
561 core->ops->unprepare(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700562
Stephen Boydd6968fc2015-04-30 13:54:13 -0700563 trace_clk_unprepare_complete(core);
564 clk_core_unprepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700565}
566
567/**
568 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200569 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700570 *
571 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
572 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
573 * if the operation may sleep. One example is a clk which is accessed over
574 * I2c. In the complex case a clk gate operation may require a fast and a slow
575 * part. It is this reason that clk_unprepare and clk_disable are not mutually
576 * exclusive. In fact clk_disable must be called before clk_unprepare.
577 */
578void clk_unprepare(struct clk *clk)
579{
Stephen Boyd63589e92014-03-26 16:06:37 -0700580 if (IS_ERR_OR_NULL(clk))
581 return;
582
Mike Turquetteeab89f62013-03-28 13:59:01 -0700583 clk_prepare_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100584 clk_core_unprepare(clk->core);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700585 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700586}
587EXPORT_SYMBOL_GPL(clk_unprepare);
588
Stephen Boydd6968fc2015-04-30 13:54:13 -0700589static int clk_core_prepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700590{
591 int ret = 0;
592
Stephen Boyda6334722015-05-06 17:00:54 -0700593 lockdep_assert_held(&prepare_lock);
594
Stephen Boydd6968fc2015-04-30 13:54:13 -0700595 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700596 return 0;
597
Stephen Boydd6968fc2015-04-30 13:54:13 -0700598 if (core->prepare_count == 0) {
599 ret = clk_core_prepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700600 if (ret)
601 return ret;
602
Stephen Boydd6968fc2015-04-30 13:54:13 -0700603 trace_clk_prepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800604
Stephen Boydd6968fc2015-04-30 13:54:13 -0700605 if (core->ops->prepare)
606 ret = core->ops->prepare(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800607
Stephen Boydd6968fc2015-04-30 13:54:13 -0700608 trace_clk_prepare_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800609
610 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -0700611 clk_core_unprepare(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800612 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700613 }
614 }
615
Stephen Boydd6968fc2015-04-30 13:54:13 -0700616 core->prepare_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700617
618 return 0;
619}
620
621/**
622 * clk_prepare - prepare a clock source
623 * @clk: the clk being prepared
624 *
625 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
626 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
627 * operation may sleep. One example is a clk which is accessed over I2c. In
628 * the complex case a clk ungate operation may require a fast and a slow part.
629 * It is this reason that clk_prepare and clk_enable are not mutually
630 * exclusive. In fact clk_prepare must be called before clk_enable.
631 * Returns 0 on success, -EERROR otherwise.
632 */
633int clk_prepare(struct clk *clk)
634{
635 int ret;
636
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100637 if (!clk)
638 return 0;
639
Mike Turquetteeab89f62013-03-28 13:59:01 -0700640 clk_prepare_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100641 ret = clk_core_prepare(clk->core);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700642 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700643
644 return ret;
645}
646EXPORT_SYMBOL_GPL(clk_prepare);
647
Stephen Boydd6968fc2015-04-30 13:54:13 -0700648static void clk_core_disable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700649{
Stephen Boyda6334722015-05-06 17:00:54 -0700650 lockdep_assert_held(&enable_lock);
651
Stephen Boydd6968fc2015-04-30 13:54:13 -0700652 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700653 return;
654
Stephen Boydd6968fc2015-04-30 13:54:13 -0700655 if (WARN_ON(core->enable_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700656 return;
657
Stephen Boydd6968fc2015-04-30 13:54:13 -0700658 if (--core->enable_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700659 return;
660
Stephen Boydd6968fc2015-04-30 13:54:13 -0700661 trace_clk_disable(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800662
Stephen Boydd6968fc2015-04-30 13:54:13 -0700663 if (core->ops->disable)
664 core->ops->disable(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700665
Stephen Boydd6968fc2015-04-30 13:54:13 -0700666 trace_clk_disable_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800667
Stephen Boydd6968fc2015-04-30 13:54:13 -0700668 clk_core_disable(core->parent);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100669}
670
Mike Turquetteb24764902012-03-15 23:11:19 -0700671/**
672 * clk_disable - gate a clock
673 * @clk: the clk being gated
674 *
675 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
676 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
677 * clk if the operation is fast and will never sleep. One example is a
678 * SoC-internal clk which is controlled via simple register writes. In the
679 * complex case a clk gate operation may require a fast and a slow part. It is
680 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
681 * In fact clk_disable must be called before clk_unprepare.
682 */
683void clk_disable(struct clk *clk)
684{
685 unsigned long flags;
686
Stephen Boyd63589e92014-03-26 16:06:37 -0700687 if (IS_ERR_OR_NULL(clk))
688 return;
689
Mike Turquetteeab89f62013-03-28 13:59:01 -0700690 flags = clk_enable_lock();
Dong Aisheng864e1602015-04-30 14:02:19 -0700691 clk_core_disable(clk->core);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700692 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700693}
694EXPORT_SYMBOL_GPL(clk_disable);
695
Stephen Boydd6968fc2015-04-30 13:54:13 -0700696static int clk_core_enable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700697{
698 int ret = 0;
699
Stephen Boyda6334722015-05-06 17:00:54 -0700700 lockdep_assert_held(&enable_lock);
701
Stephen Boydd6968fc2015-04-30 13:54:13 -0700702 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700703 return 0;
704
Stephen Boydd6968fc2015-04-30 13:54:13 -0700705 if (WARN_ON(core->prepare_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700706 return -ESHUTDOWN;
707
Stephen Boydd6968fc2015-04-30 13:54:13 -0700708 if (core->enable_count == 0) {
709 ret = clk_core_enable(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700710
711 if (ret)
712 return ret;
713
Stephen Boydd6968fc2015-04-30 13:54:13 -0700714 trace_clk_enable(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800715
Stephen Boydd6968fc2015-04-30 13:54:13 -0700716 if (core->ops->enable)
717 ret = core->ops->enable(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800718
Stephen Boydd6968fc2015-04-30 13:54:13 -0700719 trace_clk_enable_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800720
721 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -0700722 clk_core_disable(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800723 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700724 }
725 }
726
Stephen Boydd6968fc2015-04-30 13:54:13 -0700727 core->enable_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700728 return 0;
729}
730
731/**
732 * clk_enable - ungate a clock
733 * @clk: the clk being ungated
734 *
735 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
736 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
737 * if the operation will never sleep. One example is a SoC-internal clk which
738 * is controlled via simple register writes. In the complex case a clk ungate
739 * operation may require a fast and a slow part. It is this reason that
740 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
741 * must be called before clk_enable. Returns 0 on success, -EERROR
742 * otherwise.
743 */
744int clk_enable(struct clk *clk)
745{
746 unsigned long flags;
747 int ret;
748
Dong Aisheng864e1602015-04-30 14:02:19 -0700749 if (!clk)
750 return 0;
751
Mike Turquetteeab89f62013-03-28 13:59:01 -0700752 flags = clk_enable_lock();
Dong Aisheng864e1602015-04-30 14:02:19 -0700753 ret = clk_core_enable(clk->core);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700754 clk_enable_unlock(flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700755
756 return ret;
757}
758EXPORT_SYMBOL_GPL(clk_enable);
759
Boris Brezillon0817b622015-07-07 20:48:08 +0200760static int clk_core_round_rate_nolock(struct clk_core *core,
761 struct clk_rate_request *req)
Mike Turquetteb24764902012-03-15 23:11:19 -0700762{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100763 struct clk_core *parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200764 long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700765
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100766 lockdep_assert_held(&prepare_lock);
767
Stephen Boydd6968fc2015-04-30 13:54:13 -0700768 if (!core)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -0700769 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700770
Stephen Boydd6968fc2015-04-30 13:54:13 -0700771 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200772 if (parent) {
773 req->best_parent_hw = parent->hw;
774 req->best_parent_rate = parent->rate;
775 } else {
776 req->best_parent_hw = NULL;
777 req->best_parent_rate = 0;
778 }
Mike Turquetteb24764902012-03-15 23:11:19 -0700779
Stephen Boydd6968fc2015-04-30 13:54:13 -0700780 if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +0200781 return core->ops->determine_rate(core->hw, req);
782 } else if (core->ops->round_rate) {
783 rate = core->ops->round_rate(core->hw, req->rate,
784 &req->best_parent_rate);
785 if (rate < 0)
786 return rate;
787
788 req->rate = rate;
789 } else if (core->flags & CLK_SET_RATE_PARENT) {
790 return clk_core_round_rate_nolock(parent, req);
791 } else {
792 req->rate = core->rate;
793 }
794
795 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700796}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100797
798/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100799 * __clk_determine_rate - get the closest rate actually supported by a clock
800 * @hw: determine the rate of this clock
801 * @rate: target rate
802 * @min_rate: returned rate must be greater than this rate
803 * @max_rate: returned rate must be less than this rate
804 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -0700805 * Useful for clk_ops such as .set_rate and .determine_rate.
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100806 */
Boris Brezillon0817b622015-07-07 20:48:08 +0200807int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100808{
Boris Brezillon0817b622015-07-07 20:48:08 +0200809 if (!hw) {
810 req->rate = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100811 return 0;
Boris Brezillon0817b622015-07-07 20:48:08 +0200812 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100813
Boris Brezillon0817b622015-07-07 20:48:08 +0200814 return clk_core_round_rate_nolock(hw->core, req);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100815}
816EXPORT_SYMBOL_GPL(__clk_determine_rate);
817
818/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100819 * __clk_round_rate - round the given rate for a clk
820 * @clk: round the rate of this clock
821 * @rate: the rate which is to be rounded
822 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -0700823 * Useful for clk_ops such as .set_rate
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100824 */
825unsigned long __clk_round_rate(struct clk *clk, unsigned long rate)
826{
Boris Brezillon0817b622015-07-07 20:48:08 +0200827 struct clk_rate_request req;
828 int ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100829
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100830 if (!clk)
831 return 0;
832
Boris Brezillon0817b622015-07-07 20:48:08 +0200833 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
834 req.rate = rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100835
Boris Brezillon0817b622015-07-07 20:48:08 +0200836 ret = clk_core_round_rate_nolock(clk->core, &req);
837 if (ret)
838 return 0;
839
840 return req.rate;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100841}
Arnd Bergmann1cdf8ee2014-06-03 11:40:14 +0200842EXPORT_SYMBOL_GPL(__clk_round_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700843
844/**
845 * clk_round_rate - round the given rate for a clk
846 * @clk: the clk for which we are rounding a rate
847 * @rate: the rate which is to be rounded
848 *
849 * Takes in a rate as input and rounds it to a rate that the clk can actually
850 * use which is then returned. If clk doesn't support round_rate operation
851 * then the parent rate is returned.
852 */
853long clk_round_rate(struct clk *clk, unsigned long rate)
854{
855 unsigned long ret;
856
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100857 if (!clk)
858 return 0;
859
Mike Turquetteeab89f62013-03-28 13:59:01 -0700860 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700861 ret = __clk_round_rate(clk, rate);
Mike Turquetteeab89f62013-03-28 13:59:01 -0700862 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -0700863
864 return ret;
865}
866EXPORT_SYMBOL_GPL(clk_round_rate);
867
868/**
869 * __clk_notify - call clk notifier chain
Stephen Boydd6968fc2015-04-30 13:54:13 -0700870 * @core: clk that is changing rate
Mike Turquetteb24764902012-03-15 23:11:19 -0700871 * @msg: clk notifier type (see include/linux/clk.h)
872 * @old_rate: old clk rate
873 * @new_rate: new clk rate
874 *
875 * Triggers a notifier call chain on the clk rate-change notification
876 * for 'clk'. Passes a pointer to the struct clk and the previous
877 * and current rates to the notifier callback. Intended to be called by
878 * internal clock code only. Returns NOTIFY_DONE from the last driver
879 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
880 * a driver returns that.
881 */
Stephen Boydd6968fc2015-04-30 13:54:13 -0700882static int __clk_notify(struct clk_core *core, unsigned long msg,
Mike Turquetteb24764902012-03-15 23:11:19 -0700883 unsigned long old_rate, unsigned long new_rate)
884{
885 struct clk_notifier *cn;
886 struct clk_notifier_data cnd;
887 int ret = NOTIFY_DONE;
888
Mike Turquetteb24764902012-03-15 23:11:19 -0700889 cnd.old_rate = old_rate;
890 cnd.new_rate = new_rate;
891
892 list_for_each_entry(cn, &clk_notifier_list, node) {
Stephen Boydd6968fc2015-04-30 13:54:13 -0700893 if (cn->clk->core == core) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100894 cnd.clk = cn->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -0700895 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
896 &cnd);
Mike Turquetteb24764902012-03-15 23:11:19 -0700897 }
898 }
899
900 return ret;
901}
902
903/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100904 * __clk_recalc_accuracies
Stephen Boydd6968fc2015-04-30 13:54:13 -0700905 * @core: first clk in the subtree
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100906 *
907 * Walks the subtree of clks starting with clk and recalculates accuracies as
908 * it goes. Note that if a clk does not implement the .recalc_accuracy
Stephen Boyd6e5ab412015-04-30 15:11:31 -0700909 * callback then it is assumed that the clock will take on the accuracy of its
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100910 * parent.
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100911 */
Stephen Boydd6968fc2015-04-30 13:54:13 -0700912static void __clk_recalc_accuracies(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100913{
914 unsigned long parent_accuracy = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100915 struct clk_core *child;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100916
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100917 lockdep_assert_held(&prepare_lock);
918
Stephen Boydd6968fc2015-04-30 13:54:13 -0700919 if (core->parent)
920 parent_accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100921
Stephen Boydd6968fc2015-04-30 13:54:13 -0700922 if (core->ops->recalc_accuracy)
923 core->accuracy = core->ops->recalc_accuracy(core->hw,
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100924 parent_accuracy);
925 else
Stephen Boydd6968fc2015-04-30 13:54:13 -0700926 core->accuracy = parent_accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100927
Stephen Boydd6968fc2015-04-30 13:54:13 -0700928 hlist_for_each_entry(child, &core->children, child_node)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100929 __clk_recalc_accuracies(child);
930}
931
Stephen Boydd6968fc2015-04-30 13:54:13 -0700932static long clk_core_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100933{
934 unsigned long accuracy;
935
936 clk_prepare_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -0700937 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
938 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100939
Stephen Boydd6968fc2015-04-30 13:54:13 -0700940 accuracy = __clk_get_accuracy(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100941 clk_prepare_unlock();
942
943 return accuracy;
944}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100945
946/**
947 * clk_get_accuracy - return the accuracy of clk
948 * @clk: the clk whose accuracy is being returned
949 *
950 * Simply returns the cached accuracy of the clk, unless
951 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
952 * issued.
953 * If clk is NULL then returns 0.
954 */
955long clk_get_accuracy(struct clk *clk)
956{
957 if (!clk)
958 return 0;
959
960 return clk_core_get_accuracy(clk->core);
961}
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100962EXPORT_SYMBOL_GPL(clk_get_accuracy);
963
Stephen Boydd6968fc2015-04-30 13:54:13 -0700964static unsigned long clk_recalc(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100965 unsigned long parent_rate)
Stephen Boyd8f2c2db2014-03-26 16:06:36 -0700966{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700967 if (core->ops->recalc_rate)
968 return core->ops->recalc_rate(core->hw, parent_rate);
Stephen Boyd8f2c2db2014-03-26 16:06:36 -0700969 return parent_rate;
970}
971
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100972/**
Mike Turquetteb24764902012-03-15 23:11:19 -0700973 * __clk_recalc_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -0700974 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -0700975 * @msg: notification type (see include/linux/clk.h)
976 *
977 * Walks the subtree of clks starting with clk and recalculates rates as it
978 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200979 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -0700980 *
981 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
982 * if necessary.
Mike Turquetteb24764902012-03-15 23:11:19 -0700983 */
Stephen Boydd6968fc2015-04-30 13:54:13 -0700984static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
Mike Turquetteb24764902012-03-15 23:11:19 -0700985{
986 unsigned long old_rate;
987 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100988 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -0700989
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +0100990 lockdep_assert_held(&prepare_lock);
991
Stephen Boydd6968fc2015-04-30 13:54:13 -0700992 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700993
Stephen Boydd6968fc2015-04-30 13:54:13 -0700994 if (core->parent)
995 parent_rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700996
Stephen Boydd6968fc2015-04-30 13:54:13 -0700997 core->rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -0700998
999 /*
1000 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1001 * & ABORT_RATE_CHANGE notifiers
1002 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001003 if (core->notifier_count && msg)
1004 __clk_notify(core, msg, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001005
Stephen Boydd6968fc2015-04-30 13:54:13 -07001006 hlist_for_each_entry(child, &core->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001007 __clk_recalc_rates(child, msg);
1008}
1009
Stephen Boydd6968fc2015-04-30 13:54:13 -07001010static unsigned long clk_core_get_rate(struct clk_core *core)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001011{
1012 unsigned long rate;
1013
1014 clk_prepare_lock();
1015
Stephen Boydd6968fc2015-04-30 13:54:13 -07001016 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1017 __clk_recalc_rates(core, 0);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001018
Stephen Boydd6968fc2015-04-30 13:54:13 -07001019 rate = clk_core_get_rate_nolock(core);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001020 clk_prepare_unlock();
1021
1022 return rate;
1023}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001024
Mike Turquetteb24764902012-03-15 23:11:19 -07001025/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001026 * clk_get_rate - return the rate of clk
1027 * @clk: the clk whose rate is being returned
1028 *
1029 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1030 * is set, which means a recalc_rate will be issued.
1031 * If clk is NULL then returns 0.
1032 */
1033unsigned long clk_get_rate(struct clk *clk)
1034{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001035 if (!clk)
1036 return 0;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001037
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001038 return clk_core_get_rate(clk->core);
Ulf Hanssona093bde2012-08-31 14:21:28 +02001039}
1040EXPORT_SYMBOL_GPL(clk_get_rate);
1041
Stephen Boydd6968fc2015-04-30 13:54:13 -07001042static int clk_fetch_parent_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001043 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001044{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001045 int i;
James Hogan4935b222013-07-29 12:24:59 +01001046
Stephen Boydd6968fc2015-04-30 13:54:13 -07001047 if (!core->parents) {
1048 core->parents = kcalloc(core->num_parents,
Tomasz Figa96a7ed92013-09-29 02:37:15 +02001049 sizeof(struct clk *), GFP_KERNEL);
Stephen Boydd6968fc2015-04-30 13:54:13 -07001050 if (!core->parents)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001051 return -ENOMEM;
1052 }
James Hogan4935b222013-07-29 12:24:59 +01001053
1054 /*
1055 * find index of new parent clock using cached parent ptrs,
1056 * or if not yet cached, use string name comparison and cache
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001057 * them now to avoid future calls to clk_core_lookup.
James Hogan4935b222013-07-29 12:24:59 +01001058 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001059 for (i = 0; i < core->num_parents; i++) {
1060 if (core->parents[i] == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001061 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001062
Stephen Boydd6968fc2015-04-30 13:54:13 -07001063 if (core->parents[i])
Tomasz Figada0f0b22013-09-29 02:37:16 +02001064 continue;
1065
Stephen Boydd6968fc2015-04-30 13:54:13 -07001066 if (!strcmp(core->parent_names[i], parent->name)) {
1067 core->parents[i] = clk_core_lookup(parent->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001068 return i;
James Hogan4935b222013-07-29 12:24:59 +01001069 }
1070 }
1071
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001072 return -EINVAL;
James Hogan4935b222013-07-29 12:24:59 +01001073}
1074
Stephen Boydd6968fc2015-04-30 13:54:13 -07001075static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
James Hogan4935b222013-07-29 12:24:59 +01001076{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001077 hlist_del(&core->child_node);
James Hogan4935b222013-07-29 12:24:59 +01001078
James Hogan903efc52013-08-29 12:10:51 +01001079 if (new_parent) {
1080 /* avoid duplicate POST_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001081 if (new_parent->new_child == core)
James Hogan903efc52013-08-29 12:10:51 +01001082 new_parent->new_child = NULL;
1083
Stephen Boydd6968fc2015-04-30 13:54:13 -07001084 hlist_add_head(&core->child_node, &new_parent->children);
James Hogan903efc52013-08-29 12:10:51 +01001085 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001086 hlist_add_head(&core->child_node, &clk_orphan_list);
James Hogan903efc52013-08-29 12:10:51 +01001087 }
James Hogan4935b222013-07-29 12:24:59 +01001088
Stephen Boydd6968fc2015-04-30 13:54:13 -07001089 core->parent = new_parent;
James Hogan4935b222013-07-29 12:24:59 +01001090}
1091
Stephen Boydd6968fc2015-04-30 13:54:13 -07001092static struct clk_core *__clk_set_parent_before(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001093 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001094{
1095 unsigned long flags;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001096 struct clk_core *old_parent = core->parent;
James Hogan4935b222013-07-29 12:24:59 +01001097
1098 /*
1099 * Migrate prepare state between parents and prevent race with
1100 * clk_enable().
1101 *
1102 * If the clock is not prepared, then a race with
1103 * clk_enable/disable() is impossible since we already have the
1104 * prepare lock (future calls to clk_enable() need to be preceded by
1105 * a clk_prepare()).
1106 *
1107 * If the clock is prepared, migrate the prepared state to the new
1108 * parent and also protect against a race with clk_enable() by
1109 * forcing the clock and the new parent on. This ensures that all
1110 * future calls to clk_enable() are practically NOPs with respect to
1111 * hardware and software states.
1112 *
1113 * See also: Comment for clk_set_parent() below.
1114 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001115 if (core->prepare_count) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001116 clk_core_prepare(parent);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001117 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001118 clk_core_enable(parent);
Stephen Boydd6968fc2015-04-30 13:54:13 -07001119 clk_core_enable(core);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001120 clk_enable_unlock(flags);
James Hogan4935b222013-07-29 12:24:59 +01001121 }
1122
1123 /* update the clk tree topology */
1124 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001125 clk_reparent(core, parent);
James Hogan4935b222013-07-29 12:24:59 +01001126 clk_enable_unlock(flags);
1127
Stephen Boyd3fa22522014-01-15 10:47:22 -08001128 return old_parent;
1129}
1130
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001131static void __clk_set_parent_after(struct clk_core *core,
1132 struct clk_core *parent,
1133 struct clk_core *old_parent)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001134{
Dong Aishengd2a5d462015-04-15 22:26:36 +08001135 unsigned long flags;
1136
Stephen Boyd3fa22522014-01-15 10:47:22 -08001137 /*
1138 * Finish the migration of prepare state and undo the changes done
1139 * for preventing a race with clk_enable().
1140 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001141 if (core->prepare_count) {
Dong Aishengd2a5d462015-04-15 22:26:36 +08001142 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001143 clk_core_disable(core);
1144 clk_core_disable(old_parent);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001145 clk_enable_unlock(flags);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001146 clk_core_unprepare(old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001147 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001148}
1149
Stephen Boydd6968fc2015-04-30 13:54:13 -07001150static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001151 u8 p_index)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001152{
1153 unsigned long flags;
1154 int ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001155 struct clk_core *old_parent;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001156
Stephen Boydd6968fc2015-04-30 13:54:13 -07001157 old_parent = __clk_set_parent_before(core, parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001158
Stephen Boydd6968fc2015-04-30 13:54:13 -07001159 trace_clk_set_parent(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001160
James Hogan4935b222013-07-29 12:24:59 +01001161 /* change clock input source */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001162 if (parent && core->ops->set_parent)
1163 ret = core->ops->set_parent(core->hw, p_index);
James Hogan4935b222013-07-29 12:24:59 +01001164
Stephen Boydd6968fc2015-04-30 13:54:13 -07001165 trace_clk_set_parent_complete(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001166
James Hogan4935b222013-07-29 12:24:59 +01001167 if (ret) {
1168 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001169 clk_reparent(core, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001170 clk_enable_unlock(flags);
1171
Stephen Boydd6968fc2015-04-30 13:54:13 -07001172 if (core->prepare_count) {
Dong Aishengd2a5d462015-04-15 22:26:36 +08001173 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001174 clk_core_disable(core);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001175 clk_core_disable(parent);
Dong Aishengd2a5d462015-04-15 22:26:36 +08001176 clk_enable_unlock(flags);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001177 clk_core_unprepare(parent);
James Hogan4935b222013-07-29 12:24:59 +01001178 }
1179 return ret;
1180 }
1181
Stephen Boydd6968fc2015-04-30 13:54:13 -07001182 __clk_set_parent_after(core, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001183
James Hogan4935b222013-07-29 12:24:59 +01001184 return 0;
1185}
1186
Ulf Hanssona093bde2012-08-31 14:21:28 +02001187/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001188 * __clk_speculate_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001189 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001190 * @parent_rate: the "future" rate of clk's parent
1191 *
1192 * Walks the subtree of clks starting with clk, speculating rates as it
1193 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1194 *
1195 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1196 * pre-rate change notifications and returns early if no clks in the
1197 * subtree have subscribed to the notifications. Note that if a clk does not
1198 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001199 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001200 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001201static int __clk_speculate_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001202 unsigned long parent_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001203{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001204 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001205 unsigned long new_rate;
1206 int ret = NOTIFY_DONE;
1207
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001208 lockdep_assert_held(&prepare_lock);
1209
Stephen Boydd6968fc2015-04-30 13:54:13 -07001210 new_rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001211
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001212 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001213 if (core->notifier_count)
1214 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001215
Mike Turquette86bcfa22014-02-24 16:08:41 -08001216 if (ret & NOTIFY_STOP_MASK) {
1217 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001218 __func__, core->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001219 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001220 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001221
Stephen Boydd6968fc2015-04-30 13:54:13 -07001222 hlist_for_each_entry(child, &core->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001223 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001224 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001225 break;
1226 }
1227
1228out:
1229 return ret;
1230}
1231
Stephen Boydd6968fc2015-04-30 13:54:13 -07001232static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001233 struct clk_core *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001234{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001235 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001236
Stephen Boydd6968fc2015-04-30 13:54:13 -07001237 core->new_rate = new_rate;
1238 core->new_parent = new_parent;
1239 core->new_parent_index = p_index;
James Hogan71472c02013-07-29 12:25:00 +01001240 /* include clk in new parent's PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001241 core->new_child = NULL;
1242 if (new_parent && new_parent != core->parent)
1243 new_parent->new_child = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001244
Stephen Boydd6968fc2015-04-30 13:54:13 -07001245 hlist_for_each_entry(child, &core->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001246 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001247 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001248 }
1249}
1250
1251/*
1252 * calculate the new rates returning the topmost clock that has to be
1253 * changed.
1254 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001255static struct clk_core *clk_calc_new_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001256 unsigned long rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001257{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001258 struct clk_core *top = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001259 struct clk_core *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001260 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001261 unsigned long new_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001262 unsigned long min_rate;
1263 unsigned long max_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001264 int p_index = 0;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001265 long ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001266
Mike Turquette7452b212012-03-26 14:45:36 -07001267 /* sanity */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001268 if (IS_ERR_OR_NULL(core))
Mike Turquette7452b212012-03-26 14:45:36 -07001269 return NULL;
1270
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001271 /* save parent rate, if it exists */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001272 parent = old_parent = core->parent;
James Hogan71472c02013-07-29 12:25:00 +01001273 if (parent)
1274 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001275
Stephen Boydd6968fc2015-04-30 13:54:13 -07001276 clk_core_get_boundaries(core, &min_rate, &max_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001277
James Hogan71472c02013-07-29 12:25:00 +01001278 /* find the closest rate and parent clk/rate */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001279 if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001280 struct clk_rate_request req;
1281
1282 req.rate = rate;
1283 req.min_rate = min_rate;
1284 req.max_rate = max_rate;
1285 if (parent) {
1286 req.best_parent_hw = parent->hw;
1287 req.best_parent_rate = parent->rate;
1288 } else {
1289 req.best_parent_hw = NULL;
1290 req.best_parent_rate = 0;
1291 }
1292
1293 ret = core->ops->determine_rate(core->hw, &req);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001294 if (ret < 0)
1295 return NULL;
1296
Boris Brezillon0817b622015-07-07 20:48:08 +02001297 best_parent_rate = req.best_parent_rate;
1298 new_rate = req.rate;
1299 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001300 } else if (core->ops->round_rate) {
1301 ret = core->ops->round_rate(core->hw, rate,
Boris Brezillon0817b622015-07-07 20:48:08 +02001302 &best_parent_rate);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001303 if (ret < 0)
1304 return NULL;
1305
1306 new_rate = ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001307 if (new_rate < min_rate || new_rate > max_rate)
1308 return NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001309 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
James Hogan71472c02013-07-29 12:25:00 +01001310 /* pass-through clock without adjustable parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001311 core->new_rate = core->rate;
James Hogan71472c02013-07-29 12:25:00 +01001312 return NULL;
1313 } else {
1314 /* pass-through clock with adjustable parent */
1315 top = clk_calc_new_rates(parent, rate);
1316 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001317 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001318 }
1319
James Hogan71472c02013-07-29 12:25:00 +01001320 /* some clocks must be gated to change parent */
1321 if (parent != old_parent &&
Stephen Boydd6968fc2015-04-30 13:54:13 -07001322 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
James Hogan71472c02013-07-29 12:25:00 +01001323 pr_debug("%s: %s not gated but wants to reparent\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001324 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001325 return NULL;
1326 }
1327
James Hogan71472c02013-07-29 12:25:00 +01001328 /* try finding the new parent index */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001329 if (parent && core->num_parents > 1) {
1330 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001331 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001332 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001333 __func__, parent->name, core->name);
James Hogan71472c02013-07-29 12:25:00 +01001334 return NULL;
1335 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001336 }
1337
Stephen Boydd6968fc2015-04-30 13:54:13 -07001338 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
James Hogan71472c02013-07-29 12:25:00 +01001339 best_parent_rate != parent->rate)
1340 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001341
1342out:
Stephen Boydd6968fc2015-04-30 13:54:13 -07001343 clk_calc_subtree(core, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001344
1345 return top;
1346}
1347
1348/*
1349 * Notify about rate changes in a subtree. Always walk down the whole tree
1350 * so that in case of an error we can walk down the whole tree again and
1351 * abort the change.
1352 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001353static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001354 unsigned long event)
Mike Turquetteb24764902012-03-15 23:11:19 -07001355{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001356 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001357 int ret = NOTIFY_DONE;
1358
Stephen Boydd6968fc2015-04-30 13:54:13 -07001359 if (core->rate == core->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301360 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001361
Stephen Boydd6968fc2015-04-30 13:54:13 -07001362 if (core->notifier_count) {
1363 ret = __clk_notify(core, event, core->rate, core->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001364 if (ret & NOTIFY_STOP_MASK)
Stephen Boydd6968fc2015-04-30 13:54:13 -07001365 fail_clk = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001366 }
1367
Stephen Boydd6968fc2015-04-30 13:54:13 -07001368 hlist_for_each_entry(child, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001369 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001370 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01001371 continue;
1372 tmp_clk = clk_propagate_rate_change(child, event);
1373 if (tmp_clk)
1374 fail_clk = tmp_clk;
1375 }
1376
Stephen Boydd6968fc2015-04-30 13:54:13 -07001377 /* handle the new child who might not be in core->children yet */
1378 if (core->new_child) {
1379 tmp_clk = clk_propagate_rate_change(core->new_child, event);
James Hogan71472c02013-07-29 12:25:00 +01001380 if (tmp_clk)
1381 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001382 }
1383
1384 return fail_clk;
1385}
1386
1387/*
1388 * walk down a subtree and set the new rates notifying the rate
1389 * change on the way
1390 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001391static void clk_change_rate(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001392{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001393 struct clk_core *child;
Tero Kristo067bb172014-08-21 16:47:45 +03001394 struct hlist_node *tmp;
Mike Turquetteb24764902012-03-15 23:11:19 -07001395 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001396 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001397 bool skip_set_rate = false;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001398 struct clk_core *old_parent;
Mike Turquetteb24764902012-03-15 23:11:19 -07001399
Stephen Boydd6968fc2015-04-30 13:54:13 -07001400 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001401
Stephen Boydd6968fc2015-04-30 13:54:13 -07001402 if (core->new_parent)
1403 best_parent_rate = core->new_parent->rate;
1404 else if (core->parent)
1405 best_parent_rate = core->parent->rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001406
Stephen Boydd6968fc2015-04-30 13:54:13 -07001407 if (core->new_parent && core->new_parent != core->parent) {
1408 old_parent = __clk_set_parent_before(core, core->new_parent);
1409 trace_clk_set_parent(core, core->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001410
Stephen Boydd6968fc2015-04-30 13:54:13 -07001411 if (core->ops->set_rate_and_parent) {
Stephen Boyd3fa22522014-01-15 10:47:22 -08001412 skip_set_rate = true;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001413 core->ops->set_rate_and_parent(core->hw, core->new_rate,
Stephen Boyd3fa22522014-01-15 10:47:22 -08001414 best_parent_rate,
Stephen Boydd6968fc2015-04-30 13:54:13 -07001415 core->new_parent_index);
1416 } else if (core->ops->set_parent) {
1417 core->ops->set_parent(core->hw, core->new_parent_index);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001418 }
1419
Stephen Boydd6968fc2015-04-30 13:54:13 -07001420 trace_clk_set_parent_complete(core, core->new_parent);
1421 __clk_set_parent_after(core, core->new_parent, old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001422 }
1423
Stephen Boydd6968fc2015-04-30 13:54:13 -07001424 trace_clk_set_rate(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001425
Stephen Boydd6968fc2015-04-30 13:54:13 -07001426 if (!skip_set_rate && core->ops->set_rate)
1427 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001428
Stephen Boydd6968fc2015-04-30 13:54:13 -07001429 trace_clk_set_rate_complete(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001430
Stephen Boydd6968fc2015-04-30 13:54:13 -07001431 core->rate = clk_recalc(core, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001432
Stephen Boydd6968fc2015-04-30 13:54:13 -07001433 if (core->notifier_count && old_rate != core->rate)
1434 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001435
Michael Turquette85e88fa2015-06-20 12:18:03 -07001436 if (core->flags & CLK_RECALC_NEW_RATES)
1437 (void)clk_calc_new_rates(core, core->new_rate);
Bartlomiej Zolnierkiewiczd8d91982015-04-03 18:43:44 +02001438
Tero Kristo067bb172014-08-21 16:47:45 +03001439 /*
1440 * Use safe iteration, as change_rate can actually swap parents
1441 * for certain clock types.
1442 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001443 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001444 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001445 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01001446 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07001447 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01001448 }
1449
Stephen Boydd6968fc2015-04-30 13:54:13 -07001450 /* handle the new child who might not be in core->children yet */
1451 if (core->new_child)
1452 clk_change_rate(core->new_child);
Mike Turquetteb24764902012-03-15 23:11:19 -07001453}
1454
Stephen Boydd6968fc2015-04-30 13:54:13 -07001455static int clk_core_set_rate_nolock(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001456 unsigned long req_rate)
1457{
1458 struct clk_core *top, *fail_clk;
1459 unsigned long rate = req_rate;
1460 int ret = 0;
1461
Stephen Boydd6968fc2015-04-30 13:54:13 -07001462 if (!core)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001463 return 0;
1464
1465 /* bail early if nothing to do */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001466 if (rate == clk_core_get_rate_nolock(core))
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001467 return 0;
1468
Stephen Boydd6968fc2015-04-30 13:54:13 -07001469 if ((core->flags & CLK_SET_RATE_GATE) && core->prepare_count)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001470 return -EBUSY;
1471
1472 /* calculate new rates and get the topmost changed clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001473 top = clk_calc_new_rates(core, rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001474 if (!top)
1475 return -EINVAL;
1476
1477 /* notify that we are about to change rates */
1478 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1479 if (fail_clk) {
1480 pr_debug("%s: failed to set %s rate\n", __func__,
1481 fail_clk->name);
1482 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1483 return -EBUSY;
1484 }
1485
1486 /* change the rates */
1487 clk_change_rate(top);
1488
Stephen Boydd6968fc2015-04-30 13:54:13 -07001489 core->req_rate = req_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001490
1491 return ret;
1492}
1493
Mike Turquetteb24764902012-03-15 23:11:19 -07001494/**
1495 * clk_set_rate - specify a new rate for clk
1496 * @clk: the clk whose rate is being changed
1497 * @rate: the new rate for clk
1498 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001499 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001500 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001501 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1502 * propagate up to clk's parent; whether or not this happens depends on the
1503 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1504 * after calling .round_rate then upstream parent propagation is ignored. If
1505 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001506 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001507 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1508 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001509 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001510 * Rate changes are accomplished via tree traversal that also recalculates the
1511 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001512 *
1513 * Returns 0 on success, -EERROR otherwise.
1514 */
1515int clk_set_rate(struct clk *clk, unsigned long rate)
1516{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001517 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001518
Mike Turquette89ac8d72013-08-21 23:58:09 -07001519 if (!clk)
1520 return 0;
1521
Mike Turquetteb24764902012-03-15 23:11:19 -07001522 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001523 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001524
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001525 ret = clk_core_set_rate_nolock(clk->core, rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001526
Mike Turquetteeab89f62013-03-28 13:59:01 -07001527 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001528
1529 return ret;
1530}
1531EXPORT_SYMBOL_GPL(clk_set_rate);
1532
1533/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001534 * clk_set_rate_range - set a rate range for a clock source
1535 * @clk: clock source
1536 * @min: desired minimum clock rate in Hz, inclusive
1537 * @max: desired maximum clock rate in Hz, inclusive
1538 *
1539 * Returns success (0) or negative errno.
1540 */
1541int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
1542{
1543 int ret = 0;
1544
1545 if (!clk)
1546 return 0;
1547
1548 if (min > max) {
1549 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
1550 __func__, clk->core->name, clk->dev_id, clk->con_id,
1551 min, max);
1552 return -EINVAL;
1553 }
1554
1555 clk_prepare_lock();
1556
1557 if (min != clk->min_rate || max != clk->max_rate) {
1558 clk->min_rate = min;
1559 clk->max_rate = max;
1560 ret = clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
1561 }
1562
1563 clk_prepare_unlock();
1564
1565 return ret;
1566}
1567EXPORT_SYMBOL_GPL(clk_set_rate_range);
1568
1569/**
1570 * clk_set_min_rate - set a minimum clock rate for a clock source
1571 * @clk: clock source
1572 * @rate: desired minimum clock rate in Hz, inclusive
1573 *
1574 * Returns success (0) or negative errno.
1575 */
1576int clk_set_min_rate(struct clk *clk, unsigned long rate)
1577{
1578 if (!clk)
1579 return 0;
1580
1581 return clk_set_rate_range(clk, rate, clk->max_rate);
1582}
1583EXPORT_SYMBOL_GPL(clk_set_min_rate);
1584
1585/**
1586 * clk_set_max_rate - set a maximum clock rate for a clock source
1587 * @clk: clock source
1588 * @rate: desired maximum clock rate in Hz, inclusive
1589 *
1590 * Returns success (0) or negative errno.
1591 */
1592int clk_set_max_rate(struct clk *clk, unsigned long rate)
1593{
1594 if (!clk)
1595 return 0;
1596
1597 return clk_set_rate_range(clk, clk->min_rate, rate);
1598}
1599EXPORT_SYMBOL_GPL(clk_set_max_rate);
1600
1601/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001602 * clk_get_parent - return the parent of a clk
1603 * @clk: the clk whose parent gets returned
1604 *
1605 * Simply returns clk->parent. Returns NULL if clk is NULL.
1606 */
1607struct clk *clk_get_parent(struct clk *clk)
1608{
1609 struct clk *parent;
1610
Mike Turquetteeab89f62013-03-28 13:59:01 -07001611 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001612 parent = __clk_get_parent(clk);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001613 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001614
1615 return parent;
1616}
1617EXPORT_SYMBOL_GPL(clk_get_parent);
1618
1619/*
1620 * .get_parent is mandatory for clocks with multiple possible parents. It is
1621 * optional for single-parent clocks. Always call .get_parent if it is
1622 * available and WARN if it is missing for multi-parent clocks.
1623 *
1624 * For single-parent clocks without .get_parent, first check to see if the
1625 * .parents array exists, and if so use it to avoid an expensive tree
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001626 * traversal. If .parents does not exist then walk the tree.
Mike Turquetteb24764902012-03-15 23:11:19 -07001627 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001628static struct clk_core *__clk_init_parent(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001629{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001630 struct clk_core *ret = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001631 u8 index;
1632
1633 /* handle the trivial cases */
1634
Stephen Boydd6968fc2015-04-30 13:54:13 -07001635 if (!core->num_parents)
Mike Turquetteb24764902012-03-15 23:11:19 -07001636 goto out;
1637
Stephen Boydd6968fc2015-04-30 13:54:13 -07001638 if (core->num_parents == 1) {
1639 if (IS_ERR_OR_NULL(core->parent))
1640 core->parent = clk_core_lookup(core->parent_names[0]);
1641 ret = core->parent;
Mike Turquetteb24764902012-03-15 23:11:19 -07001642 goto out;
1643 }
1644
Stephen Boydd6968fc2015-04-30 13:54:13 -07001645 if (!core->ops->get_parent) {
1646 WARN(!core->ops->get_parent,
Mike Turquetteb24764902012-03-15 23:11:19 -07001647 "%s: multi-parent clocks must implement .get_parent\n",
1648 __func__);
1649 goto out;
1650 };
1651
1652 /*
Stephen Boydd6968fc2015-04-30 13:54:13 -07001653 * Do our best to cache parent clocks in core->parents. This prevents
1654 * unnecessary and expensive lookups. We don't set core->parent here;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001655 * that is done by the calling function.
Mike Turquetteb24764902012-03-15 23:11:19 -07001656 */
1657
Stephen Boydd6968fc2015-04-30 13:54:13 -07001658 index = core->ops->get_parent(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07001659
Stephen Boydd6968fc2015-04-30 13:54:13 -07001660 if (!core->parents)
1661 core->parents =
1662 kcalloc(core->num_parents, sizeof(struct clk *),
Mike Turquetteb24764902012-03-15 23:11:19 -07001663 GFP_KERNEL);
1664
Stephen Boydd6968fc2015-04-30 13:54:13 -07001665 ret = clk_core_get_parent_by_index(core, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001666
1667out:
1668 return ret;
1669}
1670
Stephen Boydd6968fc2015-04-30 13:54:13 -07001671static void clk_core_reparent(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001672 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +02001673{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001674 clk_reparent(core, new_parent);
1675 __clk_recalc_accuracies(core);
1676 __clk_recalc_rates(core, POST_RATE_CHANGE);
Mike Turquetteb24764902012-03-15 23:11:19 -07001677}
1678
Tomeu Vizoso42c86542015-03-11 11:34:25 +01001679void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
1680{
1681 if (!hw)
1682 return;
1683
1684 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
1685}
1686
Mike Turquetteb24764902012-03-15 23:11:19 -07001687/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001688 * clk_has_parent - check if a clock is a possible parent for another
1689 * @clk: clock source
1690 * @parent: parent clock source
Mike Turquetteb24764902012-03-15 23:11:19 -07001691 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001692 * This function can be used in drivers that need to check that a clock can be
1693 * the parent of another without actually changing the parent.
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07001694 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001695 * Returns true if @parent is a possible parent for @clk, false otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07001696 */
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001697bool clk_has_parent(struct clk *clk, struct clk *parent)
1698{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001699 struct clk_core *core, *parent_core;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001700 unsigned int i;
1701
1702 /* NULL clocks should be nops, so return success if either is NULL. */
1703 if (!clk || !parent)
1704 return true;
1705
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001706 core = clk->core;
1707 parent_core = parent->core;
1708
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001709 /* Optimize for the case where the parent is already the parent. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001710 if (core->parent == parent_core)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001711 return true;
1712
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001713 for (i = 0; i < core->num_parents; i++)
1714 if (strcmp(core->parent_names[i], parent_core->name) == 0)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01001715 return true;
1716
1717 return false;
1718}
1719EXPORT_SYMBOL_GPL(clk_has_parent);
1720
Stephen Boydd6968fc2015-04-30 13:54:13 -07001721static int clk_core_set_parent(struct clk_core *core, struct clk_core *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07001722{
1723 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001724 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001725 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001726
Stephen Boydd6968fc2015-04-30 13:54:13 -07001727 if (!core)
Mike Turquette89ac8d72013-08-21 23:58:09 -07001728 return 0;
1729
Mike Turquetteb24764902012-03-15 23:11:19 -07001730 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001731 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001732
Stephen Boydd6968fc2015-04-30 13:54:13 -07001733 if (core->parent == parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07001734 goto out;
1735
Stephen Boydb61c43c2015-02-02 14:11:25 -08001736 /* verify ops for for multi-parent clks */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001737 if ((core->num_parents > 1) && (!core->ops->set_parent)) {
Stephen Boydb61c43c2015-02-02 14:11:25 -08001738 ret = -ENOSYS;
1739 goto out;
1740 }
1741
Ulf Hansson031dcc92013-04-02 23:09:38 +02001742 /* check that we are allowed to re-parent if the clock is in use */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001743 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02001744 ret = -EBUSY;
1745 goto out;
1746 }
1747
1748 /* try finding the new parent index */
1749 if (parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001750 p_index = clk_fetch_parent_index(core, parent);
Ulf Hansson031dcc92013-04-02 23:09:38 +02001751 p_rate = parent->rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001752 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02001753 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001754 __func__, parent->name, core->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001755 ret = p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02001756 goto out;
1757 }
1758 }
1759
Mike Turquetteb24764902012-03-15 23:11:19 -07001760 /* propagate PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001761 ret = __clk_speculate_rates(core, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001762
1763 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001764 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001765 goto out;
1766
Ulf Hansson031dcc92013-04-02 23:09:38 +02001767 /* do the re-parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001768 ret = __clk_set_parent(core, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001769
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001770 /* propagate rate an accuracy recalculation accordingly */
1771 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001772 __clk_recalc_rates(core, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001773 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001774 __clk_recalc_rates(core, POST_RATE_CHANGE);
1775 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001776 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001777
1778out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07001779 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001780
1781 return ret;
1782}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001783
1784/**
1785 * clk_set_parent - switch the parent of a mux clk
1786 * @clk: the mux clk whose input we are switching
1787 * @parent: the new input to clk
1788 *
1789 * Re-parent clk to use parent as its new input source. If clk is in
1790 * prepared state, the clk will get enabled for the duration of this call. If
1791 * that's not acceptable for a specific clk (Eg: the consumer can't handle
1792 * that, the reparenting is glitchy in hardware, etc), use the
1793 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
1794 *
1795 * After successfully changing clk's parent clk_set_parent will update the
1796 * clk topology, sysfs topology and propagate rate recalculation via
1797 * __clk_recalc_rates.
1798 *
1799 * Returns 0 on success, -EERROR otherwise.
1800 */
1801int clk_set_parent(struct clk *clk, struct clk *parent)
1802{
1803 if (!clk)
1804 return 0;
1805
1806 return clk_core_set_parent(clk->core, parent ? parent->core : NULL);
1807}
Mike Turquetteb24764902012-03-15 23:11:19 -07001808EXPORT_SYMBOL_GPL(clk_set_parent);
1809
1810/**
Mike Turquettee59c5372014-02-18 21:21:25 -08001811 * clk_set_phase - adjust the phase shift of a clock signal
1812 * @clk: clock signal source
1813 * @degrees: number of degrees the signal is shifted
1814 *
1815 * Shifts the phase of a clock signal by the specified
1816 * degrees. Returns 0 on success, -EERROR otherwise.
1817 *
1818 * This function makes no distinction about the input or reference
1819 * signal that we adjust the clock signal phase against. For example
1820 * phase locked-loop clock signal generators we may shift phase with
1821 * respect to feedback clock signal input, but for other cases the
1822 * clock phase may be shifted with respect to some other, unspecified
1823 * signal.
1824 *
1825 * Additionally the concept of phase shift does not propagate through
1826 * the clock tree hierarchy, which sets it apart from clock rates and
1827 * clock accuracy. A parent clock phase attribute does not have an
1828 * impact on the phase attribute of a child clock.
1829 */
1830int clk_set_phase(struct clk *clk, int degrees)
1831{
Stephen Boyd08b95752015-02-02 14:09:43 -08001832 int ret = -EINVAL;
Mike Turquettee59c5372014-02-18 21:21:25 -08001833
1834 if (!clk)
Stephen Boyd08b95752015-02-02 14:09:43 -08001835 return 0;
Mike Turquettee59c5372014-02-18 21:21:25 -08001836
1837 /* sanity check degrees */
1838 degrees %= 360;
1839 if (degrees < 0)
1840 degrees += 360;
1841
1842 clk_prepare_lock();
1843
Stephen Boyddfc202e2015-02-02 14:37:41 -08001844 trace_clk_set_phase(clk->core, degrees);
1845
Stephen Boyd08b95752015-02-02 14:09:43 -08001846 if (clk->core->ops->set_phase)
1847 ret = clk->core->ops->set_phase(clk->core->hw, degrees);
Mike Turquettee59c5372014-02-18 21:21:25 -08001848
Stephen Boyddfc202e2015-02-02 14:37:41 -08001849 trace_clk_set_phase_complete(clk->core, degrees);
1850
Mike Turquettee59c5372014-02-18 21:21:25 -08001851 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001852 clk->core->phase = degrees;
Mike Turquettee59c5372014-02-18 21:21:25 -08001853
Mike Turquettee59c5372014-02-18 21:21:25 -08001854 clk_prepare_unlock();
1855
Mike Turquettee59c5372014-02-18 21:21:25 -08001856 return ret;
1857}
Maxime Ripard9767b042015-01-20 22:23:43 +01001858EXPORT_SYMBOL_GPL(clk_set_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08001859
Stephen Boydd6968fc2015-04-30 13:54:13 -07001860static int clk_core_get_phase(struct clk_core *core)
Mike Turquettee59c5372014-02-18 21:21:25 -08001861{
Stephen Boyd1f3e1982015-04-30 14:21:56 -07001862 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08001863
1864 clk_prepare_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001865 ret = core->phase;
Mike Turquettee59c5372014-02-18 21:21:25 -08001866 clk_prepare_unlock();
1867
Mike Turquettee59c5372014-02-18 21:21:25 -08001868 return ret;
1869}
1870
1871/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001872 * clk_get_phase - return the phase shift of a clock signal
1873 * @clk: clock signal source
1874 *
1875 * Returns the phase shift of a clock node in degrees, otherwise returns
1876 * -EERROR.
1877 */
1878int clk_get_phase(struct clk *clk)
1879{
1880 if (!clk)
1881 return 0;
1882
1883 return clk_core_get_phase(clk->core);
1884}
Stephen Boyd4dff95d2015-04-30 14:43:22 -07001885EXPORT_SYMBOL_GPL(clk_get_phase);
Mike Turquetteb24764902012-03-15 23:11:19 -07001886
1887/**
Michael Turquette3d3801e2015-02-25 09:11:01 -08001888 * clk_is_match - check if two clk's point to the same hardware clock
1889 * @p: clk compared against q
1890 * @q: clk compared against p
1891 *
1892 * Returns true if the two struct clk pointers both point to the same hardware
1893 * clock node. Put differently, returns true if struct clk *p and struct clk *q
1894 * share the same struct clk_core object.
1895 *
1896 * Returns false otherwise. Note that two NULL clks are treated as matching.
1897 */
1898bool clk_is_match(const struct clk *p, const struct clk *q)
1899{
1900 /* trivial case: identical struct clk's or both NULL */
1901 if (p == q)
1902 return true;
1903
1904 /* true if clk->core pointers match. Avoid derefing garbage */
1905 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
1906 if (p->core == q->core)
1907 return true;
1908
1909 return false;
1910}
1911EXPORT_SYMBOL_GPL(clk_is_match);
1912
Stephen Boyd4dff95d2015-04-30 14:43:22 -07001913/*** debugfs support ***/
1914
1915#ifdef CONFIG_DEBUG_FS
1916#include <linux/debugfs.h>
1917
1918static struct dentry *rootdir;
1919static int inited = 0;
1920static DEFINE_MUTEX(clk_debug_lock);
1921static HLIST_HEAD(clk_debug_list);
1922
1923static struct hlist_head *all_lists[] = {
1924 &clk_root_list,
1925 &clk_orphan_list,
1926 NULL,
1927};
1928
1929static struct hlist_head *orphan_list[] = {
1930 &clk_orphan_list,
1931 NULL,
1932};
1933
1934static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
1935 int level)
1936{
1937 if (!c)
1938 return;
1939
1940 seq_printf(s, "%*s%-*s %11d %12d %11lu %10lu %-3d\n",
1941 level * 3 + 1, "",
1942 30 - level * 3, c->name,
1943 c->enable_count, c->prepare_count, clk_core_get_rate(c),
1944 clk_core_get_accuracy(c), clk_core_get_phase(c));
1945}
1946
1947static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
1948 int level)
1949{
1950 struct clk_core *child;
1951
1952 if (!c)
1953 return;
1954
1955 clk_summary_show_one(s, c, level);
1956
1957 hlist_for_each_entry(child, &c->children, child_node)
1958 clk_summary_show_subtree(s, child, level + 1);
1959}
1960
1961static int clk_summary_show(struct seq_file *s, void *data)
1962{
1963 struct clk_core *c;
1964 struct hlist_head **lists = (struct hlist_head **)s->private;
1965
1966 seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy phase\n");
1967 seq_puts(s, "----------------------------------------------------------------------------------------\n");
1968
1969 clk_prepare_lock();
1970
1971 for (; *lists; lists++)
1972 hlist_for_each_entry(c, *lists, child_node)
1973 clk_summary_show_subtree(s, c, 0);
1974
1975 clk_prepare_unlock();
1976
1977 return 0;
1978}
1979
1980
1981static int clk_summary_open(struct inode *inode, struct file *file)
1982{
1983 return single_open(file, clk_summary_show, inode->i_private);
1984}
1985
1986static const struct file_operations clk_summary_fops = {
1987 .open = clk_summary_open,
1988 .read = seq_read,
1989 .llseek = seq_lseek,
1990 .release = single_release,
1991};
1992
1993static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
1994{
1995 if (!c)
1996 return;
1997
Stefan Wahren7cb81132015-04-29 16:36:43 +00001998 /* This should be JSON format, i.e. elements separated with a comma */
Stephen Boyd4dff95d2015-04-30 14:43:22 -07001999 seq_printf(s, "\"%s\": { ", c->name);
2000 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
2001 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Stefan Wahren7cb81132015-04-29 16:36:43 +00002002 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate(c));
2003 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy(c));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002004 seq_printf(s, "\"phase\": %d", clk_core_get_phase(c));
2005}
2006
2007static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
2008{
2009 struct clk_core *child;
2010
2011 if (!c)
2012 return;
2013
2014 clk_dump_one(s, c, level);
2015
2016 hlist_for_each_entry(child, &c->children, child_node) {
2017 seq_printf(s, ",");
2018 clk_dump_subtree(s, child, level + 1);
2019 }
2020
2021 seq_printf(s, "}");
2022}
2023
2024static int clk_dump(struct seq_file *s, void *data)
2025{
2026 struct clk_core *c;
2027 bool first_node = true;
2028 struct hlist_head **lists = (struct hlist_head **)s->private;
2029
2030 seq_printf(s, "{");
2031
2032 clk_prepare_lock();
2033
2034 for (; *lists; lists++) {
2035 hlist_for_each_entry(c, *lists, child_node) {
2036 if (!first_node)
2037 seq_puts(s, ",");
2038 first_node = false;
2039 clk_dump_subtree(s, c, 0);
2040 }
2041 }
2042
2043 clk_prepare_unlock();
2044
Felipe Balbi70e9f4d2015-05-01 09:48:37 -05002045 seq_puts(s, "}\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002046 return 0;
2047}
2048
2049
2050static int clk_dump_open(struct inode *inode, struct file *file)
2051{
2052 return single_open(file, clk_dump, inode->i_private);
2053}
2054
2055static const struct file_operations clk_dump_fops = {
2056 .open = clk_dump_open,
2057 .read = seq_read,
2058 .llseek = seq_lseek,
2059 .release = single_release,
2060};
2061
2062static int clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
2063{
2064 struct dentry *d;
2065 int ret = -ENOMEM;
2066
2067 if (!core || !pdentry) {
2068 ret = -EINVAL;
2069 goto out;
2070 }
2071
2072 d = debugfs_create_dir(core->name, pdentry);
2073 if (!d)
2074 goto out;
2075
2076 core->dentry = d;
2077
2078 d = debugfs_create_u32("clk_rate", S_IRUGO, core->dentry,
2079 (u32 *)&core->rate);
2080 if (!d)
2081 goto err_out;
2082
2083 d = debugfs_create_u32("clk_accuracy", S_IRUGO, core->dentry,
2084 (u32 *)&core->accuracy);
2085 if (!d)
2086 goto err_out;
2087
2088 d = debugfs_create_u32("clk_phase", S_IRUGO, core->dentry,
2089 (u32 *)&core->phase);
2090 if (!d)
2091 goto err_out;
2092
2093 d = debugfs_create_x32("clk_flags", S_IRUGO, core->dentry,
2094 (u32 *)&core->flags);
2095 if (!d)
2096 goto err_out;
2097
2098 d = debugfs_create_u32("clk_prepare_count", S_IRUGO, core->dentry,
2099 (u32 *)&core->prepare_count);
2100 if (!d)
2101 goto err_out;
2102
2103 d = debugfs_create_u32("clk_enable_count", S_IRUGO, core->dentry,
2104 (u32 *)&core->enable_count);
2105 if (!d)
2106 goto err_out;
2107
2108 d = debugfs_create_u32("clk_notifier_count", S_IRUGO, core->dentry,
2109 (u32 *)&core->notifier_count);
2110 if (!d)
2111 goto err_out;
2112
2113 if (core->ops->debug_init) {
2114 ret = core->ops->debug_init(core->hw, core->dentry);
2115 if (ret)
2116 goto err_out;
2117 }
2118
2119 ret = 0;
2120 goto out;
2121
2122err_out:
2123 debugfs_remove_recursive(core->dentry);
2124 core->dentry = NULL;
2125out:
2126 return ret;
2127}
2128
2129/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002130 * clk_debug_register - add a clk node to the debugfs clk directory
2131 * @core: the clk being added to the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002132 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002133 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
2134 * initialized. Otherwise it bails out early since the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002135 * will be created lazily by clk_debug_init as part of a late_initcall.
2136 */
2137static int clk_debug_register(struct clk_core *core)
2138{
2139 int ret = 0;
2140
2141 mutex_lock(&clk_debug_lock);
2142 hlist_add_head(&core->debug_node, &clk_debug_list);
2143
2144 if (!inited)
2145 goto unlock;
2146
2147 ret = clk_debug_create_one(core, rootdir);
2148unlock:
2149 mutex_unlock(&clk_debug_lock);
2150
2151 return ret;
2152}
2153
2154 /**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002155 * clk_debug_unregister - remove a clk node from the debugfs clk directory
2156 * @core: the clk being removed from the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002157 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002158 * Dynamically removes a clk and all its child nodes from the
2159 * debugfs clk directory if clk->dentry points to debugfs created by
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002160 * clk_debug_register in __clk_init.
2161 */
2162static void clk_debug_unregister(struct clk_core *core)
2163{
2164 mutex_lock(&clk_debug_lock);
2165 hlist_del_init(&core->debug_node);
2166 debugfs_remove_recursive(core->dentry);
2167 core->dentry = NULL;
2168 mutex_unlock(&clk_debug_lock);
2169}
2170
2171struct dentry *clk_debugfs_add_file(struct clk_hw *hw, char *name, umode_t mode,
2172 void *data, const struct file_operations *fops)
2173{
2174 struct dentry *d = NULL;
2175
2176 if (hw->core->dentry)
2177 d = debugfs_create_file(name, mode, hw->core->dentry, data,
2178 fops);
2179
2180 return d;
2181}
2182EXPORT_SYMBOL_GPL(clk_debugfs_add_file);
2183
2184/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002185 * clk_debug_init - lazily populate the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002186 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002187 * clks are often initialized very early during boot before memory can be
2188 * dynamically allocated and well before debugfs is setup. This function
2189 * populates the debugfs clk directory once at boot-time when we know that
2190 * debugfs is setup. It should only be called once at boot-time, all other clks
2191 * added dynamically will be done so with clk_debug_register.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002192 */
2193static int __init clk_debug_init(void)
2194{
2195 struct clk_core *core;
2196 struct dentry *d;
2197
2198 rootdir = debugfs_create_dir("clk", NULL);
2199
2200 if (!rootdir)
2201 return -ENOMEM;
2202
2203 d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, &all_lists,
2204 &clk_summary_fops);
2205 if (!d)
2206 return -ENOMEM;
2207
2208 d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, &all_lists,
2209 &clk_dump_fops);
2210 if (!d)
2211 return -ENOMEM;
2212
2213 d = debugfs_create_file("clk_orphan_summary", S_IRUGO, rootdir,
2214 &orphan_list, &clk_summary_fops);
2215 if (!d)
2216 return -ENOMEM;
2217
2218 d = debugfs_create_file("clk_orphan_dump", S_IRUGO, rootdir,
2219 &orphan_list, &clk_dump_fops);
2220 if (!d)
2221 return -ENOMEM;
2222
2223 mutex_lock(&clk_debug_lock);
2224 hlist_for_each_entry(core, &clk_debug_list, debug_node)
2225 clk_debug_create_one(core, rootdir);
2226
2227 inited = 1;
2228 mutex_unlock(&clk_debug_lock);
2229
2230 return 0;
2231}
2232late_initcall(clk_debug_init);
2233#else
2234static inline int clk_debug_register(struct clk_core *core) { return 0; }
2235static inline void clk_debug_reparent(struct clk_core *core,
2236 struct clk_core *new_parent)
2237{
2238}
2239static inline void clk_debug_unregister(struct clk_core *core)
2240{
2241}
2242#endif
2243
Michael Turquette3d3801e2015-02-25 09:11:01 -08002244/**
Mike Turquetteb24764902012-03-15 23:11:19 -07002245 * __clk_init - initialize the data structures in a struct clk
2246 * @dev: device initializing this clk, placeholder for now
2247 * @clk: clk being initialized
2248 *
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002249 * Initializes the lists in struct clk_core, queries the hardware for the
Mike Turquetteb24764902012-03-15 23:11:19 -07002250 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07002251 */
Michael Turquetteb09d6d92015-01-29 14:22:50 -08002252static int __clk_init(struct device *dev, struct clk *clk_user)
Mike Turquetteb24764902012-03-15 23:11:19 -07002253{
Mike Turquetted1302a32012-03-29 14:30:40 -07002254 int i, ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002255 struct clk_core *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002256 struct hlist_node *tmp2;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002257 struct clk_core *core;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002258 unsigned long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002259
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002260 if (!clk_user)
Mike Turquetted1302a32012-03-29 14:30:40 -07002261 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07002262
Stephen Boydd6968fc2015-04-30 13:54:13 -07002263 core = clk_user->core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002264
Mike Turquetteeab89f62013-03-28 13:59:01 -07002265 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002266
2267 /* check to see if a clock with this name is already registered */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002268 if (clk_core_lookup(core->name)) {
Mike Turquetted1302a32012-03-29 14:30:40 -07002269 pr_debug("%s: clk %s already initialized\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002270 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002271 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07002272 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07002273 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002274
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002275 /* check that clk_ops are sane. See Documentation/clk.txt */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002276 if (core->ops->set_rate &&
2277 !((core->ops->round_rate || core->ops->determine_rate) &&
2278 core->ops->recalc_rate)) {
James Hogan71472c02013-07-29 12:25:00 +01002279 pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002280 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002281 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002282 goto out;
2283 }
2284
Stephen Boydd6968fc2015-04-30 13:54:13 -07002285 if (core->ops->set_parent && !core->ops->get_parent) {
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002286 pr_warning("%s: %s must implement .get_parent & .set_parent\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002287 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002288 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002289 goto out;
2290 }
2291
Stephen Boydd6968fc2015-04-30 13:54:13 -07002292 if (core->ops->set_rate_and_parent &&
2293 !(core->ops->set_parent && core->ops->set_rate)) {
Stephen Boyd3fa22522014-01-15 10:47:22 -08002294 pr_warn("%s: %s must implement .set_parent & .set_rate\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002295 __func__, core->name);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002296 ret = -EINVAL;
2297 goto out;
2298 }
2299
Mike Turquetteb24764902012-03-15 23:11:19 -07002300 /* throw a WARN if any entries in parent_names are NULL */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002301 for (i = 0; i < core->num_parents; i++)
2302 WARN(!core->parent_names[i],
Mike Turquetteb24764902012-03-15 23:11:19 -07002303 "%s: invalid NULL in %s's .parent_names\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002304 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07002305
2306 /*
2307 * Allocate an array of struct clk *'s to avoid unnecessary string
2308 * look-ups of clk's possible parents. This can fail for clocks passed
Stephen Boydd6968fc2015-04-30 13:54:13 -07002309 * in to clk_init during early boot; thus any access to core->parents[]
Mike Turquetteb24764902012-03-15 23:11:19 -07002310 * must always check for a NULL pointer and try to populate it if
2311 * necessary.
2312 *
Stephen Boydd6968fc2015-04-30 13:54:13 -07002313 * If core->parents is not NULL we skip this entire block. This allows
2314 * for clock drivers to statically initialize core->parents.
Mike Turquetteb24764902012-03-15 23:11:19 -07002315 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002316 if (core->num_parents > 1 && !core->parents) {
2317 core->parents = kcalloc(core->num_parents, sizeof(struct clk *),
Tomasz Figa96a7ed92013-09-29 02:37:15 +02002318 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07002319 /*
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002320 * clk_core_lookup returns NULL for parents that have not been
Mike Turquetteb24764902012-03-15 23:11:19 -07002321 * clk_init'd; thus any access to clk->parents[] must check
2322 * for a NULL pointer. We can always perform lazy lookups for
2323 * missing parents later on.
2324 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002325 if (core->parents)
2326 for (i = 0; i < core->num_parents; i++)
2327 core->parents[i] =
2328 clk_core_lookup(core->parent_names[i]);
Mike Turquetteb24764902012-03-15 23:11:19 -07002329 }
2330
Stephen Boydd6968fc2015-04-30 13:54:13 -07002331 core->parent = __clk_init_parent(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002332
2333 /*
Stephen Boydd6968fc2015-04-30 13:54:13 -07002334 * Populate core->parent if parent has already been __clk_init'd. If
Mike Turquetteb24764902012-03-15 23:11:19 -07002335 * parent has not yet been __clk_init'd then place clk in the orphan
2336 * list. If clk has set the CLK_IS_ROOT flag then place it in the root
2337 * clk list.
2338 *
2339 * Every time a new clk is clk_init'd then we walk the list of orphan
2340 * clocks and re-parent any that are children of the clock currently
2341 * being clk_init'd.
2342 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002343 if (core->parent)
2344 hlist_add_head(&core->child_node,
2345 &core->parent->children);
2346 else if (core->flags & CLK_IS_ROOT)
2347 hlist_add_head(&core->child_node, &clk_root_list);
Mike Turquetteb24764902012-03-15 23:11:19 -07002348 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07002349 hlist_add_head(&core->child_node, &clk_orphan_list);
Mike Turquetteb24764902012-03-15 23:11:19 -07002350
2351 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002352 * Set clk's accuracy. The preferred method is to use
2353 * .recalc_accuracy. For simple clocks and lazy developers the default
2354 * fallback is to use the parent's accuracy. If a clock doesn't have a
2355 * parent (or is orphaned) then accuracy is set to zero (perfect
2356 * clock).
2357 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002358 if (core->ops->recalc_accuracy)
2359 core->accuracy = core->ops->recalc_accuracy(core->hw,
2360 __clk_get_accuracy(core->parent));
2361 else if (core->parent)
2362 core->accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002363 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07002364 core->accuracy = 0;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002365
2366 /*
Maxime Ripard9824cf72014-07-14 13:53:27 +02002367 * Set clk's phase.
2368 * Since a phase is by definition relative to its parent, just
2369 * query the current clock phase, or just assume it's in phase.
2370 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002371 if (core->ops->get_phase)
2372 core->phase = core->ops->get_phase(core->hw);
Maxime Ripard9824cf72014-07-14 13:53:27 +02002373 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07002374 core->phase = 0;
Maxime Ripard9824cf72014-07-14 13:53:27 +02002375
2376 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07002377 * Set clk's rate. The preferred method is to use .recalc_rate. For
2378 * simple clocks and lazy developers the default fallback is to use the
2379 * parent's rate. If a clock doesn't have a parent (or is orphaned)
2380 * then rate is set to zero.
2381 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002382 if (core->ops->recalc_rate)
2383 rate = core->ops->recalc_rate(core->hw,
2384 clk_core_get_rate_nolock(core->parent));
2385 else if (core->parent)
2386 rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002387 else
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002388 rate = 0;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002389 core->rate = core->req_rate = rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002390
2391 /*
2392 * walk the list of orphan clocks and reparent any that are children of
2393 * this clock
2394 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08002395 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Alex Elder12d298862013-09-05 08:33:24 -05002396 if (orphan->num_parents && orphan->ops->get_parent) {
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002397 i = orphan->ops->get_parent(orphan->hw);
Stephen Boydd6968fc2015-04-30 13:54:13 -07002398 if (!strcmp(core->name, orphan->parent_names[i]))
2399 clk_core_reparent(orphan, core);
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002400 continue;
2401 }
2402
Mike Turquetteb24764902012-03-15 23:11:19 -07002403 for (i = 0; i < orphan->num_parents; i++)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002404 if (!strcmp(core->name, orphan->parent_names[i])) {
2405 clk_core_reparent(orphan, core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002406 break;
2407 }
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002408 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002409
2410 /*
2411 * optional platform-specific magic
2412 *
2413 * The .init callback is not used by any of the basic clock types, but
2414 * exists for weird hardware that must perform initialization magic.
2415 * Please consider other ways of solving initialization problems before
Peter Meerwald24ee1a02013-06-29 15:14:19 +02002416 * using this callback, as its use is discouraged.
Mike Turquetteb24764902012-03-15 23:11:19 -07002417 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002418 if (core->ops->init)
2419 core->ops->init(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07002420
Stephen Boydd6968fc2015-04-30 13:54:13 -07002421 kref_init(&core->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07002422out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002423 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002424
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08002425 if (!ret)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002426 clk_debug_register(core);
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08002427
Mike Turquetted1302a32012-03-29 14:30:40 -07002428 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07002429}
2430
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002431struct clk *__clk_create_clk(struct clk_hw *hw, const char *dev_id,
2432 const char *con_id)
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002433{
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002434 struct clk *clk;
2435
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002436 /* This is to allow this function to be chained to others */
2437 if (!hw || IS_ERR(hw))
2438 return (struct clk *) hw;
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002439
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002440 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
2441 if (!clk)
2442 return ERR_PTR(-ENOMEM);
2443
2444 clk->core = hw->core;
2445 clk->dev_id = dev_id;
2446 clk->con_id = con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002447 clk->max_rate = ULONG_MAX;
2448
2449 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08002450 hlist_add_head(&clk->clks_node, &hw->core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002451 clk_prepare_unlock();
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002452
2453 return clk;
2454}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002455
Stephen Boyd73e0e492015-02-06 11:42:43 -08002456void __clk_free_clk(struct clk *clk)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002457{
2458 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08002459 hlist_del(&clk->clks_node);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002460 clk_prepare_unlock();
2461
2462 kfree(clk);
2463}
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002464
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002465/**
2466 * clk_register - allocate a new clock, register it and return an opaque cookie
2467 * @dev: device that is registering this clock
2468 * @hw: link to hardware-specific clock data
2469 *
2470 * clk_register is the primary interface for populating the clock tree with new
2471 * clock nodes. It returns a pointer to the newly allocated struct clk which
Shailendra Vermaa59a5162015-05-21 00:06:48 +05302472 * cannot be dereferenced by driver code but may be used in conjunction with the
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002473 * rest of the clock API. In the event of an error clk_register will return an
2474 * error code; drivers must test for an error code after calling clk_register.
2475 */
2476struct clk *clk_register(struct device *dev, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07002477{
Mike Turquetted1302a32012-03-29 14:30:40 -07002478 int i, ret;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002479 struct clk_core *core;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002480
Stephen Boydd6968fc2015-04-30 13:54:13 -07002481 core = kzalloc(sizeof(*core), GFP_KERNEL);
2482 if (!core) {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002483 ret = -ENOMEM;
2484 goto fail_out;
2485 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002486
Stephen Boydd6968fc2015-04-30 13:54:13 -07002487 core->name = kstrdup_const(hw->init->name, GFP_KERNEL);
2488 if (!core->name) {
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002489 ret = -ENOMEM;
2490 goto fail_name;
2491 }
Stephen Boydd6968fc2015-04-30 13:54:13 -07002492 core->ops = hw->init->ops;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002493 if (dev && dev->driver)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002494 core->owner = dev->driver->owner;
2495 core->hw = hw;
2496 core->flags = hw->init->flags;
2497 core->num_parents = hw->init->num_parents;
2498 hw->core = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07002499
Mike Turquetted1302a32012-03-29 14:30:40 -07002500 /* allocate local copy in case parent_names is __initdata */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002501 core->parent_names = kcalloc(core->num_parents, sizeof(char *),
Tomasz Figa96a7ed92013-09-29 02:37:15 +02002502 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07002503
Stephen Boydd6968fc2015-04-30 13:54:13 -07002504 if (!core->parent_names) {
Mike Turquetted1302a32012-03-29 14:30:40 -07002505 ret = -ENOMEM;
2506 goto fail_parent_names;
2507 }
2508
2509
2510 /* copy each string name in case parent_names is __initdata */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002511 for (i = 0; i < core->num_parents; i++) {
2512 core->parent_names[i] = kstrdup_const(hw->init->parent_names[i],
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002513 GFP_KERNEL);
Stephen Boydd6968fc2015-04-30 13:54:13 -07002514 if (!core->parent_names[i]) {
Mike Turquetted1302a32012-03-29 14:30:40 -07002515 ret = -ENOMEM;
2516 goto fail_parent_names_copy;
2517 }
2518 }
2519
Stephen Boydd6968fc2015-04-30 13:54:13 -07002520 INIT_HLIST_HEAD(&core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002521
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002522 hw->clk = __clk_create_clk(hw, NULL, NULL);
2523 if (IS_ERR(hw->clk)) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002524 ret = PTR_ERR(hw->clk);
2525 goto fail_parent_names_copy;
2526 }
Mike Turquetted1302a32012-03-29 14:30:40 -07002527
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002528 ret = __clk_init(dev, hw->clk);
Mike Turquetted1302a32012-03-29 14:30:40 -07002529 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002530 return hw->clk;
2531
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002532 __clk_free_clk(hw->clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002533 hw->clk = NULL;
Mike Turquetted1302a32012-03-29 14:30:40 -07002534
2535fail_parent_names_copy:
2536 while (--i >= 0)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002537 kfree_const(core->parent_names[i]);
2538 kfree(core->parent_names);
Mike Turquetted1302a32012-03-29 14:30:40 -07002539fail_parent_names:
Stephen Boydd6968fc2015-04-30 13:54:13 -07002540 kfree_const(core->name);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002541fail_name:
Stephen Boydd6968fc2015-04-30 13:54:13 -07002542 kfree(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07002543fail_out:
2544 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07002545}
2546EXPORT_SYMBOL_GPL(clk_register);
2547
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002548/* Free memory allocated for a clock. */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002549static void __clk_release(struct kref *ref)
2550{
Stephen Boydd6968fc2015-04-30 13:54:13 -07002551 struct clk_core *core = container_of(ref, struct clk_core, ref);
2552 int i = core->num_parents;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002553
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01002554 lockdep_assert_held(&prepare_lock);
2555
Stephen Boydd6968fc2015-04-30 13:54:13 -07002556 kfree(core->parents);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002557 while (--i >= 0)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002558 kfree_const(core->parent_names[i]);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002559
Stephen Boydd6968fc2015-04-30 13:54:13 -07002560 kfree(core->parent_names);
2561 kfree_const(core->name);
2562 kfree(core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002563}
2564
2565/*
2566 * Empty clk_ops for unregistered clocks. These are used temporarily
2567 * after clk_unregister() was called on a clock and until last clock
2568 * consumer calls clk_put() and the struct clk object is freed.
2569 */
2570static int clk_nodrv_prepare_enable(struct clk_hw *hw)
2571{
2572 return -ENXIO;
2573}
2574
2575static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
2576{
2577 WARN_ON_ONCE(1);
2578}
2579
2580static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
2581 unsigned long parent_rate)
2582{
2583 return -ENXIO;
2584}
2585
2586static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
2587{
2588 return -ENXIO;
2589}
2590
2591static const struct clk_ops clk_nodrv_ops = {
2592 .enable = clk_nodrv_prepare_enable,
2593 .disable = clk_nodrv_disable_unprepare,
2594 .prepare = clk_nodrv_prepare_enable,
2595 .unprepare = clk_nodrv_disable_unprepare,
2596 .set_rate = clk_nodrv_set_rate,
2597 .set_parent = clk_nodrv_set_parent,
2598};
2599
Mark Brown1df5c932012-04-18 09:07:12 +01002600/**
2601 * clk_unregister - unregister a currently registered clock
2602 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01002603 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002604void clk_unregister(struct clk *clk)
2605{
2606 unsigned long flags;
2607
Stephen Boyd6314b672014-09-04 23:37:49 -07002608 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
2609 return;
2610
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002611 clk_debug_unregister(clk->core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002612
2613 clk_prepare_lock();
2614
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002615 if (clk->core->ops == &clk_nodrv_ops) {
2616 pr_err("%s: unregistered clock: %s\n", __func__,
2617 clk->core->name);
Stephen Boyd6314b672014-09-04 23:37:49 -07002618 return;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002619 }
2620 /*
2621 * Assign empty clock ops for consumers that might still hold
2622 * a reference to this clock.
2623 */
2624 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002625 clk->core->ops = &clk_nodrv_ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002626 clk_enable_unlock(flags);
2627
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002628 if (!hlist_empty(&clk->core->children)) {
2629 struct clk_core *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07002630 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002631
2632 /* Reparent all children to the orphan list. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002633 hlist_for_each_entry_safe(child, t, &clk->core->children,
2634 child_node)
2635 clk_core_set_parent(child, NULL);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002636 }
2637
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002638 hlist_del_init(&clk->core->child_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002639
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002640 if (clk->core->prepare_count)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002641 pr_warn("%s: unregistering prepared clock: %s\n",
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002642 __func__, clk->core->name);
2643 kref_put(&clk->core->ref, __clk_release);
Stephen Boyd6314b672014-09-04 23:37:49 -07002644
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002645 clk_prepare_unlock();
2646}
Mark Brown1df5c932012-04-18 09:07:12 +01002647EXPORT_SYMBOL_GPL(clk_unregister);
2648
Stephen Boyd46c87732012-09-24 13:38:04 -07002649static void devm_clk_release(struct device *dev, void *res)
2650{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002651 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07002652}
2653
2654/**
2655 * devm_clk_register - resource managed clk_register()
2656 * @dev: device that is registering this clock
2657 * @hw: link to hardware-specific clock data
2658 *
2659 * Managed clk_register(). Clocks returned from this function are
2660 * automatically clk_unregister()ed on driver detach. See clk_register() for
2661 * more information.
2662 */
2663struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
2664{
2665 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002666 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07002667
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002668 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
2669 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07002670 return ERR_PTR(-ENOMEM);
2671
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002672 clk = clk_register(dev, hw);
2673 if (!IS_ERR(clk)) {
2674 *clkp = clk;
2675 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002676 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07002677 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07002678 }
2679
2680 return clk;
2681}
2682EXPORT_SYMBOL_GPL(devm_clk_register);
2683
2684static int devm_clk_match(struct device *dev, void *res, void *data)
2685{
2686 struct clk *c = res;
2687 if (WARN_ON(!c))
2688 return 0;
2689 return c == data;
2690}
2691
2692/**
2693 * devm_clk_unregister - resource managed clk_unregister()
2694 * @clk: clock to unregister
2695 *
2696 * Deallocate a clock allocated with devm_clk_register(). Normally
2697 * this function will not need to be called and the resource management
2698 * code will ensure that the resource is freed.
2699 */
2700void devm_clk_unregister(struct device *dev, struct clk *clk)
2701{
2702 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
2703}
2704EXPORT_SYMBOL_GPL(devm_clk_unregister);
2705
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002706/*
2707 * clkdev helpers
2708 */
2709int __clk_get(struct clk *clk)
2710{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002711 struct clk_core *core = !clk ? NULL : clk->core;
2712
2713 if (core) {
2714 if (!try_module_get(core->owner))
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002715 return 0;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002716
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002717 kref_get(&core->ref);
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002718 }
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002719 return 1;
2720}
2721
2722void __clk_put(struct clk *clk)
2723{
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01002724 struct module *owner;
2725
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01002726 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002727 return;
2728
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002729 clk_prepare_lock();
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002730
Stephen Boyd50595f82015-02-06 11:42:44 -08002731 hlist_del(&clk->clks_node);
Tomeu Vizosoec02ace2015-02-06 15:13:01 +01002732 if (clk->min_rate > clk->core->req_rate ||
2733 clk->max_rate < clk->core->req_rate)
2734 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
2735
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002736 owner = clk->core->owner;
2737 kref_put(&clk->core->ref, __clk_release);
2738
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02002739 clk_prepare_unlock();
2740
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01002741 module_put(owner);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002742
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002743 kfree(clk);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02002744}
2745
Mike Turquetteb24764902012-03-15 23:11:19 -07002746/*** clk rate change notifiers ***/
2747
2748/**
2749 * clk_notifier_register - add a clk rate change notifier
2750 * @clk: struct clk * to watch
2751 * @nb: struct notifier_block * with callback info
2752 *
2753 * Request notification when clk's rate changes. This uses an SRCU
2754 * notifier because we want it to block and notifier unregistrations are
2755 * uncommon. The callbacks associated with the notifier must not
2756 * re-enter into the clk framework by calling any top-level clk APIs;
2757 * this will cause a nested prepare_lock mutex.
2758 *
Soren Brinkmann5324fda2014-01-22 11:48:37 -08002759 * In all notification cases cases (pre, post and abort rate change) the
2760 * original clock rate is passed to the callback via struct
2761 * clk_notifier_data.old_rate and the new frequency is passed via struct
Mike Turquetteb24764902012-03-15 23:11:19 -07002762 * clk_notifier_data.new_rate.
2763 *
Mike Turquetteb24764902012-03-15 23:11:19 -07002764 * clk_notifier_register() must be called from non-atomic context.
2765 * Returns -EINVAL if called with null arguments, -ENOMEM upon
2766 * allocation failure; otherwise, passes along the return value of
2767 * srcu_notifier_chain_register().
2768 */
2769int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
2770{
2771 struct clk_notifier *cn;
2772 int ret = -ENOMEM;
2773
2774 if (!clk || !nb)
2775 return -EINVAL;
2776
Mike Turquetteeab89f62013-03-28 13:59:01 -07002777 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002778
2779 /* search the list of notifiers for this clk */
2780 list_for_each_entry(cn, &clk_notifier_list, node)
2781 if (cn->clk == clk)
2782 break;
2783
2784 /* if clk wasn't in the notifier list, allocate new clk_notifier */
2785 if (cn->clk != clk) {
2786 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
2787 if (!cn)
2788 goto out;
2789
2790 cn->clk = clk;
2791 srcu_init_notifier_head(&cn->notifier_head);
2792
2793 list_add(&cn->node, &clk_notifier_list);
2794 }
2795
2796 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
2797
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002798 clk->core->notifier_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07002799
2800out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002801 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002802
2803 return ret;
2804}
2805EXPORT_SYMBOL_GPL(clk_notifier_register);
2806
2807/**
2808 * clk_notifier_unregister - remove a clk rate change notifier
2809 * @clk: struct clk *
2810 * @nb: struct notifier_block * with callback info
2811 *
2812 * Request no further notification for changes to 'clk' and frees memory
2813 * allocated in clk_notifier_register.
2814 *
2815 * Returns -EINVAL if called with null arguments; otherwise, passes
2816 * along the return value of srcu_notifier_chain_unregister().
2817 */
2818int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
2819{
2820 struct clk_notifier *cn = NULL;
2821 int ret = -EINVAL;
2822
2823 if (!clk || !nb)
2824 return -EINVAL;
2825
Mike Turquetteeab89f62013-03-28 13:59:01 -07002826 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002827
2828 list_for_each_entry(cn, &clk_notifier_list, node)
2829 if (cn->clk == clk)
2830 break;
2831
2832 if (cn->clk == clk) {
2833 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
2834
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002835 clk->core->notifier_count--;
Mike Turquetteb24764902012-03-15 23:11:19 -07002836
2837 /* XXX the notifier code should handle this better */
2838 if (!cn->notifier_head.head) {
2839 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08002840 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07002841 kfree(cn);
2842 }
2843
2844 } else {
2845 ret = -ENOENT;
2846 }
2847
Mike Turquetteeab89f62013-03-28 13:59:01 -07002848 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002849
2850 return ret;
2851}
2852EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05002853
2854#ifdef CONFIG_OF
2855/**
2856 * struct of_clk_provider - Clock provider registration structure
2857 * @link: Entry in global list of clock providers
2858 * @node: Pointer to device tree node of clock provider
2859 * @get: Get clock callback. Returns NULL or a struct clk for the
2860 * given clock specifier
2861 * @data: context pointer to be passed into @get callback
2862 */
2863struct of_clk_provider {
2864 struct list_head link;
2865
2866 struct device_node *node;
2867 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
2868 void *data;
2869};
2870
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05302871static const struct of_device_id __clk_of_table_sentinel
2872 __used __section(__clk_of_table_end);
2873
Grant Likely766e6a42012-04-09 14:50:06 -05002874static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002875static DEFINE_MUTEX(of_clk_mutex);
2876
Grant Likely766e6a42012-04-09 14:50:06 -05002877struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
2878 void *data)
2879{
2880 return data;
2881}
2882EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
2883
Shawn Guo494bfec2012-08-22 21:36:27 +08002884struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
2885{
2886 struct clk_onecell_data *clk_data = data;
2887 unsigned int idx = clkspec->args[0];
2888
2889 if (idx >= clk_data->clk_num) {
2890 pr_err("%s: invalid clock index %d\n", __func__, idx);
2891 return ERR_PTR(-EINVAL);
2892 }
2893
2894 return clk_data->clks[idx];
2895}
2896EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
2897
Grant Likely766e6a42012-04-09 14:50:06 -05002898/**
2899 * of_clk_add_provider() - Register a clock provider for a node
2900 * @np: Device node pointer associated with clock provider
2901 * @clk_src_get: callback for decoding clock
2902 * @data: context pointer for @clk_src_get callback.
2903 */
2904int of_clk_add_provider(struct device_node *np,
2905 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
2906 void *data),
2907 void *data)
2908{
2909 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002910 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05002911
2912 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
2913 if (!cp)
2914 return -ENOMEM;
2915
2916 cp->node = of_node_get(np);
2917 cp->data = data;
2918 cp->get = clk_src_get;
2919
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002920 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002921 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002922 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002923 pr_debug("Added clock from %s\n", np->full_name);
2924
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02002925 ret = of_clk_set_defaults(np, true);
2926 if (ret < 0)
2927 of_clk_del_provider(np);
2928
2929 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05002930}
2931EXPORT_SYMBOL_GPL(of_clk_add_provider);
2932
2933/**
2934 * of_clk_del_provider() - Remove a previously registered clock provider
2935 * @np: Device node pointer associated with clock provider
2936 */
2937void of_clk_del_provider(struct device_node *np)
2938{
2939 struct of_clk_provider *cp;
2940
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002941 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002942 list_for_each_entry(cp, &of_clk_providers, link) {
2943 if (cp->node == np) {
2944 list_del(&cp->link);
2945 of_node_put(cp->node);
2946 kfree(cp);
2947 break;
2948 }
2949 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002950 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002951}
2952EXPORT_SYMBOL_GPL(of_clk_del_provider);
2953
Stephen Boyd73e0e492015-02-06 11:42:43 -08002954struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec,
2955 const char *dev_id, const char *con_id)
Grant Likely766e6a42012-04-09 14:50:06 -05002956{
2957 struct of_clk_provider *provider;
Jean-Francois Moinea34cd462013-11-25 19:47:04 +01002958 struct clk *clk = ERR_PTR(-EPROBE_DEFER);
Grant Likely766e6a42012-04-09 14:50:06 -05002959
Stephen Boyd306c3422015-02-05 15:39:11 -08002960 if (!clkspec)
2961 return ERR_PTR(-EINVAL);
2962
Grant Likely766e6a42012-04-09 14:50:06 -05002963 /* Check if we have such a provider in our array */
Stephen Boyd306c3422015-02-05 15:39:11 -08002964 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05002965 list_for_each_entry(provider, &of_clk_providers, link) {
2966 if (provider->node == clkspec->np)
2967 clk = provider->get(clkspec, provider->data);
Stephen Boyd73e0e492015-02-06 11:42:43 -08002968 if (!IS_ERR(clk)) {
2969 clk = __clk_create_clk(__clk_get_hw(clk), dev_id,
2970 con_id);
2971
2972 if (!IS_ERR(clk) && !__clk_get(clk)) {
2973 __clk_free_clk(clk);
2974 clk = ERR_PTR(-ENOENT);
2975 }
2976
Grant Likely766e6a42012-04-09 14:50:06 -05002977 break;
Stephen Boyd73e0e492015-02-06 11:42:43 -08002978 }
Grant Likely766e6a42012-04-09 14:50:06 -05002979 }
Stephen Boyd306c3422015-02-05 15:39:11 -08002980 mutex_unlock(&of_clk_mutex);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002981
2982 return clk;
2983}
2984
Stephen Boyd306c3422015-02-05 15:39:11 -08002985/**
2986 * of_clk_get_from_provider() - Lookup a clock from a clock provider
2987 * @clkspec: pointer to a clock specifier data structure
2988 *
2989 * This function looks up a struct clk from the registered list of clock
2990 * providers, an input is a clock specifier data structure as returned
2991 * from the of_parse_phandle_with_args() function call.
2992 */
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02002993struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
2994{
Stephen Boyd306c3422015-02-05 15:39:11 -08002995 return __of_clk_get_from_provider(clkspec, NULL, __func__);
Grant Likely766e6a42012-04-09 14:50:06 -05002996}
2997
Mike Turquettef6102742013-10-07 23:12:13 -07002998int of_clk_get_parent_count(struct device_node *np)
2999{
3000 return of_count_phandle_with_args(np, "clocks", "#clock-cells");
3001}
3002EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
3003
Grant Likely766e6a42012-04-09 14:50:06 -05003004const char *of_clk_get_parent_name(struct device_node *np, int index)
3005{
3006 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003007 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05003008 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003009 const __be32 *vp;
3010 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05003011 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003012 int count;
Grant Likely766e6a42012-04-09 14:50:06 -05003013
3014 if (index < 0)
3015 return NULL;
3016
3017 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
3018 &clkspec);
3019 if (rc)
3020 return NULL;
3021
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003022 index = clkspec.args_count ? clkspec.args[0] : 0;
3023 count = 0;
3024
3025 /* if there is an indices property, use it to transfer the index
3026 * specified into an array offset for the clock-output-names property.
3027 */
3028 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
3029 if (index == pv) {
3030 index = count;
3031 break;
3032 }
3033 count++;
3034 }
3035
Grant Likely766e6a42012-04-09 14:50:06 -05003036 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003037 index,
Grant Likely766e6a42012-04-09 14:50:06 -05003038 &clk_name) < 0)
3039 clk_name = clkspec.np->name;
3040
3041 of_node_put(clkspec.np);
3042 return clk_name;
3043}
3044EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
3045
Dinh Nguyen2e61dfb2015-06-05 11:26:13 -05003046/**
3047 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
3048 * number of parents
3049 * @np: Device node pointer associated with clock provider
3050 * @parents: pointer to char array that hold the parents' names
3051 * @size: size of the @parents array
3052 *
3053 * Return: number of parents for the clock node.
3054 */
3055int of_clk_parent_fill(struct device_node *np, const char **parents,
3056 unsigned int size)
3057{
3058 unsigned int i = 0;
3059
3060 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
3061 i++;
3062
3063 return i;
3064}
3065EXPORT_SYMBOL_GPL(of_clk_parent_fill);
3066
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003067struct clock_provider {
3068 of_clk_init_cb_t clk_init_cb;
3069 struct device_node *np;
3070 struct list_head node;
3071};
3072
3073static LIST_HEAD(clk_provider_list);
3074
3075/*
3076 * This function looks for a parent clock. If there is one, then it
3077 * checks that the provider for this parent clock was initialized, in
3078 * this case the parent clock will be ready.
3079 */
3080static int parent_ready(struct device_node *np)
3081{
3082 int i = 0;
3083
3084 while (true) {
3085 struct clk *clk = of_clk_get(np, i);
3086
3087 /* this parent is ready we can check the next one */
3088 if (!IS_ERR(clk)) {
3089 clk_put(clk);
3090 i++;
3091 continue;
3092 }
3093
3094 /* at least one parent is not ready, we exit now */
3095 if (PTR_ERR(clk) == -EPROBE_DEFER)
3096 return 0;
3097
3098 /*
3099 * Here we make assumption that the device tree is
3100 * written correctly. So an error means that there is
3101 * no more parent. As we didn't exit yet, then the
3102 * previous parent are ready. If there is no clock
3103 * parent, no need to wait for them, then we can
3104 * consider their absence as being ready
3105 */
3106 return 1;
3107 }
3108}
3109
Grant Likely766e6a42012-04-09 14:50:06 -05003110/**
3111 * of_clk_init() - Scan and init clock providers from the DT
3112 * @matches: array of compatible values and init functions for providers.
3113 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003114 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01003115 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003116 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05003117 */
3118void __init of_clk_init(const struct of_device_id *matches)
3119{
Alex Elder7f7ed582013-08-22 11:31:31 -05003120 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05003121 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003122 struct clock_provider *clk_provider, *next;
3123 bool is_init_done;
3124 bool force = false;
Grant Likely766e6a42012-04-09 14:50:06 -05003125
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05303126 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03003127 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05303128
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003129 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05003130 for_each_matching_node_and_match(np, matches, &match) {
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003131 struct clock_provider *parent =
3132 kzalloc(sizeof(struct clock_provider), GFP_KERNEL);
3133
3134 parent->clk_init_cb = match->data;
3135 parent->np = np;
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01003136 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003137 }
3138
3139 while (!list_empty(&clk_provider_list)) {
3140 is_init_done = false;
3141 list_for_each_entry_safe(clk_provider, next,
3142 &clk_provider_list, node) {
3143 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02003144
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003145 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02003146 of_clk_set_defaults(clk_provider->np, true);
3147
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003148 list_del(&clk_provider->node);
3149 kfree(clk_provider);
3150 is_init_done = true;
3151 }
3152 }
3153
3154 /*
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01003155 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003156 * remaining providers during the last loop, so now we
3157 * initialize all the remaining ones unconditionally
3158 * in case the clock parent was not mandatory
3159 */
3160 if (!is_init_done)
3161 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05003162 }
3163}
3164#endif