blob: 7af555f0e60c1b7d4ac31020a0765a6674064037 [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
Stephen Boyd3c373112015-06-19 15:00:46 -070012#include <linux/clk.h>
Michael Turquetteb09d6d92015-01-29 14:22:50 -080013#include <linux/clk-provider.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020014#include <linux/clk/clk-conf.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070015#include <linux/module.h>
16#include <linux/mutex.h>
17#include <linux/spinlock.h>
18#include <linux/err.h>
19#include <linux/list.h>
20#include <linux/slab.h>
Grant Likely766e6a42012-04-09 14:50:06 -050021#include <linux/of.h>
Stephen Boyd46c87732012-09-24 13:38:04 -070022#include <linux/device.h>
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +053023#include <linux/init.h>
Marek Szyprowski9a34b452017-08-21 10:04:59 +020024#include <linux/pm_runtime.h>
Mike Turquette533ddeb2013-03-28 13:59:02 -070025#include <linux/sched.h>
Stephen Boyd562ef0b2015-05-01 12:16:14 -070026#include <linux/clkdev.h>
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +010027#include <linux/stringify.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070028
Sylwester Nawrockid6782c22013-08-23 17:03:43 +020029#include "clk.h"
30
Mike Turquetteb24764902012-03-15 23:11:19 -070031static DEFINE_SPINLOCK(enable_lock);
32static DEFINE_MUTEX(prepare_lock);
33
Mike Turquette533ddeb2013-03-28 13:59:02 -070034static struct task_struct *prepare_owner;
35static struct task_struct *enable_owner;
36
37static int prepare_refcnt;
38static int enable_refcnt;
39
Mike Turquetteb24764902012-03-15 23:11:19 -070040static HLIST_HEAD(clk_root_list);
41static HLIST_HEAD(clk_orphan_list);
42static LIST_HEAD(clk_notifier_list);
43
Michael Turquetteb09d6d92015-01-29 14:22:50 -080044/*** private data structures ***/
45
46struct clk_core {
47 const char *name;
48 const struct clk_ops *ops;
49 struct clk_hw *hw;
50 struct module *owner;
Marek Szyprowski9a34b452017-08-21 10:04:59 +020051 struct device *dev;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080052 struct clk_core *parent;
53 const char **parent_names;
54 struct clk_core **parents;
55 u8 num_parents;
56 u8 new_parent_index;
57 unsigned long rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010058 unsigned long req_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080059 unsigned long new_rate;
60 struct clk_core *new_parent;
61 struct clk_core *new_child;
62 unsigned long flags;
Heiko Stuebnere6500342015-04-22 22:53:05 +020063 bool orphan;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080064 unsigned int enable_count;
65 unsigned int prepare_count;
Jerome Brunete55a8392017-12-01 22:51:56 +010066 unsigned int protect_count;
Stephen Boyd9783c0d2015-07-16 12:50:27 -070067 unsigned long min_rate;
68 unsigned long max_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080069 unsigned long accuracy;
70 int phase;
71 struct hlist_head children;
72 struct hlist_node child_node;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010073 struct hlist_head clks;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080074 unsigned int notifier_count;
75#ifdef CONFIG_DEBUG_FS
76 struct dentry *dentry;
Maxime Coquelin8c9a8a82015-06-10 13:28:27 +020077 struct hlist_node debug_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080078#endif
79 struct kref ref;
80};
81
Stephen Boyddfc202e2015-02-02 14:37:41 -080082#define CREATE_TRACE_POINTS
83#include <trace/events/clk.h>
84
Michael Turquetteb09d6d92015-01-29 14:22:50 -080085struct clk {
86 struct clk_core *core;
87 const char *dev_id;
88 const char *con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010089 unsigned long min_rate;
90 unsigned long max_rate;
Jerome Brunet55e9b8b2017-12-01 22:51:59 +010091 unsigned int exclusive_count;
Stephen Boyd50595f82015-02-06 11:42:44 -080092 struct hlist_node clks_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080093};
94
Marek Szyprowski9a34b452017-08-21 10:04:59 +020095/*** runtime pm ***/
96static int clk_pm_runtime_get(struct clk_core *core)
97{
98 int ret = 0;
99
100 if (!core->dev)
101 return 0;
102
103 ret = pm_runtime_get_sync(core->dev);
104 return ret < 0 ? ret : 0;
105}
106
107static void clk_pm_runtime_put(struct clk_core *core)
108{
109 if (!core->dev)
110 return;
111
112 pm_runtime_put_sync(core->dev);
113}
114
Mike Turquetteeab89f62013-03-28 13:59:01 -0700115/*** locking ***/
116static void clk_prepare_lock(void)
117{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700118 if (!mutex_trylock(&prepare_lock)) {
119 if (prepare_owner == current) {
120 prepare_refcnt++;
121 return;
122 }
123 mutex_lock(&prepare_lock);
124 }
125 WARN_ON_ONCE(prepare_owner != NULL);
126 WARN_ON_ONCE(prepare_refcnt != 0);
127 prepare_owner = current;
128 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700129}
130
131static void clk_prepare_unlock(void)
132{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700133 WARN_ON_ONCE(prepare_owner != current);
134 WARN_ON_ONCE(prepare_refcnt == 0);
135
136 if (--prepare_refcnt)
137 return;
138 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700139 mutex_unlock(&prepare_lock);
140}
141
142static unsigned long clk_enable_lock(void)
Stephen Boyda57aa182015-07-24 12:24:48 -0700143 __acquires(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700144{
145 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -0700146
David Lechnera12aa8a2018-01-04 19:46:08 -0600147 /*
148 * On UP systems, spin_trylock_irqsave() always returns true, even if
149 * we already hold the lock. So, in that case, we rely only on
150 * reference counting.
151 */
152 if (!IS_ENABLED(CONFIG_SMP) ||
153 !spin_trylock_irqsave(&enable_lock, flags)) {
Mike Turquette533ddeb2013-03-28 13:59:02 -0700154 if (enable_owner == current) {
155 enable_refcnt++;
Stephen Boyda57aa182015-07-24 12:24:48 -0700156 __acquire(enable_lock);
David Lechnera12aa8a2018-01-04 19:46:08 -0600157 if (!IS_ENABLED(CONFIG_SMP))
158 local_save_flags(flags);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700159 return flags;
160 }
161 spin_lock_irqsave(&enable_lock, flags);
162 }
163 WARN_ON_ONCE(enable_owner != NULL);
164 WARN_ON_ONCE(enable_refcnt != 0);
165 enable_owner = current;
166 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700167 return flags;
168}
169
170static void clk_enable_unlock(unsigned long flags)
Stephen Boyda57aa182015-07-24 12:24:48 -0700171 __releases(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700172{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700173 WARN_ON_ONCE(enable_owner != current);
174 WARN_ON_ONCE(enable_refcnt == 0);
175
Stephen Boyda57aa182015-07-24 12:24:48 -0700176 if (--enable_refcnt) {
177 __release(enable_lock);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700178 return;
Stephen Boyda57aa182015-07-24 12:24:48 -0700179 }
Mike Turquette533ddeb2013-03-28 13:59:02 -0700180 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700181 spin_unlock_irqrestore(&enable_lock, flags);
182}
183
Jerome Brunete55a8392017-12-01 22:51:56 +0100184static bool clk_core_rate_is_protected(struct clk_core *core)
185{
186 return core->protect_count;
187}
188
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700189static bool clk_core_is_prepared(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530190{
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200191 bool ret = false;
192
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700193 /*
194 * .is_prepared is optional for clocks that can prepare
195 * fall back to software usage counter if it is missing
196 */
197 if (!core->ops->is_prepared)
198 return core->prepare_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530199
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200200 if (!clk_pm_runtime_get(core)) {
201 ret = core->ops->is_prepared(core->hw);
202 clk_pm_runtime_put(core);
203 }
204
205 return ret;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530206}
207
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700208static bool clk_core_is_enabled(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530209{
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200210 bool ret = false;
211
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700212 /*
213 * .is_enabled is only mandatory for clocks that gate
214 * fall back to software usage counter if .is_enabled is missing
215 */
216 if (!core->ops->is_enabled)
217 return core->enable_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530218
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200219 /*
220 * Check if clock controller's device is runtime active before
221 * calling .is_enabled callback. If not, assume that clock is
222 * disabled, because we might be called from atomic context, from
223 * which pm_runtime_get() is not allowed.
224 * This function is called mainly from clk_disable_unused_subtree,
225 * which ensures proper runtime pm activation of controller before
226 * taking enable spinlock, but the below check is needed if one tries
227 * to call it from other places.
228 */
229 if (core->dev) {
230 pm_runtime_get_noresume(core->dev);
231 if (!pm_runtime_active(core->dev)) {
232 ret = false;
233 goto done;
234 }
235 }
236
237 ret = core->ops->is_enabled(core->hw);
238done:
Dong Aisheng756efe12017-12-22 17:46:04 +0800239 if (core->dev)
240 pm_runtime_put(core->dev);
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200241
242 return ret;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530243}
244
Mike Turquetteb24764902012-03-15 23:11:19 -0700245/*** helper functions ***/
246
Geert Uytterhoevenb76281c2015-10-16 14:35:21 +0200247const char *__clk_get_name(const struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700248{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100249 return !clk ? NULL : clk->core->name;
Mike Turquetteb24764902012-03-15 23:11:19 -0700250}
Niels de Vos48950842012-12-13 13:12:25 +0100251EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700252
Stephen Boyde7df6f62015-08-12 13:04:56 -0700253const char *clk_hw_get_name(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700254{
255 return hw->core->name;
256}
257EXPORT_SYMBOL_GPL(clk_hw_get_name);
258
Russ Dill65800b22012-11-26 11:20:09 -0800259struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700260{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100261 return !clk ? NULL : clk->core->hw;
Mike Turquetteb24764902012-03-15 23:11:19 -0700262}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800263EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700264
Stephen Boyde7df6f62015-08-12 13:04:56 -0700265unsigned int clk_hw_get_num_parents(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700266{
267 return hw->core->num_parents;
268}
269EXPORT_SYMBOL_GPL(clk_hw_get_num_parents);
270
Stephen Boyde7df6f62015-08-12 13:04:56 -0700271struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700272{
273 return hw->core->parent ? hw->core->parent->hw : NULL;
274}
275EXPORT_SYMBOL_GPL(clk_hw_get_parent);
276
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700277static struct clk_core *__clk_lookup_subtree(const char *name,
278 struct clk_core *core)
279{
280 struct clk_core *child;
281 struct clk_core *ret;
282
283 if (!strcmp(core->name, name))
284 return core;
285
286 hlist_for_each_entry(child, &core->children, child_node) {
287 ret = __clk_lookup_subtree(name, child);
288 if (ret)
289 return ret;
290 }
291
292 return NULL;
293}
294
295static struct clk_core *clk_core_lookup(const char *name)
296{
297 struct clk_core *root_clk;
298 struct clk_core *ret;
299
300 if (!name)
301 return NULL;
302
303 /* search the 'proper' clk tree first */
304 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
305 ret = __clk_lookup_subtree(name, root_clk);
306 if (ret)
307 return ret;
308 }
309
310 /* if not found, then search the orphan tree */
311 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
312 ret = __clk_lookup_subtree(name, root_clk);
313 if (ret)
314 return ret;
315 }
316
317 return NULL;
318}
319
Stephen Boydd6968fc2015-04-30 13:54:13 -0700320static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100321 u8 index)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100322{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700323 if (!core || index >= core->num_parents)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100324 return NULL;
Masahiro Yamada88cfbef2015-12-28 19:23:01 +0900325
326 if (!core->parents[index])
327 core->parents[index] =
328 clk_core_lookup(core->parent_names[index]);
329
330 return core->parents[index];
James Hogan7ef3dcc2013-07-29 12:24:58 +0100331}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100332
Stephen Boyde7df6f62015-08-12 13:04:56 -0700333struct clk_hw *
334clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700335{
336 struct clk_core *parent;
337
338 parent = clk_core_get_parent_by_index(hw->core, index);
339
340 return !parent ? NULL : parent->hw;
341}
342EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
343
Russ Dill65800b22012-11-26 11:20:09 -0800344unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700345{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100346 return !clk ? 0 : clk->core->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700347}
348
Stephen Boydd6968fc2015-04-30 13:54:13 -0700349static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700350{
351 unsigned long ret;
352
Stephen Boydd6968fc2015-04-30 13:54:13 -0700353 if (!core) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530354 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700355 goto out;
356 }
357
Stephen Boydd6968fc2015-04-30 13:54:13 -0700358 ret = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700359
Stephen Boyd47b0eeb2016-02-02 17:24:56 -0800360 if (!core->num_parents)
Mike Turquetteb24764902012-03-15 23:11:19 -0700361 goto out;
362
Stephen Boydd6968fc2015-04-30 13:54:13 -0700363 if (!core->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530364 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700365
366out:
367 return ret;
368}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100369
Stephen Boyde7df6f62015-08-12 13:04:56 -0700370unsigned long clk_hw_get_rate(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700371{
372 return clk_core_get_rate_nolock(hw->core);
373}
374EXPORT_SYMBOL_GPL(clk_hw_get_rate);
375
Stephen Boydd6968fc2015-04-30 13:54:13 -0700376static unsigned long __clk_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100377{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700378 if (!core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100379 return 0;
380
Stephen Boydd6968fc2015-04-30 13:54:13 -0700381 return core->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100382}
383
Russ Dill65800b22012-11-26 11:20:09 -0800384unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700385{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100386 return !clk ? 0 : clk->core->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700387}
Thierry Redingb05c6832013-09-03 09:43:51 +0200388EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700389
Stephen Boyde7df6f62015-08-12 13:04:56 -0700390unsigned long clk_hw_get_flags(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700391{
392 return hw->core->flags;
393}
394EXPORT_SYMBOL_GPL(clk_hw_get_flags);
395
Stephen Boyde7df6f62015-08-12 13:04:56 -0700396bool clk_hw_is_prepared(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700397{
398 return clk_core_is_prepared(hw->core);
399}
400
Jerome Brunete55a8392017-12-01 22:51:56 +0100401bool clk_hw_rate_is_protected(const struct clk_hw *hw)
402{
403 return clk_core_rate_is_protected(hw->core);
404}
405
Joachim Eastwoodbe68bf82015-10-24 18:55:22 +0200406bool clk_hw_is_enabled(const struct clk_hw *hw)
407{
408 return clk_core_is_enabled(hw->core);
409}
410
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100411bool __clk_is_enabled(struct clk *clk)
412{
413 if (!clk)
414 return false;
415
416 return clk_core_is_enabled(clk->core);
417}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800418EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700419
Stephen Boyd15a02c12015-01-19 18:05:28 -0800420static bool mux_is_better_rate(unsigned long rate, unsigned long now,
421 unsigned long best, unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100422{
Stephen Boyd15a02c12015-01-19 18:05:28 -0800423 if (flags & CLK_MUX_ROUND_CLOSEST)
424 return abs(now - rate) < abs(best - rate);
425
426 return now <= rate && now > best;
427}
428
Jerome Brunet4ad69b802018-04-09 15:59:20 +0200429int clk_mux_determine_rate_flags(struct clk_hw *hw,
430 struct clk_rate_request *req,
431 unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100432{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100433 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
Boris Brezillon0817b622015-07-07 20:48:08 +0200434 int i, num_parents, ret;
435 unsigned long best = 0;
436 struct clk_rate_request parent_req = *req;
James Hogane366fdd2013-07-29 12:25:02 +0100437
438 /* if NO_REPARENT flag set, pass through to current parent */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100439 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
440 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200441 if (core->flags & CLK_SET_RATE_PARENT) {
442 ret = __clk_determine_rate(parent ? parent->hw : NULL,
443 &parent_req);
444 if (ret)
445 return ret;
446
447 best = parent_req.rate;
448 } else if (parent) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100449 best = clk_core_get_rate_nolock(parent);
Boris Brezillon0817b622015-07-07 20:48:08 +0200450 } else {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100451 best = clk_core_get_rate_nolock(core);
Boris Brezillon0817b622015-07-07 20:48:08 +0200452 }
453
James Hogane366fdd2013-07-29 12:25:02 +0100454 goto out;
455 }
456
457 /* find the parent that can provide the fastest rate <= rate */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100458 num_parents = core->num_parents;
James Hogane366fdd2013-07-29 12:25:02 +0100459 for (i = 0; i < num_parents; i++) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100460 parent = clk_core_get_parent_by_index(core, i);
James Hogane366fdd2013-07-29 12:25:02 +0100461 if (!parent)
462 continue;
Boris Brezillon0817b622015-07-07 20:48:08 +0200463
464 if (core->flags & CLK_SET_RATE_PARENT) {
465 parent_req = *req;
466 ret = __clk_determine_rate(parent->hw, &parent_req);
467 if (ret)
468 continue;
469 } else {
470 parent_req.rate = clk_core_get_rate_nolock(parent);
471 }
472
473 if (mux_is_better_rate(req->rate, parent_req.rate,
474 best, flags)) {
James Hogane366fdd2013-07-29 12:25:02 +0100475 best_parent = parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200476 best = parent_req.rate;
James Hogane366fdd2013-07-29 12:25:02 +0100477 }
478 }
479
Boris Brezillon57d866e2015-07-09 22:39:38 +0200480 if (!best_parent)
481 return -EINVAL;
482
James Hogane366fdd2013-07-29 12:25:02 +0100483out:
484 if (best_parent)
Boris Brezillon0817b622015-07-07 20:48:08 +0200485 req->best_parent_hw = best_parent->hw;
486 req->best_parent_rate = best;
487 req->rate = best;
James Hogane366fdd2013-07-29 12:25:02 +0100488
Boris Brezillon0817b622015-07-07 20:48:08 +0200489 return 0;
James Hogane366fdd2013-07-29 12:25:02 +0100490}
Jerome Brunet4ad69b802018-04-09 15:59:20 +0200491EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800492
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100493struct clk *__clk_lookup(const char *name)
494{
495 struct clk_core *core = clk_core_lookup(name);
496
497 return !core ? NULL : core->hw->clk;
498}
499
Stephen Boydd6968fc2015-04-30 13:54:13 -0700500static void clk_core_get_boundaries(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100501 unsigned long *min_rate,
502 unsigned long *max_rate)
503{
504 struct clk *clk_user;
505
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700506 *min_rate = core->min_rate;
507 *max_rate = core->max_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100508
Stephen Boydd6968fc2015-04-30 13:54:13 -0700509 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100510 *min_rate = max(*min_rate, clk_user->min_rate);
511
Stephen Boydd6968fc2015-04-30 13:54:13 -0700512 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100513 *max_rate = min(*max_rate, clk_user->max_rate);
514}
515
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700516void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
517 unsigned long max_rate)
518{
519 hw->core->min_rate = min_rate;
520 hw->core->max_rate = max_rate;
521}
522EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
523
Stephen Boyd15a02c12015-01-19 18:05:28 -0800524/*
525 * Helper for finding best parent to provide a given frequency. This can be used
526 * directly as a determine_rate callback (e.g. for a mux), or from a more
527 * complex clock that may combine a mux with other operations.
528 */
Boris Brezillon0817b622015-07-07 20:48:08 +0200529int __clk_mux_determine_rate(struct clk_hw *hw,
530 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800531{
Boris Brezillon0817b622015-07-07 20:48:08 +0200532 return clk_mux_determine_rate_flags(hw, req, 0);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800533}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800534EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100535
Boris Brezillon0817b622015-07-07 20:48:08 +0200536int __clk_mux_determine_rate_closest(struct clk_hw *hw,
537 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800538{
Boris Brezillon0817b622015-07-07 20:48:08 +0200539 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800540}
541EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
542
Mike Turquetteb24764902012-03-15 23:11:19 -0700543/*** clk api ***/
544
Jerome Brunete55a8392017-12-01 22:51:56 +0100545static void clk_core_rate_unprotect(struct clk_core *core)
546{
547 lockdep_assert_held(&prepare_lock);
548
549 if (!core)
550 return;
551
552 if (WARN_ON(core->protect_count == 0))
553 return;
554
555 if (--core->protect_count > 0)
556 return;
557
558 clk_core_rate_unprotect(core->parent);
559}
560
561static int clk_core_rate_nuke_protect(struct clk_core *core)
562{
563 int ret;
564
565 lockdep_assert_held(&prepare_lock);
566
567 if (!core)
568 return -EINVAL;
569
570 if (core->protect_count == 0)
571 return 0;
572
573 ret = core->protect_count;
574 core->protect_count = 1;
575 clk_core_rate_unprotect(core);
576
577 return ret;
578}
579
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100580/**
581 * clk_rate_exclusive_put - release exclusivity over clock rate control
582 * @clk: the clk over which the exclusivity is released
583 *
584 * clk_rate_exclusive_put() completes a critical section during which a clock
585 * consumer cannot tolerate any other consumer making any operation on the
586 * clock which could result in a rate change or rate glitch. Exclusive clocks
587 * cannot have their rate changed, either directly or indirectly due to changes
588 * further up the parent chain of clocks. As a result, clocks up parent chain
589 * also get under exclusive control of the calling consumer.
590 *
591 * If exlusivity is claimed more than once on clock, even by the same consumer,
592 * the rate effectively gets locked as exclusivity can't be preempted.
593 *
594 * Calls to clk_rate_exclusive_put() must be balanced with calls to
595 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
596 * error status.
597 */
598void clk_rate_exclusive_put(struct clk *clk)
599{
600 if (!clk)
601 return;
602
603 clk_prepare_lock();
604
605 /*
606 * if there is something wrong with this consumer protect count, stop
607 * here before messing with the provider
608 */
609 if (WARN_ON(clk->exclusive_count <= 0))
610 goto out;
611
612 clk_core_rate_unprotect(clk->core);
613 clk->exclusive_count--;
614out:
615 clk_prepare_unlock();
616}
617EXPORT_SYMBOL_GPL(clk_rate_exclusive_put);
618
Jerome Brunete55a8392017-12-01 22:51:56 +0100619static void clk_core_rate_protect(struct clk_core *core)
620{
621 lockdep_assert_held(&prepare_lock);
622
623 if (!core)
624 return;
625
626 if (core->protect_count == 0)
627 clk_core_rate_protect(core->parent);
628
629 core->protect_count++;
630}
631
632static void clk_core_rate_restore_protect(struct clk_core *core, int count)
633{
634 lockdep_assert_held(&prepare_lock);
635
636 if (!core)
637 return;
638
639 if (count == 0)
640 return;
641
642 clk_core_rate_protect(core);
643 core->protect_count = count;
644}
645
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100646/**
647 * clk_rate_exclusive_get - get exclusivity over the clk rate control
648 * @clk: the clk over which the exclusity of rate control is requested
649 *
650 * clk_rate_exlusive_get() begins a critical section during which a clock
651 * consumer cannot tolerate any other consumer making any operation on the
652 * clock which could result in a rate change or rate glitch. Exclusive clocks
653 * cannot have their rate changed, either directly or indirectly due to changes
654 * further up the parent chain of clocks. As a result, clocks up parent chain
655 * also get under exclusive control of the calling consumer.
656 *
657 * If exlusivity is claimed more than once on clock, even by the same consumer,
658 * the rate effectively gets locked as exclusivity can't be preempted.
659 *
660 * Calls to clk_rate_exclusive_get() should be balanced with calls to
661 * clk_rate_exclusive_put(). Calls to this function may sleep.
662 * Returns 0 on success, -EERROR otherwise
663 */
664int clk_rate_exclusive_get(struct clk *clk)
665{
666 if (!clk)
667 return 0;
668
669 clk_prepare_lock();
670 clk_core_rate_protect(clk->core);
671 clk->exclusive_count++;
672 clk_prepare_unlock();
673
674 return 0;
675}
676EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);
677
Stephen Boydd6968fc2015-04-30 13:54:13 -0700678static void clk_core_unprepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700679{
Stephen Boyda6334722015-05-06 17:00:54 -0700680 lockdep_assert_held(&prepare_lock);
681
Stephen Boydd6968fc2015-04-30 13:54:13 -0700682 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700683 return;
684
Stephen Boydd6968fc2015-04-30 13:54:13 -0700685 if (WARN_ON(core->prepare_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700686 return;
687
Lee Jones2e20fbf2016-02-11 13:19:10 -0800688 if (WARN_ON(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL))
689 return;
690
Stephen Boydd6968fc2015-04-30 13:54:13 -0700691 if (--core->prepare_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700692 return;
693
Stephen Boydd6968fc2015-04-30 13:54:13 -0700694 WARN_ON(core->enable_count > 0);
Mike Turquetteb24764902012-03-15 23:11:19 -0700695
Stephen Boydd6968fc2015-04-30 13:54:13 -0700696 trace_clk_unprepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800697
Stephen Boydd6968fc2015-04-30 13:54:13 -0700698 if (core->ops->unprepare)
699 core->ops->unprepare(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700700
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200701 clk_pm_runtime_put(core);
702
Stephen Boydd6968fc2015-04-30 13:54:13 -0700703 trace_clk_unprepare_complete(core);
704 clk_core_unprepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700705}
706
Dong Aishenga6adc302016-06-30 17:31:11 +0800707static void clk_core_unprepare_lock(struct clk_core *core)
708{
709 clk_prepare_lock();
710 clk_core_unprepare(core);
711 clk_prepare_unlock();
712}
713
Mike Turquetteb24764902012-03-15 23:11:19 -0700714/**
715 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200716 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700717 *
718 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
719 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
720 * if the operation may sleep. One example is a clk which is accessed over
721 * I2c. In the complex case a clk gate operation may require a fast and a slow
722 * part. It is this reason that clk_unprepare and clk_disable are not mutually
723 * exclusive. In fact clk_disable must be called before clk_unprepare.
724 */
725void clk_unprepare(struct clk *clk)
726{
Stephen Boyd63589e92014-03-26 16:06:37 -0700727 if (IS_ERR_OR_NULL(clk))
728 return;
729
Dong Aishenga6adc302016-06-30 17:31:11 +0800730 clk_core_unprepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700731}
732EXPORT_SYMBOL_GPL(clk_unprepare);
733
Stephen Boydd6968fc2015-04-30 13:54:13 -0700734static int clk_core_prepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700735{
736 int ret = 0;
737
Stephen Boyda6334722015-05-06 17:00:54 -0700738 lockdep_assert_held(&prepare_lock);
739
Stephen Boydd6968fc2015-04-30 13:54:13 -0700740 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700741 return 0;
742
Stephen Boydd6968fc2015-04-30 13:54:13 -0700743 if (core->prepare_count == 0) {
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200744 ret = clk_pm_runtime_get(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700745 if (ret)
746 return ret;
747
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200748 ret = clk_core_prepare(core->parent);
749 if (ret)
750 goto runtime_put;
751
Stephen Boydd6968fc2015-04-30 13:54:13 -0700752 trace_clk_prepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800753
Stephen Boydd6968fc2015-04-30 13:54:13 -0700754 if (core->ops->prepare)
755 ret = core->ops->prepare(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800756
Stephen Boydd6968fc2015-04-30 13:54:13 -0700757 trace_clk_prepare_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800758
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200759 if (ret)
760 goto unprepare;
Mike Turquetteb24764902012-03-15 23:11:19 -0700761 }
762
Stephen Boydd6968fc2015-04-30 13:54:13 -0700763 core->prepare_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700764
765 return 0;
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200766unprepare:
767 clk_core_unprepare(core->parent);
768runtime_put:
769 clk_pm_runtime_put(core);
770 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700771}
772
Dong Aishenga6adc302016-06-30 17:31:11 +0800773static int clk_core_prepare_lock(struct clk_core *core)
774{
775 int ret;
776
777 clk_prepare_lock();
778 ret = clk_core_prepare(core);
779 clk_prepare_unlock();
780
781 return ret;
782}
783
Mike Turquetteb24764902012-03-15 23:11:19 -0700784/**
785 * clk_prepare - prepare a clock source
786 * @clk: the clk being prepared
787 *
788 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
789 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
790 * operation may sleep. One example is a clk which is accessed over I2c. In
791 * the complex case a clk ungate operation may require a fast and a slow part.
792 * It is this reason that clk_prepare and clk_enable are not mutually
793 * exclusive. In fact clk_prepare must be called before clk_enable.
794 * Returns 0 on success, -EERROR otherwise.
795 */
796int clk_prepare(struct clk *clk)
797{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100798 if (!clk)
799 return 0;
800
Dong Aishenga6adc302016-06-30 17:31:11 +0800801 return clk_core_prepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700802}
803EXPORT_SYMBOL_GPL(clk_prepare);
804
Stephen Boydd6968fc2015-04-30 13:54:13 -0700805static void clk_core_disable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700806{
Stephen Boyda6334722015-05-06 17:00:54 -0700807 lockdep_assert_held(&enable_lock);
808
Stephen Boydd6968fc2015-04-30 13:54:13 -0700809 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700810 return;
811
Stephen Boydd6968fc2015-04-30 13:54:13 -0700812 if (WARN_ON(core->enable_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700813 return;
814
Lee Jones2e20fbf2016-02-11 13:19:10 -0800815 if (WARN_ON(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL))
816 return;
817
Stephen Boydd6968fc2015-04-30 13:54:13 -0700818 if (--core->enable_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700819 return;
820
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700821 trace_clk_disable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800822
Stephen Boydd6968fc2015-04-30 13:54:13 -0700823 if (core->ops->disable)
824 core->ops->disable(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700825
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700826 trace_clk_disable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800827
Stephen Boydd6968fc2015-04-30 13:54:13 -0700828 clk_core_disable(core->parent);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100829}
830
Dong Aishenga6adc302016-06-30 17:31:11 +0800831static void clk_core_disable_lock(struct clk_core *core)
832{
833 unsigned long flags;
834
835 flags = clk_enable_lock();
836 clk_core_disable(core);
837 clk_enable_unlock(flags);
838}
839
Mike Turquetteb24764902012-03-15 23:11:19 -0700840/**
841 * clk_disable - gate a clock
842 * @clk: the clk being gated
843 *
844 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
845 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
846 * clk if the operation is fast and will never sleep. One example is a
847 * SoC-internal clk which is controlled via simple register writes. In the
848 * complex case a clk gate operation may require a fast and a slow part. It is
849 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
850 * In fact clk_disable must be called before clk_unprepare.
851 */
852void clk_disable(struct clk *clk)
853{
Stephen Boyd63589e92014-03-26 16:06:37 -0700854 if (IS_ERR_OR_NULL(clk))
855 return;
856
Dong Aishenga6adc302016-06-30 17:31:11 +0800857 clk_core_disable_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700858}
859EXPORT_SYMBOL_GPL(clk_disable);
860
Stephen Boydd6968fc2015-04-30 13:54:13 -0700861static int clk_core_enable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700862{
863 int ret = 0;
864
Stephen Boyda6334722015-05-06 17:00:54 -0700865 lockdep_assert_held(&enable_lock);
866
Stephen Boydd6968fc2015-04-30 13:54:13 -0700867 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700868 return 0;
869
Stephen Boydd6968fc2015-04-30 13:54:13 -0700870 if (WARN_ON(core->prepare_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700871 return -ESHUTDOWN;
872
Stephen Boydd6968fc2015-04-30 13:54:13 -0700873 if (core->enable_count == 0) {
874 ret = clk_core_enable(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700875
876 if (ret)
877 return ret;
878
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -0700879 trace_clk_enable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800880
Stephen Boydd6968fc2015-04-30 13:54:13 -0700881 if (core->ops->enable)
882 ret = core->ops->enable(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800883
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -0700884 trace_clk_enable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800885
886 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -0700887 clk_core_disable(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800888 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700889 }
890 }
891
Stephen Boydd6968fc2015-04-30 13:54:13 -0700892 core->enable_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700893 return 0;
894}
895
Dong Aishenga6adc302016-06-30 17:31:11 +0800896static int clk_core_enable_lock(struct clk_core *core)
897{
898 unsigned long flags;
899 int ret;
900
901 flags = clk_enable_lock();
902 ret = clk_core_enable(core);
903 clk_enable_unlock(flags);
904
905 return ret;
906}
907
Mike Turquetteb24764902012-03-15 23:11:19 -0700908/**
909 * clk_enable - ungate a clock
910 * @clk: the clk being ungated
911 *
912 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
913 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
914 * if the operation will never sleep. One example is a SoC-internal clk which
915 * is controlled via simple register writes. In the complex case a clk ungate
916 * operation may require a fast and a slow part. It is this reason that
917 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
918 * must be called before clk_enable. Returns 0 on success, -EERROR
919 * otherwise.
920 */
921int clk_enable(struct clk *clk)
922{
Dong Aisheng864e1602015-04-30 14:02:19 -0700923 if (!clk)
924 return 0;
925
Dong Aishenga6adc302016-06-30 17:31:11 +0800926 return clk_core_enable_lock(clk->core);
927}
928EXPORT_SYMBOL_GPL(clk_enable);
929
930static int clk_core_prepare_enable(struct clk_core *core)
931{
932 int ret;
933
934 ret = clk_core_prepare_lock(core);
935 if (ret)
936 return ret;
937
938 ret = clk_core_enable_lock(core);
939 if (ret)
940 clk_core_unprepare_lock(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700941
942 return ret;
943}
Dong Aishenga6adc302016-06-30 17:31:11 +0800944
945static void clk_core_disable_unprepare(struct clk_core *core)
946{
947 clk_core_disable_lock(core);
948 clk_core_unprepare_lock(core);
949}
Mike Turquetteb24764902012-03-15 23:11:19 -0700950
Dong Aisheng7ec986e2016-06-30 17:31:12 +0800951static void clk_unprepare_unused_subtree(struct clk_core *core)
952{
953 struct clk_core *child;
954
955 lockdep_assert_held(&prepare_lock);
956
957 hlist_for_each_entry(child, &core->children, child_node)
958 clk_unprepare_unused_subtree(child);
959
960 if (core->prepare_count)
961 return;
962
963 if (core->flags & CLK_IGNORE_UNUSED)
964 return;
965
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200966 if (clk_pm_runtime_get(core))
967 return;
968
Dong Aisheng7ec986e2016-06-30 17:31:12 +0800969 if (clk_core_is_prepared(core)) {
970 trace_clk_unprepare(core);
971 if (core->ops->unprepare_unused)
972 core->ops->unprepare_unused(core->hw);
973 else if (core->ops->unprepare)
974 core->ops->unprepare(core->hw);
975 trace_clk_unprepare_complete(core);
976 }
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200977
978 clk_pm_runtime_put(core);
Dong Aisheng7ec986e2016-06-30 17:31:12 +0800979}
980
981static void clk_disable_unused_subtree(struct clk_core *core)
982{
983 struct clk_core *child;
984 unsigned long flags;
985
986 lockdep_assert_held(&prepare_lock);
987
988 hlist_for_each_entry(child, &core->children, child_node)
989 clk_disable_unused_subtree(child);
990
Dong Aishenga4b35182016-06-30 17:31:13 +0800991 if (core->flags & CLK_OPS_PARENT_ENABLE)
992 clk_core_prepare_enable(core->parent);
993
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200994 if (clk_pm_runtime_get(core))
995 goto unprepare_out;
996
Dong Aisheng7ec986e2016-06-30 17:31:12 +0800997 flags = clk_enable_lock();
998
999 if (core->enable_count)
1000 goto unlock_out;
1001
1002 if (core->flags & CLK_IGNORE_UNUSED)
1003 goto unlock_out;
1004
1005 /*
1006 * some gate clocks have special needs during the disable-unused
1007 * sequence. call .disable_unused if available, otherwise fall
1008 * back to .disable
1009 */
1010 if (clk_core_is_enabled(core)) {
1011 trace_clk_disable(core);
1012 if (core->ops->disable_unused)
1013 core->ops->disable_unused(core->hw);
1014 else if (core->ops->disable)
1015 core->ops->disable(core->hw);
1016 trace_clk_disable_complete(core);
1017 }
1018
1019unlock_out:
1020 clk_enable_unlock(flags);
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001021 clk_pm_runtime_put(core);
1022unprepare_out:
Dong Aishenga4b35182016-06-30 17:31:13 +08001023 if (core->flags & CLK_OPS_PARENT_ENABLE)
1024 clk_core_disable_unprepare(core->parent);
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001025}
1026
1027static bool clk_ignore_unused;
1028static int __init clk_ignore_unused_setup(char *__unused)
1029{
1030 clk_ignore_unused = true;
1031 return 1;
1032}
1033__setup("clk_ignore_unused", clk_ignore_unused_setup);
1034
1035static int clk_disable_unused(void)
1036{
1037 struct clk_core *core;
1038
1039 if (clk_ignore_unused) {
1040 pr_warn("clk: Not disabling unused clocks\n");
1041 return 0;
1042 }
1043
1044 clk_prepare_lock();
1045
1046 hlist_for_each_entry(core, &clk_root_list, child_node)
1047 clk_disable_unused_subtree(core);
1048
1049 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1050 clk_disable_unused_subtree(core);
1051
1052 hlist_for_each_entry(core, &clk_root_list, child_node)
1053 clk_unprepare_unused_subtree(core);
1054
1055 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1056 clk_unprepare_unused_subtree(core);
1057
1058 clk_prepare_unlock();
1059
1060 return 0;
1061}
1062late_initcall_sync(clk_disable_unused);
1063
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001064static int clk_core_determine_round_nolock(struct clk_core *core,
1065 struct clk_rate_request *req)
Mike Turquetteb24764902012-03-15 23:11:19 -07001066{
Boris Brezillon0817b622015-07-07 20:48:08 +02001067 long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001068
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001069 lockdep_assert_held(&prepare_lock);
1070
Stephen Boydd6968fc2015-04-30 13:54:13 -07001071 if (!core)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -07001072 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001073
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001074 /*
1075 * At this point, core protection will be disabled if
1076 * - if the provider is not protected at all
1077 * - if the calling consumer is the only one which has exclusivity
1078 * over the provider
1079 */
Jerome Brunete55a8392017-12-01 22:51:56 +01001080 if (clk_core_rate_is_protected(core)) {
1081 req->rate = core->rate;
1082 } else if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001083 return core->ops->determine_rate(core->hw, req);
1084 } else if (core->ops->round_rate) {
1085 rate = core->ops->round_rate(core->hw, req->rate,
1086 &req->best_parent_rate);
1087 if (rate < 0)
1088 return rate;
1089
1090 req->rate = rate;
Boris Brezillon0817b622015-07-07 20:48:08 +02001091 } else {
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001092 return -EINVAL;
Boris Brezillon0817b622015-07-07 20:48:08 +02001093 }
1094
1095 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001096}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001097
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001098static void clk_core_init_rate_req(struct clk_core * const core,
1099 struct clk_rate_request *req)
1100{
1101 struct clk_core *parent;
1102
1103 if (WARN_ON(!core || !req))
1104 return;
1105
Mike Turquetteb24764902012-03-15 23:11:19 -07001106 parent = core->parent;
1107 if (parent) {
1108 req->best_parent_hw = parent->hw;
1109 req->best_parent_rate = parent->rate;
1110 } else {
1111 req->best_parent_hw = NULL;
1112 req->best_parent_rate = 0;
1113 }
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001114}
Mike Turquetteb24764902012-03-15 23:11:19 -07001115
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001116static bool clk_core_can_round(struct clk_core * const core)
1117{
1118 if (core->ops->determine_rate || core->ops->round_rate)
1119 return true;
Mike Turquetteb24764902012-03-15 23:11:19 -07001120
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001121 return false;
1122}
Mike Turquetteb24764902012-03-15 23:11:19 -07001123
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001124static int clk_core_round_rate_nolock(struct clk_core *core,
1125 struct clk_rate_request *req)
1126{
1127 lockdep_assert_held(&prepare_lock);
1128
Jerome Brunet04bf9ab2018-02-14 14:43:35 +01001129 if (!core) {
1130 req->rate = 0;
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001131 return 0;
Jerome Brunet04bf9ab2018-02-14 14:43:35 +01001132 }
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001133
1134 clk_core_init_rate_req(core, req);
1135
1136 if (clk_core_can_round(core))
1137 return clk_core_determine_round_nolock(core, req);
1138 else if (core->flags & CLK_SET_RATE_PARENT)
1139 return clk_core_round_rate_nolock(core->parent, req);
1140
1141 req->rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001142 return 0;
1143}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001144
1145/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001146 * __clk_determine_rate - get the closest rate actually supported by a clock
1147 * @hw: determine the rate of this clock
Peng Fan2d5b5202016-06-13 19:34:21 +08001148 * @req: target rate request
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001149 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001150 * Useful for clk_ops such as .set_rate and .determine_rate.
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001151 */
Boris Brezillon0817b622015-07-07 20:48:08 +02001152int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001153{
Boris Brezillon0817b622015-07-07 20:48:08 +02001154 if (!hw) {
1155 req->rate = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001156 return 0;
Boris Brezillon0817b622015-07-07 20:48:08 +02001157 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001158
Boris Brezillon0817b622015-07-07 20:48:08 +02001159 return clk_core_round_rate_nolock(hw->core, req);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001160}
1161EXPORT_SYMBOL_GPL(__clk_determine_rate);
1162
Stephen Boyd1a9c0692015-06-25 15:55:14 -07001163unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1164{
1165 int ret;
1166 struct clk_rate_request req;
1167
1168 clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate);
1169 req.rate = rate;
1170
1171 ret = clk_core_round_rate_nolock(hw->core, &req);
1172 if (ret)
1173 return 0;
1174
1175 return req.rate;
1176}
1177EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1178
Mike Turquetteb24764902012-03-15 23:11:19 -07001179/**
1180 * clk_round_rate - round the given rate for a clk
1181 * @clk: the clk for which we are rounding a rate
1182 * @rate: the rate which is to be rounded
1183 *
1184 * Takes in a rate as input and rounds it to a rate that the clk can actually
1185 * use which is then returned. If clk doesn't support round_rate operation
1186 * then the parent rate is returned.
1187 */
1188long clk_round_rate(struct clk *clk, unsigned long rate)
1189{
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001190 struct clk_rate_request req;
1191 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001192
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001193 if (!clk)
1194 return 0;
1195
Mike Turquetteeab89f62013-03-28 13:59:01 -07001196 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001197
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001198 if (clk->exclusive_count)
1199 clk_core_rate_unprotect(clk->core);
1200
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001201 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
1202 req.rate = rate;
1203
1204 ret = clk_core_round_rate_nolock(clk->core, &req);
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001205
1206 if (clk->exclusive_count)
1207 clk_core_rate_protect(clk->core);
1208
Mike Turquetteeab89f62013-03-28 13:59:01 -07001209 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001210
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001211 if (ret)
1212 return ret;
1213
1214 return req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001215}
1216EXPORT_SYMBOL_GPL(clk_round_rate);
1217
1218/**
1219 * __clk_notify - call clk notifier chain
Stephen Boydd6968fc2015-04-30 13:54:13 -07001220 * @core: clk that is changing rate
Mike Turquetteb24764902012-03-15 23:11:19 -07001221 * @msg: clk notifier type (see include/linux/clk.h)
1222 * @old_rate: old clk rate
1223 * @new_rate: new clk rate
1224 *
1225 * Triggers a notifier call chain on the clk rate-change notification
1226 * for 'clk'. Passes a pointer to the struct clk and the previous
1227 * and current rates to the notifier callback. Intended to be called by
1228 * internal clock code only. Returns NOTIFY_DONE from the last driver
1229 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1230 * a driver returns that.
1231 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001232static int __clk_notify(struct clk_core *core, unsigned long msg,
Mike Turquetteb24764902012-03-15 23:11:19 -07001233 unsigned long old_rate, unsigned long new_rate)
1234{
1235 struct clk_notifier *cn;
1236 struct clk_notifier_data cnd;
1237 int ret = NOTIFY_DONE;
1238
Mike Turquetteb24764902012-03-15 23:11:19 -07001239 cnd.old_rate = old_rate;
1240 cnd.new_rate = new_rate;
1241
1242 list_for_each_entry(cn, &clk_notifier_list, node) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001243 if (cn->clk->core == core) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001244 cnd.clk = cn->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001245 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1246 &cnd);
Peter De Schrijver17c34c52017-03-21 12:16:26 +02001247 if (ret & NOTIFY_STOP_MASK)
1248 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001249 }
1250 }
1251
1252 return ret;
1253}
1254
1255/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001256 * __clk_recalc_accuracies
Stephen Boydd6968fc2015-04-30 13:54:13 -07001257 * @core: first clk in the subtree
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001258 *
1259 * Walks the subtree of clks starting with clk and recalculates accuracies as
1260 * it goes. Note that if a clk does not implement the .recalc_accuracy
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001261 * callback then it is assumed that the clock will take on the accuracy of its
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001262 * parent.
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001263 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001264static void __clk_recalc_accuracies(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001265{
1266 unsigned long parent_accuracy = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001267 struct clk_core *child;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001268
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001269 lockdep_assert_held(&prepare_lock);
1270
Stephen Boydd6968fc2015-04-30 13:54:13 -07001271 if (core->parent)
1272 parent_accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001273
Stephen Boydd6968fc2015-04-30 13:54:13 -07001274 if (core->ops->recalc_accuracy)
1275 core->accuracy = core->ops->recalc_accuracy(core->hw,
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001276 parent_accuracy);
1277 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07001278 core->accuracy = parent_accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001279
Stephen Boydd6968fc2015-04-30 13:54:13 -07001280 hlist_for_each_entry(child, &core->children, child_node)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001281 __clk_recalc_accuracies(child);
1282}
1283
Stephen Boydd6968fc2015-04-30 13:54:13 -07001284static long clk_core_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001285{
1286 unsigned long accuracy;
1287
1288 clk_prepare_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001289 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1290 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001291
Stephen Boydd6968fc2015-04-30 13:54:13 -07001292 accuracy = __clk_get_accuracy(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001293 clk_prepare_unlock();
1294
1295 return accuracy;
1296}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001297
1298/**
1299 * clk_get_accuracy - return the accuracy of clk
1300 * @clk: the clk whose accuracy is being returned
1301 *
1302 * Simply returns the cached accuracy of the clk, unless
1303 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1304 * issued.
1305 * If clk is NULL then returns 0.
1306 */
1307long clk_get_accuracy(struct clk *clk)
1308{
1309 if (!clk)
1310 return 0;
1311
1312 return clk_core_get_accuracy(clk->core);
1313}
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001314EXPORT_SYMBOL_GPL(clk_get_accuracy);
1315
Stephen Boydd6968fc2015-04-30 13:54:13 -07001316static unsigned long clk_recalc(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001317 unsigned long parent_rate)
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001318{
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001319 unsigned long rate = parent_rate;
1320
1321 if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) {
1322 rate = core->ops->recalc_rate(core->hw, parent_rate);
1323 clk_pm_runtime_put(core);
1324 }
1325 return rate;
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001326}
1327
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001328/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001329 * __clk_recalc_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001330 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001331 * @msg: notification type (see include/linux/clk.h)
1332 *
1333 * Walks the subtree of clks starting with clk and recalculates rates as it
1334 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001335 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001336 *
1337 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1338 * if necessary.
Mike Turquetteb24764902012-03-15 23:11:19 -07001339 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001340static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
Mike Turquetteb24764902012-03-15 23:11:19 -07001341{
1342 unsigned long old_rate;
1343 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001344 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001345
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001346 lockdep_assert_held(&prepare_lock);
1347
Stephen Boydd6968fc2015-04-30 13:54:13 -07001348 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001349
Stephen Boydd6968fc2015-04-30 13:54:13 -07001350 if (core->parent)
1351 parent_rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001352
Stephen Boydd6968fc2015-04-30 13:54:13 -07001353 core->rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001354
1355 /*
1356 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1357 * & ABORT_RATE_CHANGE notifiers
1358 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001359 if (core->notifier_count && msg)
1360 __clk_notify(core, msg, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001361
Stephen Boydd6968fc2015-04-30 13:54:13 -07001362 hlist_for_each_entry(child, &core->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001363 __clk_recalc_rates(child, msg);
1364}
1365
Stephen Boydd6968fc2015-04-30 13:54:13 -07001366static unsigned long clk_core_get_rate(struct clk_core *core)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001367{
1368 unsigned long rate;
1369
1370 clk_prepare_lock();
1371
Stephen Boydd6968fc2015-04-30 13:54:13 -07001372 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1373 __clk_recalc_rates(core, 0);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001374
Stephen Boydd6968fc2015-04-30 13:54:13 -07001375 rate = clk_core_get_rate_nolock(core);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001376 clk_prepare_unlock();
1377
1378 return rate;
1379}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001380
Mike Turquetteb24764902012-03-15 23:11:19 -07001381/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001382 * clk_get_rate - return the rate of clk
1383 * @clk: the clk whose rate is being returned
1384 *
1385 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1386 * is set, which means a recalc_rate will be issued.
1387 * If clk is NULL then returns 0.
1388 */
1389unsigned long clk_get_rate(struct clk *clk)
1390{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001391 if (!clk)
1392 return 0;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001393
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001394 return clk_core_get_rate(clk->core);
Ulf Hanssona093bde2012-08-31 14:21:28 +02001395}
1396EXPORT_SYMBOL_GPL(clk_get_rate);
1397
Stephen Boydd6968fc2015-04-30 13:54:13 -07001398static int clk_fetch_parent_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001399 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001400{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001401 int i;
James Hogan4935b222013-07-29 12:24:59 +01001402
Masahiro Yamada508f8842015-12-28 19:23:08 +09001403 if (!parent)
1404 return -EINVAL;
1405
Masahiro Yamada470b5e22015-12-28 19:23:09 +09001406 for (i = 0; i < core->num_parents; i++)
1407 if (clk_core_get_parent_by_index(core, i) == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001408 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001409
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001410 return -EINVAL;
James Hogan4935b222013-07-29 12:24:59 +01001411}
1412
Heiko Stuebnere6500342015-04-22 22:53:05 +02001413/*
1414 * Update the orphan status of @core and all its children.
1415 */
1416static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1417{
1418 struct clk_core *child;
1419
1420 core->orphan = is_orphan;
1421
1422 hlist_for_each_entry(child, &core->children, child_node)
1423 clk_core_update_orphan_status(child, is_orphan);
1424}
1425
Stephen Boydd6968fc2015-04-30 13:54:13 -07001426static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
James Hogan4935b222013-07-29 12:24:59 +01001427{
Heiko Stuebnere6500342015-04-22 22:53:05 +02001428 bool was_orphan = core->orphan;
1429
Stephen Boydd6968fc2015-04-30 13:54:13 -07001430 hlist_del(&core->child_node);
James Hogan4935b222013-07-29 12:24:59 +01001431
James Hogan903efc52013-08-29 12:10:51 +01001432 if (new_parent) {
Heiko Stuebnere6500342015-04-22 22:53:05 +02001433 bool becomes_orphan = new_parent->orphan;
1434
James Hogan903efc52013-08-29 12:10:51 +01001435 /* avoid duplicate POST_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001436 if (new_parent->new_child == core)
James Hogan903efc52013-08-29 12:10:51 +01001437 new_parent->new_child = NULL;
1438
Stephen Boydd6968fc2015-04-30 13:54:13 -07001439 hlist_add_head(&core->child_node, &new_parent->children);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001440
1441 if (was_orphan != becomes_orphan)
1442 clk_core_update_orphan_status(core, becomes_orphan);
James Hogan903efc52013-08-29 12:10:51 +01001443 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001444 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001445 if (!was_orphan)
1446 clk_core_update_orphan_status(core, true);
James Hogan903efc52013-08-29 12:10:51 +01001447 }
James Hogan4935b222013-07-29 12:24:59 +01001448
Stephen Boydd6968fc2015-04-30 13:54:13 -07001449 core->parent = new_parent;
James Hogan4935b222013-07-29 12:24:59 +01001450}
1451
Stephen Boydd6968fc2015-04-30 13:54:13 -07001452static struct clk_core *__clk_set_parent_before(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001453 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001454{
1455 unsigned long flags;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001456 struct clk_core *old_parent = core->parent;
James Hogan4935b222013-07-29 12:24:59 +01001457
1458 /*
Dong Aishengfc8726a2016-06-30 17:31:14 +08001459 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1460 *
1461 * 2. Migrate prepare state between parents and prevent race with
James Hogan4935b222013-07-29 12:24:59 +01001462 * clk_enable().
1463 *
1464 * If the clock is not prepared, then a race with
1465 * clk_enable/disable() is impossible since we already have the
1466 * prepare lock (future calls to clk_enable() need to be preceded by
1467 * a clk_prepare()).
1468 *
1469 * If the clock is prepared, migrate the prepared state to the new
1470 * parent and also protect against a race with clk_enable() by
1471 * forcing the clock and the new parent on. This ensures that all
1472 * future calls to clk_enable() are practically NOPs with respect to
1473 * hardware and software states.
1474 *
1475 * See also: Comment for clk_set_parent() below.
1476 */
Dong Aishengfc8726a2016-06-30 17:31:14 +08001477
1478 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1479 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1480 clk_core_prepare_enable(old_parent);
1481 clk_core_prepare_enable(parent);
1482 }
1483
1484 /* migrate prepare count if > 0 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001485 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001486 clk_core_prepare_enable(parent);
1487 clk_core_enable_lock(core);
James Hogan4935b222013-07-29 12:24:59 +01001488 }
1489
1490 /* update the clk tree topology */
1491 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001492 clk_reparent(core, parent);
James Hogan4935b222013-07-29 12:24:59 +01001493 clk_enable_unlock(flags);
1494
Stephen Boyd3fa22522014-01-15 10:47:22 -08001495 return old_parent;
1496}
1497
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001498static void __clk_set_parent_after(struct clk_core *core,
1499 struct clk_core *parent,
1500 struct clk_core *old_parent)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001501{
1502 /*
1503 * Finish the migration of prepare state and undo the changes done
1504 * for preventing a race with clk_enable().
1505 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001506 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001507 clk_core_disable_lock(core);
1508 clk_core_disable_unprepare(old_parent);
1509 }
1510
1511 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1512 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1513 clk_core_disable_unprepare(parent);
1514 clk_core_disable_unprepare(old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001515 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001516}
1517
Stephen Boydd6968fc2015-04-30 13:54:13 -07001518static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001519 u8 p_index)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001520{
1521 unsigned long flags;
1522 int ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001523 struct clk_core *old_parent;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001524
Stephen Boydd6968fc2015-04-30 13:54:13 -07001525 old_parent = __clk_set_parent_before(core, parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001526
Stephen Boydd6968fc2015-04-30 13:54:13 -07001527 trace_clk_set_parent(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001528
James Hogan4935b222013-07-29 12:24:59 +01001529 /* change clock input source */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001530 if (parent && core->ops->set_parent)
1531 ret = core->ops->set_parent(core->hw, p_index);
James Hogan4935b222013-07-29 12:24:59 +01001532
Stephen Boydd6968fc2015-04-30 13:54:13 -07001533 trace_clk_set_parent_complete(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001534
James Hogan4935b222013-07-29 12:24:59 +01001535 if (ret) {
1536 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001537 clk_reparent(core, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001538 clk_enable_unlock(flags);
Dong Aishengc660b2eb2015-07-28 21:19:41 +08001539 __clk_set_parent_after(core, old_parent, parent);
James Hogan4935b222013-07-29 12:24:59 +01001540
James Hogan4935b222013-07-29 12:24:59 +01001541 return ret;
1542 }
1543
Stephen Boydd6968fc2015-04-30 13:54:13 -07001544 __clk_set_parent_after(core, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001545
James Hogan4935b222013-07-29 12:24:59 +01001546 return 0;
1547}
1548
Ulf Hanssona093bde2012-08-31 14:21:28 +02001549/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001550 * __clk_speculate_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001551 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001552 * @parent_rate: the "future" rate of clk's parent
1553 *
1554 * Walks the subtree of clks starting with clk, speculating rates as it
1555 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1556 *
1557 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1558 * pre-rate change notifications and returns early if no clks in the
1559 * subtree have subscribed to the notifications. Note that if a clk does not
1560 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001561 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001562 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001563static int __clk_speculate_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001564 unsigned long parent_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001565{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001566 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001567 unsigned long new_rate;
1568 int ret = NOTIFY_DONE;
1569
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001570 lockdep_assert_held(&prepare_lock);
1571
Stephen Boydd6968fc2015-04-30 13:54:13 -07001572 new_rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001573
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001574 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001575 if (core->notifier_count)
1576 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001577
Mike Turquette86bcfa22014-02-24 16:08:41 -08001578 if (ret & NOTIFY_STOP_MASK) {
1579 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001580 __func__, core->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001581 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001582 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001583
Stephen Boydd6968fc2015-04-30 13:54:13 -07001584 hlist_for_each_entry(child, &core->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001585 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001586 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001587 break;
1588 }
1589
1590out:
1591 return ret;
1592}
1593
Stephen Boydd6968fc2015-04-30 13:54:13 -07001594static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001595 struct clk_core *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001596{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001597 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001598
Stephen Boydd6968fc2015-04-30 13:54:13 -07001599 core->new_rate = new_rate;
1600 core->new_parent = new_parent;
1601 core->new_parent_index = p_index;
James Hogan71472c02013-07-29 12:25:00 +01001602 /* include clk in new parent's PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001603 core->new_child = NULL;
1604 if (new_parent && new_parent != core->parent)
1605 new_parent->new_child = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001606
Stephen Boydd6968fc2015-04-30 13:54:13 -07001607 hlist_for_each_entry(child, &core->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001608 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001609 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001610 }
1611}
1612
1613/*
1614 * calculate the new rates returning the topmost clock that has to be
1615 * changed.
1616 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001617static struct clk_core *clk_calc_new_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001618 unsigned long rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001619{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001620 struct clk_core *top = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001621 struct clk_core *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001622 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001623 unsigned long new_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001624 unsigned long min_rate;
1625 unsigned long max_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001626 int p_index = 0;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001627 long ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001628
Mike Turquette7452b212012-03-26 14:45:36 -07001629 /* sanity */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001630 if (IS_ERR_OR_NULL(core))
Mike Turquette7452b212012-03-26 14:45:36 -07001631 return NULL;
1632
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001633 /* save parent rate, if it exists */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001634 parent = old_parent = core->parent;
James Hogan71472c02013-07-29 12:25:00 +01001635 if (parent)
1636 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001637
Stephen Boydd6968fc2015-04-30 13:54:13 -07001638 clk_core_get_boundaries(core, &min_rate, &max_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001639
James Hogan71472c02013-07-29 12:25:00 +01001640 /* find the closest rate and parent clk/rate */
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001641 if (clk_core_can_round(core)) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001642 struct clk_rate_request req;
1643
1644 req.rate = rate;
1645 req.min_rate = min_rate;
1646 req.max_rate = max_rate;
Boris Brezillon0817b622015-07-07 20:48:08 +02001647
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001648 clk_core_init_rate_req(core, &req);
1649
1650 ret = clk_core_determine_round_nolock(core, &req);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001651 if (ret < 0)
1652 return NULL;
1653
Boris Brezillon0817b622015-07-07 20:48:08 +02001654 best_parent_rate = req.best_parent_rate;
1655 new_rate = req.rate;
1656 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001657
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001658 if (new_rate < min_rate || new_rate > max_rate)
1659 return NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001660 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
James Hogan71472c02013-07-29 12:25:00 +01001661 /* pass-through clock without adjustable parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001662 core->new_rate = core->rate;
James Hogan71472c02013-07-29 12:25:00 +01001663 return NULL;
1664 } else {
1665 /* pass-through clock with adjustable parent */
1666 top = clk_calc_new_rates(parent, rate);
1667 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001668 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001669 }
1670
James Hogan71472c02013-07-29 12:25:00 +01001671 /* some clocks must be gated to change parent */
1672 if (parent != old_parent &&
Stephen Boydd6968fc2015-04-30 13:54:13 -07001673 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
James Hogan71472c02013-07-29 12:25:00 +01001674 pr_debug("%s: %s not gated but wants to reparent\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001675 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001676 return NULL;
1677 }
1678
James Hogan71472c02013-07-29 12:25:00 +01001679 /* try finding the new parent index */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001680 if (parent && core->num_parents > 1) {
1681 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001682 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001683 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001684 __func__, parent->name, core->name);
James Hogan71472c02013-07-29 12:25:00 +01001685 return NULL;
1686 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001687 }
1688
Stephen Boydd6968fc2015-04-30 13:54:13 -07001689 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
James Hogan71472c02013-07-29 12:25:00 +01001690 best_parent_rate != parent->rate)
1691 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001692
1693out:
Stephen Boydd6968fc2015-04-30 13:54:13 -07001694 clk_calc_subtree(core, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001695
1696 return top;
1697}
1698
1699/*
1700 * Notify about rate changes in a subtree. Always walk down the whole tree
1701 * so that in case of an error we can walk down the whole tree again and
1702 * abort the change.
1703 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001704static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001705 unsigned long event)
Mike Turquetteb24764902012-03-15 23:11:19 -07001706{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001707 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001708 int ret = NOTIFY_DONE;
1709
Stephen Boydd6968fc2015-04-30 13:54:13 -07001710 if (core->rate == core->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301711 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001712
Stephen Boydd6968fc2015-04-30 13:54:13 -07001713 if (core->notifier_count) {
1714 ret = __clk_notify(core, event, core->rate, core->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001715 if (ret & NOTIFY_STOP_MASK)
Stephen Boydd6968fc2015-04-30 13:54:13 -07001716 fail_clk = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001717 }
1718
Stephen Boydd6968fc2015-04-30 13:54:13 -07001719 hlist_for_each_entry(child, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001720 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001721 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01001722 continue;
1723 tmp_clk = clk_propagate_rate_change(child, event);
1724 if (tmp_clk)
1725 fail_clk = tmp_clk;
1726 }
1727
Stephen Boydd6968fc2015-04-30 13:54:13 -07001728 /* handle the new child who might not be in core->children yet */
1729 if (core->new_child) {
1730 tmp_clk = clk_propagate_rate_change(core->new_child, event);
James Hogan71472c02013-07-29 12:25:00 +01001731 if (tmp_clk)
1732 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001733 }
1734
1735 return fail_clk;
1736}
1737
1738/*
1739 * walk down a subtree and set the new rates notifying the rate
1740 * change on the way
1741 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001742static void clk_change_rate(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001743{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001744 struct clk_core *child;
Tero Kristo067bb172014-08-21 16:47:45 +03001745 struct hlist_node *tmp;
Mike Turquetteb24764902012-03-15 23:11:19 -07001746 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001747 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001748 bool skip_set_rate = false;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001749 struct clk_core *old_parent;
Dong Aishengfc8726a2016-06-30 17:31:14 +08001750 struct clk_core *parent = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001751
Stephen Boydd6968fc2015-04-30 13:54:13 -07001752 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001753
Dong Aishengfc8726a2016-06-30 17:31:14 +08001754 if (core->new_parent) {
1755 parent = core->new_parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001756 best_parent_rate = core->new_parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08001757 } else if (core->parent) {
1758 parent = core->parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001759 best_parent_rate = core->parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08001760 }
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001761
Marek Szyprowski588fb542017-11-30 13:14:51 +01001762 if (clk_pm_runtime_get(core))
1763 return;
1764
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01001765 if (core->flags & CLK_SET_RATE_UNGATE) {
1766 unsigned long flags;
1767
1768 clk_core_prepare(core);
1769 flags = clk_enable_lock();
1770 clk_core_enable(core);
1771 clk_enable_unlock(flags);
1772 }
1773
Stephen Boydd6968fc2015-04-30 13:54:13 -07001774 if (core->new_parent && core->new_parent != core->parent) {
1775 old_parent = __clk_set_parent_before(core, core->new_parent);
1776 trace_clk_set_parent(core, core->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001777
Stephen Boydd6968fc2015-04-30 13:54:13 -07001778 if (core->ops->set_rate_and_parent) {
Stephen Boyd3fa22522014-01-15 10:47:22 -08001779 skip_set_rate = true;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001780 core->ops->set_rate_and_parent(core->hw, core->new_rate,
Stephen Boyd3fa22522014-01-15 10:47:22 -08001781 best_parent_rate,
Stephen Boydd6968fc2015-04-30 13:54:13 -07001782 core->new_parent_index);
1783 } else if (core->ops->set_parent) {
1784 core->ops->set_parent(core->hw, core->new_parent_index);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001785 }
1786
Stephen Boydd6968fc2015-04-30 13:54:13 -07001787 trace_clk_set_parent_complete(core, core->new_parent);
1788 __clk_set_parent_after(core, core->new_parent, old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001789 }
1790
Dong Aishengfc8726a2016-06-30 17:31:14 +08001791 if (core->flags & CLK_OPS_PARENT_ENABLE)
1792 clk_core_prepare_enable(parent);
1793
Stephen Boydd6968fc2015-04-30 13:54:13 -07001794 trace_clk_set_rate(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001795
Stephen Boydd6968fc2015-04-30 13:54:13 -07001796 if (!skip_set_rate && core->ops->set_rate)
1797 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001798
Stephen Boydd6968fc2015-04-30 13:54:13 -07001799 trace_clk_set_rate_complete(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001800
Stephen Boydd6968fc2015-04-30 13:54:13 -07001801 core->rate = clk_recalc(core, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001802
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01001803 if (core->flags & CLK_SET_RATE_UNGATE) {
1804 unsigned long flags;
1805
1806 flags = clk_enable_lock();
1807 clk_core_disable(core);
1808 clk_enable_unlock(flags);
1809 clk_core_unprepare(core);
1810 }
1811
Dong Aishengfc8726a2016-06-30 17:31:14 +08001812 if (core->flags & CLK_OPS_PARENT_ENABLE)
1813 clk_core_disable_unprepare(parent);
1814
Stephen Boydd6968fc2015-04-30 13:54:13 -07001815 if (core->notifier_count && old_rate != core->rate)
1816 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001817
Michael Turquette85e88fa2015-06-20 12:18:03 -07001818 if (core->flags & CLK_RECALC_NEW_RATES)
1819 (void)clk_calc_new_rates(core, core->new_rate);
Bartlomiej Zolnierkiewiczd8d91982015-04-03 18:43:44 +02001820
Tero Kristo067bb172014-08-21 16:47:45 +03001821 /*
1822 * Use safe iteration, as change_rate can actually swap parents
1823 * for certain clock types.
1824 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001825 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001826 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001827 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01001828 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07001829 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01001830 }
1831
Stephen Boydd6968fc2015-04-30 13:54:13 -07001832 /* handle the new child who might not be in core->children yet */
1833 if (core->new_child)
1834 clk_change_rate(core->new_child);
Marek Szyprowski588fb542017-11-30 13:14:51 +01001835
1836 clk_pm_runtime_put(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07001837}
1838
Jerome Brunetca5e0892017-12-01 22:51:55 +01001839static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core,
1840 unsigned long req_rate)
1841{
Jerome Brunete55a8392017-12-01 22:51:56 +01001842 int ret, cnt;
Jerome Brunetca5e0892017-12-01 22:51:55 +01001843 struct clk_rate_request req;
1844
1845 lockdep_assert_held(&prepare_lock);
1846
1847 if (!core)
1848 return 0;
1849
Jerome Brunete55a8392017-12-01 22:51:56 +01001850 /* simulate what the rate would be if it could be freely set */
1851 cnt = clk_core_rate_nuke_protect(core);
1852 if (cnt < 0)
1853 return cnt;
1854
Jerome Brunetca5e0892017-12-01 22:51:55 +01001855 clk_core_get_boundaries(core, &req.min_rate, &req.max_rate);
1856 req.rate = req_rate;
1857
1858 ret = clk_core_round_rate_nolock(core, &req);
1859
Jerome Brunete55a8392017-12-01 22:51:56 +01001860 /* restore the protection */
1861 clk_core_rate_restore_protect(core, cnt);
1862
Jerome Brunetca5e0892017-12-01 22:51:55 +01001863 return ret ? 0 : req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001864}
1865
Stephen Boydd6968fc2015-04-30 13:54:13 -07001866static int clk_core_set_rate_nolock(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001867 unsigned long req_rate)
1868{
1869 struct clk_core *top, *fail_clk;
Jerome Brunetca5e0892017-12-01 22:51:55 +01001870 unsigned long rate;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001871 int ret = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001872
Stephen Boydd6968fc2015-04-30 13:54:13 -07001873 if (!core)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001874 return 0;
1875
Jerome Brunetca5e0892017-12-01 22:51:55 +01001876 rate = clk_core_req_round_rate_nolock(core, req_rate);
1877
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001878 /* bail early if nothing to do */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001879 if (rate == clk_core_get_rate_nolock(core))
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001880 return 0;
1881
Jerome Brunete55a8392017-12-01 22:51:56 +01001882 /* fail on a direct rate set of a protected provider */
1883 if (clk_core_rate_is_protected(core))
1884 return -EBUSY;
1885
Stephen Boydd6968fc2015-04-30 13:54:13 -07001886 if ((core->flags & CLK_SET_RATE_GATE) && core->prepare_count)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001887 return -EBUSY;
1888
1889 /* calculate new rates and get the topmost changed clock */
Jerome Brunetca5e0892017-12-01 22:51:55 +01001890 top = clk_calc_new_rates(core, req_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001891 if (!top)
1892 return -EINVAL;
1893
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001894 ret = clk_pm_runtime_get(core);
1895 if (ret)
1896 return ret;
1897
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001898 /* notify that we are about to change rates */
1899 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1900 if (fail_clk) {
1901 pr_debug("%s: failed to set %s rate\n", __func__,
1902 fail_clk->name);
1903 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001904 ret = -EBUSY;
1905 goto err;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001906 }
1907
1908 /* change the rates */
1909 clk_change_rate(top);
1910
Stephen Boydd6968fc2015-04-30 13:54:13 -07001911 core->req_rate = req_rate;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001912err:
1913 clk_pm_runtime_put(core);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001914
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001915 return ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001916}
1917
Mike Turquetteb24764902012-03-15 23:11:19 -07001918/**
1919 * clk_set_rate - specify a new rate for clk
1920 * @clk: the clk whose rate is being changed
1921 * @rate: the new rate for clk
1922 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001923 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001924 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001925 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1926 * propagate up to clk's parent; whether or not this happens depends on the
1927 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1928 * after calling .round_rate then upstream parent propagation is ignored. If
1929 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001930 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001931 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1932 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001933 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001934 * Rate changes are accomplished via tree traversal that also recalculates the
1935 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001936 *
1937 * Returns 0 on success, -EERROR otherwise.
1938 */
1939int clk_set_rate(struct clk *clk, unsigned long rate)
1940{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001941 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001942
Mike Turquette89ac8d72013-08-21 23:58:09 -07001943 if (!clk)
1944 return 0;
1945
Mike Turquetteb24764902012-03-15 23:11:19 -07001946 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001947 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001948
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001949 if (clk->exclusive_count)
1950 clk_core_rate_unprotect(clk->core);
1951
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001952 ret = clk_core_set_rate_nolock(clk->core, rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001953
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001954 if (clk->exclusive_count)
1955 clk_core_rate_protect(clk->core);
1956
Mike Turquetteeab89f62013-03-28 13:59:01 -07001957 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001958
1959 return ret;
1960}
1961EXPORT_SYMBOL_GPL(clk_set_rate);
1962
1963/**
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001964 * clk_set_rate_exclusive - specify a new rate get exclusive control
1965 * @clk: the clk whose rate is being changed
1966 * @rate: the new rate for clk
1967 *
1968 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
1969 * within a critical section
1970 *
1971 * This can be used initially to ensure that at least 1 consumer is
1972 * statisfied when several consumers are competing for exclusivity over the
1973 * same clock provider.
1974 *
1975 * The exclusivity is not applied if setting the rate failed.
1976 *
1977 * Calls to clk_rate_exclusive_get() should be balanced with calls to
1978 * clk_rate_exclusive_put().
1979 *
1980 * Returns 0 on success, -EERROR otherwise.
1981 */
1982int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
1983{
1984 int ret;
1985
1986 if (!clk)
1987 return 0;
1988
1989 /* prevent racing with updates to the clock topology */
1990 clk_prepare_lock();
1991
1992 /*
1993 * The temporary protection removal is not here, on purpose
1994 * This function is meant to be used instead of clk_rate_protect,
1995 * so before the consumer code path protect the clock provider
1996 */
1997
1998 ret = clk_core_set_rate_nolock(clk->core, rate);
1999 if (!ret) {
2000 clk_core_rate_protect(clk->core);
2001 clk->exclusive_count++;
2002 }
2003
2004 clk_prepare_unlock();
2005
2006 return ret;
2007}
2008EXPORT_SYMBOL_GPL(clk_set_rate_exclusive);
2009
2010/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002011 * clk_set_rate_range - set a rate range for a clock source
2012 * @clk: clock source
2013 * @min: desired minimum clock rate in Hz, inclusive
2014 * @max: desired maximum clock rate in Hz, inclusive
2015 *
2016 * Returns success (0) or negative errno.
2017 */
2018int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
2019{
2020 int ret = 0;
Jerome Brunet6562fbc2017-12-01 22:52:00 +01002021 unsigned long old_min, old_max, rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002022
2023 if (!clk)
2024 return 0;
2025
2026 if (min > max) {
2027 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2028 __func__, clk->core->name, clk->dev_id, clk->con_id,
2029 min, max);
2030 return -EINVAL;
2031 }
2032
2033 clk_prepare_lock();
2034
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002035 if (clk->exclusive_count)
2036 clk_core_rate_unprotect(clk->core);
2037
Jerome Brunet6562fbc2017-12-01 22:52:00 +01002038 /* Save the current values in case we need to rollback the change */
2039 old_min = clk->min_rate;
2040 old_max = clk->max_rate;
2041 clk->min_rate = min;
2042 clk->max_rate = max;
2043
2044 rate = clk_core_get_rate_nolock(clk->core);
2045 if (rate < min || rate > max) {
2046 /*
2047 * FIXME:
2048 * We are in bit of trouble here, current rate is outside the
2049 * the requested range. We are going try to request appropriate
2050 * range boundary but there is a catch. It may fail for the
2051 * usual reason (clock broken, clock protected, etc) but also
2052 * because:
2053 * - round_rate() was not favorable and fell on the wrong
2054 * side of the boundary
2055 * - the determine_rate() callback does not really check for
2056 * this corner case when determining the rate
2057 */
2058
2059 if (rate < min)
2060 rate = min;
2061 else
2062 rate = max;
2063
2064 ret = clk_core_set_rate_nolock(clk->core, rate);
2065 if (ret) {
2066 /* rollback the changes */
2067 clk->min_rate = old_min;
2068 clk->max_rate = old_max;
2069 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002070 }
2071
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002072 if (clk->exclusive_count)
2073 clk_core_rate_protect(clk->core);
2074
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002075 clk_prepare_unlock();
2076
2077 return ret;
2078}
2079EXPORT_SYMBOL_GPL(clk_set_rate_range);
2080
2081/**
2082 * clk_set_min_rate - set a minimum clock rate for a clock source
2083 * @clk: clock source
2084 * @rate: desired minimum clock rate in Hz, inclusive
2085 *
2086 * Returns success (0) or negative errno.
2087 */
2088int clk_set_min_rate(struct clk *clk, unsigned long rate)
2089{
2090 if (!clk)
2091 return 0;
2092
2093 return clk_set_rate_range(clk, rate, clk->max_rate);
2094}
2095EXPORT_SYMBOL_GPL(clk_set_min_rate);
2096
2097/**
2098 * clk_set_max_rate - set a maximum clock rate for a clock source
2099 * @clk: clock source
2100 * @rate: desired maximum clock rate in Hz, inclusive
2101 *
2102 * Returns success (0) or negative errno.
2103 */
2104int clk_set_max_rate(struct clk *clk, unsigned long rate)
2105{
2106 if (!clk)
2107 return 0;
2108
2109 return clk_set_rate_range(clk, clk->min_rate, rate);
2110}
2111EXPORT_SYMBOL_GPL(clk_set_max_rate);
2112
2113/**
Mike Turquetteb24764902012-03-15 23:11:19 -07002114 * clk_get_parent - return the parent of a clk
2115 * @clk: the clk whose parent gets returned
2116 *
2117 * Simply returns clk->parent. Returns NULL if clk is NULL.
2118 */
2119struct clk *clk_get_parent(struct clk *clk)
2120{
2121 struct clk *parent;
2122
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002123 if (!clk)
2124 return NULL;
2125
Mike Turquetteeab89f62013-03-28 13:59:01 -07002126 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002127 /* TODO: Create a per-user clk and change callers to call clk_put */
2128 parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk;
Mike Turquetteeab89f62013-03-28 13:59:01 -07002129 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002130
2131 return parent;
2132}
2133EXPORT_SYMBOL_GPL(clk_get_parent);
2134
Stephen Boydd6968fc2015-04-30 13:54:13 -07002135static struct clk_core *__clk_init_parent(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002136{
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002137 u8 index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002138
Masahiro Yamada2430a942016-02-09 20:19:14 +09002139 if (core->num_parents > 1 && core->ops->get_parent)
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002140 index = core->ops->get_parent(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07002141
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002142 return clk_core_get_parent_by_index(core, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002143}
2144
Stephen Boydd6968fc2015-04-30 13:54:13 -07002145static void clk_core_reparent(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002146 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +02002147{
Stephen Boydd6968fc2015-04-30 13:54:13 -07002148 clk_reparent(core, new_parent);
2149 __clk_recalc_accuracies(core);
2150 __clk_recalc_rates(core, POST_RATE_CHANGE);
Mike Turquetteb24764902012-03-15 23:11:19 -07002151}
2152
Tomeu Vizoso42c86542015-03-11 11:34:25 +01002153void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
2154{
2155 if (!hw)
2156 return;
2157
2158 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
2159}
2160
Mike Turquetteb24764902012-03-15 23:11:19 -07002161/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002162 * clk_has_parent - check if a clock is a possible parent for another
2163 * @clk: clock source
2164 * @parent: parent clock source
Mike Turquetteb24764902012-03-15 23:11:19 -07002165 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002166 * This function can be used in drivers that need to check that a clock can be
2167 * the parent of another without actually changing the parent.
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07002168 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002169 * Returns true if @parent is a possible parent for @clk, false otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07002170 */
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002171bool clk_has_parent(struct clk *clk, struct clk *parent)
2172{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002173 struct clk_core *core, *parent_core;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002174 unsigned int i;
2175
2176 /* NULL clocks should be nops, so return success if either is NULL. */
2177 if (!clk || !parent)
2178 return true;
2179
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002180 core = clk->core;
2181 parent_core = parent->core;
2182
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002183 /* Optimize for the case where the parent is already the parent. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002184 if (core->parent == parent_core)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002185 return true;
2186
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002187 for (i = 0; i < core->num_parents; i++)
2188 if (strcmp(core->parent_names[i], parent_core->name) == 0)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002189 return true;
2190
2191 return false;
2192}
2193EXPORT_SYMBOL_GPL(clk_has_parent);
2194
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002195static int clk_core_set_parent_nolock(struct clk_core *core,
2196 struct clk_core *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07002197{
2198 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002199 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002200 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002201
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002202 lockdep_assert_held(&prepare_lock);
2203
Stephen Boydd6968fc2015-04-30 13:54:13 -07002204 if (!core)
Mike Turquette89ac8d72013-08-21 23:58:09 -07002205 return 0;
2206
Stephen Boydd6968fc2015-04-30 13:54:13 -07002207 if (core->parent == parent)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002208 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002209
Stephen Boydb61c43c2015-02-02 14:11:25 -08002210 /* verify ops for for multi-parent clks */
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002211 if (core->num_parents > 1 && !core->ops->set_parent)
2212 return -EPERM;
Stephen Boydb61c43c2015-02-02 14:11:25 -08002213
Ulf Hansson031dcc92013-04-02 23:09:38 +02002214 /* check that we are allowed to re-parent if the clock is in use */
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002215 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count)
2216 return -EBUSY;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002217
Jerome Brunete55a8392017-12-01 22:51:56 +01002218 if (clk_core_rate_is_protected(core))
2219 return -EBUSY;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002220
2221 /* try finding the new parent index */
2222 if (parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002223 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002224 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02002225 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002226 __func__, parent->name, core->name);
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002227 return p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002228 }
Masahiro Yamadae8f0e682015-12-28 19:23:10 +09002229 p_rate = parent->rate;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002230 }
2231
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002232 ret = clk_pm_runtime_get(core);
2233 if (ret)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002234 return ret;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002235
Mike Turquetteb24764902012-03-15 23:11:19 -07002236 /* propagate PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002237 ret = __clk_speculate_rates(core, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002238
2239 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07002240 if (ret & NOTIFY_STOP_MASK)
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002241 goto runtime_put;
Mike Turquetteb24764902012-03-15 23:11:19 -07002242
Ulf Hansson031dcc92013-04-02 23:09:38 +02002243 /* do the re-parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002244 ret = __clk_set_parent(core, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002245
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002246 /* propagate rate an accuracy recalculation accordingly */
2247 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002248 __clk_recalc_rates(core, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002249 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002250 __clk_recalc_rates(core, POST_RATE_CHANGE);
2251 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002252 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002253
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002254runtime_put:
2255 clk_pm_runtime_put(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002256
2257 return ret;
2258}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002259
2260/**
2261 * clk_set_parent - switch the parent of a mux clk
2262 * @clk: the mux clk whose input we are switching
2263 * @parent: the new input to clk
2264 *
2265 * Re-parent clk to use parent as its new input source. If clk is in
2266 * prepared state, the clk will get enabled for the duration of this call. If
2267 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2268 * that, the reparenting is glitchy in hardware, etc), use the
2269 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2270 *
2271 * After successfully changing clk's parent clk_set_parent will update the
2272 * clk topology, sysfs topology and propagate rate recalculation via
2273 * __clk_recalc_rates.
2274 *
2275 * Returns 0 on success, -EERROR otherwise.
2276 */
2277int clk_set_parent(struct clk *clk, struct clk *parent)
2278{
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002279 int ret;
2280
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002281 if (!clk)
2282 return 0;
2283
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002284 clk_prepare_lock();
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002285
2286 if (clk->exclusive_count)
2287 clk_core_rate_unprotect(clk->core);
2288
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002289 ret = clk_core_set_parent_nolock(clk->core,
2290 parent ? parent->core : NULL);
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002291
2292 if (clk->exclusive_count)
2293 clk_core_rate_protect(clk->core);
2294
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002295 clk_prepare_unlock();
2296
2297 return ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002298}
Mike Turquetteb24764902012-03-15 23:11:19 -07002299EXPORT_SYMBOL_GPL(clk_set_parent);
2300
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002301static int clk_core_set_phase_nolock(struct clk_core *core, int degrees)
2302{
2303 int ret = -EINVAL;
2304
2305 lockdep_assert_held(&prepare_lock);
2306
2307 if (!core)
2308 return 0;
2309
Jerome Brunete55a8392017-12-01 22:51:56 +01002310 if (clk_core_rate_is_protected(core))
2311 return -EBUSY;
2312
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002313 trace_clk_set_phase(core, degrees);
2314
Shawn Lin7f95bee2018-03-08 14:49:41 +08002315 if (core->ops->set_phase) {
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002316 ret = core->ops->set_phase(core->hw, degrees);
Shawn Lin7f95bee2018-03-08 14:49:41 +08002317 if (!ret)
2318 core->phase = degrees;
2319 }
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002320
2321 trace_clk_set_phase_complete(core, degrees);
2322
2323 return ret;
2324}
2325
Mike Turquetteb24764902012-03-15 23:11:19 -07002326/**
Mike Turquettee59c5372014-02-18 21:21:25 -08002327 * clk_set_phase - adjust the phase shift of a clock signal
2328 * @clk: clock signal source
2329 * @degrees: number of degrees the signal is shifted
2330 *
2331 * Shifts the phase of a clock signal by the specified
2332 * degrees. Returns 0 on success, -EERROR otherwise.
2333 *
2334 * This function makes no distinction about the input or reference
2335 * signal that we adjust the clock signal phase against. For example
2336 * phase locked-loop clock signal generators we may shift phase with
2337 * respect to feedback clock signal input, but for other cases the
2338 * clock phase may be shifted with respect to some other, unspecified
2339 * signal.
2340 *
2341 * Additionally the concept of phase shift does not propagate through
2342 * the clock tree hierarchy, which sets it apart from clock rates and
2343 * clock accuracy. A parent clock phase attribute does not have an
2344 * impact on the phase attribute of a child clock.
2345 */
2346int clk_set_phase(struct clk *clk, int degrees)
2347{
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002348 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002349
2350 if (!clk)
Stephen Boyd08b95752015-02-02 14:09:43 -08002351 return 0;
Mike Turquettee59c5372014-02-18 21:21:25 -08002352
2353 /* sanity check degrees */
2354 degrees %= 360;
2355 if (degrees < 0)
2356 degrees += 360;
2357
2358 clk_prepare_lock();
2359
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002360 if (clk->exclusive_count)
2361 clk_core_rate_unprotect(clk->core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002362
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002363 ret = clk_core_set_phase_nolock(clk->core, degrees);
Mike Turquettee59c5372014-02-18 21:21:25 -08002364
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002365 if (clk->exclusive_count)
2366 clk_core_rate_protect(clk->core);
Mike Turquettee59c5372014-02-18 21:21:25 -08002367
Mike Turquettee59c5372014-02-18 21:21:25 -08002368 clk_prepare_unlock();
2369
Mike Turquettee59c5372014-02-18 21:21:25 -08002370 return ret;
2371}
Maxime Ripard9767b04f2015-01-20 22:23:43 +01002372EXPORT_SYMBOL_GPL(clk_set_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08002373
Stephen Boydd6968fc2015-04-30 13:54:13 -07002374static int clk_core_get_phase(struct clk_core *core)
Mike Turquettee59c5372014-02-18 21:21:25 -08002375{
Stephen Boyd1f3e1982015-04-30 14:21:56 -07002376 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002377
2378 clk_prepare_lock();
Shawn Lin1f9c63e2018-03-14 08:28:31 +08002379 /* Always try to update cached phase if possible */
2380 if (core->ops->get_phase)
2381 core->phase = core->ops->get_phase(core->hw);
Stephen Boydd6968fc2015-04-30 13:54:13 -07002382 ret = core->phase;
Mike Turquettee59c5372014-02-18 21:21:25 -08002383 clk_prepare_unlock();
2384
Mike Turquettee59c5372014-02-18 21:21:25 -08002385 return ret;
2386}
2387
2388/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002389 * clk_get_phase - return the phase shift of a clock signal
2390 * @clk: clock signal source
2391 *
2392 * Returns the phase shift of a clock node in degrees, otherwise returns
2393 * -EERROR.
2394 */
2395int clk_get_phase(struct clk *clk)
2396{
2397 if (!clk)
2398 return 0;
2399
2400 return clk_core_get_phase(clk->core);
2401}
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002402EXPORT_SYMBOL_GPL(clk_get_phase);
Mike Turquetteb24764902012-03-15 23:11:19 -07002403
2404/**
Michael Turquette3d3801e2015-02-25 09:11:01 -08002405 * clk_is_match - check if two clk's point to the same hardware clock
2406 * @p: clk compared against q
2407 * @q: clk compared against p
2408 *
2409 * Returns true if the two struct clk pointers both point to the same hardware
2410 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2411 * share the same struct clk_core object.
2412 *
2413 * Returns false otherwise. Note that two NULL clks are treated as matching.
2414 */
2415bool clk_is_match(const struct clk *p, const struct clk *q)
2416{
2417 /* trivial case: identical struct clk's or both NULL */
2418 if (p == q)
2419 return true;
2420
Geert Uytterhoeven3fe003f2015-10-29 20:55:00 +01002421 /* true if clk->core pointers match. Avoid dereferencing garbage */
Michael Turquette3d3801e2015-02-25 09:11:01 -08002422 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
2423 if (p->core == q->core)
2424 return true;
2425
2426 return false;
2427}
2428EXPORT_SYMBOL_GPL(clk_is_match);
2429
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002430/*** debugfs support ***/
2431
2432#ifdef CONFIG_DEBUG_FS
2433#include <linux/debugfs.h>
2434
2435static struct dentry *rootdir;
2436static int inited = 0;
2437static DEFINE_MUTEX(clk_debug_lock);
2438static HLIST_HEAD(clk_debug_list);
2439
2440static struct hlist_head *all_lists[] = {
2441 &clk_root_list,
2442 &clk_orphan_list,
2443 NULL,
2444};
2445
2446static struct hlist_head *orphan_list[] = {
2447 &clk_orphan_list,
2448 NULL,
2449};
2450
2451static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
2452 int level)
2453{
2454 if (!c)
2455 return;
2456
Jerome Brunetc5ce26e2017-12-01 22:51:57 +01002457 seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu %-3d\n",
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002458 level * 3 + 1, "",
2459 30 - level * 3, c->name,
Jerome Brunete55a8392017-12-01 22:51:56 +01002460 c->enable_count, c->prepare_count, c->protect_count,
2461 clk_core_get_rate(c), clk_core_get_accuracy(c),
2462 clk_core_get_phase(c));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002463}
2464
2465static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
2466 int level)
2467{
2468 struct clk_core *child;
2469
2470 if (!c)
2471 return;
2472
2473 clk_summary_show_one(s, c, level);
2474
2475 hlist_for_each_entry(child, &c->children, child_node)
2476 clk_summary_show_subtree(s, child, level + 1);
2477}
2478
2479static int clk_summary_show(struct seq_file *s, void *data)
2480{
2481 struct clk_core *c;
2482 struct hlist_head **lists = (struct hlist_head **)s->private;
2483
Jerome Brunetc5ce26e2017-12-01 22:51:57 +01002484 seq_puts(s, " enable prepare protect \n");
2485 seq_puts(s, " clock count count count rate accuracy phase\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002486 seq_puts(s, "----------------------------------------------------------------------------------------\n");
2487
2488 clk_prepare_lock();
2489
2490 for (; *lists; lists++)
2491 hlist_for_each_entry(c, *lists, child_node)
2492 clk_summary_show_subtree(s, c, 0);
2493
2494 clk_prepare_unlock();
2495
2496 return 0;
2497}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002498DEFINE_SHOW_ATTRIBUTE(clk_summary);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002499
2500static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
2501{
2502 if (!c)
2503 return;
2504
Stefan Wahren7cb81132015-04-29 16:36:43 +00002505 /* This should be JSON format, i.e. elements separated with a comma */
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002506 seq_printf(s, "\"%s\": { ", c->name);
2507 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
2508 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Jerome Brunete55a8392017-12-01 22:51:56 +01002509 seq_printf(s, "\"protect_count\": %d,", c->protect_count);
Stefan Wahren7cb81132015-04-29 16:36:43 +00002510 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate(c));
2511 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy(c));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002512 seq_printf(s, "\"phase\": %d", clk_core_get_phase(c));
2513}
2514
2515static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
2516{
2517 struct clk_core *child;
2518
2519 if (!c)
2520 return;
2521
2522 clk_dump_one(s, c, level);
2523
2524 hlist_for_each_entry(child, &c->children, child_node) {
Markus Elfring4d327582017-04-20 08:45:43 +02002525 seq_putc(s, ',');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002526 clk_dump_subtree(s, child, level + 1);
2527 }
2528
Markus Elfring4d327582017-04-20 08:45:43 +02002529 seq_putc(s, '}');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002530}
2531
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002532static int clk_dump_show(struct seq_file *s, void *data)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002533{
2534 struct clk_core *c;
2535 bool first_node = true;
2536 struct hlist_head **lists = (struct hlist_head **)s->private;
2537
Markus Elfring4d327582017-04-20 08:45:43 +02002538 seq_putc(s, '{');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002539 clk_prepare_lock();
2540
2541 for (; *lists; lists++) {
2542 hlist_for_each_entry(c, *lists, child_node) {
2543 if (!first_node)
Markus Elfring4d327582017-04-20 08:45:43 +02002544 seq_putc(s, ',');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002545 first_node = false;
2546 clk_dump_subtree(s, c, 0);
2547 }
2548 }
2549
2550 clk_prepare_unlock();
2551
Felipe Balbi70e9f4d2015-05-01 09:48:37 -05002552 seq_puts(s, "}\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002553 return 0;
2554}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002555DEFINE_SHOW_ATTRIBUTE(clk_dump);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002556
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01002557static const struct {
2558 unsigned long flag;
2559 const char *name;
2560} clk_flags[] = {
2561#define ENTRY(f) { f, __stringify(f) }
2562 ENTRY(CLK_SET_RATE_GATE),
2563 ENTRY(CLK_SET_PARENT_GATE),
2564 ENTRY(CLK_SET_RATE_PARENT),
2565 ENTRY(CLK_IGNORE_UNUSED),
2566 ENTRY(CLK_IS_BASIC),
2567 ENTRY(CLK_GET_RATE_NOCACHE),
2568 ENTRY(CLK_SET_RATE_NO_REPARENT),
2569 ENTRY(CLK_GET_ACCURACY_NOCACHE),
2570 ENTRY(CLK_RECALC_NEW_RATES),
2571 ENTRY(CLK_SET_RATE_UNGATE),
2572 ENTRY(CLK_IS_CRITICAL),
2573 ENTRY(CLK_OPS_PARENT_ENABLE),
2574#undef ENTRY
2575};
2576
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002577static int clk_flags_show(struct seq_file *s, void *data)
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01002578{
2579 struct clk_core *core = s->private;
2580 unsigned long flags = core->flags;
2581 unsigned int i;
2582
2583 for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) {
2584 if (flags & clk_flags[i].flag) {
2585 seq_printf(s, "%s\n", clk_flags[i].name);
2586 flags &= ~clk_flags[i].flag;
2587 }
2588 }
2589 if (flags) {
2590 /* Unknown flags */
2591 seq_printf(s, "0x%lx\n", flags);
2592 }
2593
2594 return 0;
2595}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002596DEFINE_SHOW_ATTRIBUTE(clk_flags);
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01002597
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002598static int possible_parents_show(struct seq_file *s, void *data)
Peter De Schrijver92031572017-03-21 15:20:31 +02002599{
2600 struct clk_core *core = s->private;
2601 int i;
2602
2603 for (i = 0; i < core->num_parents - 1; i++)
2604 seq_printf(s, "%s ", core->parent_names[i]);
2605
2606 seq_printf(s, "%s\n", core->parent_names[i]);
2607
2608 return 0;
2609}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002610DEFINE_SHOW_ATTRIBUTE(possible_parents);
Peter De Schrijver92031572017-03-21 15:20:31 +02002611
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002612static int clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
2613{
2614 struct dentry *d;
2615 int ret = -ENOMEM;
2616
2617 if (!core || !pdentry) {
2618 ret = -EINVAL;
2619 goto out;
2620 }
2621
2622 d = debugfs_create_dir(core->name, pdentry);
2623 if (!d)
2624 goto out;
2625
2626 core->dentry = d;
2627
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002628 d = debugfs_create_ulong("clk_rate", 0444, core->dentry, &core->rate);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002629 if (!d)
2630 goto err_out;
2631
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002632 d = debugfs_create_ulong("clk_accuracy", 0444, core->dentry,
2633 &core->accuracy);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002634 if (!d)
2635 goto err_out;
2636
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002637 d = debugfs_create_u32("clk_phase", 0444, core->dentry, &core->phase);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002638 if (!d)
2639 goto err_out;
2640
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01002641 d = debugfs_create_file("clk_flags", 0444, core->dentry, core,
2642 &clk_flags_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002643 if (!d)
2644 goto err_out;
2645
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002646 d = debugfs_create_u32("clk_prepare_count", 0444, core->dentry,
2647 &core->prepare_count);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002648 if (!d)
2649 goto err_out;
2650
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002651 d = debugfs_create_u32("clk_enable_count", 0444, core->dentry,
2652 &core->enable_count);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002653 if (!d)
2654 goto err_out;
2655
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002656 d = debugfs_create_u32("clk_protect_count", 0444, core->dentry,
2657 &core->protect_count);
Jerome Brunete55a8392017-12-01 22:51:56 +01002658 if (!d)
2659 goto err_out;
2660
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002661 d = debugfs_create_u32("clk_notifier_count", 0444, core->dentry,
2662 &core->notifier_count);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002663 if (!d)
2664 goto err_out;
2665
Peter De Schrijver92031572017-03-21 15:20:31 +02002666 if (core->num_parents > 1) {
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002667 d = debugfs_create_file("clk_possible_parents", 0444,
Peter De Schrijver92031572017-03-21 15:20:31 +02002668 core->dentry, core, &possible_parents_fops);
2669 if (!d)
2670 goto err_out;
2671 }
2672
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002673 if (core->ops->debug_init) {
2674 ret = core->ops->debug_init(core->hw, core->dentry);
2675 if (ret)
2676 goto err_out;
2677 }
2678
2679 ret = 0;
2680 goto out;
2681
2682err_out:
2683 debugfs_remove_recursive(core->dentry);
2684 core->dentry = NULL;
2685out:
2686 return ret;
2687}
2688
2689/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002690 * clk_debug_register - add a clk node to the debugfs clk directory
2691 * @core: the clk being added to the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002692 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002693 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
2694 * initialized. Otherwise it bails out early since the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002695 * will be created lazily by clk_debug_init as part of a late_initcall.
2696 */
2697static int clk_debug_register(struct clk_core *core)
2698{
2699 int ret = 0;
2700
2701 mutex_lock(&clk_debug_lock);
2702 hlist_add_head(&core->debug_node, &clk_debug_list);
Stephen Boyddb3188fa2018-01-03 16:44:37 -08002703 if (inited)
2704 ret = clk_debug_create_one(core, rootdir);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002705 mutex_unlock(&clk_debug_lock);
2706
2707 return ret;
2708}
2709
2710 /**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002711 * clk_debug_unregister - remove a clk node from the debugfs clk directory
2712 * @core: the clk being removed from the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002713 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002714 * Dynamically removes a clk and all its child nodes from the
2715 * debugfs clk directory if clk->dentry points to debugfs created by
Stephen Boyd706d5c72016-02-22 15:43:41 -08002716 * clk_debug_register in __clk_core_init.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002717 */
2718static void clk_debug_unregister(struct clk_core *core)
2719{
2720 mutex_lock(&clk_debug_lock);
2721 hlist_del_init(&core->debug_node);
2722 debugfs_remove_recursive(core->dentry);
2723 core->dentry = NULL;
2724 mutex_unlock(&clk_debug_lock);
2725}
2726
2727struct dentry *clk_debugfs_add_file(struct clk_hw *hw, char *name, umode_t mode,
2728 void *data, const struct file_operations *fops)
2729{
2730 struct dentry *d = NULL;
2731
2732 if (hw->core->dentry)
2733 d = debugfs_create_file(name, mode, hw->core->dentry, data,
2734 fops);
2735
2736 return d;
2737}
2738EXPORT_SYMBOL_GPL(clk_debugfs_add_file);
2739
2740/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002741 * clk_debug_init - lazily populate the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002742 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002743 * clks are often initialized very early during boot before memory can be
2744 * dynamically allocated and well before debugfs is setup. This function
2745 * populates the debugfs clk directory once at boot-time when we know that
2746 * debugfs is setup. It should only be called once at boot-time, all other clks
2747 * added dynamically will be done so with clk_debug_register.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002748 */
2749static int __init clk_debug_init(void)
2750{
2751 struct clk_core *core;
2752 struct dentry *d;
2753
2754 rootdir = debugfs_create_dir("clk", NULL);
2755
2756 if (!rootdir)
2757 return -ENOMEM;
2758
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002759 d = debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002760 &clk_summary_fops);
2761 if (!d)
2762 return -ENOMEM;
2763
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002764 d = debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002765 &clk_dump_fops);
2766 if (!d)
2767 return -ENOMEM;
2768
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002769 d = debugfs_create_file("clk_orphan_summary", 0444, rootdir,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002770 &orphan_list, &clk_summary_fops);
2771 if (!d)
2772 return -ENOMEM;
2773
Geert Uytterhoeven4c8326d2018-01-03 12:06:15 +01002774 d = debugfs_create_file("clk_orphan_dump", 0444, rootdir,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002775 &orphan_list, &clk_dump_fops);
2776 if (!d)
2777 return -ENOMEM;
2778
2779 mutex_lock(&clk_debug_lock);
2780 hlist_for_each_entry(core, &clk_debug_list, debug_node)
2781 clk_debug_create_one(core, rootdir);
2782
2783 inited = 1;
2784 mutex_unlock(&clk_debug_lock);
2785
2786 return 0;
2787}
2788late_initcall(clk_debug_init);
2789#else
2790static inline int clk_debug_register(struct clk_core *core) { return 0; }
2791static inline void clk_debug_reparent(struct clk_core *core,
2792 struct clk_core *new_parent)
2793{
2794}
2795static inline void clk_debug_unregister(struct clk_core *core)
2796{
2797}
2798#endif
2799
Michael Turquette3d3801e2015-02-25 09:11:01 -08002800/**
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09002801 * __clk_core_init - initialize the data structures in a struct clk_core
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09002802 * @core: clk_core being initialized
Mike Turquetteb24764902012-03-15 23:11:19 -07002803 *
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002804 * Initializes the lists in struct clk_core, queries the hardware for the
Mike Turquetteb24764902012-03-15 23:11:19 -07002805 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07002806 */
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09002807static int __clk_core_init(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002808{
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002809 int i, ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002810 struct clk_core *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002811 struct hlist_node *tmp2;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002812 unsigned long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002813
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09002814 if (!core)
Mike Turquetted1302a32012-03-29 14:30:40 -07002815 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07002816
Mike Turquetteeab89f62013-03-28 13:59:01 -07002817 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002818
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002819 ret = clk_pm_runtime_get(core);
2820 if (ret)
2821 goto unlock;
2822
Mike Turquetteb24764902012-03-15 23:11:19 -07002823 /* check to see if a clock with this name is already registered */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002824 if (clk_core_lookup(core->name)) {
Mike Turquetted1302a32012-03-29 14:30:40 -07002825 pr_debug("%s: clk %s already initialized\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002826 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002827 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07002828 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07002829 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002830
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002831 /* check that clk_ops are sane. See Documentation/clk.txt */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002832 if (core->ops->set_rate &&
2833 !((core->ops->round_rate || core->ops->determine_rate) &&
2834 core->ops->recalc_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09002835 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
2836 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002837 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002838 goto out;
2839 }
2840
Stephen Boydd6968fc2015-04-30 13:54:13 -07002841 if (core->ops->set_parent && !core->ops->get_parent) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09002842 pr_err("%s: %s must implement .get_parent & .set_parent\n",
2843 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07002844 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07002845 goto out;
2846 }
2847
Masahiro Yamada3c8e77d2015-12-28 19:23:04 +09002848 if (core->num_parents > 1 && !core->ops->get_parent) {
2849 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
2850 __func__, core->name);
2851 ret = -EINVAL;
2852 goto out;
2853 }
2854
Stephen Boydd6968fc2015-04-30 13:54:13 -07002855 if (core->ops->set_rate_and_parent &&
2856 !(core->ops->set_parent && core->ops->set_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09002857 pr_err("%s: %s must implement .set_parent & .set_rate\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002858 __func__, core->name);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002859 ret = -EINVAL;
2860 goto out;
2861 }
2862
Mike Turquetteb24764902012-03-15 23:11:19 -07002863 /* throw a WARN if any entries in parent_names are NULL */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002864 for (i = 0; i < core->num_parents; i++)
2865 WARN(!core->parent_names[i],
Mike Turquetteb24764902012-03-15 23:11:19 -07002866 "%s: invalid NULL in %s's .parent_names\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002867 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07002868
Stephen Boydd6968fc2015-04-30 13:54:13 -07002869 core->parent = __clk_init_parent(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002870
2871 /*
Stephen Boyd706d5c72016-02-22 15:43:41 -08002872 * Populate core->parent if parent has already been clk_core_init'd. If
2873 * parent has not yet been clk_core_init'd then place clk in the orphan
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08002874 * list. If clk doesn't have any parents then place it in the root
Mike Turquetteb24764902012-03-15 23:11:19 -07002875 * clk list.
2876 *
2877 * Every time a new clk is clk_init'd then we walk the list of orphan
2878 * clocks and re-parent any that are children of the clock currently
2879 * being clk_init'd.
2880 */
Heiko Stuebnere6500342015-04-22 22:53:05 +02002881 if (core->parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002882 hlist_add_head(&core->child_node,
2883 &core->parent->children);
Heiko Stuebnere6500342015-04-22 22:53:05 +02002884 core->orphan = core->parent->orphan;
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08002885 } else if (!core->num_parents) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002886 hlist_add_head(&core->child_node, &clk_root_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02002887 core->orphan = false;
2888 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002889 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02002890 core->orphan = true;
2891 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002892
2893 /*
Jerome Brunet541deba2018-02-14 14:43:37 +01002894 * optional platform-specific magic
2895 *
2896 * The .init callback is not used by any of the basic clock types, but
2897 * exists for weird hardware that must perform initialization magic.
2898 * Please consider other ways of solving initialization problems before
2899 * using this callback, as its use is discouraged.
2900 */
2901 if (core->ops->init)
2902 core->ops->init(core->hw);
2903
2904 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002905 * Set clk's accuracy. The preferred method is to use
2906 * .recalc_accuracy. For simple clocks and lazy developers the default
2907 * fallback is to use the parent's accuracy. If a clock doesn't have a
2908 * parent (or is orphaned) then accuracy is set to zero (perfect
2909 * clock).
2910 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002911 if (core->ops->recalc_accuracy)
2912 core->accuracy = core->ops->recalc_accuracy(core->hw,
2913 __clk_get_accuracy(core->parent));
2914 else if (core->parent)
2915 core->accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002916 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07002917 core->accuracy = 0;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002918
2919 /*
Maxime Ripard9824cf72014-07-14 13:53:27 +02002920 * Set clk's phase.
2921 * Since a phase is by definition relative to its parent, just
2922 * query the current clock phase, or just assume it's in phase.
2923 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002924 if (core->ops->get_phase)
2925 core->phase = core->ops->get_phase(core->hw);
Maxime Ripard9824cf72014-07-14 13:53:27 +02002926 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07002927 core->phase = 0;
Maxime Ripard9824cf72014-07-14 13:53:27 +02002928
2929 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07002930 * Set clk's rate. The preferred method is to use .recalc_rate. For
2931 * simple clocks and lazy developers the default fallback is to use the
2932 * parent's rate. If a clock doesn't have a parent (or is orphaned)
2933 * then rate is set to zero.
2934 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002935 if (core->ops->recalc_rate)
2936 rate = core->ops->recalc_rate(core->hw,
2937 clk_core_get_rate_nolock(core->parent));
2938 else if (core->parent)
2939 rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002940 else
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002941 rate = 0;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002942 core->rate = core->req_rate = rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002943
2944 /*
Jerome Brunet99652a42018-02-14 14:43:36 +01002945 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
2946 * don't get accidentally disabled when walking the orphan tree and
2947 * reparenting clocks
2948 */
2949 if (core->flags & CLK_IS_CRITICAL) {
2950 unsigned long flags;
2951
2952 clk_core_prepare(core);
2953
2954 flags = clk_enable_lock();
2955 clk_core_enable(core);
2956 clk_enable_unlock(flags);
2957 }
2958
2959 /*
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09002960 * walk the list of orphan clocks and reparent any that newly finds a
2961 * parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07002962 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08002963 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09002964 struct clk_core *parent = __clk_init_parent(orphan);
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01002965
Michael Turquette904e6ea2016-07-08 16:32:10 -07002966 /*
Jerome Brunet99652a42018-02-14 14:43:36 +01002967 * We need to use __clk_set_parent_before() and _after() to
2968 * to properly migrate any prepare/enable count of the orphan
2969 * clock. This is important for CLK_IS_CRITICAL clocks, which
2970 * are enabled during init but might not have a parent yet.
Michael Turquette904e6ea2016-07-08 16:32:10 -07002971 */
2972 if (parent) {
Stephen Boydf8f8f1d2017-11-02 00:36:09 -07002973 /* update the clk tree topology */
Jerome Brunet99652a42018-02-14 14:43:36 +01002974 __clk_set_parent_before(orphan, parent);
2975 __clk_set_parent_after(orphan, parent, NULL);
Michael Turquette904e6ea2016-07-08 16:32:10 -07002976 __clk_recalc_accuracies(orphan);
2977 __clk_recalc_rates(orphan, 0);
2978 }
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09002979 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002980
Stephen Boydd6968fc2015-04-30 13:54:13 -07002981 kref_init(&core->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07002982out:
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002983 clk_pm_runtime_put(core);
2984unlock:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002985 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002986
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08002987 if (!ret)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002988 clk_debug_register(core);
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08002989
Mike Turquetted1302a32012-03-29 14:30:40 -07002990 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07002991}
2992
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002993struct clk *__clk_create_clk(struct clk_hw *hw, const char *dev_id,
2994 const char *con_id)
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002995{
Saravana Kannan0197b3e2012-04-25 22:58:56 -07002996 struct clk *clk;
2997
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002998 /* This is to allow this function to be chained to others */
Masahiro Yamadac1de1352015-11-20 14:38:49 +09002999 if (IS_ERR_OR_NULL(hw))
Masahiro Yamada8a231332016-07-19 16:28:47 +09003000 return ERR_CAST(hw);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003001
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003002 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3003 if (!clk)
3004 return ERR_PTR(-ENOMEM);
3005
3006 clk->core = hw->core;
3007 clk->dev_id = dev_id;
Leonard Crestez253160a2017-02-20 15:20:56 +02003008 clk->con_id = kstrdup_const(con_id, GFP_KERNEL);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003009 clk->max_rate = ULONG_MAX;
3010
3011 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08003012 hlist_add_head(&clk->clks_node, &hw->core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003013 clk_prepare_unlock();
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003014
3015 return clk;
3016}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003017
Stephen Boyd73e0e492015-02-06 11:42:43 -08003018void __clk_free_clk(struct clk *clk)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003019{
3020 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08003021 hlist_del(&clk->clks_node);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003022 clk_prepare_unlock();
3023
Leonard Crestez253160a2017-02-20 15:20:56 +02003024 kfree_const(clk->con_id);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003025 kfree(clk);
3026}
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003027
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003028/**
3029 * clk_register - allocate a new clock, register it and return an opaque cookie
3030 * @dev: device that is registering this clock
3031 * @hw: link to hardware-specific clock data
3032 *
3033 * clk_register is the primary interface for populating the clock tree with new
3034 * clock nodes. It returns a pointer to the newly allocated struct clk which
Shailendra Vermaa59a5162015-05-21 00:06:48 +05303035 * cannot be dereferenced by driver code but may be used in conjunction with the
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003036 * rest of the clock API. In the event of an error clk_register will return an
3037 * error code; drivers must test for an error code after calling clk_register.
3038 */
3039struct clk *clk_register(struct device *dev, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07003040{
Mike Turquetted1302a32012-03-29 14:30:40 -07003041 int i, ret;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003042 struct clk_core *core;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003043
Stephen Boydd6968fc2015-04-30 13:54:13 -07003044 core = kzalloc(sizeof(*core), GFP_KERNEL);
3045 if (!core) {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003046 ret = -ENOMEM;
3047 goto fail_out;
3048 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003049
Stephen Boydd6968fc2015-04-30 13:54:13 -07003050 core->name = kstrdup_const(hw->init->name, GFP_KERNEL);
3051 if (!core->name) {
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003052 ret = -ENOMEM;
3053 goto fail_name;
3054 }
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003055
3056 if (WARN_ON(!hw->init->ops)) {
3057 ret = -EINVAL;
3058 goto fail_ops;
3059 }
Stephen Boydd6968fc2015-04-30 13:54:13 -07003060 core->ops = hw->init->ops;
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003061
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003062 if (dev && pm_runtime_enabled(dev))
3063 core->dev = dev;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003064 if (dev && dev->driver)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003065 core->owner = dev->driver->owner;
3066 core->hw = hw;
3067 core->flags = hw->init->flags;
3068 core->num_parents = hw->init->num_parents;
Stephen Boyd9783c0d2015-07-16 12:50:27 -07003069 core->min_rate = 0;
3070 core->max_rate = ULONG_MAX;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003071 hw->core = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07003072
Mike Turquetted1302a32012-03-29 14:30:40 -07003073 /* allocate local copy in case parent_names is __initdata */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003074 core->parent_names = kcalloc(core->num_parents, sizeof(char *),
Tomasz Figa96a7ed92013-09-29 02:37:15 +02003075 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07003076
Stephen Boydd6968fc2015-04-30 13:54:13 -07003077 if (!core->parent_names) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003078 ret = -ENOMEM;
3079 goto fail_parent_names;
3080 }
3081
3082
3083 /* copy each string name in case parent_names is __initdata */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003084 for (i = 0; i < core->num_parents; i++) {
3085 core->parent_names[i] = kstrdup_const(hw->init->parent_names[i],
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003086 GFP_KERNEL);
Stephen Boydd6968fc2015-04-30 13:54:13 -07003087 if (!core->parent_names[i]) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003088 ret = -ENOMEM;
3089 goto fail_parent_names_copy;
3090 }
3091 }
3092
Masahiro Yamada176d1162015-12-28 19:23:00 +09003093 /* avoid unnecessary string look-ups of clk_core's possible parents. */
3094 core->parents = kcalloc(core->num_parents, sizeof(*core->parents),
3095 GFP_KERNEL);
3096 if (!core->parents) {
3097 ret = -ENOMEM;
3098 goto fail_parents;
3099 };
3100
Stephen Boydd6968fc2015-04-30 13:54:13 -07003101 INIT_HLIST_HEAD(&core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003102
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003103 hw->clk = __clk_create_clk(hw, NULL, NULL);
3104 if (IS_ERR(hw->clk)) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003105 ret = PTR_ERR(hw->clk);
Masahiro Yamada176d1162015-12-28 19:23:00 +09003106 goto fail_parents;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003107 }
Mike Turquetted1302a32012-03-29 14:30:40 -07003108
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003109 ret = __clk_core_init(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003110 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003111 return hw->clk;
3112
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003113 __clk_free_clk(hw->clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003114 hw->clk = NULL;
Mike Turquetted1302a32012-03-29 14:30:40 -07003115
Masahiro Yamada176d1162015-12-28 19:23:00 +09003116fail_parents:
3117 kfree(core->parents);
Mike Turquetted1302a32012-03-29 14:30:40 -07003118fail_parent_names_copy:
3119 while (--i >= 0)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003120 kfree_const(core->parent_names[i]);
3121 kfree(core->parent_names);
Mike Turquetted1302a32012-03-29 14:30:40 -07003122fail_parent_names:
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003123fail_ops:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003124 kfree_const(core->name);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003125fail_name:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003126 kfree(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003127fail_out:
3128 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07003129}
3130EXPORT_SYMBOL_GPL(clk_register);
3131
Stephen Boyd41438042016-02-05 17:02:52 -08003132/**
3133 * clk_hw_register - register a clk_hw and return an error code
3134 * @dev: device that is registering this clock
3135 * @hw: link to hardware-specific clock data
3136 *
3137 * clk_hw_register is the primary interface for populating the clock tree with
3138 * new clock nodes. It returns an integer equal to zero indicating success or
3139 * less than zero indicating failure. Drivers must test for an error code after
3140 * calling clk_hw_register().
3141 */
3142int clk_hw_register(struct device *dev, struct clk_hw *hw)
3143{
3144 return PTR_ERR_OR_ZERO(clk_register(dev, hw));
3145}
3146EXPORT_SYMBOL_GPL(clk_hw_register);
3147
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003148/* Free memory allocated for a clock. */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003149static void __clk_release(struct kref *ref)
3150{
Stephen Boydd6968fc2015-04-30 13:54:13 -07003151 struct clk_core *core = container_of(ref, struct clk_core, ref);
3152 int i = core->num_parents;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003153
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01003154 lockdep_assert_held(&prepare_lock);
3155
Stephen Boydd6968fc2015-04-30 13:54:13 -07003156 kfree(core->parents);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003157 while (--i >= 0)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003158 kfree_const(core->parent_names[i]);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003159
Stephen Boydd6968fc2015-04-30 13:54:13 -07003160 kfree(core->parent_names);
3161 kfree_const(core->name);
3162 kfree(core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003163}
3164
3165/*
3166 * Empty clk_ops for unregistered clocks. These are used temporarily
3167 * after clk_unregister() was called on a clock and until last clock
3168 * consumer calls clk_put() and the struct clk object is freed.
3169 */
3170static int clk_nodrv_prepare_enable(struct clk_hw *hw)
3171{
3172 return -ENXIO;
3173}
3174
3175static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
3176{
3177 WARN_ON_ONCE(1);
3178}
3179
3180static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
3181 unsigned long parent_rate)
3182{
3183 return -ENXIO;
3184}
3185
3186static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
3187{
3188 return -ENXIO;
3189}
3190
3191static const struct clk_ops clk_nodrv_ops = {
3192 .enable = clk_nodrv_prepare_enable,
3193 .disable = clk_nodrv_disable_unprepare,
3194 .prepare = clk_nodrv_prepare_enable,
3195 .unprepare = clk_nodrv_disable_unprepare,
3196 .set_rate = clk_nodrv_set_rate,
3197 .set_parent = clk_nodrv_set_parent,
3198};
3199
Mark Brown1df5c932012-04-18 09:07:12 +01003200/**
3201 * clk_unregister - unregister a currently registered clock
3202 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01003203 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003204void clk_unregister(struct clk *clk)
3205{
3206 unsigned long flags;
3207
Stephen Boyd6314b672014-09-04 23:37:49 -07003208 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
3209 return;
3210
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003211 clk_debug_unregister(clk->core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003212
3213 clk_prepare_lock();
3214
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003215 if (clk->core->ops == &clk_nodrv_ops) {
3216 pr_err("%s: unregistered clock: %s\n", __func__,
3217 clk->core->name);
Insu Yun4106a3d2016-01-30 10:12:04 -05003218 goto unlock;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003219 }
3220 /*
3221 * Assign empty clock ops for consumers that might still hold
3222 * a reference to this clock.
3223 */
3224 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003225 clk->core->ops = &clk_nodrv_ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003226 clk_enable_unlock(flags);
3227
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003228 if (!hlist_empty(&clk->core->children)) {
3229 struct clk_core *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07003230 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003231
3232 /* Reparent all children to the orphan list. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003233 hlist_for_each_entry_safe(child, t, &clk->core->children,
3234 child_node)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01003235 clk_core_set_parent_nolock(child, NULL);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003236 }
3237
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003238 hlist_del_init(&clk->core->child_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003239
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003240 if (clk->core->prepare_count)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003241 pr_warn("%s: unregistering prepared clock: %s\n",
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003242 __func__, clk->core->name);
Jerome Brunete55a8392017-12-01 22:51:56 +01003243
3244 if (clk->core->protect_count)
3245 pr_warn("%s: unregistering protected clock: %s\n",
3246 __func__, clk->core->name);
3247
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003248 kref_put(&clk->core->ref, __clk_release);
Insu Yun4106a3d2016-01-30 10:12:04 -05003249unlock:
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003250 clk_prepare_unlock();
3251}
Mark Brown1df5c932012-04-18 09:07:12 +01003252EXPORT_SYMBOL_GPL(clk_unregister);
3253
Stephen Boyd41438042016-02-05 17:02:52 -08003254/**
3255 * clk_hw_unregister - unregister a currently registered clk_hw
3256 * @hw: hardware-specific clock data to unregister
3257 */
3258void clk_hw_unregister(struct clk_hw *hw)
3259{
3260 clk_unregister(hw->clk);
3261}
3262EXPORT_SYMBOL_GPL(clk_hw_unregister);
3263
Stephen Boyd46c87732012-09-24 13:38:04 -07003264static void devm_clk_release(struct device *dev, void *res)
3265{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003266 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07003267}
3268
Stephen Boyd41438042016-02-05 17:02:52 -08003269static void devm_clk_hw_release(struct device *dev, void *res)
3270{
3271 clk_hw_unregister(*(struct clk_hw **)res);
3272}
3273
Stephen Boyd46c87732012-09-24 13:38:04 -07003274/**
3275 * devm_clk_register - resource managed clk_register()
3276 * @dev: device that is registering this clock
3277 * @hw: link to hardware-specific clock data
3278 *
3279 * Managed clk_register(). Clocks returned from this function are
3280 * automatically clk_unregister()ed on driver detach. See clk_register() for
3281 * more information.
3282 */
3283struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
3284{
3285 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003286 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07003287
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003288 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
3289 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07003290 return ERR_PTR(-ENOMEM);
3291
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003292 clk = clk_register(dev, hw);
3293 if (!IS_ERR(clk)) {
3294 *clkp = clk;
3295 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07003296 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003297 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07003298 }
3299
3300 return clk;
3301}
3302EXPORT_SYMBOL_GPL(devm_clk_register);
3303
Stephen Boyd41438042016-02-05 17:02:52 -08003304/**
3305 * devm_clk_hw_register - resource managed clk_hw_register()
3306 * @dev: device that is registering this clock
3307 * @hw: link to hardware-specific clock data
3308 *
Masahiro Yamadac47265a2016-05-01 19:56:08 +09003309 * Managed clk_hw_register(). Clocks registered by this function are
Stephen Boyd41438042016-02-05 17:02:52 -08003310 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
3311 * for more information.
3312 */
3313int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
3314{
3315 struct clk_hw **hwp;
3316 int ret;
3317
3318 hwp = devres_alloc(devm_clk_hw_release, sizeof(*hwp), GFP_KERNEL);
3319 if (!hwp)
3320 return -ENOMEM;
3321
3322 ret = clk_hw_register(dev, hw);
3323 if (!ret) {
3324 *hwp = hw;
3325 devres_add(dev, hwp);
3326 } else {
3327 devres_free(hwp);
3328 }
3329
3330 return ret;
3331}
3332EXPORT_SYMBOL_GPL(devm_clk_hw_register);
3333
Stephen Boyd46c87732012-09-24 13:38:04 -07003334static int devm_clk_match(struct device *dev, void *res, void *data)
3335{
3336 struct clk *c = res;
3337 if (WARN_ON(!c))
3338 return 0;
3339 return c == data;
3340}
3341
Stephen Boyd41438042016-02-05 17:02:52 -08003342static int devm_clk_hw_match(struct device *dev, void *res, void *data)
3343{
3344 struct clk_hw *hw = res;
3345
3346 if (WARN_ON(!hw))
3347 return 0;
3348 return hw == data;
3349}
3350
Stephen Boyd46c87732012-09-24 13:38:04 -07003351/**
3352 * devm_clk_unregister - resource managed clk_unregister()
3353 * @clk: clock to unregister
3354 *
3355 * Deallocate a clock allocated with devm_clk_register(). Normally
3356 * this function will not need to be called and the resource management
3357 * code will ensure that the resource is freed.
3358 */
3359void devm_clk_unregister(struct device *dev, struct clk *clk)
3360{
3361 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
3362}
3363EXPORT_SYMBOL_GPL(devm_clk_unregister);
3364
Stephen Boyd41438042016-02-05 17:02:52 -08003365/**
3366 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
3367 * @dev: device that is unregistering the hardware-specific clock data
3368 * @hw: link to hardware-specific clock data
3369 *
3370 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
3371 * this function will not need to be called and the resource management
3372 * code will ensure that the resource is freed.
3373 */
3374void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw)
3375{
3376 WARN_ON(devres_release(dev, devm_clk_hw_release, devm_clk_hw_match,
3377 hw));
3378}
3379EXPORT_SYMBOL_GPL(devm_clk_hw_unregister);
3380
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003381/*
3382 * clkdev helpers
3383 */
3384int __clk_get(struct clk *clk)
3385{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003386 struct clk_core *core = !clk ? NULL : clk->core;
3387
3388 if (core) {
3389 if (!try_module_get(core->owner))
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01003390 return 0;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003391
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003392 kref_get(&core->ref);
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01003393 }
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003394 return 1;
3395}
3396
3397void __clk_put(struct clk *clk)
3398{
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01003399 struct module *owner;
3400
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01003401 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003402 return;
3403
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003404 clk_prepare_lock();
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003405
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01003406 /*
3407 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
3408 * given user should be balanced with calls to clk_rate_exclusive_put()
3409 * and by that same consumer
3410 */
3411 if (WARN_ON(clk->exclusive_count)) {
3412 /* We voiced our concern, let's sanitize the situation */
3413 clk->core->protect_count -= (clk->exclusive_count - 1);
3414 clk_core_rate_unprotect(clk->core);
3415 clk->exclusive_count = 0;
3416 }
3417
Stephen Boyd50595f82015-02-06 11:42:44 -08003418 hlist_del(&clk->clks_node);
Tomeu Vizosoec02ace2015-02-06 15:13:01 +01003419 if (clk->min_rate > clk->core->req_rate ||
3420 clk->max_rate < clk->core->req_rate)
3421 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
3422
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003423 owner = clk->core->owner;
3424 kref_put(&clk->core->ref, __clk_release);
3425
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003426 clk_prepare_unlock();
3427
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01003428 module_put(owner);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003429
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003430 kfree(clk);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003431}
3432
Mike Turquetteb24764902012-03-15 23:11:19 -07003433/*** clk rate change notifiers ***/
3434
3435/**
3436 * clk_notifier_register - add a clk rate change notifier
3437 * @clk: struct clk * to watch
3438 * @nb: struct notifier_block * with callback info
3439 *
3440 * Request notification when clk's rate changes. This uses an SRCU
3441 * notifier because we want it to block and notifier unregistrations are
3442 * uncommon. The callbacks associated with the notifier must not
3443 * re-enter into the clk framework by calling any top-level clk APIs;
3444 * this will cause a nested prepare_lock mutex.
3445 *
Masahiro Yamada198bb592015-11-30 16:40:51 +09003446 * In all notification cases (pre, post and abort rate change) the original
3447 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
3448 * and the new frequency is passed via struct clk_notifier_data.new_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07003449 *
Mike Turquetteb24764902012-03-15 23:11:19 -07003450 * clk_notifier_register() must be called from non-atomic context.
3451 * Returns -EINVAL if called with null arguments, -ENOMEM upon
3452 * allocation failure; otherwise, passes along the return value of
3453 * srcu_notifier_chain_register().
3454 */
3455int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
3456{
3457 struct clk_notifier *cn;
3458 int ret = -ENOMEM;
3459
3460 if (!clk || !nb)
3461 return -EINVAL;
3462
Mike Turquetteeab89f62013-03-28 13:59:01 -07003463 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003464
3465 /* search the list of notifiers for this clk */
3466 list_for_each_entry(cn, &clk_notifier_list, node)
3467 if (cn->clk == clk)
3468 break;
3469
3470 /* if clk wasn't in the notifier list, allocate new clk_notifier */
3471 if (cn->clk != clk) {
Markus Elfring1808a322017-04-20 09:30:52 +02003472 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07003473 if (!cn)
3474 goto out;
3475
3476 cn->clk = clk;
3477 srcu_init_notifier_head(&cn->notifier_head);
3478
3479 list_add(&cn->node, &clk_notifier_list);
3480 }
3481
3482 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
3483
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003484 clk->core->notifier_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07003485
3486out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07003487 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003488
3489 return ret;
3490}
3491EXPORT_SYMBOL_GPL(clk_notifier_register);
3492
3493/**
3494 * clk_notifier_unregister - remove a clk rate change notifier
3495 * @clk: struct clk *
3496 * @nb: struct notifier_block * with callback info
3497 *
3498 * Request no further notification for changes to 'clk' and frees memory
3499 * allocated in clk_notifier_register.
3500 *
3501 * Returns -EINVAL if called with null arguments; otherwise, passes
3502 * along the return value of srcu_notifier_chain_unregister().
3503 */
3504int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
3505{
3506 struct clk_notifier *cn = NULL;
3507 int ret = -EINVAL;
3508
3509 if (!clk || !nb)
3510 return -EINVAL;
3511
Mike Turquetteeab89f62013-03-28 13:59:01 -07003512 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003513
3514 list_for_each_entry(cn, &clk_notifier_list, node)
3515 if (cn->clk == clk)
3516 break;
3517
3518 if (cn->clk == clk) {
3519 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
3520
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003521 clk->core->notifier_count--;
Mike Turquetteb24764902012-03-15 23:11:19 -07003522
3523 /* XXX the notifier code should handle this better */
3524 if (!cn->notifier_head.head) {
3525 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08003526 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07003527 kfree(cn);
3528 }
3529
3530 } else {
3531 ret = -ENOENT;
3532 }
3533
Mike Turquetteeab89f62013-03-28 13:59:01 -07003534 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003535
3536 return ret;
3537}
3538EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05003539
3540#ifdef CONFIG_OF
3541/**
3542 * struct of_clk_provider - Clock provider registration structure
3543 * @link: Entry in global list of clock providers
3544 * @node: Pointer to device tree node of clock provider
3545 * @get: Get clock callback. Returns NULL or a struct clk for the
3546 * given clock specifier
3547 * @data: context pointer to be passed into @get callback
3548 */
3549struct of_clk_provider {
3550 struct list_head link;
3551
3552 struct device_node *node;
3553 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003554 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
Grant Likely766e6a42012-04-09 14:50:06 -05003555 void *data;
3556};
3557
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05303558static const struct of_device_id __clk_of_table_sentinel
3559 __used __section(__clk_of_table_end);
3560
Grant Likely766e6a42012-04-09 14:50:06 -05003561static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003562static DEFINE_MUTEX(of_clk_mutex);
3563
Grant Likely766e6a42012-04-09 14:50:06 -05003564struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
3565 void *data)
3566{
3567 return data;
3568}
3569EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
3570
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003571struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
3572{
3573 return data;
3574}
3575EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
3576
Shawn Guo494bfec2012-08-22 21:36:27 +08003577struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
3578{
3579 struct clk_onecell_data *clk_data = data;
3580 unsigned int idx = clkspec->args[0];
3581
3582 if (idx >= clk_data->clk_num) {
Geert Uytterhoeven7e963532015-10-16 17:12:32 +02003583 pr_err("%s: invalid clock index %u\n", __func__, idx);
Shawn Guo494bfec2012-08-22 21:36:27 +08003584 return ERR_PTR(-EINVAL);
3585 }
3586
3587 return clk_data->clks[idx];
3588}
3589EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
3590
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003591struct clk_hw *
3592of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
3593{
3594 struct clk_hw_onecell_data *hw_data = data;
3595 unsigned int idx = clkspec->args[0];
3596
3597 if (idx >= hw_data->num) {
3598 pr_err("%s: invalid index %u\n", __func__, idx);
3599 return ERR_PTR(-EINVAL);
3600 }
3601
3602 return hw_data->hws[idx];
3603}
3604EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
3605
Grant Likely766e6a42012-04-09 14:50:06 -05003606/**
3607 * of_clk_add_provider() - Register a clock provider for a node
3608 * @np: Device node pointer associated with clock provider
3609 * @clk_src_get: callback for decoding clock
3610 * @data: context pointer for @clk_src_get callback.
3611 */
3612int of_clk_add_provider(struct device_node *np,
3613 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
3614 void *data),
3615 void *data)
3616{
3617 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02003618 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05003619
Markus Elfring1808a322017-04-20 09:30:52 +02003620 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
Grant Likely766e6a42012-04-09 14:50:06 -05003621 if (!cp)
3622 return -ENOMEM;
3623
3624 cp->node = of_node_get(np);
3625 cp->data = data;
3626 cp->get = clk_src_get;
3627
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003628 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05003629 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003630 mutex_unlock(&of_clk_mutex);
Rob Herring16673932017-07-18 16:42:52 -05003631 pr_debug("Added clock from %pOF\n", np);
Grant Likely766e6a42012-04-09 14:50:06 -05003632
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02003633 ret = of_clk_set_defaults(np, true);
3634 if (ret < 0)
3635 of_clk_del_provider(np);
3636
3637 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05003638}
3639EXPORT_SYMBOL_GPL(of_clk_add_provider);
3640
3641/**
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003642 * of_clk_add_hw_provider() - Register a clock provider for a node
3643 * @np: Device node pointer associated with clock provider
3644 * @get: callback for decoding clk_hw
3645 * @data: context pointer for @get callback.
3646 */
3647int of_clk_add_hw_provider(struct device_node *np,
3648 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
3649 void *data),
3650 void *data)
3651{
3652 struct of_clk_provider *cp;
3653 int ret;
3654
3655 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
3656 if (!cp)
3657 return -ENOMEM;
3658
3659 cp->node = of_node_get(np);
3660 cp->data = data;
3661 cp->get_hw = get;
3662
3663 mutex_lock(&of_clk_mutex);
3664 list_add(&cp->link, &of_clk_providers);
3665 mutex_unlock(&of_clk_mutex);
Rob Herring16673932017-07-18 16:42:52 -05003666 pr_debug("Added clk_hw provider from %pOF\n", np);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003667
3668 ret = of_clk_set_defaults(np, true);
3669 if (ret < 0)
3670 of_clk_del_provider(np);
3671
3672 return ret;
3673}
3674EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
3675
Stephen Boydaa795c42017-09-01 16:16:40 -07003676static void devm_of_clk_release_provider(struct device *dev, void *res)
3677{
3678 of_clk_del_provider(*(struct device_node **)res);
3679}
3680
3681int devm_of_clk_add_hw_provider(struct device *dev,
3682 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
3683 void *data),
3684 void *data)
3685{
3686 struct device_node **ptr, *np;
3687 int ret;
3688
3689 ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr),
3690 GFP_KERNEL);
3691 if (!ptr)
3692 return -ENOMEM;
3693
3694 np = dev->of_node;
3695 ret = of_clk_add_hw_provider(np, get, data);
3696 if (!ret) {
3697 *ptr = np;
3698 devres_add(dev, ptr);
3699 } else {
3700 devres_free(ptr);
3701 }
3702
3703 return ret;
3704}
3705EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider);
3706
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003707/**
Grant Likely766e6a42012-04-09 14:50:06 -05003708 * of_clk_del_provider() - Remove a previously registered clock provider
3709 * @np: Device node pointer associated with clock provider
3710 */
3711void of_clk_del_provider(struct device_node *np)
3712{
3713 struct of_clk_provider *cp;
3714
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003715 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05003716 list_for_each_entry(cp, &of_clk_providers, link) {
3717 if (cp->node == np) {
3718 list_del(&cp->link);
3719 of_node_put(cp->node);
3720 kfree(cp);
3721 break;
3722 }
3723 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003724 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05003725}
3726EXPORT_SYMBOL_GPL(of_clk_del_provider);
3727
Stephen Boydaa795c42017-09-01 16:16:40 -07003728static int devm_clk_provider_match(struct device *dev, void *res, void *data)
3729{
3730 struct device_node **np = res;
3731
3732 if (WARN_ON(!np || !*np))
3733 return 0;
3734
3735 return *np == data;
3736}
3737
3738void devm_of_clk_del_provider(struct device *dev)
3739{
3740 int ret;
3741
3742 ret = devres_release(dev, devm_of_clk_release_provider,
3743 devm_clk_provider_match, dev->of_node);
3744
3745 WARN_ON(ret);
3746}
3747EXPORT_SYMBOL(devm_of_clk_del_provider);
3748
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003749static struct clk_hw *
3750__of_clk_get_hw_from_provider(struct of_clk_provider *provider,
3751 struct of_phandle_args *clkspec)
3752{
3753 struct clk *clk;
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003754
Stephen Boyd74002fc2016-08-25 13:35:36 -07003755 if (provider->get_hw)
3756 return provider->get_hw(clkspec, provider->data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003757
Stephen Boyd74002fc2016-08-25 13:35:36 -07003758 clk = provider->get(clkspec, provider->data);
3759 if (IS_ERR(clk))
3760 return ERR_CAST(clk);
3761 return __clk_get_hw(clk);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003762}
3763
Stephen Boyd73e0e492015-02-06 11:42:43 -08003764struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec,
3765 const char *dev_id, const char *con_id)
Grant Likely766e6a42012-04-09 14:50:06 -05003766{
3767 struct of_clk_provider *provider;
Jean-Francois Moinea34cd462013-11-25 19:47:04 +01003768 struct clk *clk = ERR_PTR(-EPROBE_DEFER);
Stephen Boydf155d152016-08-15 14:32:23 -07003769 struct clk_hw *hw;
Grant Likely766e6a42012-04-09 14:50:06 -05003770
Stephen Boyd306c3422015-02-05 15:39:11 -08003771 if (!clkspec)
3772 return ERR_PTR(-EINVAL);
3773
Grant Likely766e6a42012-04-09 14:50:06 -05003774 /* Check if we have such a provider in our array */
Stephen Boyd306c3422015-02-05 15:39:11 -08003775 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05003776 list_for_each_entry(provider, &of_clk_providers, link) {
Stephen Boydf155d152016-08-15 14:32:23 -07003777 if (provider->node == clkspec->np) {
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003778 hw = __of_clk_get_hw_from_provider(provider, clkspec);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08003779 clk = __clk_create_clk(hw, dev_id, con_id);
Stephen Boydf155d152016-08-15 14:32:23 -07003780 }
Stephen Boyd73e0e492015-02-06 11:42:43 -08003781
Stephen Boydf155d152016-08-15 14:32:23 -07003782 if (!IS_ERR(clk)) {
3783 if (!__clk_get(clk)) {
Stephen Boyd73e0e492015-02-06 11:42:43 -08003784 __clk_free_clk(clk);
3785 clk = ERR_PTR(-ENOENT);
3786 }
3787
Grant Likely766e6a42012-04-09 14:50:06 -05003788 break;
Stephen Boyd73e0e492015-02-06 11:42:43 -08003789 }
Grant Likely766e6a42012-04-09 14:50:06 -05003790 }
Stephen Boyd306c3422015-02-05 15:39:11 -08003791 mutex_unlock(&of_clk_mutex);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003792
3793 return clk;
3794}
3795
Stephen Boyd306c3422015-02-05 15:39:11 -08003796/**
3797 * of_clk_get_from_provider() - Lookup a clock from a clock provider
3798 * @clkspec: pointer to a clock specifier data structure
3799 *
3800 * This function looks up a struct clk from the registered list of clock
3801 * providers, an input is a clock specifier data structure as returned
3802 * from the of_parse_phandle_with_args() function call.
3803 */
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02003804struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
3805{
Stephen Boyd306c3422015-02-05 15:39:11 -08003806 return __of_clk_get_from_provider(clkspec, NULL, __func__);
Grant Likely766e6a42012-04-09 14:50:06 -05003807}
Andrew F. Davisfb4dd222016-02-12 12:50:16 -06003808EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
Grant Likely766e6a42012-04-09 14:50:06 -05003809
Stephen Boyd929e7f32016-02-19 15:52:32 -08003810/**
3811 * of_clk_get_parent_count() - Count the number of clocks a device node has
3812 * @np: device node to count
3813 *
3814 * Returns: The number of clocks that are possible parents of this node
3815 */
3816unsigned int of_clk_get_parent_count(struct device_node *np)
Mike Turquettef6102742013-10-07 23:12:13 -07003817{
Stephen Boyd929e7f32016-02-19 15:52:32 -08003818 int count;
3819
3820 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
3821 if (count < 0)
3822 return 0;
3823
3824 return count;
Mike Turquettef6102742013-10-07 23:12:13 -07003825}
3826EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
3827
Grant Likely766e6a42012-04-09 14:50:06 -05003828const char *of_clk_get_parent_name(struct device_node *np, int index)
3829{
3830 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003831 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05003832 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003833 const __be32 *vp;
3834 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05003835 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003836 int count;
Stephen Boyd0a4807c2015-10-14 14:03:07 -07003837 struct clk *clk;
Grant Likely766e6a42012-04-09 14:50:06 -05003838
Grant Likely766e6a42012-04-09 14:50:06 -05003839 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
3840 &clkspec);
3841 if (rc)
3842 return NULL;
3843
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003844 index = clkspec.args_count ? clkspec.args[0] : 0;
3845 count = 0;
3846
3847 /* if there is an indices property, use it to transfer the index
3848 * specified into an array offset for the clock-output-names property.
3849 */
3850 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
3851 if (index == pv) {
3852 index = count;
3853 break;
3854 }
3855 count++;
3856 }
Masahiro Yamada8da411c2015-12-03 11:20:35 +09003857 /* We went off the end of 'clock-indices' without finding it */
3858 if (prop && !vp)
3859 return NULL;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003860
Grant Likely766e6a42012-04-09 14:50:06 -05003861 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00003862 index,
Stephen Boyd0a4807c2015-10-14 14:03:07 -07003863 &clk_name) < 0) {
3864 /*
3865 * Best effort to get the name if the clock has been
3866 * registered with the framework. If the clock isn't
3867 * registered, we return the node name as the name of
3868 * the clock as long as #clock-cells = 0.
3869 */
3870 clk = of_clk_get_from_provider(&clkspec);
3871 if (IS_ERR(clk)) {
3872 if (clkspec.args_count == 0)
3873 clk_name = clkspec.np->name;
3874 else
3875 clk_name = NULL;
3876 } else {
3877 clk_name = __clk_get_name(clk);
3878 clk_put(clk);
3879 }
3880 }
3881
Grant Likely766e6a42012-04-09 14:50:06 -05003882
3883 of_node_put(clkspec.np);
3884 return clk_name;
3885}
3886EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
3887
Dinh Nguyen2e61dfb2015-06-05 11:26:13 -05003888/**
3889 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
3890 * number of parents
3891 * @np: Device node pointer associated with clock provider
3892 * @parents: pointer to char array that hold the parents' names
3893 * @size: size of the @parents array
3894 *
3895 * Return: number of parents for the clock node.
3896 */
3897int of_clk_parent_fill(struct device_node *np, const char **parents,
3898 unsigned int size)
3899{
3900 unsigned int i = 0;
3901
3902 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
3903 i++;
3904
3905 return i;
3906}
3907EXPORT_SYMBOL_GPL(of_clk_parent_fill);
3908
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003909struct clock_provider {
3910 of_clk_init_cb_t clk_init_cb;
3911 struct device_node *np;
3912 struct list_head node;
3913};
3914
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003915/*
3916 * This function looks for a parent clock. If there is one, then it
3917 * checks that the provider for this parent clock was initialized, in
3918 * this case the parent clock will be ready.
3919 */
3920static int parent_ready(struct device_node *np)
3921{
3922 int i = 0;
3923
3924 while (true) {
3925 struct clk *clk = of_clk_get(np, i);
3926
3927 /* this parent is ready we can check the next one */
3928 if (!IS_ERR(clk)) {
3929 clk_put(clk);
3930 i++;
3931 continue;
3932 }
3933
3934 /* at least one parent is not ready, we exit now */
3935 if (PTR_ERR(clk) == -EPROBE_DEFER)
3936 return 0;
3937
3938 /*
3939 * Here we make assumption that the device tree is
3940 * written correctly. So an error means that there is
3941 * no more parent. As we didn't exit yet, then the
3942 * previous parent are ready. If there is no clock
3943 * parent, no need to wait for them, then we can
3944 * consider their absence as being ready
3945 */
3946 return 1;
3947 }
3948}
3949
Grant Likely766e6a42012-04-09 14:50:06 -05003950/**
Lee Jonesd56f8992016-02-11 13:19:11 -08003951 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
3952 * @np: Device node pointer associated with clock provider
3953 * @index: clock index
Geert Uytterhoevenf7ae7502018-01-03 12:06:14 +01003954 * @flags: pointer to top-level framework flags
Lee Jonesd56f8992016-02-11 13:19:11 -08003955 *
3956 * Detects if the clock-critical property exists and, if so, sets the
3957 * corresponding CLK_IS_CRITICAL flag.
3958 *
3959 * Do not use this function. It exists only for legacy Device Tree
3960 * bindings, such as the one-clock-per-node style that are outdated.
3961 * Those bindings typically put all clock data into .dts and the Linux
3962 * driver has no clock data, thus making it impossible to set this flag
3963 * correctly from the driver. Only those drivers may call
3964 * of_clk_detect_critical from their setup functions.
3965 *
3966 * Return: error code or zero on success
3967 */
3968int of_clk_detect_critical(struct device_node *np,
3969 int index, unsigned long *flags)
3970{
3971 struct property *prop;
3972 const __be32 *cur;
3973 uint32_t idx;
3974
3975 if (!np || !flags)
3976 return -EINVAL;
3977
3978 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
3979 if (index == idx)
3980 *flags |= CLK_IS_CRITICAL;
3981
3982 return 0;
3983}
3984
3985/**
Grant Likely766e6a42012-04-09 14:50:06 -05003986 * of_clk_init() - Scan and init clock providers from the DT
3987 * @matches: array of compatible values and init functions for providers.
3988 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003989 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb42014-03-27 12:08:36 +01003990 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003991 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05003992 */
3993void __init of_clk_init(const struct of_device_id *matches)
3994{
Alex Elder7f7ed582013-08-22 11:31:31 -05003995 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05003996 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01003997 struct clock_provider *clk_provider, *next;
3998 bool is_init_done;
3999 bool force = false;
Stephen Boyd2573a022015-07-06 16:50:00 -07004000 LIST_HEAD(clk_provider_list);
Grant Likely766e6a42012-04-09 14:50:06 -05004001
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304002 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03004003 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304004
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004005 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05004006 for_each_matching_node_and_match(np, matches, &match) {
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004007 struct clock_provider *parent;
4008
Geert Uytterhoeven3e5dd6f2016-02-26 16:54:31 +01004009 if (!of_device_is_available(np))
4010 continue;
4011
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004012 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
4013 if (!parent) {
4014 list_for_each_entry_safe(clk_provider, next,
4015 &clk_provider_list, node) {
4016 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004017 of_node_put(clk_provider->np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004018 kfree(clk_provider);
4019 }
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004020 of_node_put(np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004021 return;
4022 }
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004023
4024 parent->clk_init_cb = match->data;
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004025 parent->np = of_node_get(np);
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01004026 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004027 }
4028
4029 while (!list_empty(&clk_provider_list)) {
4030 is_init_done = false;
4031 list_for_each_entry_safe(clk_provider, next,
4032 &clk_provider_list, node) {
4033 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004034
Ricardo Ribalda Delgado989eafd2016-07-05 18:23:32 +02004035 /* Don't populate platform devices */
4036 of_node_set_flag(clk_provider->np,
4037 OF_POPULATED);
4038
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004039 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004040 of_clk_set_defaults(clk_provider->np, true);
4041
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004042 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004043 of_node_put(clk_provider->np);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004044 kfree(clk_provider);
4045 is_init_done = true;
4046 }
4047 }
4048
4049 /*
Sylwester Nawrockie5ca8fb42014-03-27 12:08:36 +01004050 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004051 * remaining providers during the last loop, so now we
4052 * initialize all the remaining ones unconditionally
4053 * in case the clock parent was not mandatory
4054 */
4055 if (!is_init_done)
4056 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05004057 }
4058}
4059#endif