blob: 3ddca6084e8e8597b99425f7d12a85685d51320a [file] [log] [blame]
Stephen Boydebafb632018-12-11 09:43:03 -08001// SPDX-License-Identifier: GPL-2.0
Mike Turquetteb24764902012-03-15 23:11:19 -07002/*
3 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
5 *
Mauro Carvalho Chehab5fb94e92018-05-08 15:14:57 -03006 * Standard functionality for the common clock API. See Documentation/driver-api/clk.rst
Mike Turquetteb24764902012-03-15 23:11:19 -07007 */
8
Stephen Boyd3c373112015-06-19 15:00:46 -07009#include <linux/clk.h>
Michael Turquetteb09d6d92015-01-29 14:22:50 -080010#include <linux/clk-provider.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020011#include <linux/clk/clk-conf.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070012#include <linux/module.h>
13#include <linux/mutex.h>
14#include <linux/spinlock.h>
15#include <linux/err.h>
16#include <linux/list.h>
17#include <linux/slab.h>
Grant Likely766e6a42012-04-09 14:50:06 -050018#include <linux/of.h>
Stephen Boyd46c87732012-09-24 13:38:04 -070019#include <linux/device.h>
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +053020#include <linux/init.h>
Marek Szyprowski9a34b452017-08-21 10:04:59 +020021#include <linux/pm_runtime.h>
Mike Turquette533ddeb2013-03-28 13:59:02 -070022#include <linux/sched.h>
Stephen Boyd562ef0b2015-05-01 12:16:14 -070023#include <linux/clkdev.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070024
Sylwester Nawrockid6782c22013-08-23 17:03:43 +020025#include "clk.h"
26
Mike Turquetteb24764902012-03-15 23:11:19 -070027static DEFINE_SPINLOCK(enable_lock);
28static DEFINE_MUTEX(prepare_lock);
29
Mike Turquette533ddeb2013-03-28 13:59:02 -070030static struct task_struct *prepare_owner;
31static struct task_struct *enable_owner;
32
33static int prepare_refcnt;
34static int enable_refcnt;
35
Mike Turquetteb24764902012-03-15 23:11:19 -070036static HLIST_HEAD(clk_root_list);
37static HLIST_HEAD(clk_orphan_list);
38static LIST_HEAD(clk_notifier_list);
39
Stephen Boydbdcf1dc2019-08-28 11:19:59 -070040static struct hlist_head *all_lists[] = {
41 &clk_root_list,
42 &clk_orphan_list,
43 NULL,
44};
45
Michael Turquetteb09d6d92015-01-29 14:22:50 -080046/*** private data structures ***/
47
Stephen Boydfc0c2092019-04-12 11:31:47 -070048struct clk_parent_map {
49 const struct clk_hw *hw;
50 struct clk_core *core;
51 const char *fw_name;
52 const char *name;
Stephen Boyd601b6e92019-04-12 11:31:49 -070053 int index;
Stephen Boydfc0c2092019-04-12 11:31:47 -070054};
55
Michael Turquetteb09d6d92015-01-29 14:22:50 -080056struct clk_core {
57 const char *name;
58 const struct clk_ops *ops;
59 struct clk_hw *hw;
60 struct module *owner;
Marek Szyprowski9a34b452017-08-21 10:04:59 +020061 struct device *dev;
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -070062 struct device_node *of_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080063 struct clk_core *parent;
Stephen Boydfc0c2092019-04-12 11:31:47 -070064 struct clk_parent_map *parents;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080065 u8 num_parents;
66 u8 new_parent_index;
67 unsigned long rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010068 unsigned long req_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080069 unsigned long new_rate;
70 struct clk_core *new_parent;
71 struct clk_core *new_child;
72 unsigned long flags;
Heiko Stuebnere6500342015-04-22 22:53:05 +020073 bool orphan;
Miquel Raynal24478832018-12-04 20:24:37 +010074 bool rpm_enabled;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080075 unsigned int enable_count;
76 unsigned int prepare_count;
Jerome Brunete55a8392017-12-01 22:51:56 +010077 unsigned int protect_count;
Stephen Boyd9783c0d2015-07-16 12:50:27 -070078 unsigned long min_rate;
79 unsigned long max_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080080 unsigned long accuracy;
81 int phase;
Jerome Brunet9fba7382018-06-19 16:41:41 +020082 struct clk_duty duty;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080083 struct hlist_head children;
84 struct hlist_node child_node;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010085 struct hlist_head clks;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080086 unsigned int notifier_count;
87#ifdef CONFIG_DEBUG_FS
88 struct dentry *dentry;
Maxime Coquelin8c9a8a82015-06-10 13:28:27 +020089 struct hlist_node debug_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080090#endif
91 struct kref ref;
92};
93
Stephen Boyddfc202e2015-02-02 14:37:41 -080094#define CREATE_TRACE_POINTS
95#include <trace/events/clk.h>
96
Michael Turquetteb09d6d92015-01-29 14:22:50 -080097struct clk {
98 struct clk_core *core;
Stephen Boydefa85042018-12-11 08:34:16 -080099 struct device *dev;
Michael Turquetteb09d6d92015-01-29 14:22:50 -0800100 const char *dev_id;
101 const char *con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100102 unsigned long min_rate;
103 unsigned long max_rate;
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100104 unsigned int exclusive_count;
Stephen Boyd50595f82015-02-06 11:42:44 -0800105 struct hlist_node clks_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -0800106};
107
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200108/*** runtime pm ***/
109static int clk_pm_runtime_get(struct clk_core *core)
110{
Miquel Raynal24478832018-12-04 20:24:37 +0100111 int ret;
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200112
Miquel Raynal24478832018-12-04 20:24:37 +0100113 if (!core->rpm_enabled)
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200114 return 0;
115
116 ret = pm_runtime_get_sync(core->dev);
117 return ret < 0 ? ret : 0;
118}
119
120static void clk_pm_runtime_put(struct clk_core *core)
121{
Miquel Raynal24478832018-12-04 20:24:37 +0100122 if (!core->rpm_enabled)
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200123 return;
124
125 pm_runtime_put_sync(core->dev);
126}
127
Mike Turquetteeab89f62013-03-28 13:59:01 -0700128/*** locking ***/
129static void clk_prepare_lock(void)
130{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700131 if (!mutex_trylock(&prepare_lock)) {
132 if (prepare_owner == current) {
133 prepare_refcnt++;
134 return;
135 }
136 mutex_lock(&prepare_lock);
137 }
138 WARN_ON_ONCE(prepare_owner != NULL);
139 WARN_ON_ONCE(prepare_refcnt != 0);
140 prepare_owner = current;
141 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700142}
143
144static void clk_prepare_unlock(void)
145{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700146 WARN_ON_ONCE(prepare_owner != current);
147 WARN_ON_ONCE(prepare_refcnt == 0);
148
149 if (--prepare_refcnt)
150 return;
151 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700152 mutex_unlock(&prepare_lock);
153}
154
155static unsigned long clk_enable_lock(void)
Stephen Boyda57aa182015-07-24 12:24:48 -0700156 __acquires(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700157{
158 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -0700159
David Lechnera12aa8a2018-01-04 19:46:08 -0600160 /*
161 * On UP systems, spin_trylock_irqsave() always returns true, even if
162 * we already hold the lock. So, in that case, we rely only on
163 * reference counting.
164 */
165 if (!IS_ENABLED(CONFIG_SMP) ||
166 !spin_trylock_irqsave(&enable_lock, flags)) {
Mike Turquette533ddeb2013-03-28 13:59:02 -0700167 if (enable_owner == current) {
168 enable_refcnt++;
Stephen Boyda57aa182015-07-24 12:24:48 -0700169 __acquire(enable_lock);
David Lechnera12aa8a2018-01-04 19:46:08 -0600170 if (!IS_ENABLED(CONFIG_SMP))
171 local_save_flags(flags);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700172 return flags;
173 }
174 spin_lock_irqsave(&enable_lock, flags);
175 }
176 WARN_ON_ONCE(enable_owner != NULL);
177 WARN_ON_ONCE(enable_refcnt != 0);
178 enable_owner = current;
179 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700180 return flags;
181}
182
183static void clk_enable_unlock(unsigned long flags)
Stephen Boyda57aa182015-07-24 12:24:48 -0700184 __releases(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700185{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700186 WARN_ON_ONCE(enable_owner != current);
187 WARN_ON_ONCE(enable_refcnt == 0);
188
Stephen Boyda57aa182015-07-24 12:24:48 -0700189 if (--enable_refcnt) {
190 __release(enable_lock);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700191 return;
Stephen Boyda57aa182015-07-24 12:24:48 -0700192 }
Mike Turquette533ddeb2013-03-28 13:59:02 -0700193 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700194 spin_unlock_irqrestore(&enable_lock, flags);
195}
196
Jerome Brunete55a8392017-12-01 22:51:56 +0100197static bool clk_core_rate_is_protected(struct clk_core *core)
198{
199 return core->protect_count;
200}
201
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700202static bool clk_core_is_prepared(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530203{
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200204 bool ret = false;
205
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700206 /*
207 * .is_prepared is optional for clocks that can prepare
208 * fall back to software usage counter if it is missing
209 */
210 if (!core->ops->is_prepared)
211 return core->prepare_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530212
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200213 if (!clk_pm_runtime_get(core)) {
214 ret = core->ops->is_prepared(core->hw);
215 clk_pm_runtime_put(core);
216 }
217
218 return ret;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530219}
220
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700221static bool clk_core_is_enabled(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530222{
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200223 bool ret = false;
224
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700225 /*
226 * .is_enabled is only mandatory for clocks that gate
227 * fall back to software usage counter if .is_enabled is missing
228 */
229 if (!core->ops->is_enabled)
230 return core->enable_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530231
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200232 /*
233 * Check if clock controller's device is runtime active before
234 * calling .is_enabled callback. If not, assume that clock is
235 * disabled, because we might be called from atomic context, from
236 * which pm_runtime_get() is not allowed.
237 * This function is called mainly from clk_disable_unused_subtree,
238 * which ensures proper runtime pm activation of controller before
239 * taking enable spinlock, but the below check is needed if one tries
240 * to call it from other places.
241 */
Miquel Raynal24478832018-12-04 20:24:37 +0100242 if (core->rpm_enabled) {
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200243 pm_runtime_get_noresume(core->dev);
244 if (!pm_runtime_active(core->dev)) {
245 ret = false;
246 goto done;
247 }
248 }
249
250 ret = core->ops->is_enabled(core->hw);
251done:
Miquel Raynal24478832018-12-04 20:24:37 +0100252 if (core->rpm_enabled)
Dong Aisheng756efe12017-12-22 17:46:04 +0800253 pm_runtime_put(core->dev);
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200254
255 return ret;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530256}
257
Mike Turquetteb24764902012-03-15 23:11:19 -0700258/*** helper functions ***/
259
Geert Uytterhoevenb76281c2015-10-16 14:35:21 +0200260const char *__clk_get_name(const struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700261{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100262 return !clk ? NULL : clk->core->name;
Mike Turquetteb24764902012-03-15 23:11:19 -0700263}
Niels de Vos48950842012-12-13 13:12:25 +0100264EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700265
Stephen Boyde7df6f62015-08-12 13:04:56 -0700266const char *clk_hw_get_name(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700267{
268 return hw->core->name;
269}
270EXPORT_SYMBOL_GPL(clk_hw_get_name);
271
Russ Dill65800b22012-11-26 11:20:09 -0800272struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700273{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100274 return !clk ? NULL : clk->core->hw;
Mike Turquetteb24764902012-03-15 23:11:19 -0700275}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800276EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700277
Stephen Boyde7df6f62015-08-12 13:04:56 -0700278unsigned int clk_hw_get_num_parents(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700279{
280 return hw->core->num_parents;
281}
282EXPORT_SYMBOL_GPL(clk_hw_get_num_parents);
283
Stephen Boyde7df6f62015-08-12 13:04:56 -0700284struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700285{
286 return hw->core->parent ? hw->core->parent->hw : NULL;
287}
288EXPORT_SYMBOL_GPL(clk_hw_get_parent);
289
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700290static struct clk_core *__clk_lookup_subtree(const char *name,
291 struct clk_core *core)
292{
293 struct clk_core *child;
294 struct clk_core *ret;
295
296 if (!strcmp(core->name, name))
297 return core;
298
299 hlist_for_each_entry(child, &core->children, child_node) {
300 ret = __clk_lookup_subtree(name, child);
301 if (ret)
302 return ret;
303 }
304
305 return NULL;
306}
307
308static struct clk_core *clk_core_lookup(const char *name)
309{
310 struct clk_core *root_clk;
311 struct clk_core *ret;
312
313 if (!name)
314 return NULL;
315
316 /* search the 'proper' clk tree first */
317 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
318 ret = __clk_lookup_subtree(name, root_clk);
319 if (ret)
320 return ret;
321 }
322
323 /* if not found, then search the orphan tree */
324 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
325 ret = __clk_lookup_subtree(name, root_clk);
326 if (ret)
327 return ret;
328 }
329
330 return NULL;
331}
332
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700333#ifdef CONFIG_OF
334static int of_parse_clkspec(const struct device_node *np, int index,
335 const char *name, struct of_phandle_args *out_args);
336static struct clk_hw *
337of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec);
338#else
339static inline int of_parse_clkspec(const struct device_node *np, int index,
340 const char *name,
341 struct of_phandle_args *out_args)
342{
343 return -ENOENT;
344}
345static inline struct clk_hw *
346of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
347{
348 return ERR_PTR(-ENOENT);
349}
350#endif
351
Stephen Boydfc0c2092019-04-12 11:31:47 -0700352/**
Stephen Boyddde4eff2019-04-12 11:31:48 -0700353 * clk_core_get - Find the clk_core parent of a clk
Stephen Boydfc0c2092019-04-12 11:31:47 -0700354 * @core: clk to find parent of
Stephen Boyd1a079562019-04-30 10:22:30 -0700355 * @p_index: parent index to search for
Stephen Boydfc0c2092019-04-12 11:31:47 -0700356 *
357 * This is the preferred method for clk providers to find the parent of a
358 * clk when that parent is external to the clk controller. The parent_names
359 * array is indexed and treated as a local name matching a string in the device
Stephen Boyddde4eff2019-04-12 11:31:48 -0700360 * node's 'clock-names' property or as the 'con_id' matching the device's
361 * dev_name() in a clk_lookup. This allows clk providers to use their own
Stephen Boydfc0c2092019-04-12 11:31:47 -0700362 * namespace instead of looking for a globally unique parent string.
363 *
364 * For example the following DT snippet would allow a clock registered by the
365 * clock-controller@c001 that has a clk_init_data::parent_data array
366 * with 'xtal' in the 'name' member to find the clock provided by the
367 * clock-controller@f00abcd without needing to get the globally unique name of
368 * the xtal clk.
369 *
370 * parent: clock-controller@f00abcd {
371 * reg = <0xf00abcd 0xabcd>;
372 * #clock-cells = <0>;
373 * };
374 *
375 * clock-controller@c001 {
376 * reg = <0xc001 0xf00d>;
377 * clocks = <&parent>;
378 * clock-names = "xtal";
379 * #clock-cells = <1>;
380 * };
381 *
382 * Returns: -ENOENT when the provider can't be found or the clk doesn't
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700383 * exist in the provider or the name can't be found in the DT node or
384 * in a clkdev lookup. NULL when the provider knows about the clk but it
385 * isn't provided on this system.
Stephen Boydfc0c2092019-04-12 11:31:47 -0700386 * A valid clk_core pointer when the clk can be found in the provider.
387 */
Stephen Boyd1a079562019-04-30 10:22:30 -0700388static struct clk_core *clk_core_get(struct clk_core *core, u8 p_index)
Stephen Boydfc0c2092019-04-12 11:31:47 -0700389{
Stephen Boyd1a079562019-04-30 10:22:30 -0700390 const char *name = core->parents[p_index].fw_name;
391 int index = core->parents[p_index].index;
Stephen Boyddde4eff2019-04-12 11:31:48 -0700392 struct clk_hw *hw = ERR_PTR(-ENOENT);
393 struct device *dev = core->dev;
394 const char *dev_id = dev ? dev_name(dev) : NULL;
Stephen Boydfc0c2092019-04-12 11:31:47 -0700395 struct device_node *np = core->of_node;
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700396 struct of_phandle_args clkspec;
Stephen Boydfc0c2092019-04-12 11:31:47 -0700397
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700398 if (np && (name || index >= 0) &&
399 !of_parse_clkspec(np, index, name, &clkspec)) {
400 hw = of_clk_get_hw_from_clkspec(&clkspec);
401 of_node_put(clkspec.np);
402 } else if (name) {
403 /*
404 * If the DT search above couldn't find the provider fallback to
405 * looking up via clkdev based clk_lookups.
406 */
Stephen Boyddde4eff2019-04-12 11:31:48 -0700407 hw = clk_find_hw(dev_id, name);
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700408 }
Stephen Boyddde4eff2019-04-12 11:31:48 -0700409
410 if (IS_ERR(hw))
Stephen Boydfc0c2092019-04-12 11:31:47 -0700411 return ERR_CAST(hw);
412
413 return hw->core;
414}
415
416static void clk_core_fill_parent_index(struct clk_core *core, u8 index)
417{
418 struct clk_parent_map *entry = &core->parents[index];
419 struct clk_core *parent = ERR_PTR(-ENOENT);
420
421 if (entry->hw) {
422 parent = entry->hw->core;
423 /*
424 * We have a direct reference but it isn't registered yet?
425 * Orphan it and let clk_reparent() update the orphan status
426 * when the parent is registered.
427 */
428 if (!parent)
429 parent = ERR_PTR(-EPROBE_DEFER);
430 } else {
Stephen Boyd1a079562019-04-30 10:22:30 -0700431 parent = clk_core_get(core, index);
Masahiro Yamada45586c72020-02-03 17:37:45 -0800432 if (PTR_ERR(parent) == -ENOENT && entry->name)
Stephen Boydfc0c2092019-04-12 11:31:47 -0700433 parent = clk_core_lookup(entry->name);
434 }
435
436 /* Only cache it if it's not an error */
437 if (!IS_ERR(parent))
438 entry->core = parent;
439}
440
Stephen Boydd6968fc2015-04-30 13:54:13 -0700441static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100442 u8 index)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100443{
Stephen Boydfc0c2092019-04-12 11:31:47 -0700444 if (!core || index >= core->num_parents || !core->parents)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100445 return NULL;
Masahiro Yamada88cfbef2015-12-28 19:23:01 +0900446
Stephen Boydfc0c2092019-04-12 11:31:47 -0700447 if (!core->parents[index].core)
448 clk_core_fill_parent_index(core, index);
Masahiro Yamada88cfbef2015-12-28 19:23:01 +0900449
Stephen Boydfc0c2092019-04-12 11:31:47 -0700450 return core->parents[index].core;
James Hogan7ef3dcc2013-07-29 12:24:58 +0100451}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100452
Stephen Boyde7df6f62015-08-12 13:04:56 -0700453struct clk_hw *
454clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700455{
456 struct clk_core *parent;
457
458 parent = clk_core_get_parent_by_index(hw->core, index);
459
460 return !parent ? NULL : parent->hw;
461}
462EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
463
Russ Dill65800b22012-11-26 11:20:09 -0800464unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700465{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100466 return !clk ? 0 : clk->core->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700467}
468
Stephen Boydd6968fc2015-04-30 13:54:13 -0700469static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700470{
Stephen Boyd73d4f942019-02-01 15:39:50 -0800471 if (!core)
472 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700473
Stephen Boyd73d4f942019-02-01 15:39:50 -0800474 if (!core->num_parents || core->parent)
475 return core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700476
Stephen Boyd73d4f942019-02-01 15:39:50 -0800477 /*
478 * Clk must have a parent because num_parents > 0 but the parent isn't
479 * known yet. Best to return 0 as the rate of this clk until we can
480 * properly recalc the rate based on the parent's rate.
481 */
482 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700483}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100484
Stephen Boyde7df6f62015-08-12 13:04:56 -0700485unsigned long clk_hw_get_rate(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700486{
487 return clk_core_get_rate_nolock(hw->core);
488}
489EXPORT_SYMBOL_GPL(clk_hw_get_rate);
490
Stephen Boydd6968fc2015-04-30 13:54:13 -0700491static unsigned long __clk_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100492{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700493 if (!core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100494 return 0;
495
Stephen Boydd6968fc2015-04-30 13:54:13 -0700496 return core->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100497}
498
Russ Dill65800b22012-11-26 11:20:09 -0800499unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700500{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100501 return !clk ? 0 : clk->core->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700502}
Thierry Redingb05c6832013-09-03 09:43:51 +0200503EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700504
Stephen Boyde7df6f62015-08-12 13:04:56 -0700505unsigned long clk_hw_get_flags(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700506{
507 return hw->core->flags;
508}
509EXPORT_SYMBOL_GPL(clk_hw_get_flags);
510
Stephen Boyde7df6f62015-08-12 13:04:56 -0700511bool clk_hw_is_prepared(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700512{
513 return clk_core_is_prepared(hw->core);
514}
Jerome Brunet12aa3772019-02-01 13:58:38 +0100515EXPORT_SYMBOL_GPL(clk_hw_is_prepared);
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700516
Jerome Brunete55a8392017-12-01 22:51:56 +0100517bool clk_hw_rate_is_protected(const struct clk_hw *hw)
518{
519 return clk_core_rate_is_protected(hw->core);
520}
Jerome Brunet12aa3772019-02-01 13:58:38 +0100521EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected);
Jerome Brunete55a8392017-12-01 22:51:56 +0100522
Joachim Eastwoodbe68bf82015-10-24 18:55:22 +0200523bool clk_hw_is_enabled(const struct clk_hw *hw)
524{
525 return clk_core_is_enabled(hw->core);
526}
Jerome Brunet12aa3772019-02-01 13:58:38 +0100527EXPORT_SYMBOL_GPL(clk_hw_is_enabled);
Joachim Eastwoodbe68bf82015-10-24 18:55:22 +0200528
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100529bool __clk_is_enabled(struct clk *clk)
530{
531 if (!clk)
532 return false;
533
534 return clk_core_is_enabled(clk->core);
535}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800536EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700537
Stephen Boyd15a02c12015-01-19 18:05:28 -0800538static bool mux_is_better_rate(unsigned long rate, unsigned long now,
539 unsigned long best, unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100540{
Stephen Boyd15a02c12015-01-19 18:05:28 -0800541 if (flags & CLK_MUX_ROUND_CLOSEST)
542 return abs(now - rate) < abs(best - rate);
543
544 return now <= rate && now > best;
545}
546
Jerome Brunet4ad69b802018-04-09 15:59:20 +0200547int clk_mux_determine_rate_flags(struct clk_hw *hw,
548 struct clk_rate_request *req,
549 unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100550{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100551 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
Boris Brezillon0817b622015-07-07 20:48:08 +0200552 int i, num_parents, ret;
553 unsigned long best = 0;
554 struct clk_rate_request parent_req = *req;
James Hogane366fdd2013-07-29 12:25:02 +0100555
556 /* if NO_REPARENT flag set, pass through to current parent */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100557 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
558 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200559 if (core->flags & CLK_SET_RATE_PARENT) {
560 ret = __clk_determine_rate(parent ? parent->hw : NULL,
561 &parent_req);
562 if (ret)
563 return ret;
564
565 best = parent_req.rate;
566 } else if (parent) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100567 best = clk_core_get_rate_nolock(parent);
Boris Brezillon0817b622015-07-07 20:48:08 +0200568 } else {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100569 best = clk_core_get_rate_nolock(core);
Boris Brezillon0817b622015-07-07 20:48:08 +0200570 }
571
James Hogane366fdd2013-07-29 12:25:02 +0100572 goto out;
573 }
574
575 /* find the parent that can provide the fastest rate <= rate */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100576 num_parents = core->num_parents;
James Hogane366fdd2013-07-29 12:25:02 +0100577 for (i = 0; i < num_parents; i++) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100578 parent = clk_core_get_parent_by_index(core, i);
James Hogane366fdd2013-07-29 12:25:02 +0100579 if (!parent)
580 continue;
Boris Brezillon0817b622015-07-07 20:48:08 +0200581
582 if (core->flags & CLK_SET_RATE_PARENT) {
583 parent_req = *req;
584 ret = __clk_determine_rate(parent->hw, &parent_req);
585 if (ret)
586 continue;
587 } else {
588 parent_req.rate = clk_core_get_rate_nolock(parent);
589 }
590
591 if (mux_is_better_rate(req->rate, parent_req.rate,
592 best, flags)) {
James Hogane366fdd2013-07-29 12:25:02 +0100593 best_parent = parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200594 best = parent_req.rate;
James Hogane366fdd2013-07-29 12:25:02 +0100595 }
596 }
597
Boris Brezillon57d866e2015-07-09 22:39:38 +0200598 if (!best_parent)
599 return -EINVAL;
600
James Hogane366fdd2013-07-29 12:25:02 +0100601out:
602 if (best_parent)
Boris Brezillon0817b622015-07-07 20:48:08 +0200603 req->best_parent_hw = best_parent->hw;
604 req->best_parent_rate = best;
605 req->rate = best;
James Hogane366fdd2013-07-29 12:25:02 +0100606
Boris Brezillon0817b622015-07-07 20:48:08 +0200607 return 0;
James Hogane366fdd2013-07-29 12:25:02 +0100608}
Jerome Brunet4ad69b802018-04-09 15:59:20 +0200609EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800610
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100611struct clk *__clk_lookup(const char *name)
612{
613 struct clk_core *core = clk_core_lookup(name);
614
615 return !core ? NULL : core->hw->clk;
616}
617
Stephen Boydd6968fc2015-04-30 13:54:13 -0700618static void clk_core_get_boundaries(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100619 unsigned long *min_rate,
620 unsigned long *max_rate)
621{
622 struct clk *clk_user;
623
Leonard Crestez9f776722019-07-02 16:27:10 +0300624 lockdep_assert_held(&prepare_lock);
625
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700626 *min_rate = core->min_rate;
627 *max_rate = core->max_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100628
Stephen Boydd6968fc2015-04-30 13:54:13 -0700629 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100630 *min_rate = max(*min_rate, clk_user->min_rate);
631
Stephen Boydd6968fc2015-04-30 13:54:13 -0700632 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100633 *max_rate = min(*max_rate, clk_user->max_rate);
634}
635
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700636void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
637 unsigned long max_rate)
638{
639 hw->core->min_rate = min_rate;
640 hw->core->max_rate = max_rate;
641}
642EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
643
Stephen Boyd15a02c12015-01-19 18:05:28 -0800644/*
Stephen Boyd777c1a42018-12-11 13:24:50 -0800645 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
646 * @hw: mux type clk to determine rate on
647 * @req: rate request, also used to return preferred parent and frequencies
648 *
Stephen Boyd15a02c12015-01-19 18:05:28 -0800649 * Helper for finding best parent to provide a given frequency. This can be used
650 * directly as a determine_rate callback (e.g. for a mux), or from a more
651 * complex clock that may combine a mux with other operations.
Stephen Boyd777c1a42018-12-11 13:24:50 -0800652 *
653 * Returns: 0 on success, -EERROR value on error
Stephen Boyd15a02c12015-01-19 18:05:28 -0800654 */
Boris Brezillon0817b622015-07-07 20:48:08 +0200655int __clk_mux_determine_rate(struct clk_hw *hw,
656 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800657{
Boris Brezillon0817b622015-07-07 20:48:08 +0200658 return clk_mux_determine_rate_flags(hw, req, 0);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800659}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800660EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100661
Boris Brezillon0817b622015-07-07 20:48:08 +0200662int __clk_mux_determine_rate_closest(struct clk_hw *hw,
663 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800664{
Boris Brezillon0817b622015-07-07 20:48:08 +0200665 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800666}
667EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
668
Mike Turquetteb24764902012-03-15 23:11:19 -0700669/*** clk api ***/
670
Jerome Brunete55a8392017-12-01 22:51:56 +0100671static void clk_core_rate_unprotect(struct clk_core *core)
672{
673 lockdep_assert_held(&prepare_lock);
674
675 if (!core)
676 return;
677
Fabio Estevamab525dc2018-01-16 10:50:34 -0200678 if (WARN(core->protect_count == 0,
679 "%s already unprotected\n", core->name))
Jerome Brunete55a8392017-12-01 22:51:56 +0100680 return;
681
682 if (--core->protect_count > 0)
683 return;
684
685 clk_core_rate_unprotect(core->parent);
686}
687
688static int clk_core_rate_nuke_protect(struct clk_core *core)
689{
690 int ret;
691
692 lockdep_assert_held(&prepare_lock);
693
694 if (!core)
695 return -EINVAL;
696
697 if (core->protect_count == 0)
698 return 0;
699
700 ret = core->protect_count;
701 core->protect_count = 1;
702 clk_core_rate_unprotect(core);
703
704 return ret;
705}
706
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100707/**
708 * clk_rate_exclusive_put - release exclusivity over clock rate control
709 * @clk: the clk over which the exclusivity is released
710 *
711 * clk_rate_exclusive_put() completes a critical section during which a clock
712 * consumer cannot tolerate any other consumer making any operation on the
713 * clock which could result in a rate change or rate glitch. Exclusive clocks
714 * cannot have their rate changed, either directly or indirectly due to changes
715 * further up the parent chain of clocks. As a result, clocks up parent chain
716 * also get under exclusive control of the calling consumer.
717 *
718 * If exlusivity is claimed more than once on clock, even by the same consumer,
719 * the rate effectively gets locked as exclusivity can't be preempted.
720 *
721 * Calls to clk_rate_exclusive_put() must be balanced with calls to
722 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
723 * error status.
724 */
725void clk_rate_exclusive_put(struct clk *clk)
726{
727 if (!clk)
728 return;
729
730 clk_prepare_lock();
731
732 /*
733 * if there is something wrong with this consumer protect count, stop
734 * here before messing with the provider
735 */
736 if (WARN_ON(clk->exclusive_count <= 0))
737 goto out;
738
739 clk_core_rate_unprotect(clk->core);
740 clk->exclusive_count--;
741out:
742 clk_prepare_unlock();
743}
744EXPORT_SYMBOL_GPL(clk_rate_exclusive_put);
745
Jerome Brunete55a8392017-12-01 22:51:56 +0100746static void clk_core_rate_protect(struct clk_core *core)
747{
748 lockdep_assert_held(&prepare_lock);
749
750 if (!core)
751 return;
752
753 if (core->protect_count == 0)
754 clk_core_rate_protect(core->parent);
755
756 core->protect_count++;
757}
758
759static void clk_core_rate_restore_protect(struct clk_core *core, int count)
760{
761 lockdep_assert_held(&prepare_lock);
762
763 if (!core)
764 return;
765
766 if (count == 0)
767 return;
768
769 clk_core_rate_protect(core);
770 core->protect_count = count;
771}
772
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100773/**
774 * clk_rate_exclusive_get - get exclusivity over the clk rate control
775 * @clk: the clk over which the exclusity of rate control is requested
776 *
777 * clk_rate_exlusive_get() begins a critical section during which a clock
778 * consumer cannot tolerate any other consumer making any operation on the
779 * clock which could result in a rate change or rate glitch. Exclusive clocks
780 * cannot have their rate changed, either directly or indirectly due to changes
781 * further up the parent chain of clocks. As a result, clocks up parent chain
782 * also get under exclusive control of the calling consumer.
783 *
784 * If exlusivity is claimed more than once on clock, even by the same consumer,
785 * the rate effectively gets locked as exclusivity can't be preempted.
786 *
787 * Calls to clk_rate_exclusive_get() should be balanced with calls to
788 * clk_rate_exclusive_put(). Calls to this function may sleep.
789 * Returns 0 on success, -EERROR otherwise
790 */
791int clk_rate_exclusive_get(struct clk *clk)
792{
793 if (!clk)
794 return 0;
795
796 clk_prepare_lock();
797 clk_core_rate_protect(clk->core);
798 clk->exclusive_count++;
799 clk_prepare_unlock();
800
801 return 0;
802}
803EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);
804
Stephen Boydd6968fc2015-04-30 13:54:13 -0700805static void clk_core_unprepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700806{
Stephen Boyda6334722015-05-06 17:00:54 -0700807 lockdep_assert_held(&prepare_lock);
808
Stephen Boydd6968fc2015-04-30 13:54:13 -0700809 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700810 return;
811
Fabio Estevamab525dc2018-01-16 10:50:34 -0200812 if (WARN(core->prepare_count == 0,
813 "%s already unprepared\n", core->name))
Mike Turquetteb24764902012-03-15 23:11:19 -0700814 return;
815
Fabio Estevamab525dc2018-01-16 10:50:34 -0200816 if (WARN(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL,
817 "Unpreparing critical %s\n", core->name))
Lee Jones2e20fbf2016-02-11 13:19:10 -0800818 return;
819
Jerome Brunet9461f7b2018-06-19 15:40:51 +0200820 if (core->flags & CLK_SET_RATE_GATE)
821 clk_core_rate_unprotect(core);
822
Stephen Boydd6968fc2015-04-30 13:54:13 -0700823 if (--core->prepare_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700824 return;
825
Fabio Estevamab525dc2018-01-16 10:50:34 -0200826 WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700827
Stephen Boydd6968fc2015-04-30 13:54:13 -0700828 trace_clk_unprepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800829
Stephen Boydd6968fc2015-04-30 13:54:13 -0700830 if (core->ops->unprepare)
831 core->ops->unprepare(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700832
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200833 clk_pm_runtime_put(core);
834
Stephen Boydd6968fc2015-04-30 13:54:13 -0700835 trace_clk_unprepare_complete(core);
836 clk_core_unprepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700837}
838
Dong Aishenga6adc302016-06-30 17:31:11 +0800839static void clk_core_unprepare_lock(struct clk_core *core)
840{
841 clk_prepare_lock();
842 clk_core_unprepare(core);
843 clk_prepare_unlock();
844}
845
Mike Turquetteb24764902012-03-15 23:11:19 -0700846/**
847 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200848 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700849 *
850 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
851 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
852 * if the operation may sleep. One example is a clk which is accessed over
853 * I2c. In the complex case a clk gate operation may require a fast and a slow
854 * part. It is this reason that clk_unprepare and clk_disable are not mutually
855 * exclusive. In fact clk_disable must be called before clk_unprepare.
856 */
857void clk_unprepare(struct clk *clk)
858{
Stephen Boyd63589e92014-03-26 16:06:37 -0700859 if (IS_ERR_OR_NULL(clk))
860 return;
861
Dong Aishenga6adc302016-06-30 17:31:11 +0800862 clk_core_unprepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700863}
864EXPORT_SYMBOL_GPL(clk_unprepare);
865
Stephen Boydd6968fc2015-04-30 13:54:13 -0700866static int clk_core_prepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700867{
868 int ret = 0;
869
Stephen Boyda6334722015-05-06 17:00:54 -0700870 lockdep_assert_held(&prepare_lock);
871
Stephen Boydd6968fc2015-04-30 13:54:13 -0700872 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700873 return 0;
874
Stephen Boydd6968fc2015-04-30 13:54:13 -0700875 if (core->prepare_count == 0) {
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200876 ret = clk_pm_runtime_get(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700877 if (ret)
878 return ret;
879
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200880 ret = clk_core_prepare(core->parent);
881 if (ret)
882 goto runtime_put;
883
Stephen Boydd6968fc2015-04-30 13:54:13 -0700884 trace_clk_prepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800885
Stephen Boydd6968fc2015-04-30 13:54:13 -0700886 if (core->ops->prepare)
887 ret = core->ops->prepare(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800888
Stephen Boydd6968fc2015-04-30 13:54:13 -0700889 trace_clk_prepare_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800890
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200891 if (ret)
892 goto unprepare;
Mike Turquetteb24764902012-03-15 23:11:19 -0700893 }
894
Stephen Boydd6968fc2015-04-30 13:54:13 -0700895 core->prepare_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700896
Jerome Brunet9461f7b2018-06-19 15:40:51 +0200897 /*
898 * CLK_SET_RATE_GATE is a special case of clock protection
899 * Instead of a consumer claiming exclusive rate control, it is
900 * actually the provider which prevents any consumer from making any
901 * operation which could result in a rate change or rate glitch while
902 * the clock is prepared.
903 */
904 if (core->flags & CLK_SET_RATE_GATE)
905 clk_core_rate_protect(core);
906
Mike Turquetteb24764902012-03-15 23:11:19 -0700907 return 0;
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200908unprepare:
909 clk_core_unprepare(core->parent);
910runtime_put:
911 clk_pm_runtime_put(core);
912 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700913}
914
Dong Aishenga6adc302016-06-30 17:31:11 +0800915static int clk_core_prepare_lock(struct clk_core *core)
916{
917 int ret;
918
919 clk_prepare_lock();
920 ret = clk_core_prepare(core);
921 clk_prepare_unlock();
922
923 return ret;
924}
925
Mike Turquetteb24764902012-03-15 23:11:19 -0700926/**
927 * clk_prepare - prepare a clock source
928 * @clk: the clk being prepared
929 *
930 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
931 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
932 * operation may sleep. One example is a clk which is accessed over I2c. In
933 * the complex case a clk ungate operation may require a fast and a slow part.
934 * It is this reason that clk_prepare and clk_enable are not mutually
935 * exclusive. In fact clk_prepare must be called before clk_enable.
936 * Returns 0 on success, -EERROR otherwise.
937 */
938int clk_prepare(struct clk *clk)
939{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100940 if (!clk)
941 return 0;
942
Dong Aishenga6adc302016-06-30 17:31:11 +0800943 return clk_core_prepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700944}
945EXPORT_SYMBOL_GPL(clk_prepare);
946
Stephen Boydd6968fc2015-04-30 13:54:13 -0700947static void clk_core_disable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700948{
Stephen Boyda6334722015-05-06 17:00:54 -0700949 lockdep_assert_held(&enable_lock);
950
Stephen Boydd6968fc2015-04-30 13:54:13 -0700951 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700952 return;
953
Fabio Estevamab525dc2018-01-16 10:50:34 -0200954 if (WARN(core->enable_count == 0, "%s already disabled\n", core->name))
Mike Turquetteb24764902012-03-15 23:11:19 -0700955 return;
956
Fabio Estevamab525dc2018-01-16 10:50:34 -0200957 if (WARN(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL,
958 "Disabling critical %s\n", core->name))
Lee Jones2e20fbf2016-02-11 13:19:10 -0800959 return;
960
Stephen Boydd6968fc2015-04-30 13:54:13 -0700961 if (--core->enable_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700962 return;
963
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700964 trace_clk_disable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800965
Stephen Boydd6968fc2015-04-30 13:54:13 -0700966 if (core->ops->disable)
967 core->ops->disable(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700968
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700969 trace_clk_disable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800970
Stephen Boydd6968fc2015-04-30 13:54:13 -0700971 clk_core_disable(core->parent);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100972}
973
Dong Aishenga6adc302016-06-30 17:31:11 +0800974static void clk_core_disable_lock(struct clk_core *core)
975{
976 unsigned long flags;
977
978 flags = clk_enable_lock();
979 clk_core_disable(core);
980 clk_enable_unlock(flags);
981}
982
Mike Turquetteb24764902012-03-15 23:11:19 -0700983/**
984 * clk_disable - gate a clock
985 * @clk: the clk being gated
986 *
987 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
988 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
989 * clk if the operation is fast and will never sleep. One example is a
990 * SoC-internal clk which is controlled via simple register writes. In the
991 * complex case a clk gate operation may require a fast and a slow part. It is
992 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
993 * In fact clk_disable must be called before clk_unprepare.
994 */
995void clk_disable(struct clk *clk)
996{
Stephen Boyd63589e92014-03-26 16:06:37 -0700997 if (IS_ERR_OR_NULL(clk))
998 return;
999
Dong Aishenga6adc302016-06-30 17:31:11 +08001000 clk_core_disable_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -07001001}
1002EXPORT_SYMBOL_GPL(clk_disable);
1003
Stephen Boydd6968fc2015-04-30 13:54:13 -07001004static int clk_core_enable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001005{
1006 int ret = 0;
1007
Stephen Boyda6334722015-05-06 17:00:54 -07001008 lockdep_assert_held(&enable_lock);
1009
Stephen Boydd6968fc2015-04-30 13:54:13 -07001010 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001011 return 0;
1012
Fabio Estevamab525dc2018-01-16 10:50:34 -02001013 if (WARN(core->prepare_count == 0,
1014 "Enabling unprepared %s\n", core->name))
Mike Turquetteb24764902012-03-15 23:11:19 -07001015 return -ESHUTDOWN;
1016
Stephen Boydd6968fc2015-04-30 13:54:13 -07001017 if (core->enable_count == 0) {
1018 ret = clk_core_enable(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -07001019
1020 if (ret)
1021 return ret;
1022
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -07001023 trace_clk_enable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001024
Stephen Boydd6968fc2015-04-30 13:54:13 -07001025 if (core->ops->enable)
1026 ret = core->ops->enable(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001027
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -07001028 trace_clk_enable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001029
1030 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001031 clk_core_disable(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001032 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001033 }
1034 }
1035
Stephen Boydd6968fc2015-04-30 13:54:13 -07001036 core->enable_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07001037 return 0;
1038}
1039
Dong Aishenga6adc302016-06-30 17:31:11 +08001040static int clk_core_enable_lock(struct clk_core *core)
1041{
1042 unsigned long flags;
1043 int ret;
1044
1045 flags = clk_enable_lock();
1046 ret = clk_core_enable(core);
1047 clk_enable_unlock(flags);
1048
1049 return ret;
1050}
1051
Keerthy43536542018-09-04 12:19:36 +05301052/**
1053 * clk_gate_restore_context - restore context for poweroff
1054 * @hw: the clk_hw pointer of clock whose state is to be restored
1055 *
1056 * The clock gate restore context function enables or disables
1057 * the gate clocks based on the enable_count. This is done in cases
1058 * where the clock context is lost and based on the enable_count
1059 * the clock either needs to be enabled/disabled. This
1060 * helps restore the state of gate clocks.
1061 */
1062void clk_gate_restore_context(struct clk_hw *hw)
1063{
Stephen Boyd9be76622018-10-11 09:28:13 -07001064 struct clk_core *core = hw->core;
1065
1066 if (core->enable_count)
1067 core->ops->enable(hw);
Keerthy43536542018-09-04 12:19:36 +05301068 else
Stephen Boyd9be76622018-10-11 09:28:13 -07001069 core->ops->disable(hw);
Keerthy43536542018-09-04 12:19:36 +05301070}
1071EXPORT_SYMBOL_GPL(clk_gate_restore_context);
1072
Stephen Boyd9be76622018-10-11 09:28:13 -07001073static int clk_core_save_context(struct clk_core *core)
Russ Dill8b95d1c2018-09-04 12:19:35 +05301074{
1075 struct clk_core *child;
1076 int ret = 0;
1077
Stephen Boyd9be76622018-10-11 09:28:13 -07001078 hlist_for_each_entry(child, &core->children, child_node) {
1079 ret = clk_core_save_context(child);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301080 if (ret < 0)
1081 return ret;
1082 }
1083
Stephen Boyd9be76622018-10-11 09:28:13 -07001084 if (core->ops && core->ops->save_context)
1085 ret = core->ops->save_context(core->hw);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301086
1087 return ret;
1088}
1089
Stephen Boyd9be76622018-10-11 09:28:13 -07001090static void clk_core_restore_context(struct clk_core *core)
Russ Dill8b95d1c2018-09-04 12:19:35 +05301091{
1092 struct clk_core *child;
1093
Stephen Boyd9be76622018-10-11 09:28:13 -07001094 if (core->ops && core->ops->restore_context)
1095 core->ops->restore_context(core->hw);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301096
Stephen Boyd9be76622018-10-11 09:28:13 -07001097 hlist_for_each_entry(child, &core->children, child_node)
1098 clk_core_restore_context(child);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301099}
1100
1101/**
1102 * clk_save_context - save clock context for poweroff
1103 *
1104 * Saves the context of the clock register for powerstates in which the
1105 * contents of the registers will be lost. Occurs deep within the suspend
1106 * code. Returns 0 on success.
1107 */
1108int clk_save_context(void)
1109{
1110 struct clk_core *clk;
1111 int ret;
1112
1113 hlist_for_each_entry(clk, &clk_root_list, child_node) {
Stephen Boyd9be76622018-10-11 09:28:13 -07001114 ret = clk_core_save_context(clk);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301115 if (ret < 0)
1116 return ret;
1117 }
1118
1119 hlist_for_each_entry(clk, &clk_orphan_list, child_node) {
Stephen Boyd9be76622018-10-11 09:28:13 -07001120 ret = clk_core_save_context(clk);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301121 if (ret < 0)
1122 return ret;
1123 }
1124
1125 return 0;
1126}
1127EXPORT_SYMBOL_GPL(clk_save_context);
1128
1129/**
1130 * clk_restore_context - restore clock context after poweroff
1131 *
1132 * Restore the saved clock context upon resume.
1133 *
1134 */
1135void clk_restore_context(void)
1136{
Stephen Boyd9be76622018-10-11 09:28:13 -07001137 struct clk_core *core;
Russ Dill8b95d1c2018-09-04 12:19:35 +05301138
Stephen Boyd9be76622018-10-11 09:28:13 -07001139 hlist_for_each_entry(core, &clk_root_list, child_node)
1140 clk_core_restore_context(core);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301141
Stephen Boyd9be76622018-10-11 09:28:13 -07001142 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1143 clk_core_restore_context(core);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301144}
1145EXPORT_SYMBOL_GPL(clk_restore_context);
1146
Mike Turquetteb24764902012-03-15 23:11:19 -07001147/**
1148 * clk_enable - ungate a clock
1149 * @clk: the clk being ungated
1150 *
1151 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1152 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1153 * if the operation will never sleep. One example is a SoC-internal clk which
1154 * is controlled via simple register writes. In the complex case a clk ungate
1155 * operation may require a fast and a slow part. It is this reason that
1156 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1157 * must be called before clk_enable. Returns 0 on success, -EERROR
1158 * otherwise.
1159 */
1160int clk_enable(struct clk *clk)
1161{
Dong Aisheng864e1602015-04-30 14:02:19 -07001162 if (!clk)
1163 return 0;
1164
Dong Aishenga6adc302016-06-30 17:31:11 +08001165 return clk_core_enable_lock(clk->core);
1166}
1167EXPORT_SYMBOL_GPL(clk_enable);
1168
1169static int clk_core_prepare_enable(struct clk_core *core)
1170{
1171 int ret;
1172
1173 ret = clk_core_prepare_lock(core);
1174 if (ret)
1175 return ret;
1176
1177 ret = clk_core_enable_lock(core);
1178 if (ret)
1179 clk_core_unprepare_lock(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07001180
1181 return ret;
1182}
Dong Aishenga6adc302016-06-30 17:31:11 +08001183
1184static void clk_core_disable_unprepare(struct clk_core *core)
1185{
1186 clk_core_disable_lock(core);
1187 clk_core_unprepare_lock(core);
1188}
Mike Turquetteb24764902012-03-15 23:11:19 -07001189
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001190static void __init clk_unprepare_unused_subtree(struct clk_core *core)
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001191{
1192 struct clk_core *child;
1193
1194 lockdep_assert_held(&prepare_lock);
1195
1196 hlist_for_each_entry(child, &core->children, child_node)
1197 clk_unprepare_unused_subtree(child);
1198
1199 if (core->prepare_count)
1200 return;
1201
1202 if (core->flags & CLK_IGNORE_UNUSED)
1203 return;
1204
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001205 if (clk_pm_runtime_get(core))
1206 return;
1207
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001208 if (clk_core_is_prepared(core)) {
1209 trace_clk_unprepare(core);
1210 if (core->ops->unprepare_unused)
1211 core->ops->unprepare_unused(core->hw);
1212 else if (core->ops->unprepare)
1213 core->ops->unprepare(core->hw);
1214 trace_clk_unprepare_complete(core);
1215 }
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001216
1217 clk_pm_runtime_put(core);
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001218}
1219
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001220static void __init clk_disable_unused_subtree(struct clk_core *core)
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001221{
1222 struct clk_core *child;
1223 unsigned long flags;
1224
1225 lockdep_assert_held(&prepare_lock);
1226
1227 hlist_for_each_entry(child, &core->children, child_node)
1228 clk_disable_unused_subtree(child);
1229
Dong Aishenga4b35182016-06-30 17:31:13 +08001230 if (core->flags & CLK_OPS_PARENT_ENABLE)
1231 clk_core_prepare_enable(core->parent);
1232
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001233 if (clk_pm_runtime_get(core))
1234 goto unprepare_out;
1235
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001236 flags = clk_enable_lock();
1237
1238 if (core->enable_count)
1239 goto unlock_out;
1240
1241 if (core->flags & CLK_IGNORE_UNUSED)
1242 goto unlock_out;
1243
1244 /*
1245 * some gate clocks have special needs during the disable-unused
1246 * sequence. call .disable_unused if available, otherwise fall
1247 * back to .disable
1248 */
1249 if (clk_core_is_enabled(core)) {
1250 trace_clk_disable(core);
1251 if (core->ops->disable_unused)
1252 core->ops->disable_unused(core->hw);
1253 else if (core->ops->disable)
1254 core->ops->disable(core->hw);
1255 trace_clk_disable_complete(core);
1256 }
1257
1258unlock_out:
1259 clk_enable_unlock(flags);
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001260 clk_pm_runtime_put(core);
1261unprepare_out:
Dong Aishenga4b35182016-06-30 17:31:13 +08001262 if (core->flags & CLK_OPS_PARENT_ENABLE)
1263 clk_core_disable_unprepare(core->parent);
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001264}
1265
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001266static bool clk_ignore_unused __initdata;
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001267static int __init clk_ignore_unused_setup(char *__unused)
1268{
1269 clk_ignore_unused = true;
1270 return 1;
1271}
1272__setup("clk_ignore_unused", clk_ignore_unused_setup);
1273
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001274static int __init clk_disable_unused(void)
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001275{
1276 struct clk_core *core;
1277
1278 if (clk_ignore_unused) {
1279 pr_warn("clk: Not disabling unused clocks\n");
1280 return 0;
1281 }
1282
1283 clk_prepare_lock();
1284
1285 hlist_for_each_entry(core, &clk_root_list, child_node)
1286 clk_disable_unused_subtree(core);
1287
1288 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1289 clk_disable_unused_subtree(core);
1290
1291 hlist_for_each_entry(core, &clk_root_list, child_node)
1292 clk_unprepare_unused_subtree(core);
1293
1294 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1295 clk_unprepare_unused_subtree(core);
1296
1297 clk_prepare_unlock();
1298
1299 return 0;
1300}
1301late_initcall_sync(clk_disable_unused);
1302
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001303static int clk_core_determine_round_nolock(struct clk_core *core,
1304 struct clk_rate_request *req)
Mike Turquetteb24764902012-03-15 23:11:19 -07001305{
Boris Brezillon0817b622015-07-07 20:48:08 +02001306 long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001307
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001308 lockdep_assert_held(&prepare_lock);
1309
Stephen Boydd6968fc2015-04-30 13:54:13 -07001310 if (!core)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -07001311 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001312
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001313 /*
1314 * At this point, core protection will be disabled if
1315 * - if the provider is not protected at all
1316 * - if the calling consumer is the only one which has exclusivity
1317 * over the provider
1318 */
Jerome Brunete55a8392017-12-01 22:51:56 +01001319 if (clk_core_rate_is_protected(core)) {
1320 req->rate = core->rate;
1321 } else if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001322 return core->ops->determine_rate(core->hw, req);
1323 } else if (core->ops->round_rate) {
1324 rate = core->ops->round_rate(core->hw, req->rate,
1325 &req->best_parent_rate);
1326 if (rate < 0)
1327 return rate;
1328
1329 req->rate = rate;
Boris Brezillon0817b622015-07-07 20:48:08 +02001330 } else {
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001331 return -EINVAL;
Boris Brezillon0817b622015-07-07 20:48:08 +02001332 }
1333
1334 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001335}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001336
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001337static void clk_core_init_rate_req(struct clk_core * const core,
1338 struct clk_rate_request *req)
1339{
1340 struct clk_core *parent;
1341
1342 if (WARN_ON(!core || !req))
1343 return;
1344
Mike Turquetteb24764902012-03-15 23:11:19 -07001345 parent = core->parent;
1346 if (parent) {
1347 req->best_parent_hw = parent->hw;
1348 req->best_parent_rate = parent->rate;
1349 } else {
1350 req->best_parent_hw = NULL;
1351 req->best_parent_rate = 0;
1352 }
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001353}
Mike Turquetteb24764902012-03-15 23:11:19 -07001354
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001355static bool clk_core_can_round(struct clk_core * const core)
1356{
Geert Uytterhoeveneef1f1b2019-06-17 14:02:48 +02001357 return core->ops->determine_rate || core->ops->round_rate;
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001358}
Mike Turquetteb24764902012-03-15 23:11:19 -07001359
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001360static int clk_core_round_rate_nolock(struct clk_core *core,
1361 struct clk_rate_request *req)
1362{
1363 lockdep_assert_held(&prepare_lock);
1364
Jerome Brunet04bf9ab2018-02-14 14:43:35 +01001365 if (!core) {
1366 req->rate = 0;
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001367 return 0;
Jerome Brunet04bf9ab2018-02-14 14:43:35 +01001368 }
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001369
1370 clk_core_init_rate_req(core, req);
1371
1372 if (clk_core_can_round(core))
1373 return clk_core_determine_round_nolock(core, req);
1374 else if (core->flags & CLK_SET_RATE_PARENT)
1375 return clk_core_round_rate_nolock(core->parent, req);
1376
1377 req->rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001378 return 0;
1379}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001380
1381/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001382 * __clk_determine_rate - get the closest rate actually supported by a clock
1383 * @hw: determine the rate of this clock
Peng Fan2d5b5202016-06-13 19:34:21 +08001384 * @req: target rate request
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001385 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001386 * Useful for clk_ops such as .set_rate and .determine_rate.
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001387 */
Boris Brezillon0817b622015-07-07 20:48:08 +02001388int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001389{
Boris Brezillon0817b622015-07-07 20:48:08 +02001390 if (!hw) {
1391 req->rate = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001392 return 0;
Boris Brezillon0817b622015-07-07 20:48:08 +02001393 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001394
Boris Brezillon0817b622015-07-07 20:48:08 +02001395 return clk_core_round_rate_nolock(hw->core, req);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001396}
1397EXPORT_SYMBOL_GPL(__clk_determine_rate);
1398
Stephen Boyd1a9c0692015-06-25 15:55:14 -07001399unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1400{
1401 int ret;
1402 struct clk_rate_request req;
1403
1404 clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate);
1405 req.rate = rate;
1406
1407 ret = clk_core_round_rate_nolock(hw->core, &req);
1408 if (ret)
1409 return 0;
1410
1411 return req.rate;
1412}
1413EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1414
Mike Turquetteb24764902012-03-15 23:11:19 -07001415/**
1416 * clk_round_rate - round the given rate for a clk
1417 * @clk: the clk for which we are rounding a rate
1418 * @rate: the rate which is to be rounded
1419 *
1420 * Takes in a rate as input and rounds it to a rate that the clk can actually
1421 * use which is then returned. If clk doesn't support round_rate operation
1422 * then the parent rate is returned.
1423 */
1424long clk_round_rate(struct clk *clk, unsigned long rate)
1425{
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001426 struct clk_rate_request req;
1427 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001428
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001429 if (!clk)
1430 return 0;
1431
Mike Turquetteeab89f62013-03-28 13:59:01 -07001432 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001433
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001434 if (clk->exclusive_count)
1435 clk_core_rate_unprotect(clk->core);
1436
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001437 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
1438 req.rate = rate;
1439
1440 ret = clk_core_round_rate_nolock(clk->core, &req);
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001441
1442 if (clk->exclusive_count)
1443 clk_core_rate_protect(clk->core);
1444
Mike Turquetteeab89f62013-03-28 13:59:01 -07001445 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001446
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001447 if (ret)
1448 return ret;
1449
1450 return req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001451}
1452EXPORT_SYMBOL_GPL(clk_round_rate);
1453
1454/**
1455 * __clk_notify - call clk notifier chain
Stephen Boydd6968fc2015-04-30 13:54:13 -07001456 * @core: clk that is changing rate
Mike Turquetteb24764902012-03-15 23:11:19 -07001457 * @msg: clk notifier type (see include/linux/clk.h)
1458 * @old_rate: old clk rate
1459 * @new_rate: new clk rate
1460 *
1461 * Triggers a notifier call chain on the clk rate-change notification
1462 * for 'clk'. Passes a pointer to the struct clk and the previous
1463 * and current rates to the notifier callback. Intended to be called by
1464 * internal clock code only. Returns NOTIFY_DONE from the last driver
1465 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1466 * a driver returns that.
1467 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001468static int __clk_notify(struct clk_core *core, unsigned long msg,
Mike Turquetteb24764902012-03-15 23:11:19 -07001469 unsigned long old_rate, unsigned long new_rate)
1470{
1471 struct clk_notifier *cn;
1472 struct clk_notifier_data cnd;
1473 int ret = NOTIFY_DONE;
1474
Mike Turquetteb24764902012-03-15 23:11:19 -07001475 cnd.old_rate = old_rate;
1476 cnd.new_rate = new_rate;
1477
1478 list_for_each_entry(cn, &clk_notifier_list, node) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001479 if (cn->clk->core == core) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001480 cnd.clk = cn->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001481 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1482 &cnd);
Peter De Schrijver17c34c52017-03-21 12:16:26 +02001483 if (ret & NOTIFY_STOP_MASK)
1484 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001485 }
1486 }
1487
1488 return ret;
1489}
1490
1491/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001492 * __clk_recalc_accuracies
Stephen Boydd6968fc2015-04-30 13:54:13 -07001493 * @core: first clk in the subtree
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001494 *
1495 * Walks the subtree of clks starting with clk and recalculates accuracies as
1496 * it goes. Note that if a clk does not implement the .recalc_accuracy
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001497 * callback then it is assumed that the clock will take on the accuracy of its
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001498 * parent.
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001499 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001500static void __clk_recalc_accuracies(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001501{
1502 unsigned long parent_accuracy = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001503 struct clk_core *child;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001504
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001505 lockdep_assert_held(&prepare_lock);
1506
Stephen Boydd6968fc2015-04-30 13:54:13 -07001507 if (core->parent)
1508 parent_accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001509
Stephen Boydd6968fc2015-04-30 13:54:13 -07001510 if (core->ops->recalc_accuracy)
1511 core->accuracy = core->ops->recalc_accuracy(core->hw,
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001512 parent_accuracy);
1513 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07001514 core->accuracy = parent_accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001515
Stephen Boydd6968fc2015-04-30 13:54:13 -07001516 hlist_for_each_entry(child, &core->children, child_node)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001517 __clk_recalc_accuracies(child);
1518}
1519
Stephen Boydd6968fc2015-04-30 13:54:13 -07001520static long clk_core_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001521{
1522 unsigned long accuracy;
1523
1524 clk_prepare_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001525 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1526 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001527
Stephen Boydd6968fc2015-04-30 13:54:13 -07001528 accuracy = __clk_get_accuracy(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001529 clk_prepare_unlock();
1530
1531 return accuracy;
1532}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001533
1534/**
1535 * clk_get_accuracy - return the accuracy of clk
1536 * @clk: the clk whose accuracy is being returned
1537 *
1538 * Simply returns the cached accuracy of the clk, unless
1539 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1540 * issued.
1541 * If clk is NULL then returns 0.
1542 */
1543long clk_get_accuracy(struct clk *clk)
1544{
1545 if (!clk)
1546 return 0;
1547
1548 return clk_core_get_accuracy(clk->core);
1549}
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001550EXPORT_SYMBOL_GPL(clk_get_accuracy);
1551
Stephen Boydd6968fc2015-04-30 13:54:13 -07001552static unsigned long clk_recalc(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001553 unsigned long parent_rate)
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001554{
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001555 unsigned long rate = parent_rate;
1556
1557 if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) {
1558 rate = core->ops->recalc_rate(core->hw, parent_rate);
1559 clk_pm_runtime_put(core);
1560 }
1561 return rate;
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001562}
1563
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001564/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001565 * __clk_recalc_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001566 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001567 * @msg: notification type (see include/linux/clk.h)
1568 *
1569 * Walks the subtree of clks starting with clk and recalculates rates as it
1570 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001571 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001572 *
1573 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1574 * if necessary.
Mike Turquetteb24764902012-03-15 23:11:19 -07001575 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001576static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
Mike Turquetteb24764902012-03-15 23:11:19 -07001577{
1578 unsigned long old_rate;
1579 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001580 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001581
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001582 lockdep_assert_held(&prepare_lock);
1583
Stephen Boydd6968fc2015-04-30 13:54:13 -07001584 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001585
Stephen Boydd6968fc2015-04-30 13:54:13 -07001586 if (core->parent)
1587 parent_rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001588
Stephen Boydd6968fc2015-04-30 13:54:13 -07001589 core->rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001590
1591 /*
1592 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1593 * & ABORT_RATE_CHANGE notifiers
1594 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001595 if (core->notifier_count && msg)
1596 __clk_notify(core, msg, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001597
Stephen Boydd6968fc2015-04-30 13:54:13 -07001598 hlist_for_each_entry(child, &core->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001599 __clk_recalc_rates(child, msg);
1600}
1601
Stephen Boydd6968fc2015-04-30 13:54:13 -07001602static unsigned long clk_core_get_rate(struct clk_core *core)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001603{
1604 unsigned long rate;
1605
1606 clk_prepare_lock();
1607
Stephen Boydd6968fc2015-04-30 13:54:13 -07001608 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1609 __clk_recalc_rates(core, 0);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001610
Stephen Boydd6968fc2015-04-30 13:54:13 -07001611 rate = clk_core_get_rate_nolock(core);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001612 clk_prepare_unlock();
1613
1614 return rate;
1615}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001616
Mike Turquetteb24764902012-03-15 23:11:19 -07001617/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001618 * clk_get_rate - return the rate of clk
1619 * @clk: the clk whose rate is being returned
1620 *
1621 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1622 * is set, which means a recalc_rate will be issued.
1623 * If clk is NULL then returns 0.
1624 */
1625unsigned long clk_get_rate(struct clk *clk)
1626{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001627 if (!clk)
1628 return 0;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001629
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001630 return clk_core_get_rate(clk->core);
Ulf Hanssona093bde2012-08-31 14:21:28 +02001631}
1632EXPORT_SYMBOL_GPL(clk_get_rate);
1633
Stephen Boydd6968fc2015-04-30 13:54:13 -07001634static int clk_fetch_parent_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001635 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001636{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001637 int i;
James Hogan4935b222013-07-29 12:24:59 +01001638
Masahiro Yamada508f8842015-12-28 19:23:08 +09001639 if (!parent)
1640 return -EINVAL;
1641
Derek Basehoreede77852018-12-20 16:31:00 -08001642 for (i = 0; i < core->num_parents; i++) {
Stephen Boyd1a079562019-04-30 10:22:30 -07001643 /* Found it first try! */
Stephen Boydfc0c2092019-04-12 11:31:47 -07001644 if (core->parents[i].core == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001645 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001646
Stephen Boyd1a079562019-04-30 10:22:30 -07001647 /* Something else is here, so keep looking */
Stephen Boydfc0c2092019-04-12 11:31:47 -07001648 if (core->parents[i].core)
Derek Basehoreede77852018-12-20 16:31:00 -08001649 continue;
1650
Stephen Boyd1a079562019-04-30 10:22:30 -07001651 /* Maybe core hasn't been cached but the hw is all we know? */
1652 if (core->parents[i].hw) {
1653 if (core->parents[i].hw == parent->hw)
1654 break;
1655
1656 /* Didn't match, but we're expecting a clk_hw */
1657 continue;
Derek Basehoreede77852018-12-20 16:31:00 -08001658 }
Stephen Boyd1a079562019-04-30 10:22:30 -07001659
1660 /* Maybe it hasn't been cached (clk_set_parent() path) */
1661 if (parent == clk_core_get(core, i))
1662 break;
1663
1664 /* Fallback to comparing globally unique names */
Martin Blumenstingl24876f02019-08-16 00:31:55 +02001665 if (core->parents[i].name &&
1666 !strcmp(parent->name, core->parents[i].name))
Stephen Boyd1a079562019-04-30 10:22:30 -07001667 break;
Derek Basehoreede77852018-12-20 16:31:00 -08001668 }
1669
Stephen Boyd1a079562019-04-30 10:22:30 -07001670 if (i == core->num_parents)
1671 return -EINVAL;
1672
1673 core->parents[i].core = parent;
1674 return i;
James Hogan4935b222013-07-29 12:24:59 +01001675}
1676
Sowjanya Komatinenid9b86cc2019-08-16 12:41:52 -07001677/**
1678 * clk_hw_get_parent_index - return the index of the parent clock
1679 * @hw: clk_hw associated with the clk being consumed
1680 *
1681 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
1682 * clock does not have a current parent.
1683 */
1684int clk_hw_get_parent_index(struct clk_hw *hw)
1685{
1686 struct clk_hw *parent = clk_hw_get_parent(hw);
1687
1688 if (WARN_ON(parent == NULL))
1689 return -EINVAL;
1690
1691 return clk_fetch_parent_index(hw->core, parent->core);
1692}
1693EXPORT_SYMBOL_GPL(clk_hw_get_parent_index);
1694
Heiko Stuebnere6500342015-04-22 22:53:05 +02001695/*
1696 * Update the orphan status of @core and all its children.
1697 */
1698static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1699{
1700 struct clk_core *child;
1701
1702 core->orphan = is_orphan;
1703
1704 hlist_for_each_entry(child, &core->children, child_node)
1705 clk_core_update_orphan_status(child, is_orphan);
1706}
1707
Stephen Boydd6968fc2015-04-30 13:54:13 -07001708static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
James Hogan4935b222013-07-29 12:24:59 +01001709{
Heiko Stuebnere6500342015-04-22 22:53:05 +02001710 bool was_orphan = core->orphan;
1711
Stephen Boydd6968fc2015-04-30 13:54:13 -07001712 hlist_del(&core->child_node);
James Hogan4935b222013-07-29 12:24:59 +01001713
James Hogan903efc52013-08-29 12:10:51 +01001714 if (new_parent) {
Heiko Stuebnere6500342015-04-22 22:53:05 +02001715 bool becomes_orphan = new_parent->orphan;
1716
James Hogan903efc52013-08-29 12:10:51 +01001717 /* avoid duplicate POST_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001718 if (new_parent->new_child == core)
James Hogan903efc52013-08-29 12:10:51 +01001719 new_parent->new_child = NULL;
1720
Stephen Boydd6968fc2015-04-30 13:54:13 -07001721 hlist_add_head(&core->child_node, &new_parent->children);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001722
1723 if (was_orphan != becomes_orphan)
1724 clk_core_update_orphan_status(core, becomes_orphan);
James Hogan903efc52013-08-29 12:10:51 +01001725 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001726 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001727 if (!was_orphan)
1728 clk_core_update_orphan_status(core, true);
James Hogan903efc52013-08-29 12:10:51 +01001729 }
James Hogan4935b222013-07-29 12:24:59 +01001730
Stephen Boydd6968fc2015-04-30 13:54:13 -07001731 core->parent = new_parent;
James Hogan4935b222013-07-29 12:24:59 +01001732}
1733
Stephen Boydd6968fc2015-04-30 13:54:13 -07001734static struct clk_core *__clk_set_parent_before(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001735 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001736{
1737 unsigned long flags;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001738 struct clk_core *old_parent = core->parent;
James Hogan4935b222013-07-29 12:24:59 +01001739
1740 /*
Dong Aishengfc8726a2016-06-30 17:31:14 +08001741 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1742 *
1743 * 2. Migrate prepare state between parents and prevent race with
James Hogan4935b222013-07-29 12:24:59 +01001744 * clk_enable().
1745 *
1746 * If the clock is not prepared, then a race with
1747 * clk_enable/disable() is impossible since we already have the
1748 * prepare lock (future calls to clk_enable() need to be preceded by
1749 * a clk_prepare()).
1750 *
1751 * If the clock is prepared, migrate the prepared state to the new
1752 * parent and also protect against a race with clk_enable() by
1753 * forcing the clock and the new parent on. This ensures that all
1754 * future calls to clk_enable() are practically NOPs with respect to
1755 * hardware and software states.
1756 *
1757 * See also: Comment for clk_set_parent() below.
1758 */
Dong Aishengfc8726a2016-06-30 17:31:14 +08001759
1760 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1761 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1762 clk_core_prepare_enable(old_parent);
1763 clk_core_prepare_enable(parent);
1764 }
1765
1766 /* migrate prepare count if > 0 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001767 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001768 clk_core_prepare_enable(parent);
1769 clk_core_enable_lock(core);
James Hogan4935b222013-07-29 12:24:59 +01001770 }
1771
1772 /* update the clk tree topology */
1773 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001774 clk_reparent(core, parent);
James Hogan4935b222013-07-29 12:24:59 +01001775 clk_enable_unlock(flags);
1776
Stephen Boyd3fa22522014-01-15 10:47:22 -08001777 return old_parent;
1778}
1779
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001780static void __clk_set_parent_after(struct clk_core *core,
1781 struct clk_core *parent,
1782 struct clk_core *old_parent)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001783{
1784 /*
1785 * Finish the migration of prepare state and undo the changes done
1786 * for preventing a race with clk_enable().
1787 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001788 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001789 clk_core_disable_lock(core);
1790 clk_core_disable_unprepare(old_parent);
1791 }
1792
1793 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1794 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1795 clk_core_disable_unprepare(parent);
1796 clk_core_disable_unprepare(old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001797 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001798}
1799
Stephen Boydd6968fc2015-04-30 13:54:13 -07001800static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001801 u8 p_index)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001802{
1803 unsigned long flags;
1804 int ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001805 struct clk_core *old_parent;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001806
Stephen Boydd6968fc2015-04-30 13:54:13 -07001807 old_parent = __clk_set_parent_before(core, parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001808
Stephen Boydd6968fc2015-04-30 13:54:13 -07001809 trace_clk_set_parent(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001810
James Hogan4935b222013-07-29 12:24:59 +01001811 /* change clock input source */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001812 if (parent && core->ops->set_parent)
1813 ret = core->ops->set_parent(core->hw, p_index);
James Hogan4935b222013-07-29 12:24:59 +01001814
Stephen Boydd6968fc2015-04-30 13:54:13 -07001815 trace_clk_set_parent_complete(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001816
James Hogan4935b222013-07-29 12:24:59 +01001817 if (ret) {
1818 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001819 clk_reparent(core, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001820 clk_enable_unlock(flags);
Dong Aishengc660b2eb2015-07-28 21:19:41 +08001821 __clk_set_parent_after(core, old_parent, parent);
James Hogan4935b222013-07-29 12:24:59 +01001822
James Hogan4935b222013-07-29 12:24:59 +01001823 return ret;
1824 }
1825
Stephen Boydd6968fc2015-04-30 13:54:13 -07001826 __clk_set_parent_after(core, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001827
James Hogan4935b222013-07-29 12:24:59 +01001828 return 0;
1829}
1830
Ulf Hanssona093bde2012-08-31 14:21:28 +02001831/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001832 * __clk_speculate_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001833 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001834 * @parent_rate: the "future" rate of clk's parent
1835 *
1836 * Walks the subtree of clks starting with clk, speculating rates as it
1837 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1838 *
1839 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1840 * pre-rate change notifications and returns early if no clks in the
1841 * subtree have subscribed to the notifications. Note that if a clk does not
1842 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001843 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001844 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001845static int __clk_speculate_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001846 unsigned long parent_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001847{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001848 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001849 unsigned long new_rate;
1850 int ret = NOTIFY_DONE;
1851
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001852 lockdep_assert_held(&prepare_lock);
1853
Stephen Boydd6968fc2015-04-30 13:54:13 -07001854 new_rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001855
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001856 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001857 if (core->notifier_count)
1858 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001859
Mike Turquette86bcfa22014-02-24 16:08:41 -08001860 if (ret & NOTIFY_STOP_MASK) {
1861 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001862 __func__, core->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001863 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001864 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001865
Stephen Boydd6968fc2015-04-30 13:54:13 -07001866 hlist_for_each_entry(child, &core->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001867 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001868 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001869 break;
1870 }
1871
1872out:
1873 return ret;
1874}
1875
Stephen Boydd6968fc2015-04-30 13:54:13 -07001876static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001877 struct clk_core *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001878{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001879 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001880
Stephen Boydd6968fc2015-04-30 13:54:13 -07001881 core->new_rate = new_rate;
1882 core->new_parent = new_parent;
1883 core->new_parent_index = p_index;
James Hogan71472c02013-07-29 12:25:00 +01001884 /* include clk in new parent's PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001885 core->new_child = NULL;
1886 if (new_parent && new_parent != core->parent)
1887 new_parent->new_child = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001888
Stephen Boydd6968fc2015-04-30 13:54:13 -07001889 hlist_for_each_entry(child, &core->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001890 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001891 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001892 }
1893}
1894
1895/*
1896 * calculate the new rates returning the topmost clock that has to be
1897 * changed.
1898 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001899static struct clk_core *clk_calc_new_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001900 unsigned long rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001901{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001902 struct clk_core *top = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001903 struct clk_core *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001904 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001905 unsigned long new_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001906 unsigned long min_rate;
1907 unsigned long max_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001908 int p_index = 0;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001909 long ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001910
Mike Turquette7452b212012-03-26 14:45:36 -07001911 /* sanity */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001912 if (IS_ERR_OR_NULL(core))
Mike Turquette7452b212012-03-26 14:45:36 -07001913 return NULL;
1914
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001915 /* save parent rate, if it exists */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001916 parent = old_parent = core->parent;
James Hogan71472c02013-07-29 12:25:00 +01001917 if (parent)
1918 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001919
Stephen Boydd6968fc2015-04-30 13:54:13 -07001920 clk_core_get_boundaries(core, &min_rate, &max_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001921
James Hogan71472c02013-07-29 12:25:00 +01001922 /* find the closest rate and parent clk/rate */
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001923 if (clk_core_can_round(core)) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001924 struct clk_rate_request req;
1925
1926 req.rate = rate;
1927 req.min_rate = min_rate;
1928 req.max_rate = max_rate;
Boris Brezillon0817b622015-07-07 20:48:08 +02001929
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001930 clk_core_init_rate_req(core, &req);
1931
1932 ret = clk_core_determine_round_nolock(core, &req);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001933 if (ret < 0)
1934 return NULL;
1935
Boris Brezillon0817b622015-07-07 20:48:08 +02001936 best_parent_rate = req.best_parent_rate;
1937 new_rate = req.rate;
1938 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001939
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001940 if (new_rate < min_rate || new_rate > max_rate)
1941 return NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001942 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
James Hogan71472c02013-07-29 12:25:00 +01001943 /* pass-through clock without adjustable parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001944 core->new_rate = core->rate;
James Hogan71472c02013-07-29 12:25:00 +01001945 return NULL;
1946 } else {
1947 /* pass-through clock with adjustable parent */
1948 top = clk_calc_new_rates(parent, rate);
1949 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001950 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001951 }
1952
James Hogan71472c02013-07-29 12:25:00 +01001953 /* some clocks must be gated to change parent */
1954 if (parent != old_parent &&
Stephen Boydd6968fc2015-04-30 13:54:13 -07001955 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
James Hogan71472c02013-07-29 12:25:00 +01001956 pr_debug("%s: %s not gated but wants to reparent\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001957 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001958 return NULL;
1959 }
1960
James Hogan71472c02013-07-29 12:25:00 +01001961 /* try finding the new parent index */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001962 if (parent && core->num_parents > 1) {
1963 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001964 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001965 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001966 __func__, parent->name, core->name);
James Hogan71472c02013-07-29 12:25:00 +01001967 return NULL;
1968 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001969 }
1970
Stephen Boydd6968fc2015-04-30 13:54:13 -07001971 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
James Hogan71472c02013-07-29 12:25:00 +01001972 best_parent_rate != parent->rate)
1973 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001974
1975out:
Stephen Boydd6968fc2015-04-30 13:54:13 -07001976 clk_calc_subtree(core, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001977
1978 return top;
1979}
1980
1981/*
1982 * Notify about rate changes in a subtree. Always walk down the whole tree
1983 * so that in case of an error we can walk down the whole tree again and
1984 * abort the change.
1985 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001986static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001987 unsigned long event)
Mike Turquetteb24764902012-03-15 23:11:19 -07001988{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001989 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001990 int ret = NOTIFY_DONE;
1991
Stephen Boydd6968fc2015-04-30 13:54:13 -07001992 if (core->rate == core->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301993 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001994
Stephen Boydd6968fc2015-04-30 13:54:13 -07001995 if (core->notifier_count) {
1996 ret = __clk_notify(core, event, core->rate, core->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001997 if (ret & NOTIFY_STOP_MASK)
Stephen Boydd6968fc2015-04-30 13:54:13 -07001998 fail_clk = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001999 }
2000
Stephen Boydd6968fc2015-04-30 13:54:13 -07002001 hlist_for_each_entry(child, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01002002 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002003 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01002004 continue;
2005 tmp_clk = clk_propagate_rate_change(child, event);
2006 if (tmp_clk)
2007 fail_clk = tmp_clk;
2008 }
2009
Stephen Boydd6968fc2015-04-30 13:54:13 -07002010 /* handle the new child who might not be in core->children yet */
2011 if (core->new_child) {
2012 tmp_clk = clk_propagate_rate_change(core->new_child, event);
James Hogan71472c02013-07-29 12:25:00 +01002013 if (tmp_clk)
2014 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07002015 }
2016
2017 return fail_clk;
2018}
2019
2020/*
2021 * walk down a subtree and set the new rates notifying the rate
2022 * change on the way
2023 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002024static void clk_change_rate(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002025{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002026 struct clk_core *child;
Tero Kristo067bb172014-08-21 16:47:45 +03002027 struct hlist_node *tmp;
Mike Turquetteb24764902012-03-15 23:11:19 -07002028 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01002029 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08002030 bool skip_set_rate = false;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002031 struct clk_core *old_parent;
Dong Aishengfc8726a2016-06-30 17:31:14 +08002032 struct clk_core *parent = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07002033
Stephen Boydd6968fc2015-04-30 13:54:13 -07002034 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002035
Dong Aishengfc8726a2016-06-30 17:31:14 +08002036 if (core->new_parent) {
2037 parent = core->new_parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002038 best_parent_rate = core->new_parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08002039 } else if (core->parent) {
2040 parent = core->parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002041 best_parent_rate = core->parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08002042 }
Pawel Mollbf47b4f2012-06-08 14:04:06 +01002043
Marek Szyprowski588fb542017-11-30 13:14:51 +01002044 if (clk_pm_runtime_get(core))
2045 return;
2046
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01002047 if (core->flags & CLK_SET_RATE_UNGATE) {
2048 unsigned long flags;
2049
2050 clk_core_prepare(core);
2051 flags = clk_enable_lock();
2052 clk_core_enable(core);
2053 clk_enable_unlock(flags);
2054 }
2055
Stephen Boydd6968fc2015-04-30 13:54:13 -07002056 if (core->new_parent && core->new_parent != core->parent) {
2057 old_parent = __clk_set_parent_before(core, core->new_parent);
2058 trace_clk_set_parent(core, core->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002059
Stephen Boydd6968fc2015-04-30 13:54:13 -07002060 if (core->ops->set_rate_and_parent) {
Stephen Boyd3fa22522014-01-15 10:47:22 -08002061 skip_set_rate = true;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002062 core->ops->set_rate_and_parent(core->hw, core->new_rate,
Stephen Boyd3fa22522014-01-15 10:47:22 -08002063 best_parent_rate,
Stephen Boydd6968fc2015-04-30 13:54:13 -07002064 core->new_parent_index);
2065 } else if (core->ops->set_parent) {
2066 core->ops->set_parent(core->hw, core->new_parent_index);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002067 }
2068
Stephen Boydd6968fc2015-04-30 13:54:13 -07002069 trace_clk_set_parent_complete(core, core->new_parent);
2070 __clk_set_parent_after(core, core->new_parent, old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002071 }
2072
Dong Aishengfc8726a2016-06-30 17:31:14 +08002073 if (core->flags & CLK_OPS_PARENT_ENABLE)
2074 clk_core_prepare_enable(parent);
2075
Stephen Boydd6968fc2015-04-30 13:54:13 -07002076 trace_clk_set_rate(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002077
Stephen Boydd6968fc2015-04-30 13:54:13 -07002078 if (!skip_set_rate && core->ops->set_rate)
2079 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002080
Stephen Boydd6968fc2015-04-30 13:54:13 -07002081 trace_clk_set_rate_complete(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002082
Stephen Boydd6968fc2015-04-30 13:54:13 -07002083 core->rate = clk_recalc(core, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002084
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01002085 if (core->flags & CLK_SET_RATE_UNGATE) {
2086 unsigned long flags;
2087
2088 flags = clk_enable_lock();
2089 clk_core_disable(core);
2090 clk_enable_unlock(flags);
2091 clk_core_unprepare(core);
2092 }
2093
Dong Aishengfc8726a2016-06-30 17:31:14 +08002094 if (core->flags & CLK_OPS_PARENT_ENABLE)
2095 clk_core_disable_unprepare(parent);
2096
Stephen Boydd6968fc2015-04-30 13:54:13 -07002097 if (core->notifier_count && old_rate != core->rate)
2098 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002099
Michael Turquette85e88fa2015-06-20 12:18:03 -07002100 if (core->flags & CLK_RECALC_NEW_RATES)
2101 (void)clk_calc_new_rates(core, core->new_rate);
Bartlomiej Zolnierkiewiczd8d91982015-04-03 18:43:44 +02002102
Tero Kristo067bb172014-08-21 16:47:45 +03002103 /*
2104 * Use safe iteration, as change_rate can actually swap parents
2105 * for certain clock types.
2106 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002107 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01002108 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002109 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01002110 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07002111 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01002112 }
2113
Stephen Boydd6968fc2015-04-30 13:54:13 -07002114 /* handle the new child who might not be in core->children yet */
2115 if (core->new_child)
2116 clk_change_rate(core->new_child);
Marek Szyprowski588fb542017-11-30 13:14:51 +01002117
2118 clk_pm_runtime_put(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002119}
2120
Jerome Brunetca5e0892017-12-01 22:51:55 +01002121static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core,
2122 unsigned long req_rate)
2123{
Jerome Brunete55a8392017-12-01 22:51:56 +01002124 int ret, cnt;
Jerome Brunetca5e0892017-12-01 22:51:55 +01002125 struct clk_rate_request req;
2126
2127 lockdep_assert_held(&prepare_lock);
2128
2129 if (!core)
2130 return 0;
2131
Jerome Brunete55a8392017-12-01 22:51:56 +01002132 /* simulate what the rate would be if it could be freely set */
2133 cnt = clk_core_rate_nuke_protect(core);
2134 if (cnt < 0)
2135 return cnt;
2136
Jerome Brunetca5e0892017-12-01 22:51:55 +01002137 clk_core_get_boundaries(core, &req.min_rate, &req.max_rate);
2138 req.rate = req_rate;
2139
2140 ret = clk_core_round_rate_nolock(core, &req);
2141
Jerome Brunete55a8392017-12-01 22:51:56 +01002142 /* restore the protection */
2143 clk_core_rate_restore_protect(core, cnt);
2144
Jerome Brunetca5e0892017-12-01 22:51:55 +01002145 return ret ? 0 : req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002146}
2147
Stephen Boydd6968fc2015-04-30 13:54:13 -07002148static int clk_core_set_rate_nolock(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002149 unsigned long req_rate)
2150{
2151 struct clk_core *top, *fail_clk;
Jerome Brunetca5e0892017-12-01 22:51:55 +01002152 unsigned long rate;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002153 int ret = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002154
Stephen Boydd6968fc2015-04-30 13:54:13 -07002155 if (!core)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002156 return 0;
2157
Jerome Brunetca5e0892017-12-01 22:51:55 +01002158 rate = clk_core_req_round_rate_nolock(core, req_rate);
2159
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002160 /* bail early if nothing to do */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002161 if (rate == clk_core_get_rate_nolock(core))
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002162 return 0;
2163
Jerome Brunete55a8392017-12-01 22:51:56 +01002164 /* fail on a direct rate set of a protected provider */
2165 if (clk_core_rate_is_protected(core))
2166 return -EBUSY;
2167
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002168 /* calculate new rates and get the topmost changed clock */
Jerome Brunetca5e0892017-12-01 22:51:55 +01002169 top = clk_calc_new_rates(core, req_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002170 if (!top)
2171 return -EINVAL;
2172
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002173 ret = clk_pm_runtime_get(core);
2174 if (ret)
2175 return ret;
2176
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002177 /* notify that we are about to change rates */
2178 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
2179 if (fail_clk) {
2180 pr_debug("%s: failed to set %s rate\n", __func__,
2181 fail_clk->name);
2182 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002183 ret = -EBUSY;
2184 goto err;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002185 }
2186
2187 /* change the rates */
2188 clk_change_rate(top);
2189
Stephen Boydd6968fc2015-04-30 13:54:13 -07002190 core->req_rate = req_rate;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002191err:
2192 clk_pm_runtime_put(core);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002193
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002194 return ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002195}
2196
Mike Turquetteb24764902012-03-15 23:11:19 -07002197/**
2198 * clk_set_rate - specify a new rate for clk
2199 * @clk: the clk whose rate is being changed
2200 * @rate: the new rate for clk
2201 *
Mike Turquette5654dc92012-03-26 11:51:34 -07002202 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07002203 *
Mike Turquette5654dc92012-03-26 11:51:34 -07002204 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2205 * propagate up to clk's parent; whether or not this happens depends on the
2206 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2207 * after calling .round_rate then upstream parent propagation is ignored. If
2208 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02002209 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07002210 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2211 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07002212 *
Mike Turquette5654dc92012-03-26 11:51:34 -07002213 * Rate changes are accomplished via tree traversal that also recalculates the
2214 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07002215 *
2216 * Returns 0 on success, -EERROR otherwise.
2217 */
2218int clk_set_rate(struct clk *clk, unsigned long rate)
2219{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002220 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07002221
Mike Turquette89ac8d72013-08-21 23:58:09 -07002222 if (!clk)
2223 return 0;
2224
Mike Turquetteb24764902012-03-15 23:11:19 -07002225 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07002226 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002227
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002228 if (clk->exclusive_count)
2229 clk_core_rate_unprotect(clk->core);
2230
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002231 ret = clk_core_set_rate_nolock(clk->core, rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002232
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002233 if (clk->exclusive_count)
2234 clk_core_rate_protect(clk->core);
2235
Mike Turquetteeab89f62013-03-28 13:59:01 -07002236 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002237
2238 return ret;
2239}
2240EXPORT_SYMBOL_GPL(clk_set_rate);
2241
2242/**
Geert Uytterhoeven65e22182019-06-17 15:56:02 +02002243 * clk_set_rate_exclusive - specify a new rate and get exclusive control
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002244 * @clk: the clk whose rate is being changed
2245 * @rate: the new rate for clk
2246 *
2247 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2248 * within a critical section
2249 *
2250 * This can be used initially to ensure that at least 1 consumer is
Geert Uytterhoeven65e22182019-06-17 15:56:02 +02002251 * satisfied when several consumers are competing for exclusivity over the
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002252 * same clock provider.
2253 *
2254 * The exclusivity is not applied if setting the rate failed.
2255 *
2256 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2257 * clk_rate_exclusive_put().
2258 *
2259 * Returns 0 on success, -EERROR otherwise.
2260 */
2261int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
2262{
2263 int ret;
2264
2265 if (!clk)
2266 return 0;
2267
2268 /* prevent racing with updates to the clock topology */
2269 clk_prepare_lock();
2270
2271 /*
2272 * The temporary protection removal is not here, on purpose
2273 * This function is meant to be used instead of clk_rate_protect,
2274 * so before the consumer code path protect the clock provider
2275 */
2276
2277 ret = clk_core_set_rate_nolock(clk->core, rate);
2278 if (!ret) {
2279 clk_core_rate_protect(clk->core);
2280 clk->exclusive_count++;
2281 }
2282
2283 clk_prepare_unlock();
2284
2285 return ret;
2286}
2287EXPORT_SYMBOL_GPL(clk_set_rate_exclusive);
2288
2289/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002290 * clk_set_rate_range - set a rate range for a clock source
2291 * @clk: clock source
2292 * @min: desired minimum clock rate in Hz, inclusive
2293 * @max: desired maximum clock rate in Hz, inclusive
2294 *
2295 * Returns success (0) or negative errno.
2296 */
2297int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
2298{
2299 int ret = 0;
Jerome Brunet6562fbc2017-12-01 22:52:00 +01002300 unsigned long old_min, old_max, rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002301
2302 if (!clk)
2303 return 0;
2304
2305 if (min > max) {
2306 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2307 __func__, clk->core->name, clk->dev_id, clk->con_id,
2308 min, max);
2309 return -EINVAL;
2310 }
2311
2312 clk_prepare_lock();
2313
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002314 if (clk->exclusive_count)
2315 clk_core_rate_unprotect(clk->core);
2316
Jerome Brunet6562fbc2017-12-01 22:52:00 +01002317 /* Save the current values in case we need to rollback the change */
2318 old_min = clk->min_rate;
2319 old_max = clk->max_rate;
2320 clk->min_rate = min;
2321 clk->max_rate = max;
2322
2323 rate = clk_core_get_rate_nolock(clk->core);
2324 if (rate < min || rate > max) {
2325 /*
2326 * FIXME:
2327 * We are in bit of trouble here, current rate is outside the
2328 * the requested range. We are going try to request appropriate
2329 * range boundary but there is a catch. It may fail for the
2330 * usual reason (clock broken, clock protected, etc) but also
2331 * because:
2332 * - round_rate() was not favorable and fell on the wrong
2333 * side of the boundary
2334 * - the determine_rate() callback does not really check for
2335 * this corner case when determining the rate
2336 */
2337
2338 if (rate < min)
2339 rate = min;
2340 else
2341 rate = max;
2342
2343 ret = clk_core_set_rate_nolock(clk->core, rate);
2344 if (ret) {
2345 /* rollback the changes */
2346 clk->min_rate = old_min;
2347 clk->max_rate = old_max;
2348 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002349 }
2350
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002351 if (clk->exclusive_count)
2352 clk_core_rate_protect(clk->core);
2353
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002354 clk_prepare_unlock();
2355
2356 return ret;
2357}
2358EXPORT_SYMBOL_GPL(clk_set_rate_range);
2359
2360/**
2361 * clk_set_min_rate - set a minimum clock rate for a clock source
2362 * @clk: clock source
2363 * @rate: desired minimum clock rate in Hz, inclusive
2364 *
2365 * Returns success (0) or negative errno.
2366 */
2367int clk_set_min_rate(struct clk *clk, unsigned long rate)
2368{
2369 if (!clk)
2370 return 0;
2371
2372 return clk_set_rate_range(clk, rate, clk->max_rate);
2373}
2374EXPORT_SYMBOL_GPL(clk_set_min_rate);
2375
2376/**
2377 * clk_set_max_rate - set a maximum clock rate for a clock source
2378 * @clk: clock source
2379 * @rate: desired maximum clock rate in Hz, inclusive
2380 *
2381 * Returns success (0) or negative errno.
2382 */
2383int clk_set_max_rate(struct clk *clk, unsigned long rate)
2384{
2385 if (!clk)
2386 return 0;
2387
2388 return clk_set_rate_range(clk, clk->min_rate, rate);
2389}
2390EXPORT_SYMBOL_GPL(clk_set_max_rate);
2391
2392/**
Mike Turquetteb24764902012-03-15 23:11:19 -07002393 * clk_get_parent - return the parent of a clk
2394 * @clk: the clk whose parent gets returned
2395 *
2396 * Simply returns clk->parent. Returns NULL if clk is NULL.
2397 */
2398struct clk *clk_get_parent(struct clk *clk)
2399{
2400 struct clk *parent;
2401
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002402 if (!clk)
2403 return NULL;
2404
Mike Turquetteeab89f62013-03-28 13:59:01 -07002405 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002406 /* TODO: Create a per-user clk and change callers to call clk_put */
2407 parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk;
Mike Turquetteeab89f62013-03-28 13:59:01 -07002408 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002409
2410 return parent;
2411}
2412EXPORT_SYMBOL_GPL(clk_get_parent);
2413
Stephen Boydd6968fc2015-04-30 13:54:13 -07002414static struct clk_core *__clk_init_parent(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002415{
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002416 u8 index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002417
Masahiro Yamada2430a942016-02-09 20:19:14 +09002418 if (core->num_parents > 1 && core->ops->get_parent)
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002419 index = core->ops->get_parent(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07002420
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002421 return clk_core_get_parent_by_index(core, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002422}
2423
Stephen Boydd6968fc2015-04-30 13:54:13 -07002424static void clk_core_reparent(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002425 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +02002426{
Stephen Boydd6968fc2015-04-30 13:54:13 -07002427 clk_reparent(core, new_parent);
2428 __clk_recalc_accuracies(core);
2429 __clk_recalc_rates(core, POST_RATE_CHANGE);
Mike Turquetteb24764902012-03-15 23:11:19 -07002430}
2431
Tomeu Vizoso42c86542015-03-11 11:34:25 +01002432void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
2433{
2434 if (!hw)
2435 return;
2436
2437 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
2438}
2439
Mike Turquetteb24764902012-03-15 23:11:19 -07002440/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002441 * clk_has_parent - check if a clock is a possible parent for another
2442 * @clk: clock source
2443 * @parent: parent clock source
Mike Turquetteb24764902012-03-15 23:11:19 -07002444 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002445 * This function can be used in drivers that need to check that a clock can be
2446 * the parent of another without actually changing the parent.
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07002447 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002448 * Returns true if @parent is a possible parent for @clk, false otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07002449 */
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002450bool clk_has_parent(struct clk *clk, struct clk *parent)
2451{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002452 struct clk_core *core, *parent_core;
Stephen Boydfc0c2092019-04-12 11:31:47 -07002453 int i;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002454
2455 /* NULL clocks should be nops, so return success if either is NULL. */
2456 if (!clk || !parent)
2457 return true;
2458
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002459 core = clk->core;
2460 parent_core = parent->core;
2461
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002462 /* Optimize for the case where the parent is already the parent. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002463 if (core->parent == parent_core)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002464 return true;
2465
Stephen Boydfc0c2092019-04-12 11:31:47 -07002466 for (i = 0; i < core->num_parents; i++)
2467 if (!strcmp(core->parents[i].name, parent_core->name))
2468 return true;
2469
2470 return false;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002471}
2472EXPORT_SYMBOL_GPL(clk_has_parent);
2473
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002474static int clk_core_set_parent_nolock(struct clk_core *core,
2475 struct clk_core *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07002476{
2477 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002478 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002479 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002480
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002481 lockdep_assert_held(&prepare_lock);
2482
Stephen Boydd6968fc2015-04-30 13:54:13 -07002483 if (!core)
Mike Turquette89ac8d72013-08-21 23:58:09 -07002484 return 0;
2485
Stephen Boydd6968fc2015-04-30 13:54:13 -07002486 if (core->parent == parent)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002487 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002488
Rishi Guptaef13e552019-08-17 12:05:59 +05302489 /* verify ops for multi-parent clks */
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002490 if (core->num_parents > 1 && !core->ops->set_parent)
2491 return -EPERM;
Stephen Boydb61c43c2015-02-02 14:11:25 -08002492
Ulf Hansson031dcc92013-04-02 23:09:38 +02002493 /* check that we are allowed to re-parent if the clock is in use */
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002494 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count)
2495 return -EBUSY;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002496
Jerome Brunete55a8392017-12-01 22:51:56 +01002497 if (clk_core_rate_is_protected(core))
2498 return -EBUSY;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002499
2500 /* try finding the new parent index */
2501 if (parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002502 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002503 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02002504 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002505 __func__, parent->name, core->name);
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002506 return p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002507 }
Masahiro Yamadae8f0e682015-12-28 19:23:10 +09002508 p_rate = parent->rate;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002509 }
2510
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002511 ret = clk_pm_runtime_get(core);
2512 if (ret)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002513 return ret;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002514
Mike Turquetteb24764902012-03-15 23:11:19 -07002515 /* propagate PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002516 ret = __clk_speculate_rates(core, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002517
2518 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07002519 if (ret & NOTIFY_STOP_MASK)
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002520 goto runtime_put;
Mike Turquetteb24764902012-03-15 23:11:19 -07002521
Ulf Hansson031dcc92013-04-02 23:09:38 +02002522 /* do the re-parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002523 ret = __clk_set_parent(core, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002524
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002525 /* propagate rate an accuracy recalculation accordingly */
2526 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002527 __clk_recalc_rates(core, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002528 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002529 __clk_recalc_rates(core, POST_RATE_CHANGE);
2530 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002531 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002532
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002533runtime_put:
2534 clk_pm_runtime_put(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002535
2536 return ret;
2537}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002538
Neil Armstrong35678942019-07-31 10:40:16 +02002539int clk_hw_set_parent(struct clk_hw *hw, struct clk_hw *parent)
2540{
2541 return clk_core_set_parent_nolock(hw->core, parent->core);
2542}
2543EXPORT_SYMBOL_GPL(clk_hw_set_parent);
2544
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002545/**
2546 * clk_set_parent - switch the parent of a mux clk
2547 * @clk: the mux clk whose input we are switching
2548 * @parent: the new input to clk
2549 *
2550 * Re-parent clk to use parent as its new input source. If clk is in
2551 * prepared state, the clk will get enabled for the duration of this call. If
2552 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2553 * that, the reparenting is glitchy in hardware, etc), use the
2554 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2555 *
2556 * After successfully changing clk's parent clk_set_parent will update the
2557 * clk topology, sysfs topology and propagate rate recalculation via
2558 * __clk_recalc_rates.
2559 *
2560 * Returns 0 on success, -EERROR otherwise.
2561 */
2562int clk_set_parent(struct clk *clk, struct clk *parent)
2563{
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002564 int ret;
2565
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002566 if (!clk)
2567 return 0;
2568
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002569 clk_prepare_lock();
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002570
2571 if (clk->exclusive_count)
2572 clk_core_rate_unprotect(clk->core);
2573
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002574 ret = clk_core_set_parent_nolock(clk->core,
2575 parent ? parent->core : NULL);
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002576
2577 if (clk->exclusive_count)
2578 clk_core_rate_protect(clk->core);
2579
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002580 clk_prepare_unlock();
2581
2582 return ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002583}
Mike Turquetteb24764902012-03-15 23:11:19 -07002584EXPORT_SYMBOL_GPL(clk_set_parent);
2585
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002586static int clk_core_set_phase_nolock(struct clk_core *core, int degrees)
2587{
2588 int ret = -EINVAL;
2589
2590 lockdep_assert_held(&prepare_lock);
2591
2592 if (!core)
2593 return 0;
2594
Jerome Brunete55a8392017-12-01 22:51:56 +01002595 if (clk_core_rate_is_protected(core))
2596 return -EBUSY;
2597
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002598 trace_clk_set_phase(core, degrees);
2599
Shawn Lin7f95bee2018-03-08 14:49:41 +08002600 if (core->ops->set_phase) {
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002601 ret = core->ops->set_phase(core->hw, degrees);
Shawn Lin7f95bee2018-03-08 14:49:41 +08002602 if (!ret)
2603 core->phase = degrees;
2604 }
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002605
2606 trace_clk_set_phase_complete(core, degrees);
2607
2608 return ret;
2609}
2610
Mike Turquetteb24764902012-03-15 23:11:19 -07002611/**
Mike Turquettee59c5372014-02-18 21:21:25 -08002612 * clk_set_phase - adjust the phase shift of a clock signal
2613 * @clk: clock signal source
2614 * @degrees: number of degrees the signal is shifted
2615 *
2616 * Shifts the phase of a clock signal by the specified
2617 * degrees. Returns 0 on success, -EERROR otherwise.
2618 *
2619 * This function makes no distinction about the input or reference
2620 * signal that we adjust the clock signal phase against. For example
2621 * phase locked-loop clock signal generators we may shift phase with
2622 * respect to feedback clock signal input, but for other cases the
2623 * clock phase may be shifted with respect to some other, unspecified
2624 * signal.
2625 *
2626 * Additionally the concept of phase shift does not propagate through
2627 * the clock tree hierarchy, which sets it apart from clock rates and
2628 * clock accuracy. A parent clock phase attribute does not have an
2629 * impact on the phase attribute of a child clock.
2630 */
2631int clk_set_phase(struct clk *clk, int degrees)
2632{
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002633 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002634
2635 if (!clk)
Stephen Boyd08b95752015-02-02 14:09:43 -08002636 return 0;
Mike Turquettee59c5372014-02-18 21:21:25 -08002637
2638 /* sanity check degrees */
2639 degrees %= 360;
2640 if (degrees < 0)
2641 degrees += 360;
2642
2643 clk_prepare_lock();
2644
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002645 if (clk->exclusive_count)
2646 clk_core_rate_unprotect(clk->core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002647
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002648 ret = clk_core_set_phase_nolock(clk->core, degrees);
Mike Turquettee59c5372014-02-18 21:21:25 -08002649
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002650 if (clk->exclusive_count)
2651 clk_core_rate_protect(clk->core);
Mike Turquettee59c5372014-02-18 21:21:25 -08002652
Mike Turquettee59c5372014-02-18 21:21:25 -08002653 clk_prepare_unlock();
2654
Mike Turquettee59c5372014-02-18 21:21:25 -08002655 return ret;
2656}
Maxime Ripard9767b04f2015-01-20 22:23:43 +01002657EXPORT_SYMBOL_GPL(clk_set_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08002658
Stephen Boydd6968fc2015-04-30 13:54:13 -07002659static int clk_core_get_phase(struct clk_core *core)
Mike Turquettee59c5372014-02-18 21:21:25 -08002660{
Stephen Boyd1f3e1982015-04-30 14:21:56 -07002661 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002662
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002663 lockdep_assert_held(&prepare_lock);
2664 if (!core->ops->get_phase)
2665 return 0;
2666
Shawn Lin1f9c63e2018-03-14 08:28:31 +08002667 /* Always try to update cached phase if possible */
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002668 ret = core->ops->get_phase(core->hw);
2669 if (ret >= 0)
2670 core->phase = ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002671
Mike Turquettee59c5372014-02-18 21:21:25 -08002672 return ret;
2673}
2674
2675/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002676 * clk_get_phase - return the phase shift of a clock signal
2677 * @clk: clock signal source
2678 *
2679 * Returns the phase shift of a clock node in degrees, otherwise returns
2680 * -EERROR.
2681 */
2682int clk_get_phase(struct clk *clk)
2683{
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002684 int ret;
2685
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002686 if (!clk)
2687 return 0;
2688
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002689 clk_prepare_lock();
2690 ret = clk_core_get_phase(clk->core);
2691 clk_prepare_unlock();
2692
2693 return ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002694}
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002695EXPORT_SYMBOL_GPL(clk_get_phase);
Mike Turquetteb24764902012-03-15 23:11:19 -07002696
Jerome Brunet9fba7382018-06-19 16:41:41 +02002697static void clk_core_reset_duty_cycle_nolock(struct clk_core *core)
2698{
2699 /* Assume a default value of 50% */
2700 core->duty.num = 1;
2701 core->duty.den = 2;
2702}
2703
2704static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core);
2705
2706static int clk_core_update_duty_cycle_nolock(struct clk_core *core)
2707{
2708 struct clk_duty *duty = &core->duty;
2709 int ret = 0;
2710
2711 if (!core->ops->get_duty_cycle)
2712 return clk_core_update_duty_cycle_parent_nolock(core);
2713
2714 ret = core->ops->get_duty_cycle(core->hw, duty);
2715 if (ret)
2716 goto reset;
2717
2718 /* Don't trust the clock provider too much */
2719 if (duty->den == 0 || duty->num > duty->den) {
2720 ret = -EINVAL;
2721 goto reset;
2722 }
2723
2724 return 0;
2725
2726reset:
2727 clk_core_reset_duty_cycle_nolock(core);
2728 return ret;
2729}
2730
2731static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core)
2732{
2733 int ret = 0;
2734
2735 if (core->parent &&
2736 core->flags & CLK_DUTY_CYCLE_PARENT) {
2737 ret = clk_core_update_duty_cycle_nolock(core->parent);
2738 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2739 } else {
2740 clk_core_reset_duty_cycle_nolock(core);
2741 }
2742
2743 return ret;
2744}
2745
2746static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2747 struct clk_duty *duty);
2748
2749static int clk_core_set_duty_cycle_nolock(struct clk_core *core,
2750 struct clk_duty *duty)
2751{
2752 int ret;
2753
2754 lockdep_assert_held(&prepare_lock);
2755
2756 if (clk_core_rate_is_protected(core))
2757 return -EBUSY;
2758
2759 trace_clk_set_duty_cycle(core, duty);
2760
2761 if (!core->ops->set_duty_cycle)
2762 return clk_core_set_duty_cycle_parent_nolock(core, duty);
2763
2764 ret = core->ops->set_duty_cycle(core->hw, duty);
2765 if (!ret)
2766 memcpy(&core->duty, duty, sizeof(*duty));
2767
2768 trace_clk_set_duty_cycle_complete(core, duty);
2769
2770 return ret;
2771}
2772
2773static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2774 struct clk_duty *duty)
2775{
2776 int ret = 0;
2777
2778 if (core->parent &&
2779 core->flags & (CLK_DUTY_CYCLE_PARENT | CLK_SET_RATE_PARENT)) {
2780 ret = clk_core_set_duty_cycle_nolock(core->parent, duty);
2781 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2782 }
2783
2784 return ret;
2785}
2786
2787/**
2788 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
2789 * @clk: clock signal source
2790 * @num: numerator of the duty cycle ratio to be applied
2791 * @den: denominator of the duty cycle ratio to be applied
2792 *
2793 * Apply the duty cycle ratio if the ratio is valid and the clock can
2794 * perform this operation
2795 *
2796 * Returns (0) on success, a negative errno otherwise.
2797 */
2798int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den)
2799{
2800 int ret;
2801 struct clk_duty duty;
2802
2803 if (!clk)
2804 return 0;
2805
2806 /* sanity check the ratio */
2807 if (den == 0 || num > den)
2808 return -EINVAL;
2809
2810 duty.num = num;
2811 duty.den = den;
2812
2813 clk_prepare_lock();
2814
2815 if (clk->exclusive_count)
2816 clk_core_rate_unprotect(clk->core);
2817
2818 ret = clk_core_set_duty_cycle_nolock(clk->core, &duty);
2819
2820 if (clk->exclusive_count)
2821 clk_core_rate_protect(clk->core);
2822
2823 clk_prepare_unlock();
2824
2825 return ret;
2826}
2827EXPORT_SYMBOL_GPL(clk_set_duty_cycle);
2828
2829static int clk_core_get_scaled_duty_cycle(struct clk_core *core,
2830 unsigned int scale)
2831{
2832 struct clk_duty *duty = &core->duty;
2833 int ret;
2834
2835 clk_prepare_lock();
2836
2837 ret = clk_core_update_duty_cycle_nolock(core);
2838 if (!ret)
2839 ret = mult_frac(scale, duty->num, duty->den);
2840
2841 clk_prepare_unlock();
2842
2843 return ret;
2844}
2845
2846/**
2847 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
2848 * @clk: clock signal source
2849 * @scale: scaling factor to be applied to represent the ratio as an integer
2850 *
2851 * Returns the duty cycle ratio of a clock node multiplied by the provided
2852 * scaling factor, or negative errno on error.
2853 */
2854int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale)
2855{
2856 if (!clk)
2857 return 0;
2858
2859 return clk_core_get_scaled_duty_cycle(clk->core, scale);
2860}
2861EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle);
2862
Mike Turquetteb24764902012-03-15 23:11:19 -07002863/**
Michael Turquette3d3801e2015-02-25 09:11:01 -08002864 * clk_is_match - check if two clk's point to the same hardware clock
2865 * @p: clk compared against q
2866 * @q: clk compared against p
2867 *
2868 * Returns true if the two struct clk pointers both point to the same hardware
2869 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2870 * share the same struct clk_core object.
2871 *
2872 * Returns false otherwise. Note that two NULL clks are treated as matching.
2873 */
2874bool clk_is_match(const struct clk *p, const struct clk *q)
2875{
2876 /* trivial case: identical struct clk's or both NULL */
2877 if (p == q)
2878 return true;
2879
Geert Uytterhoeven3fe003f2015-10-29 20:55:00 +01002880 /* true if clk->core pointers match. Avoid dereferencing garbage */
Michael Turquette3d3801e2015-02-25 09:11:01 -08002881 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
2882 if (p->core == q->core)
2883 return true;
2884
2885 return false;
2886}
2887EXPORT_SYMBOL_GPL(clk_is_match);
2888
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002889/*** debugfs support ***/
2890
2891#ifdef CONFIG_DEBUG_FS
2892#include <linux/debugfs.h>
2893
2894static struct dentry *rootdir;
2895static int inited = 0;
2896static DEFINE_MUTEX(clk_debug_lock);
2897static HLIST_HEAD(clk_debug_list);
2898
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002899static struct hlist_head *orphan_list[] = {
2900 &clk_orphan_list,
2901 NULL,
2902};
2903
2904static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
2905 int level)
2906{
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002907 int phase;
2908
2909 seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu ",
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002910 level * 3 + 1, "",
2911 30 - level * 3, c->name,
Jerome Brunete55a8392017-12-01 22:51:56 +01002912 c->enable_count, c->prepare_count, c->protect_count,
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002913 clk_core_get_rate(c), clk_core_get_accuracy(c));
2914
2915 phase = clk_core_get_phase(c);
2916 if (phase >= 0)
2917 seq_printf(s, "%5d", phase);
2918 else
2919 seq_puts(s, "-----");
2920
2921 seq_printf(s, " %6d\n", clk_core_get_scaled_duty_cycle(c, 100000));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002922}
2923
2924static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
2925 int level)
2926{
2927 struct clk_core *child;
2928
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002929 clk_summary_show_one(s, c, level);
2930
2931 hlist_for_each_entry(child, &c->children, child_node)
2932 clk_summary_show_subtree(s, child, level + 1);
2933}
2934
2935static int clk_summary_show(struct seq_file *s, void *data)
2936{
2937 struct clk_core *c;
2938 struct hlist_head **lists = (struct hlist_head **)s->private;
2939
Jerome Brunet9fba7382018-06-19 16:41:41 +02002940 seq_puts(s, " enable prepare protect duty\n");
2941 seq_puts(s, " clock count count count rate accuracy phase cycle\n");
2942 seq_puts(s, "---------------------------------------------------------------------------------------------\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002943
2944 clk_prepare_lock();
2945
2946 for (; *lists; lists++)
2947 hlist_for_each_entry(c, *lists, child_node)
2948 clk_summary_show_subtree(s, c, 0);
2949
2950 clk_prepare_unlock();
2951
2952 return 0;
2953}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002954DEFINE_SHOW_ATTRIBUTE(clk_summary);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002955
2956static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
2957{
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002958 int phase;
Leonard Crestez1bd37a42019-07-02 16:27:09 +03002959 unsigned long min_rate, max_rate;
2960
Leonard Crestez1bd37a42019-07-02 16:27:09 +03002961 clk_core_get_boundaries(c, &min_rate, &max_rate);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002962
Stefan Wahren7cb81132015-04-29 16:36:43 +00002963 /* This should be JSON format, i.e. elements separated with a comma */
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002964 seq_printf(s, "\"%s\": { ", c->name);
2965 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
2966 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Jerome Brunete55a8392017-12-01 22:51:56 +01002967 seq_printf(s, "\"protect_count\": %d,", c->protect_count);
Stefan Wahren7cb81132015-04-29 16:36:43 +00002968 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate(c));
Leonard Crestez1bd37a42019-07-02 16:27:09 +03002969 seq_printf(s, "\"min_rate\": %lu,", min_rate);
2970 seq_printf(s, "\"max_rate\": %lu,", max_rate);
Stefan Wahren7cb81132015-04-29 16:36:43 +00002971 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy(c));
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002972 phase = clk_core_get_phase(c);
2973 if (phase >= 0)
2974 seq_printf(s, "\"phase\": %d,", phase);
Jerome Brunet9fba7382018-06-19 16:41:41 +02002975 seq_printf(s, "\"duty_cycle\": %u",
2976 clk_core_get_scaled_duty_cycle(c, 100000));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002977}
2978
2979static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
2980{
2981 struct clk_core *child;
2982
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002983 clk_dump_one(s, c, level);
2984
2985 hlist_for_each_entry(child, &c->children, child_node) {
Markus Elfring4d327582017-04-20 08:45:43 +02002986 seq_putc(s, ',');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002987 clk_dump_subtree(s, child, level + 1);
2988 }
2989
Markus Elfring4d327582017-04-20 08:45:43 +02002990 seq_putc(s, '}');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002991}
2992
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002993static int clk_dump_show(struct seq_file *s, void *data)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002994{
2995 struct clk_core *c;
2996 bool first_node = true;
2997 struct hlist_head **lists = (struct hlist_head **)s->private;
2998
Markus Elfring4d327582017-04-20 08:45:43 +02002999 seq_putc(s, '{');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003000 clk_prepare_lock();
3001
3002 for (; *lists; lists++) {
3003 hlist_for_each_entry(c, *lists, child_node) {
3004 if (!first_node)
Markus Elfring4d327582017-04-20 08:45:43 +02003005 seq_putc(s, ',');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003006 first_node = false;
3007 clk_dump_subtree(s, c, 0);
3008 }
3009 }
3010
3011 clk_prepare_unlock();
3012
Felipe Balbi70e9f4d2015-05-01 09:48:37 -05003013 seq_puts(s, "}\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003014 return 0;
3015}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003016DEFINE_SHOW_ATTRIBUTE(clk_dump);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003017
Geert Uytterhoeven37215da2019-08-28 15:23:06 +02003018#undef CLOCK_ALLOW_WRITE_DEBUGFS
3019#ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3020/*
3021 * This can be dangerous, therefore don't provide any real compile time
3022 * configuration option for this feature.
3023 * People who want to use this will need to modify the source code directly.
3024 */
3025static int clk_rate_set(void *data, u64 val)
3026{
3027 struct clk_core *core = data;
3028 int ret;
3029
3030 clk_prepare_lock();
3031 ret = clk_core_set_rate_nolock(core, val);
3032 clk_prepare_unlock();
3033
3034 return ret;
3035}
3036
3037#define clk_rate_mode 0644
3038#else
3039#define clk_rate_set NULL
3040#define clk_rate_mode 0444
3041#endif
3042
3043static int clk_rate_get(void *data, u64 *val)
3044{
3045 struct clk_core *core = data;
3046
3047 *val = core->rate;
3048 return 0;
3049}
3050
3051DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, clk_rate_get, clk_rate_set, "%llu\n");
3052
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003053static const struct {
3054 unsigned long flag;
3055 const char *name;
3056} clk_flags[] = {
Geert Uytterhoeven40dd71c2018-07-06 17:16:54 +02003057#define ENTRY(f) { f, #f }
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003058 ENTRY(CLK_SET_RATE_GATE),
3059 ENTRY(CLK_SET_PARENT_GATE),
3060 ENTRY(CLK_SET_RATE_PARENT),
3061 ENTRY(CLK_IGNORE_UNUSED),
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003062 ENTRY(CLK_GET_RATE_NOCACHE),
3063 ENTRY(CLK_SET_RATE_NO_REPARENT),
3064 ENTRY(CLK_GET_ACCURACY_NOCACHE),
3065 ENTRY(CLK_RECALC_NEW_RATES),
3066 ENTRY(CLK_SET_RATE_UNGATE),
3067 ENTRY(CLK_IS_CRITICAL),
3068 ENTRY(CLK_OPS_PARENT_ENABLE),
Jerome Brunet9fba7382018-06-19 16:41:41 +02003069 ENTRY(CLK_DUTY_CYCLE_PARENT),
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003070#undef ENTRY
3071};
3072
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003073static int clk_flags_show(struct seq_file *s, void *data)
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003074{
3075 struct clk_core *core = s->private;
3076 unsigned long flags = core->flags;
3077 unsigned int i;
3078
3079 for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) {
3080 if (flags & clk_flags[i].flag) {
3081 seq_printf(s, "%s\n", clk_flags[i].name);
3082 flags &= ~clk_flags[i].flag;
3083 }
3084 }
3085 if (flags) {
3086 /* Unknown flags */
3087 seq_printf(s, "0x%lx\n", flags);
3088 }
3089
3090 return 0;
3091}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003092DEFINE_SHOW_ATTRIBUTE(clk_flags);
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003093
Stephen Boyd11f6c232019-06-24 20:01:55 -07003094static void possible_parent_show(struct seq_file *s, struct clk_core *core,
3095 unsigned int i, char terminator)
Peter De Schrijver92031572017-03-21 15:20:31 +02003096{
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003097 struct clk_core *parent;
Peter De Schrijver92031572017-03-21 15:20:31 +02003098
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003099 /*
3100 * Go through the following options to fetch a parent's name.
3101 *
3102 * 1. Fetch the registered parent clock and use its name
3103 * 2. Use the global (fallback) name if specified
3104 * 3. Use the local fw_name if provided
3105 * 4. Fetch parent clock's clock-output-name if DT index was set
3106 *
3107 * This may still fail in some cases, such as when the parent is
3108 * specified directly via a struct clk_hw pointer, but it isn't
3109 * registered (yet).
3110 */
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003111 parent = clk_core_get_parent_by_index(core, i);
3112 if (parent)
Markus Elfring1ccc0dd2019-07-01 22:20:40 +02003113 seq_puts(s, parent->name);
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003114 else if (core->parents[i].name)
Markus Elfring1ccc0dd2019-07-01 22:20:40 +02003115 seq_puts(s, core->parents[i].name);
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003116 else if (core->parents[i].fw_name)
3117 seq_printf(s, "<%s>(fw)", core->parents[i].fw_name);
3118 else if (core->parents[i].index >= 0)
Markus Elfring1ccc0dd2019-07-01 22:20:40 +02003119 seq_puts(s,
3120 of_clk_get_parent_name(core->of_node,
3121 core->parents[i].index));
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003122 else
3123 seq_puts(s, "(missing)");
Peter De Schrijver92031572017-03-21 15:20:31 +02003124
Stephen Boyd11f6c232019-06-24 20:01:55 -07003125 seq_putc(s, terminator);
3126}
3127
Peter De Schrijver92031572017-03-21 15:20:31 +02003128static int possible_parents_show(struct seq_file *s, void *data)
3129{
3130 struct clk_core *core = s->private;
3131 int i;
3132
3133 for (i = 0; i < core->num_parents - 1; i++)
Stephen Boyd11f6c232019-06-24 20:01:55 -07003134 possible_parent_show(s, core, i, ' ');
Peter De Schrijver92031572017-03-21 15:20:31 +02003135
Stephen Boyd11f6c232019-06-24 20:01:55 -07003136 possible_parent_show(s, core, i, '\n');
Peter De Schrijver92031572017-03-21 15:20:31 +02003137
3138 return 0;
3139}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003140DEFINE_SHOW_ATTRIBUTE(possible_parents);
Peter De Schrijver92031572017-03-21 15:20:31 +02003141
Leonard Cresteze5e89242019-06-10 14:06:38 +03003142static int current_parent_show(struct seq_file *s, void *data)
3143{
3144 struct clk_core *core = s->private;
3145
3146 if (core->parent)
3147 seq_printf(s, "%s\n", core->parent->name);
3148
3149 return 0;
3150}
3151DEFINE_SHOW_ATTRIBUTE(current_parent);
3152
Jerome Brunet9fba7382018-06-19 16:41:41 +02003153static int clk_duty_cycle_show(struct seq_file *s, void *data)
3154{
3155 struct clk_core *core = s->private;
3156 struct clk_duty *duty = &core->duty;
3157
3158 seq_printf(s, "%u/%u\n", duty->num, duty->den);
3159
3160 return 0;
3161}
3162DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle);
3163
Leonard Crestez1bd37a42019-07-02 16:27:09 +03003164static int clk_min_rate_show(struct seq_file *s, void *data)
3165{
3166 struct clk_core *core = s->private;
3167 unsigned long min_rate, max_rate;
3168
3169 clk_prepare_lock();
3170 clk_core_get_boundaries(core, &min_rate, &max_rate);
3171 clk_prepare_unlock();
3172 seq_printf(s, "%lu\n", min_rate);
3173
3174 return 0;
3175}
3176DEFINE_SHOW_ATTRIBUTE(clk_min_rate);
3177
3178static int clk_max_rate_show(struct seq_file *s, void *data)
3179{
3180 struct clk_core *core = s->private;
3181 unsigned long min_rate, max_rate;
3182
3183 clk_prepare_lock();
3184 clk_core_get_boundaries(core, &min_rate, &max_rate);
3185 clk_prepare_unlock();
3186 seq_printf(s, "%lu\n", max_rate);
3187
3188 return 0;
3189}
3190DEFINE_SHOW_ATTRIBUTE(clk_max_rate);
3191
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003192static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003193{
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003194 struct dentry *root;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003195
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003196 if (!core || !pdentry)
3197 return;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003198
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003199 root = debugfs_create_dir(core->name, pdentry);
3200 core->dentry = root;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003201
Geert Uytterhoeven37215da2019-08-28 15:23:06 +02003202 debugfs_create_file("clk_rate", clk_rate_mode, root, core,
3203 &clk_rate_fops);
Leonard Crestez1bd37a42019-07-02 16:27:09 +03003204 debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
3205 debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003206 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3207 debugfs_create_u32("clk_phase", 0444, root, &core->phase);
3208 debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
3209 debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
3210 debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
3211 debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count);
3212 debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count);
Jerome Brunet9fba7382018-06-19 16:41:41 +02003213 debugfs_create_file("clk_duty_cycle", 0444, root, core,
3214 &clk_duty_cycle_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003215
Leonard Cresteze5e89242019-06-10 14:06:38 +03003216 if (core->num_parents > 0)
3217 debugfs_create_file("clk_parent", 0444, root, core,
3218 &current_parent_fops);
3219
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003220 if (core->num_parents > 1)
3221 debugfs_create_file("clk_possible_parents", 0444, root, core,
3222 &possible_parents_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003223
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003224 if (core->ops->debug_init)
3225 core->ops->debug_init(core->hw, core->dentry);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003226}
3227
3228/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003229 * clk_debug_register - add a clk node to the debugfs clk directory
3230 * @core: the clk being added to the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003231 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003232 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3233 * initialized. Otherwise it bails out early since the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003234 * will be created lazily by clk_debug_init as part of a late_initcall.
3235 */
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003236static void clk_debug_register(struct clk_core *core)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003237{
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003238 mutex_lock(&clk_debug_lock);
3239 hlist_add_head(&core->debug_node, &clk_debug_list);
Stephen Boyddb3188fa2018-01-03 16:44:37 -08003240 if (inited)
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003241 clk_debug_create_one(core, rootdir);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003242 mutex_unlock(&clk_debug_lock);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003243}
3244
3245 /**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003246 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3247 * @core: the clk being removed from the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003248 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003249 * Dynamically removes a clk and all its child nodes from the
3250 * debugfs clk directory if clk->dentry points to debugfs created by
Stephen Boyd706d5c72016-02-22 15:43:41 -08003251 * clk_debug_register in __clk_core_init.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003252 */
3253static void clk_debug_unregister(struct clk_core *core)
3254{
3255 mutex_lock(&clk_debug_lock);
3256 hlist_del_init(&core->debug_node);
3257 debugfs_remove_recursive(core->dentry);
3258 core->dentry = NULL;
3259 mutex_unlock(&clk_debug_lock);
3260}
3261
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003262/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003263 * clk_debug_init - lazily populate the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003264 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003265 * clks are often initialized very early during boot before memory can be
3266 * dynamically allocated and well before debugfs is setup. This function
3267 * populates the debugfs clk directory once at boot-time when we know that
3268 * debugfs is setup. It should only be called once at boot-time, all other clks
3269 * added dynamically will be done so with clk_debug_register.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003270 */
3271static int __init clk_debug_init(void)
3272{
3273 struct clk_core *core;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003274
3275 rootdir = debugfs_create_dir("clk", NULL);
3276
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003277 debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
3278 &clk_summary_fops);
3279 debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
3280 &clk_dump_fops);
3281 debugfs_create_file("clk_orphan_summary", 0444, rootdir, &orphan_list,
3282 &clk_summary_fops);
3283 debugfs_create_file("clk_orphan_dump", 0444, rootdir, &orphan_list,
3284 &clk_dump_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003285
3286 mutex_lock(&clk_debug_lock);
3287 hlist_for_each_entry(core, &clk_debug_list, debug_node)
3288 clk_debug_create_one(core, rootdir);
3289
3290 inited = 1;
3291 mutex_unlock(&clk_debug_lock);
3292
3293 return 0;
3294}
3295late_initcall(clk_debug_init);
3296#else
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003297static inline void clk_debug_register(struct clk_core *core) { }
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003298static inline void clk_debug_reparent(struct clk_core *core,
3299 struct clk_core *new_parent)
3300{
3301}
3302static inline void clk_debug_unregister(struct clk_core *core)
3303{
3304}
3305#endif
3306
Jerome Brunet66d95062019-12-03 09:08:05 +01003307static void clk_core_reparent_orphans_nolock(void)
3308{
3309 struct clk_core *orphan;
3310 struct hlist_node *tmp2;
3311
3312 /*
3313 * walk the list of orphan clocks and reparent any that newly finds a
3314 * parent.
3315 */
3316 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
3317 struct clk_core *parent = __clk_init_parent(orphan);
3318
3319 /*
3320 * We need to use __clk_set_parent_before() and _after() to
3321 * to properly migrate any prepare/enable count of the orphan
3322 * clock. This is important for CLK_IS_CRITICAL clocks, which
3323 * are enabled during init but might not have a parent yet.
3324 */
3325 if (parent) {
3326 /* update the clk tree topology */
3327 __clk_set_parent_before(orphan, parent);
3328 __clk_set_parent_after(orphan, parent, NULL);
3329 __clk_recalc_accuracies(orphan);
3330 __clk_recalc_rates(orphan, 0);
3331 }
3332 }
3333}
3334
Michael Turquette3d3801e2015-02-25 09:11:01 -08003335/**
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003336 * __clk_core_init - initialize the data structures in a struct clk_core
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09003337 * @core: clk_core being initialized
Mike Turquetteb24764902012-03-15 23:11:19 -07003338 *
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003339 * Initializes the lists in struct clk_core, queries the hardware for the
Mike Turquetteb24764902012-03-15 23:11:19 -07003340 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07003341 */
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003342static int __clk_core_init(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07003343{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003344 int ret;
Stephen Boyd768a5d42020-02-05 15:28:00 -08003345 struct clk_core *parent;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003346 unsigned long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003347
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09003348 if (!core)
Mike Turquetted1302a32012-03-29 14:30:40 -07003349 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07003350
Mike Turquetteeab89f62013-03-28 13:59:01 -07003351 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003352
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003353 ret = clk_pm_runtime_get(core);
3354 if (ret)
3355 goto unlock;
3356
Mike Turquetteb24764902012-03-15 23:11:19 -07003357 /* check to see if a clock with this name is already registered */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003358 if (clk_core_lookup(core->name)) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003359 pr_debug("%s: clk %s already initialized\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003360 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003361 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07003362 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07003363 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003364
Mauro Carvalho Chehab5fb94e92018-05-08 15:14:57 -03003365 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003366 if (core->ops->set_rate &&
3367 !((core->ops->round_rate || core->ops->determine_rate) &&
3368 core->ops->recalc_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003369 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3370 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003371 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003372 goto out;
3373 }
3374
Stephen Boydd6968fc2015-04-30 13:54:13 -07003375 if (core->ops->set_parent && !core->ops->get_parent) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003376 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3377 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003378 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003379 goto out;
3380 }
3381
Masahiro Yamada3c8e77d2015-12-28 19:23:04 +09003382 if (core->num_parents > 1 && !core->ops->get_parent) {
3383 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3384 __func__, core->name);
3385 ret = -EINVAL;
3386 goto out;
3387 }
3388
Stephen Boydd6968fc2015-04-30 13:54:13 -07003389 if (core->ops->set_rate_and_parent &&
3390 !(core->ops->set_parent && core->ops->set_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003391 pr_err("%s: %s must implement .set_parent & .set_rate\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003392 __func__, core->name);
Stephen Boyd3fa22522014-01-15 10:47:22 -08003393 ret = -EINVAL;
3394 goto out;
3395 }
3396
Jerome Brunetf6fa75c2019-09-24 14:39:52 +02003397 /*
3398 * optional platform-specific magic
3399 *
3400 * The .init callback is not used by any of the basic clock types, but
Jerome Brunet89d079d2019-09-24 14:39:53 +02003401 * exists for weird hardware that must perform initialization magic for
3402 * CCF to get an accurate view of clock for any other callbacks. It may
3403 * also be used needs to perform dynamic allocations. Such allocation
3404 * must be freed in the terminate() callback.
3405 * This callback shall not be used to initialize the parameters state,
3406 * such as rate, parent, etc ...
Jerome Brunetf6fa75c2019-09-24 14:39:52 +02003407 *
3408 * If it exist, this callback should called before any other callback of
3409 * the clock
3410 */
Jerome Brunet89d079d2019-09-24 14:39:53 +02003411 if (core->ops->init) {
3412 ret = core->ops->init(core->hw);
3413 if (ret)
3414 goto out;
3415 }
Jerome Brunetf6fa75c2019-09-24 14:39:52 +02003416
Stephen Boyd768a5d42020-02-05 15:28:00 -08003417 parent = core->parent = __clk_init_parent(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07003418
3419 /*
Stephen Boyd706d5c72016-02-22 15:43:41 -08003420 * Populate core->parent if parent has already been clk_core_init'd. If
3421 * parent has not yet been clk_core_init'd then place clk in the orphan
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08003422 * list. If clk doesn't have any parents then place it in the root
Mike Turquetteb24764902012-03-15 23:11:19 -07003423 * clk list.
3424 *
3425 * Every time a new clk is clk_init'd then we walk the list of orphan
3426 * clocks and re-parent any that are children of the clock currently
3427 * being clk_init'd.
3428 */
Stephen Boyd768a5d42020-02-05 15:28:00 -08003429 if (parent) {
3430 hlist_add_head(&core->child_node, &parent->children);
3431 core->orphan = parent->orphan;
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08003432 } else if (!core->num_parents) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003433 hlist_add_head(&core->child_node, &clk_root_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003434 core->orphan = false;
3435 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003436 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003437 core->orphan = true;
3438 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003439
3440 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003441 * Set clk's accuracy. The preferred method is to use
3442 * .recalc_accuracy. For simple clocks and lazy developers the default
3443 * fallback is to use the parent's accuracy. If a clock doesn't have a
3444 * parent (or is orphaned) then accuracy is set to zero (perfect
3445 * clock).
3446 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003447 if (core->ops->recalc_accuracy)
3448 core->accuracy = core->ops->recalc_accuracy(core->hw,
Stephen Boyd768a5d42020-02-05 15:28:00 -08003449 __clk_get_accuracy(parent));
3450 else if (parent)
3451 core->accuracy = parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003452 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07003453 core->accuracy = 0;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003454
3455 /*
Stephen Boydf21cf9c2020-02-05 15:27:59 -08003456 * Set clk's phase by clk_core_get_phase() caching the phase.
Maxime Ripard9824cf72014-07-14 13:53:27 +02003457 * Since a phase is by definition relative to its parent, just
3458 * query the current clock phase, or just assume it's in phase.
3459 */
Stephen Boydf21cf9c2020-02-05 15:27:59 -08003460 clk_core_get_phase(core);
Maxime Ripard9824cf72014-07-14 13:53:27 +02003461
3462 /*
Jerome Brunet9fba7382018-06-19 16:41:41 +02003463 * Set clk's duty cycle.
3464 */
3465 clk_core_update_duty_cycle_nolock(core);
3466
3467 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07003468 * Set clk's rate. The preferred method is to use .recalc_rate. For
3469 * simple clocks and lazy developers the default fallback is to use the
3470 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3471 * then rate is set to zero.
3472 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003473 if (core->ops->recalc_rate)
3474 rate = core->ops->recalc_rate(core->hw,
Stephen Boyd768a5d42020-02-05 15:28:00 -08003475 clk_core_get_rate_nolock(parent));
3476 else if (parent)
3477 rate = parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003478 else
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003479 rate = 0;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003480 core->rate = core->req_rate = rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003481
3482 /*
Jerome Brunet99652a42018-02-14 14:43:36 +01003483 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3484 * don't get accidentally disabled when walking the orphan tree and
3485 * reparenting clocks
3486 */
3487 if (core->flags & CLK_IS_CRITICAL) {
3488 unsigned long flags;
3489
Guenter Roeck12ead772019-12-25 08:34:29 -08003490 ret = clk_core_prepare(core);
Stephen Boyd2d269992019-12-26 14:09:27 -08003491 if (ret) {
3492 pr_warn("%s: critical clk '%s' failed to prepare\n",
3493 __func__, core->name);
Guenter Roeck12ead772019-12-25 08:34:29 -08003494 goto out;
Stephen Boyd2d269992019-12-26 14:09:27 -08003495 }
Jerome Brunet99652a42018-02-14 14:43:36 +01003496
3497 flags = clk_enable_lock();
Guenter Roeck12ead772019-12-25 08:34:29 -08003498 ret = clk_core_enable(core);
Jerome Brunet99652a42018-02-14 14:43:36 +01003499 clk_enable_unlock(flags);
Guenter Roeck12ead772019-12-25 08:34:29 -08003500 if (ret) {
Stephen Boyd2d269992019-12-26 14:09:27 -08003501 pr_warn("%s: critical clk '%s' failed to enable\n",
3502 __func__, core->name);
Guenter Roeck12ead772019-12-25 08:34:29 -08003503 clk_core_unprepare(core);
3504 goto out;
Michael Turquette904e6ea2016-07-08 16:32:10 -07003505 }
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09003506 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003507
Jerome Brunet66d95062019-12-03 09:08:05 +01003508 clk_core_reparent_orphans_nolock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003509
Mike Turquetteb24764902012-03-15 23:11:19 -07003510
Stephen Boydd6968fc2015-04-30 13:54:13 -07003511 kref_init(&core->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07003512out:
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003513 clk_pm_runtime_put(core);
3514unlock:
Mike Turquetteeab89f62013-03-28 13:59:01 -07003515 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003516
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08003517 if (!ret)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003518 clk_debug_register(core);
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08003519
Mike Turquetted1302a32012-03-29 14:30:40 -07003520 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07003521}
3522
Stephen Boyd1df40462018-12-11 08:32:04 -08003523/**
3524 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
3525 * @core: clk to add consumer to
3526 * @clk: consumer to link to a clk
3527 */
3528static void clk_core_link_consumer(struct clk_core *core, struct clk *clk)
3529{
3530 clk_prepare_lock();
3531 hlist_add_head(&clk->clks_node, &core->clks);
3532 clk_prepare_unlock();
3533}
3534
3535/**
3536 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
3537 * @clk: consumer to unlink
3538 */
3539static void clk_core_unlink_consumer(struct clk *clk)
3540{
3541 lockdep_assert_held(&prepare_lock);
3542 hlist_del(&clk->clks_node);
3543}
3544
3545/**
3546 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
3547 * @core: clk to allocate a consumer for
3548 * @dev_id: string describing device name
3549 * @con_id: connection ID string on device
3550 *
3551 * Returns: clk consumer left unlinked from the consumer list
3552 */
3553static struct clk *alloc_clk(struct clk_core *core, const char *dev_id,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003554 const char *con_id)
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003555{
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003556 struct clk *clk;
3557
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003558 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3559 if (!clk)
3560 return ERR_PTR(-ENOMEM);
3561
Stephen Boyd1df40462018-12-11 08:32:04 -08003562 clk->core = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003563 clk->dev_id = dev_id;
Leonard Crestez253160a2017-02-20 15:20:56 +02003564 clk->con_id = kstrdup_const(con_id, GFP_KERNEL);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003565 clk->max_rate = ULONG_MAX;
3566
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003567 return clk;
3568}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003569
Stephen Boyd1df40462018-12-11 08:32:04 -08003570/**
3571 * free_clk - Free a clk consumer
3572 * @clk: clk consumer to free
3573 *
3574 * Note, this assumes the clk has been unlinked from the clk_core consumer
3575 * list.
3576 */
3577static void free_clk(struct clk *clk)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003578{
Leonard Crestez253160a2017-02-20 15:20:56 +02003579 kfree_const(clk->con_id);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003580 kfree(clk);
3581}
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003582
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003583/**
Stephen Boyd1df40462018-12-11 08:32:04 -08003584 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
3585 * a clk_hw
Stephen Boydefa85042018-12-11 08:34:16 -08003586 * @dev: clk consumer device
Stephen Boyd1df40462018-12-11 08:32:04 -08003587 * @hw: clk_hw associated with the clk being consumed
3588 * @dev_id: string describing device name
3589 * @con_id: connection ID string on device
3590 *
3591 * This is the main function used to create a clk pointer for use by clk
3592 * consumers. It connects a consumer to the clk_core and clk_hw structures
3593 * used by the framework and clk provider respectively.
3594 */
Stephen Boydefa85042018-12-11 08:34:16 -08003595struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw,
Stephen Boyd1df40462018-12-11 08:32:04 -08003596 const char *dev_id, const char *con_id)
3597{
3598 struct clk *clk;
3599 struct clk_core *core;
3600
3601 /* This is to allow this function to be chained to others */
3602 if (IS_ERR_OR_NULL(hw))
3603 return ERR_CAST(hw);
3604
3605 core = hw->core;
3606 clk = alloc_clk(core, dev_id, con_id);
3607 if (IS_ERR(clk))
3608 return clk;
Stephen Boydefa85042018-12-11 08:34:16 -08003609 clk->dev = dev;
Stephen Boyd1df40462018-12-11 08:32:04 -08003610
3611 if (!try_module_get(core->owner)) {
3612 free_clk(clk);
3613 return ERR_PTR(-ENOENT);
3614 }
3615
3616 kref_get(&core->ref);
3617 clk_core_link_consumer(core, clk);
3618
3619 return clk;
3620}
3621
Stephen Boydfc0c2092019-04-12 11:31:47 -07003622static int clk_cpy_name(const char **dst_p, const char *src, bool must_exist)
Mike Turquetteb24764902012-03-15 23:11:19 -07003623{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003624 const char *dst;
3625
3626 if (!src) {
3627 if (must_exist)
3628 return -EINVAL;
3629 return 0;
3630 }
3631
3632 *dst_p = dst = kstrdup_const(src, GFP_KERNEL);
3633 if (!dst)
3634 return -ENOMEM;
3635
3636 return 0;
3637}
3638
Stephen Boyd0214f332019-07-31 12:35:17 -07003639static int clk_core_populate_parent_map(struct clk_core *core,
3640 const struct clk_init_data *init)
Stephen Boydfc0c2092019-04-12 11:31:47 -07003641{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003642 u8 num_parents = init->num_parents;
3643 const char * const *parent_names = init->parent_names;
3644 const struct clk_hw **parent_hws = init->parent_hws;
3645 const struct clk_parent_data *parent_data = init->parent_data;
3646 int i, ret = 0;
3647 struct clk_parent_map *parents, *parent;
3648
3649 if (!num_parents)
3650 return 0;
3651
3652 /*
3653 * Avoid unnecessary string look-ups of clk_core's possible parents by
3654 * having a cache of names/clk_hw pointers to clk_core pointers.
3655 */
3656 parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL);
3657 core->parents = parents;
3658 if (!parents)
3659 return -ENOMEM;
3660
3661 /* Copy everything over because it might be __initdata */
3662 for (i = 0, parent = parents; i < num_parents; i++, parent++) {
Stephen Boyd601b6e92019-04-12 11:31:49 -07003663 parent->index = -1;
Stephen Boydfc0c2092019-04-12 11:31:47 -07003664 if (parent_names) {
3665 /* throw a WARN if any entries are NULL */
3666 WARN(!parent_names[i],
3667 "%s: invalid NULL in %s's .parent_names\n",
3668 __func__, core->name);
3669 ret = clk_cpy_name(&parent->name, parent_names[i],
3670 true);
3671 } else if (parent_data) {
3672 parent->hw = parent_data[i].hw;
Stephen Boyd601b6e92019-04-12 11:31:49 -07003673 parent->index = parent_data[i].index;
Stephen Boydfc0c2092019-04-12 11:31:47 -07003674 ret = clk_cpy_name(&parent->fw_name,
3675 parent_data[i].fw_name, false);
3676 if (!ret)
3677 ret = clk_cpy_name(&parent->name,
3678 parent_data[i].name,
3679 false);
3680 } else if (parent_hws) {
3681 parent->hw = parent_hws[i];
3682 } else {
3683 ret = -EINVAL;
3684 WARN(1, "Must specify parents if num_parents > 0\n");
3685 }
3686
3687 if (ret) {
3688 do {
3689 kfree_const(parents[i].name);
3690 kfree_const(parents[i].fw_name);
3691 } while (--i >= 0);
3692 kfree(parents);
3693
3694 return ret;
3695 }
3696 }
3697
3698 return 0;
3699}
3700
3701static void clk_core_free_parent_map(struct clk_core *core)
3702{
3703 int i = core->num_parents;
3704
3705 if (!core->num_parents)
3706 return;
3707
3708 while (--i >= 0) {
3709 kfree_const(core->parents[i].name);
3710 kfree_const(core->parents[i].fw_name);
3711 }
3712
3713 kfree(core->parents);
3714}
3715
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -07003716static struct clk *
3717__clk_register(struct device *dev, struct device_node *np, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07003718{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003719 int ret;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003720 struct clk_core *core;
Stephen Boyd0214f332019-07-31 12:35:17 -07003721 const struct clk_init_data *init = hw->init;
3722
3723 /*
3724 * The init data is not supposed to be used outside of registration path.
3725 * Set it to NULL so that provider drivers can't use it either and so that
3726 * we catch use of hw->init early on in the core.
3727 */
3728 hw->init = NULL;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003729
Stephen Boydd6968fc2015-04-30 13:54:13 -07003730 core = kzalloc(sizeof(*core), GFP_KERNEL);
3731 if (!core) {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003732 ret = -ENOMEM;
3733 goto fail_out;
3734 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003735
Stephen Boyd0214f332019-07-31 12:35:17 -07003736 core->name = kstrdup_const(init->name, GFP_KERNEL);
Stephen Boydd6968fc2015-04-30 13:54:13 -07003737 if (!core->name) {
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003738 ret = -ENOMEM;
3739 goto fail_name;
3740 }
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003741
Stephen Boyd0214f332019-07-31 12:35:17 -07003742 if (WARN_ON(!init->ops)) {
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003743 ret = -EINVAL;
3744 goto fail_ops;
3745 }
Stephen Boyd0214f332019-07-31 12:35:17 -07003746 core->ops = init->ops;
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003747
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003748 if (dev && pm_runtime_enabled(dev))
Miquel Raynal24478832018-12-04 20:24:37 +01003749 core->rpm_enabled = true;
3750 core->dev = dev;
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -07003751 core->of_node = np;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003752 if (dev && dev->driver)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003753 core->owner = dev->driver->owner;
3754 core->hw = hw;
Stephen Boyd0214f332019-07-31 12:35:17 -07003755 core->flags = init->flags;
3756 core->num_parents = init->num_parents;
Stephen Boyd9783c0d2015-07-16 12:50:27 -07003757 core->min_rate = 0;
3758 core->max_rate = ULONG_MAX;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003759 hw->core = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07003760
Stephen Boyd0214f332019-07-31 12:35:17 -07003761 ret = clk_core_populate_parent_map(core, init);
Stephen Boydfc0c2092019-04-12 11:31:47 -07003762 if (ret)
Masahiro Yamada176d1162015-12-28 19:23:00 +09003763 goto fail_parents;
Masahiro Yamada176d1162015-12-28 19:23:00 +09003764
Stephen Boydd6968fc2015-04-30 13:54:13 -07003765 INIT_HLIST_HEAD(&core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003766
Stephen Boyd1df40462018-12-11 08:32:04 -08003767 /*
3768 * Don't call clk_hw_create_clk() here because that would pin the
3769 * provider module to itself and prevent it from ever being removed.
3770 */
3771 hw->clk = alloc_clk(core, NULL, NULL);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003772 if (IS_ERR(hw->clk)) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003773 ret = PTR_ERR(hw->clk);
Stephen Boydfc0c2092019-04-12 11:31:47 -07003774 goto fail_create_clk;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003775 }
Mike Turquetted1302a32012-03-29 14:30:40 -07003776
Stephen Boyd1df40462018-12-11 08:32:04 -08003777 clk_core_link_consumer(hw->core, hw->clk);
3778
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003779 ret = __clk_core_init(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003780 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003781 return hw->clk;
3782
Stephen Boyd1df40462018-12-11 08:32:04 -08003783 clk_prepare_lock();
3784 clk_core_unlink_consumer(hw->clk);
3785 clk_prepare_unlock();
3786
3787 free_clk(hw->clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003788 hw->clk = NULL;
Mike Turquetted1302a32012-03-29 14:30:40 -07003789
Stephen Boydfc0c2092019-04-12 11:31:47 -07003790fail_create_clk:
3791 clk_core_free_parent_map(core);
Masahiro Yamada176d1162015-12-28 19:23:00 +09003792fail_parents:
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003793fail_ops:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003794 kfree_const(core->name);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003795fail_name:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003796 kfree(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003797fail_out:
3798 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07003799}
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003800
3801/**
Stephen Boyd9011f922019-12-30 10:29:35 -08003802 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
3803 * @dev: Device to get device node of
3804 *
3805 * Return: device node pointer of @dev, or the device node pointer of
3806 * @dev->parent if dev doesn't have a device node, or NULL if neither
3807 * @dev or @dev->parent have a device node.
3808 */
3809static struct device_node *dev_or_parent_of_node(struct device *dev)
3810{
3811 struct device_node *np;
3812
3813 if (!dev)
3814 return NULL;
3815
3816 np = dev_of_node(dev);
3817 if (!np)
3818 np = dev_of_node(dev->parent);
3819
3820 return np;
3821}
3822
3823/**
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003824 * clk_register - allocate a new clock, register it and return an opaque cookie
3825 * @dev: device that is registering this clock
3826 * @hw: link to hardware-specific clock data
3827 *
Stephen Boydc1157f62019-05-07 11:46:13 -07003828 * clk_register is the *deprecated* interface for populating the clock tree with
3829 * new clock nodes. Use clk_hw_register() instead.
3830 *
3831 * Returns: a pointer to the newly allocated struct clk which
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003832 * cannot be dereferenced by driver code but may be used in conjunction with the
3833 * rest of the clock API. In the event of an error clk_register will return an
3834 * error code; drivers must test for an error code after calling clk_register.
3835 */
3836struct clk *clk_register(struct device *dev, struct clk_hw *hw)
3837{
Stephen Boyd9011f922019-12-30 10:29:35 -08003838 return __clk_register(dev, dev_or_parent_of_node(dev), hw);
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003839}
Mike Turquetteb24764902012-03-15 23:11:19 -07003840EXPORT_SYMBOL_GPL(clk_register);
3841
Stephen Boyd41438042016-02-05 17:02:52 -08003842/**
3843 * clk_hw_register - register a clk_hw and return an error code
3844 * @dev: device that is registering this clock
3845 * @hw: link to hardware-specific clock data
3846 *
3847 * clk_hw_register is the primary interface for populating the clock tree with
3848 * new clock nodes. It returns an integer equal to zero indicating success or
3849 * less than zero indicating failure. Drivers must test for an error code after
3850 * calling clk_hw_register().
3851 */
3852int clk_hw_register(struct device *dev, struct clk_hw *hw)
3853{
Stephen Boyd9011f922019-12-30 10:29:35 -08003854 return PTR_ERR_OR_ZERO(__clk_register(dev, dev_or_parent_of_node(dev),
3855 hw));
Stephen Boyd41438042016-02-05 17:02:52 -08003856}
3857EXPORT_SYMBOL_GPL(clk_hw_register);
3858
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -07003859/*
3860 * of_clk_hw_register - register a clk_hw and return an error code
3861 * @node: device_node of device that is registering this clock
3862 * @hw: link to hardware-specific clock data
3863 *
3864 * of_clk_hw_register() is the primary interface for populating the clock tree
3865 * with new clock nodes when a struct device is not available, but a struct
3866 * device_node is. It returns an integer equal to zero indicating success or
3867 * less than zero indicating failure. Drivers must test for an error code after
3868 * calling of_clk_hw_register().
3869 */
3870int of_clk_hw_register(struct device_node *node, struct clk_hw *hw)
3871{
3872 return PTR_ERR_OR_ZERO(__clk_register(NULL, node, hw));
3873}
3874EXPORT_SYMBOL_GPL(of_clk_hw_register);
3875
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003876/* Free memory allocated for a clock. */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003877static void __clk_release(struct kref *ref)
3878{
Stephen Boydd6968fc2015-04-30 13:54:13 -07003879 struct clk_core *core = container_of(ref, struct clk_core, ref);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003880
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01003881 lockdep_assert_held(&prepare_lock);
3882
Stephen Boydfc0c2092019-04-12 11:31:47 -07003883 clk_core_free_parent_map(core);
Stephen Boydd6968fc2015-04-30 13:54:13 -07003884 kfree_const(core->name);
3885 kfree(core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003886}
3887
3888/*
3889 * Empty clk_ops for unregistered clocks. These are used temporarily
3890 * after clk_unregister() was called on a clock and until last clock
3891 * consumer calls clk_put() and the struct clk object is freed.
3892 */
3893static int clk_nodrv_prepare_enable(struct clk_hw *hw)
3894{
3895 return -ENXIO;
3896}
3897
3898static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
3899{
3900 WARN_ON_ONCE(1);
3901}
3902
3903static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
3904 unsigned long parent_rate)
3905{
3906 return -ENXIO;
3907}
3908
3909static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
3910{
3911 return -ENXIO;
3912}
3913
3914static const struct clk_ops clk_nodrv_ops = {
3915 .enable = clk_nodrv_prepare_enable,
3916 .disable = clk_nodrv_disable_unprepare,
3917 .prepare = clk_nodrv_prepare_enable,
3918 .unprepare = clk_nodrv_disable_unprepare,
3919 .set_rate = clk_nodrv_set_rate,
3920 .set_parent = clk_nodrv_set_parent,
3921};
3922
Stephen Boydbdcf1dc2019-08-28 11:19:59 -07003923static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
3924 struct clk_core *target)
3925{
3926 int i;
3927 struct clk_core *child;
3928
3929 for (i = 0; i < root->num_parents; i++)
3930 if (root->parents[i].core == target)
3931 root->parents[i].core = NULL;
3932
3933 hlist_for_each_entry(child, &root->children, child_node)
3934 clk_core_evict_parent_cache_subtree(child, target);
3935}
3936
3937/* Remove this clk from all parent caches */
3938static void clk_core_evict_parent_cache(struct clk_core *core)
3939{
3940 struct hlist_head **lists;
3941 struct clk_core *root;
3942
3943 lockdep_assert_held(&prepare_lock);
3944
3945 for (lists = all_lists; *lists; lists++)
3946 hlist_for_each_entry(root, *lists, child_node)
3947 clk_core_evict_parent_cache_subtree(root, core);
3948
3949}
3950
Mark Brown1df5c932012-04-18 09:07:12 +01003951/**
3952 * clk_unregister - unregister a currently registered clock
3953 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01003954 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003955void clk_unregister(struct clk *clk)
3956{
3957 unsigned long flags;
Jerome Brunetf8737442019-09-24 14:39:54 +02003958 const struct clk_ops *ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003959
Stephen Boyd6314b672014-09-04 23:37:49 -07003960 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
3961 return;
3962
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003963 clk_debug_unregister(clk->core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003964
3965 clk_prepare_lock();
3966
Jerome Brunetf8737442019-09-24 14:39:54 +02003967 ops = clk->core->ops;
3968 if (ops == &clk_nodrv_ops) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003969 pr_err("%s: unregistered clock: %s\n", __func__,
3970 clk->core->name);
Insu Yun4106a3d2016-01-30 10:12:04 -05003971 goto unlock;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003972 }
3973 /*
3974 * Assign empty clock ops for consumers that might still hold
3975 * a reference to this clock.
3976 */
3977 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003978 clk->core->ops = &clk_nodrv_ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003979 clk_enable_unlock(flags);
3980
Jerome Brunetf8737442019-09-24 14:39:54 +02003981 if (ops->terminate)
3982 ops->terminate(clk->core->hw);
3983
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003984 if (!hlist_empty(&clk->core->children)) {
3985 struct clk_core *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07003986 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003987
3988 /* Reparent all children to the orphan list. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003989 hlist_for_each_entry_safe(child, t, &clk->core->children,
3990 child_node)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01003991 clk_core_set_parent_nolock(child, NULL);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003992 }
3993
Stephen Boydbdcf1dc2019-08-28 11:19:59 -07003994 clk_core_evict_parent_cache(clk->core);
3995
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003996 hlist_del_init(&clk->core->child_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003997
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003998 if (clk->core->prepare_count)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003999 pr_warn("%s: unregistering prepared clock: %s\n",
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004000 __func__, clk->core->name);
Jerome Brunete55a8392017-12-01 22:51:56 +01004001
4002 if (clk->core->protect_count)
4003 pr_warn("%s: unregistering protected clock: %s\n",
4004 __func__, clk->core->name);
4005
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004006 kref_put(&clk->core->ref, __clk_release);
Kishon Vijay Abraham I82474702019-10-22 12:41:53 +05304007 free_clk(clk);
Insu Yun4106a3d2016-01-30 10:12:04 -05004008unlock:
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004009 clk_prepare_unlock();
4010}
Mark Brown1df5c932012-04-18 09:07:12 +01004011EXPORT_SYMBOL_GPL(clk_unregister);
4012
Stephen Boyd41438042016-02-05 17:02:52 -08004013/**
4014 * clk_hw_unregister - unregister a currently registered clk_hw
4015 * @hw: hardware-specific clock data to unregister
4016 */
4017void clk_hw_unregister(struct clk_hw *hw)
4018{
4019 clk_unregister(hw->clk);
4020}
4021EXPORT_SYMBOL_GPL(clk_hw_unregister);
4022
Stephen Boyd46c87732012-09-24 13:38:04 -07004023static void devm_clk_release(struct device *dev, void *res)
4024{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004025 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07004026}
4027
Stephen Boyd41438042016-02-05 17:02:52 -08004028static void devm_clk_hw_release(struct device *dev, void *res)
4029{
4030 clk_hw_unregister(*(struct clk_hw **)res);
4031}
4032
Stephen Boyd46c87732012-09-24 13:38:04 -07004033/**
4034 * devm_clk_register - resource managed clk_register()
4035 * @dev: device that is registering this clock
4036 * @hw: link to hardware-specific clock data
4037 *
Stephen Boyd9fe9b7a2018-12-11 10:49:40 -08004038 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4039 *
4040 * Clocks returned from this function are automatically clk_unregister()ed on
4041 * driver detach. See clk_register() for more information.
Stephen Boyd46c87732012-09-24 13:38:04 -07004042 */
4043struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
4044{
4045 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004046 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07004047
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004048 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
4049 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07004050 return ERR_PTR(-ENOMEM);
4051
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004052 clk = clk_register(dev, hw);
4053 if (!IS_ERR(clk)) {
4054 *clkp = clk;
4055 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07004056 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004057 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07004058 }
4059
4060 return clk;
4061}
4062EXPORT_SYMBOL_GPL(devm_clk_register);
4063
Stephen Boyd41438042016-02-05 17:02:52 -08004064/**
4065 * devm_clk_hw_register - resource managed clk_hw_register()
4066 * @dev: device that is registering this clock
4067 * @hw: link to hardware-specific clock data
4068 *
Masahiro Yamadac47265a2016-05-01 19:56:08 +09004069 * Managed clk_hw_register(). Clocks registered by this function are
Stephen Boyd41438042016-02-05 17:02:52 -08004070 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4071 * for more information.
4072 */
4073int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
4074{
4075 struct clk_hw **hwp;
4076 int ret;
4077
4078 hwp = devres_alloc(devm_clk_hw_release, sizeof(*hwp), GFP_KERNEL);
4079 if (!hwp)
4080 return -ENOMEM;
4081
4082 ret = clk_hw_register(dev, hw);
4083 if (!ret) {
4084 *hwp = hw;
4085 devres_add(dev, hwp);
4086 } else {
4087 devres_free(hwp);
4088 }
4089
4090 return ret;
4091}
4092EXPORT_SYMBOL_GPL(devm_clk_hw_register);
4093
Stephen Boyd46c87732012-09-24 13:38:04 -07004094static int devm_clk_match(struct device *dev, void *res, void *data)
4095{
4096 struct clk *c = res;
4097 if (WARN_ON(!c))
4098 return 0;
4099 return c == data;
4100}
4101
Stephen Boyd41438042016-02-05 17:02:52 -08004102static int devm_clk_hw_match(struct device *dev, void *res, void *data)
4103{
4104 struct clk_hw *hw = res;
4105
4106 if (WARN_ON(!hw))
4107 return 0;
4108 return hw == data;
4109}
4110
Stephen Boyd46c87732012-09-24 13:38:04 -07004111/**
4112 * devm_clk_unregister - resource managed clk_unregister()
4113 * @clk: clock to unregister
4114 *
4115 * Deallocate a clock allocated with devm_clk_register(). Normally
4116 * this function will not need to be called and the resource management
4117 * code will ensure that the resource is freed.
4118 */
4119void devm_clk_unregister(struct device *dev, struct clk *clk)
4120{
4121 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
4122}
4123EXPORT_SYMBOL_GPL(devm_clk_unregister);
4124
Stephen Boyd41438042016-02-05 17:02:52 -08004125/**
4126 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
4127 * @dev: device that is unregistering the hardware-specific clock data
4128 * @hw: link to hardware-specific clock data
4129 *
4130 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
4131 * this function will not need to be called and the resource management
4132 * code will ensure that the resource is freed.
4133 */
4134void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw)
4135{
4136 WARN_ON(devres_release(dev, devm_clk_hw_release, devm_clk_hw_match,
4137 hw));
4138}
4139EXPORT_SYMBOL_GPL(devm_clk_hw_unregister);
4140
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004141/*
4142 * clkdev helpers
4143 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004144
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004145void __clk_put(struct clk *clk)
4146{
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01004147 struct module *owner;
4148
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01004149 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004150 return;
4151
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004152 clk_prepare_lock();
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01004153
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01004154 /*
4155 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4156 * given user should be balanced with calls to clk_rate_exclusive_put()
4157 * and by that same consumer
4158 */
4159 if (WARN_ON(clk->exclusive_count)) {
4160 /* We voiced our concern, let's sanitize the situation */
4161 clk->core->protect_count -= (clk->exclusive_count - 1);
4162 clk_core_rate_unprotect(clk->core);
4163 clk->exclusive_count = 0;
4164 }
4165
Stephen Boyd50595f82015-02-06 11:42:44 -08004166 hlist_del(&clk->clks_node);
Tomeu Vizosoec02ace2015-02-06 15:13:01 +01004167 if (clk->min_rate > clk->core->req_rate ||
4168 clk->max_rate < clk->core->req_rate)
4169 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
4170
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01004171 owner = clk->core->owner;
4172 kref_put(&clk->core->ref, __clk_release);
4173
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004174 clk_prepare_unlock();
4175
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01004176 module_put(owner);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01004177
Stephen Boyd1df40462018-12-11 08:32:04 -08004178 free_clk(clk);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004179}
4180
Mike Turquetteb24764902012-03-15 23:11:19 -07004181/*** clk rate change notifiers ***/
4182
4183/**
4184 * clk_notifier_register - add a clk rate change notifier
4185 * @clk: struct clk * to watch
4186 * @nb: struct notifier_block * with callback info
4187 *
4188 * Request notification when clk's rate changes. This uses an SRCU
4189 * notifier because we want it to block and notifier unregistrations are
4190 * uncommon. The callbacks associated with the notifier must not
4191 * re-enter into the clk framework by calling any top-level clk APIs;
4192 * this will cause a nested prepare_lock mutex.
4193 *
Masahiro Yamada198bb592015-11-30 16:40:51 +09004194 * In all notification cases (pre, post and abort rate change) the original
4195 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4196 * and the new frequency is passed via struct clk_notifier_data.new_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07004197 *
Mike Turquetteb24764902012-03-15 23:11:19 -07004198 * clk_notifier_register() must be called from non-atomic context.
4199 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4200 * allocation failure; otherwise, passes along the return value of
4201 * srcu_notifier_chain_register().
4202 */
4203int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
4204{
4205 struct clk_notifier *cn;
4206 int ret = -ENOMEM;
4207
4208 if (!clk || !nb)
4209 return -EINVAL;
4210
Mike Turquetteeab89f62013-03-28 13:59:01 -07004211 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004212
4213 /* search the list of notifiers for this clk */
4214 list_for_each_entry(cn, &clk_notifier_list, node)
4215 if (cn->clk == clk)
4216 break;
4217
4218 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4219 if (cn->clk != clk) {
Markus Elfring1808a322017-04-20 09:30:52 +02004220 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07004221 if (!cn)
4222 goto out;
4223
4224 cn->clk = clk;
4225 srcu_init_notifier_head(&cn->notifier_head);
4226
4227 list_add(&cn->node, &clk_notifier_list);
4228 }
4229
4230 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
4231
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004232 clk->core->notifier_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07004233
4234out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07004235 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004236
4237 return ret;
4238}
4239EXPORT_SYMBOL_GPL(clk_notifier_register);
4240
4241/**
4242 * clk_notifier_unregister - remove a clk rate change notifier
4243 * @clk: struct clk *
4244 * @nb: struct notifier_block * with callback info
4245 *
4246 * Request no further notification for changes to 'clk' and frees memory
4247 * allocated in clk_notifier_register.
4248 *
4249 * Returns -EINVAL if called with null arguments; otherwise, passes
4250 * along the return value of srcu_notifier_chain_unregister().
4251 */
4252int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
4253{
4254 struct clk_notifier *cn = NULL;
4255 int ret = -EINVAL;
4256
4257 if (!clk || !nb)
4258 return -EINVAL;
4259
Mike Turquetteeab89f62013-03-28 13:59:01 -07004260 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004261
4262 list_for_each_entry(cn, &clk_notifier_list, node)
4263 if (cn->clk == clk)
4264 break;
4265
4266 if (cn->clk == clk) {
4267 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
4268
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004269 clk->core->notifier_count--;
Mike Turquetteb24764902012-03-15 23:11:19 -07004270
4271 /* XXX the notifier code should handle this better */
4272 if (!cn->notifier_head.head) {
4273 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08004274 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07004275 kfree(cn);
4276 }
4277
4278 } else {
4279 ret = -ENOENT;
4280 }
4281
Mike Turquetteeab89f62013-03-28 13:59:01 -07004282 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004283
4284 return ret;
4285}
4286EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05004287
4288#ifdef CONFIG_OF
Olof Johanssonc7712562019-12-18 09:56:21 -08004289static void clk_core_reparent_orphans(void)
4290{
4291 clk_prepare_lock();
4292 clk_core_reparent_orphans_nolock();
4293 clk_prepare_unlock();
4294}
4295
Grant Likely766e6a42012-04-09 14:50:06 -05004296/**
4297 * struct of_clk_provider - Clock provider registration structure
4298 * @link: Entry in global list of clock providers
4299 * @node: Pointer to device tree node of clock provider
4300 * @get: Get clock callback. Returns NULL or a struct clk for the
4301 * given clock specifier
4302 * @data: context pointer to be passed into @get callback
4303 */
4304struct of_clk_provider {
4305 struct list_head link;
4306
4307 struct device_node *node;
4308 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004309 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
Grant Likely766e6a42012-04-09 14:50:06 -05004310 void *data;
4311};
4312
Stephen Boyd30d5a942019-05-23 17:11:57 -07004313extern struct of_device_id __clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304314static const struct of_device_id __clk_of_table_sentinel
4315 __used __section(__clk_of_table_end);
4316
Grant Likely766e6a42012-04-09 14:50:06 -05004317static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004318static DEFINE_MUTEX(of_clk_mutex);
4319
Grant Likely766e6a42012-04-09 14:50:06 -05004320struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
4321 void *data)
4322{
4323 return data;
4324}
4325EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
4326
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004327struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
4328{
4329 return data;
4330}
4331EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
4332
Shawn Guo494bfec2012-08-22 21:36:27 +08004333struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
4334{
4335 struct clk_onecell_data *clk_data = data;
4336 unsigned int idx = clkspec->args[0];
4337
4338 if (idx >= clk_data->clk_num) {
Geert Uytterhoeven7e963532015-10-16 17:12:32 +02004339 pr_err("%s: invalid clock index %u\n", __func__, idx);
Shawn Guo494bfec2012-08-22 21:36:27 +08004340 return ERR_PTR(-EINVAL);
4341 }
4342
4343 return clk_data->clks[idx];
4344}
4345EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
4346
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004347struct clk_hw *
4348of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
4349{
4350 struct clk_hw_onecell_data *hw_data = data;
4351 unsigned int idx = clkspec->args[0];
4352
4353 if (idx >= hw_data->num) {
4354 pr_err("%s: invalid index %u\n", __func__, idx);
4355 return ERR_PTR(-EINVAL);
4356 }
4357
4358 return hw_data->hws[idx];
4359}
4360EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
4361
Grant Likely766e6a42012-04-09 14:50:06 -05004362/**
4363 * of_clk_add_provider() - Register a clock provider for a node
4364 * @np: Device node pointer associated with clock provider
4365 * @clk_src_get: callback for decoding clock
4366 * @data: context pointer for @clk_src_get callback.
Stephen Boyd9fe9b7a2018-12-11 10:49:40 -08004367 *
4368 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
Grant Likely766e6a42012-04-09 14:50:06 -05004369 */
4370int of_clk_add_provider(struct device_node *np,
4371 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
4372 void *data),
4373 void *data)
4374{
4375 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004376 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05004377
Markus Elfring1808a322017-04-20 09:30:52 +02004378 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
Grant Likely766e6a42012-04-09 14:50:06 -05004379 if (!cp)
4380 return -ENOMEM;
4381
4382 cp->node = of_node_get(np);
4383 cp->data = data;
4384 cp->get = clk_src_get;
4385
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004386 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004387 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004388 mutex_unlock(&of_clk_mutex);
Rob Herring16673932017-07-18 16:42:52 -05004389 pr_debug("Added clock from %pOF\n", np);
Grant Likely766e6a42012-04-09 14:50:06 -05004390
Jerome Brunet66d95062019-12-03 09:08:05 +01004391 clk_core_reparent_orphans();
4392
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004393 ret = of_clk_set_defaults(np, true);
4394 if (ret < 0)
4395 of_clk_del_provider(np);
4396
4397 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05004398}
4399EXPORT_SYMBOL_GPL(of_clk_add_provider);
4400
4401/**
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004402 * of_clk_add_hw_provider() - Register a clock provider for a node
4403 * @np: Device node pointer associated with clock provider
4404 * @get: callback for decoding clk_hw
4405 * @data: context pointer for @get callback.
4406 */
4407int of_clk_add_hw_provider(struct device_node *np,
4408 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4409 void *data),
4410 void *data)
4411{
4412 struct of_clk_provider *cp;
4413 int ret;
4414
4415 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4416 if (!cp)
4417 return -ENOMEM;
4418
4419 cp->node = of_node_get(np);
4420 cp->data = data;
4421 cp->get_hw = get;
4422
4423 mutex_lock(&of_clk_mutex);
4424 list_add(&cp->link, &of_clk_providers);
4425 mutex_unlock(&of_clk_mutex);
Rob Herring16673932017-07-18 16:42:52 -05004426 pr_debug("Added clk_hw provider from %pOF\n", np);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004427
Jerome Brunet66d95062019-12-03 09:08:05 +01004428 clk_core_reparent_orphans();
4429
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004430 ret = of_clk_set_defaults(np, true);
4431 if (ret < 0)
4432 of_clk_del_provider(np);
4433
4434 return ret;
4435}
4436EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
4437
Stephen Boydaa795c42017-09-01 16:16:40 -07004438static void devm_of_clk_release_provider(struct device *dev, void *res)
4439{
4440 of_clk_del_provider(*(struct device_node **)res);
4441}
4442
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004443/*
4444 * We allow a child device to use its parent device as the clock provider node
4445 * for cases like MFD sub-devices where the child device driver wants to use
4446 * devm_*() APIs but not list the device in DT as a sub-node.
4447 */
4448static struct device_node *get_clk_provider_node(struct device *dev)
4449{
4450 struct device_node *np, *parent_np;
4451
4452 np = dev->of_node;
4453 parent_np = dev->parent ? dev->parent->of_node : NULL;
4454
4455 if (!of_find_property(np, "#clock-cells", NULL))
4456 if (of_find_property(parent_np, "#clock-cells", NULL))
4457 np = parent_np;
4458
4459 return np;
4460}
4461
Matti Vaittinene45838b2018-12-04 13:33:48 +02004462/**
4463 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
4464 * @dev: Device acting as the clock provider (used for DT node and lifetime)
4465 * @get: callback for decoding clk_hw
4466 * @data: context pointer for @get callback
4467 *
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004468 * Registers clock provider for given device's node. If the device has no DT
4469 * node or if the device node lacks of clock provider information (#clock-cells)
4470 * then the parent device's node is scanned for this information. If parent node
4471 * has the #clock-cells then it is used in registration. Provider is
4472 * automatically released at device exit.
Matti Vaittinene45838b2018-12-04 13:33:48 +02004473 *
4474 * Return: 0 on success or an errno on failure.
4475 */
Stephen Boydaa795c42017-09-01 16:16:40 -07004476int devm_of_clk_add_hw_provider(struct device *dev,
4477 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4478 void *data),
4479 void *data)
4480{
4481 struct device_node **ptr, *np;
4482 int ret;
4483
4484 ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr),
4485 GFP_KERNEL);
4486 if (!ptr)
4487 return -ENOMEM;
4488
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004489 np = get_clk_provider_node(dev);
Stephen Boydaa795c42017-09-01 16:16:40 -07004490 ret = of_clk_add_hw_provider(np, get, data);
4491 if (!ret) {
4492 *ptr = np;
4493 devres_add(dev, ptr);
4494 } else {
4495 devres_free(ptr);
4496 }
4497
4498 return ret;
4499}
4500EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider);
4501
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004502/**
Grant Likely766e6a42012-04-09 14:50:06 -05004503 * of_clk_del_provider() - Remove a previously registered clock provider
4504 * @np: Device node pointer associated with clock provider
4505 */
4506void of_clk_del_provider(struct device_node *np)
4507{
4508 struct of_clk_provider *cp;
4509
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004510 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004511 list_for_each_entry(cp, &of_clk_providers, link) {
4512 if (cp->node == np) {
4513 list_del(&cp->link);
4514 of_node_put(cp->node);
4515 kfree(cp);
4516 break;
4517 }
4518 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004519 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004520}
4521EXPORT_SYMBOL_GPL(of_clk_del_provider);
4522
Stephen Boydaa795c42017-09-01 16:16:40 -07004523static int devm_clk_provider_match(struct device *dev, void *res, void *data)
4524{
4525 struct device_node **np = res;
4526
4527 if (WARN_ON(!np || !*np))
4528 return 0;
4529
4530 return *np == data;
4531}
4532
Matti Vaittinene45838b2018-12-04 13:33:48 +02004533/**
4534 * devm_of_clk_del_provider() - Remove clock provider registered using devm
4535 * @dev: Device to whose lifetime the clock provider was bound
4536 */
Stephen Boydaa795c42017-09-01 16:16:40 -07004537void devm_of_clk_del_provider(struct device *dev)
4538{
4539 int ret;
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004540 struct device_node *np = get_clk_provider_node(dev);
Stephen Boydaa795c42017-09-01 16:16:40 -07004541
4542 ret = devres_release(dev, devm_of_clk_release_provider,
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004543 devm_clk_provider_match, np);
Stephen Boydaa795c42017-09-01 16:16:40 -07004544
4545 WARN_ON(ret);
4546}
4547EXPORT_SYMBOL(devm_of_clk_del_provider);
4548
Stephen Boyd226fd702019-08-26 14:20:42 -07004549/**
4550 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
4551 * @np: device node to parse clock specifier from
4552 * @index: index of phandle to parse clock out of. If index < 0, @name is used
4553 * @name: clock name to find and parse. If name is NULL, the index is used
4554 * @out_args: Result of parsing the clock specifier
4555 *
4556 * Parses a device node's "clocks" and "clock-names" properties to find the
4557 * phandle and cells for the index or name that is desired. The resulting clock
4558 * specifier is placed into @out_args, or an errno is returned when there's a
4559 * parsing error. The @index argument is ignored if @name is non-NULL.
4560 *
4561 * Example:
4562 *
4563 * phandle1: clock-controller@1 {
4564 * #clock-cells = <2>;
4565 * }
4566 *
4567 * phandle2: clock-controller@2 {
4568 * #clock-cells = <1>;
4569 * }
4570 *
4571 * clock-consumer@3 {
4572 * clocks = <&phandle1 1 2 &phandle2 3>;
4573 * clock-names = "name1", "name2";
4574 * }
4575 *
4576 * To get a device_node for `clock-controller@2' node you may call this
4577 * function a few different ways:
4578 *
4579 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
4580 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
4581 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
4582 *
4583 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
4584 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
4585 * the "clock-names" property of @np.
Stephen Boyd5dc7e842019-03-08 10:35:01 -08004586 */
Stephen Boydcf13f282018-12-19 15:09:14 -08004587static int of_parse_clkspec(const struct device_node *np, int index,
4588 const char *name, struct of_phandle_args *out_args)
Stephen Boyd44722872018-12-19 10:59:55 -08004589{
4590 int ret = -ENOENT;
4591
4592 /* Walk up the tree of devices looking for a clock property that matches */
4593 while (np) {
4594 /*
4595 * For named clocks, first look up the name in the
4596 * "clock-names" property. If it cannot be found, then index
4597 * will be an error code and of_parse_phandle_with_args() will
4598 * return -EINVAL.
4599 */
4600 if (name)
4601 index = of_property_match_string(np, "clock-names", name);
4602 ret = of_parse_phandle_with_args(np, "clocks", "#clock-cells",
4603 index, out_args);
4604 if (!ret)
4605 break;
4606 if (name && index >= 0)
4607 break;
4608
4609 /*
4610 * No matching clock found on this node. If the parent node
4611 * has a "clock-ranges" property, then we can try one of its
4612 * clocks.
4613 */
4614 np = np->parent;
4615 if (np && !of_get_property(np, "clock-ranges", NULL))
4616 break;
4617 index = 0;
4618 }
4619
4620 return ret;
4621}
4622
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004623static struct clk_hw *
4624__of_clk_get_hw_from_provider(struct of_clk_provider *provider,
4625 struct of_phandle_args *clkspec)
4626{
4627 struct clk *clk;
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004628
Stephen Boyd74002fc2016-08-25 13:35:36 -07004629 if (provider->get_hw)
4630 return provider->get_hw(clkspec, provider->data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004631
Stephen Boyd74002fc2016-08-25 13:35:36 -07004632 clk = provider->get(clkspec, provider->data);
4633 if (IS_ERR(clk))
4634 return ERR_CAST(clk);
4635 return __clk_get_hw(clk);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004636}
4637
Stephen Boydcf13f282018-12-19 15:09:14 -08004638static struct clk_hw *
4639of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
Grant Likely766e6a42012-04-09 14:50:06 -05004640{
4641 struct of_clk_provider *provider;
Stephen Boyd1df40462018-12-11 08:32:04 -08004642 struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER);
Grant Likely766e6a42012-04-09 14:50:06 -05004643
Stephen Boyd306c3422015-02-05 15:39:11 -08004644 if (!clkspec)
4645 return ERR_PTR(-EINVAL);
4646
Stephen Boyd306c3422015-02-05 15:39:11 -08004647 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004648 list_for_each_entry(provider, &of_clk_providers, link) {
Stephen Boydf155d152016-08-15 14:32:23 -07004649 if (provider->node == clkspec->np) {
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004650 hw = __of_clk_get_hw_from_provider(provider, clkspec);
Stephen Boyd1df40462018-12-11 08:32:04 -08004651 if (!IS_ERR(hw))
4652 break;
Stephen Boyd73e0e492015-02-06 11:42:43 -08004653 }
Grant Likely766e6a42012-04-09 14:50:06 -05004654 }
Stephen Boyd306c3422015-02-05 15:39:11 -08004655 mutex_unlock(&of_clk_mutex);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004656
Stephen Boyd44722872018-12-19 10:59:55 -08004657 return hw;
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004658}
4659
Stephen Boyd306c3422015-02-05 15:39:11 -08004660/**
4661 * of_clk_get_from_provider() - Lookup a clock from a clock provider
4662 * @clkspec: pointer to a clock specifier data structure
4663 *
4664 * This function looks up a struct clk from the registered list of clock
4665 * providers, an input is a clock specifier data structure as returned
4666 * from the of_parse_phandle_with_args() function call.
4667 */
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004668struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
4669{
Stephen Boyd44722872018-12-19 10:59:55 -08004670 struct clk_hw *hw = of_clk_get_hw_from_clkspec(clkspec);
4671
Stephen Boydefa85042018-12-11 08:34:16 -08004672 return clk_hw_create_clk(NULL, hw, NULL, __func__);
Grant Likely766e6a42012-04-09 14:50:06 -05004673}
Andrew F. Davisfb4dd222016-02-12 12:50:16 -06004674EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
Grant Likely766e6a42012-04-09 14:50:06 -05004675
Stephen Boydcf13f282018-12-19 15:09:14 -08004676struct clk_hw *of_clk_get_hw(struct device_node *np, int index,
4677 const char *con_id)
4678{
4679 int ret;
4680 struct clk_hw *hw;
4681 struct of_phandle_args clkspec;
4682
4683 ret = of_parse_clkspec(np, index, con_id, &clkspec);
4684 if (ret)
4685 return ERR_PTR(ret);
4686
4687 hw = of_clk_get_hw_from_clkspec(&clkspec);
4688 of_node_put(clkspec.np);
4689
4690 return hw;
4691}
4692
4693static struct clk *__of_clk_get(struct device_node *np,
4694 int index, const char *dev_id,
4695 const char *con_id)
4696{
4697 struct clk_hw *hw = of_clk_get_hw(np, index, con_id);
4698
4699 return clk_hw_create_clk(NULL, hw, dev_id, con_id);
4700}
4701
4702struct clk *of_clk_get(struct device_node *np, int index)
4703{
4704 return __of_clk_get(np, index, np->full_name, NULL);
4705}
4706EXPORT_SYMBOL(of_clk_get);
4707
4708/**
4709 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
4710 * @np: pointer to clock consumer node
4711 * @name: name of consumer's clock input, or NULL for the first clock reference
4712 *
4713 * This function parses the clocks and clock-names properties,
4714 * and uses them to look up the struct clk from the registered list of clock
4715 * providers.
4716 */
4717struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
4718{
4719 if (!np)
4720 return ERR_PTR(-ENOENT);
4721
Kuninori Morimoto65cf20a2019-03-06 16:18:28 +09004722 return __of_clk_get(np, 0, np->full_name, name);
Stephen Boydcf13f282018-12-19 15:09:14 -08004723}
4724EXPORT_SYMBOL(of_clk_get_by_name);
4725
Stephen Boyd929e7f32016-02-19 15:52:32 -08004726/**
4727 * of_clk_get_parent_count() - Count the number of clocks a device node has
4728 * @np: device node to count
4729 *
4730 * Returns: The number of clocks that are possible parents of this node
4731 */
4732unsigned int of_clk_get_parent_count(struct device_node *np)
Mike Turquettef6102742013-10-07 23:12:13 -07004733{
Stephen Boyd929e7f32016-02-19 15:52:32 -08004734 int count;
4735
4736 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
4737 if (count < 0)
4738 return 0;
4739
4740 return count;
Mike Turquettef6102742013-10-07 23:12:13 -07004741}
4742EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
4743
Grant Likely766e6a42012-04-09 14:50:06 -05004744const char *of_clk_get_parent_name(struct device_node *np, int index)
4745{
4746 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004747 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05004748 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004749 const __be32 *vp;
4750 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05004751 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004752 int count;
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004753 struct clk *clk;
Grant Likely766e6a42012-04-09 14:50:06 -05004754
Grant Likely766e6a42012-04-09 14:50:06 -05004755 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
4756 &clkspec);
4757 if (rc)
4758 return NULL;
4759
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004760 index = clkspec.args_count ? clkspec.args[0] : 0;
4761 count = 0;
4762
4763 /* if there is an indices property, use it to transfer the index
4764 * specified into an array offset for the clock-output-names property.
4765 */
4766 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
4767 if (index == pv) {
4768 index = count;
4769 break;
4770 }
4771 count++;
4772 }
Masahiro Yamada8da411c2015-12-03 11:20:35 +09004773 /* We went off the end of 'clock-indices' without finding it */
4774 if (prop && !vp)
4775 return NULL;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004776
Grant Likely766e6a42012-04-09 14:50:06 -05004777 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004778 index,
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004779 &clk_name) < 0) {
4780 /*
4781 * Best effort to get the name if the clock has been
4782 * registered with the framework. If the clock isn't
4783 * registered, we return the node name as the name of
4784 * the clock as long as #clock-cells = 0.
4785 */
4786 clk = of_clk_get_from_provider(&clkspec);
4787 if (IS_ERR(clk)) {
4788 if (clkspec.args_count == 0)
4789 clk_name = clkspec.np->name;
4790 else
4791 clk_name = NULL;
4792 } else {
4793 clk_name = __clk_get_name(clk);
4794 clk_put(clk);
4795 }
4796 }
4797
Grant Likely766e6a42012-04-09 14:50:06 -05004798
4799 of_node_put(clkspec.np);
4800 return clk_name;
4801}
4802EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
4803
Dinh Nguyen2e61dfb2015-06-05 11:26:13 -05004804/**
4805 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
4806 * number of parents
4807 * @np: Device node pointer associated with clock provider
4808 * @parents: pointer to char array that hold the parents' names
4809 * @size: size of the @parents array
4810 *
4811 * Return: number of parents for the clock node.
4812 */
4813int of_clk_parent_fill(struct device_node *np, const char **parents,
4814 unsigned int size)
4815{
4816 unsigned int i = 0;
4817
4818 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
4819 i++;
4820
4821 return i;
4822}
4823EXPORT_SYMBOL_GPL(of_clk_parent_fill);
4824
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004825struct clock_provider {
Geert Uytterhoevena59704332018-04-10 15:06:05 +02004826 void (*clk_init_cb)(struct device_node *);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004827 struct device_node *np;
4828 struct list_head node;
4829};
4830
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004831/*
4832 * This function looks for a parent clock. If there is one, then it
4833 * checks that the provider for this parent clock was initialized, in
4834 * this case the parent clock will be ready.
4835 */
4836static int parent_ready(struct device_node *np)
4837{
4838 int i = 0;
4839
4840 while (true) {
4841 struct clk *clk = of_clk_get(np, i);
4842
4843 /* this parent is ready we can check the next one */
4844 if (!IS_ERR(clk)) {
4845 clk_put(clk);
4846 i++;
4847 continue;
4848 }
4849
4850 /* at least one parent is not ready, we exit now */
4851 if (PTR_ERR(clk) == -EPROBE_DEFER)
4852 return 0;
4853
4854 /*
4855 * Here we make assumption that the device tree is
4856 * written correctly. So an error means that there is
4857 * no more parent. As we didn't exit yet, then the
4858 * previous parent are ready. If there is no clock
4859 * parent, no need to wait for them, then we can
4860 * consider their absence as being ready
4861 */
4862 return 1;
4863 }
4864}
4865
Grant Likely766e6a42012-04-09 14:50:06 -05004866/**
Lee Jonesd56f8992016-02-11 13:19:11 -08004867 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
4868 * @np: Device node pointer associated with clock provider
4869 * @index: clock index
Geert Uytterhoevenf7ae7502018-01-03 12:06:14 +01004870 * @flags: pointer to top-level framework flags
Lee Jonesd56f8992016-02-11 13:19:11 -08004871 *
4872 * Detects if the clock-critical property exists and, if so, sets the
4873 * corresponding CLK_IS_CRITICAL flag.
4874 *
4875 * Do not use this function. It exists only for legacy Device Tree
4876 * bindings, such as the one-clock-per-node style that are outdated.
4877 * Those bindings typically put all clock data into .dts and the Linux
4878 * driver has no clock data, thus making it impossible to set this flag
4879 * correctly from the driver. Only those drivers may call
4880 * of_clk_detect_critical from their setup functions.
4881 *
4882 * Return: error code or zero on success
4883 */
4884int of_clk_detect_critical(struct device_node *np,
4885 int index, unsigned long *flags)
4886{
4887 struct property *prop;
4888 const __be32 *cur;
4889 uint32_t idx;
4890
4891 if (!np || !flags)
4892 return -EINVAL;
4893
4894 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
4895 if (index == idx)
4896 *flags |= CLK_IS_CRITICAL;
4897
4898 return 0;
4899}
4900
4901/**
Grant Likely766e6a42012-04-09 14:50:06 -05004902 * of_clk_init() - Scan and init clock providers from the DT
4903 * @matches: array of compatible values and init functions for providers.
4904 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004905 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb42014-03-27 12:08:36 +01004906 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004907 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05004908 */
4909void __init of_clk_init(const struct of_device_id *matches)
4910{
Alex Elder7f7ed582013-08-22 11:31:31 -05004911 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05004912 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004913 struct clock_provider *clk_provider, *next;
4914 bool is_init_done;
4915 bool force = false;
Stephen Boyd2573a022015-07-06 16:50:00 -07004916 LIST_HEAD(clk_provider_list);
Grant Likely766e6a42012-04-09 14:50:06 -05004917
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304918 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03004919 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304920
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004921 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05004922 for_each_matching_node_and_match(np, matches, &match) {
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004923 struct clock_provider *parent;
4924
Geert Uytterhoeven3e5dd6f2016-02-26 16:54:31 +01004925 if (!of_device_is_available(np))
4926 continue;
4927
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004928 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
4929 if (!parent) {
4930 list_for_each_entry_safe(clk_provider, next,
4931 &clk_provider_list, node) {
4932 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004933 of_node_put(clk_provider->np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004934 kfree(clk_provider);
4935 }
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004936 of_node_put(np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004937 return;
4938 }
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004939
4940 parent->clk_init_cb = match->data;
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004941 parent->np = of_node_get(np);
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01004942 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004943 }
4944
4945 while (!list_empty(&clk_provider_list)) {
4946 is_init_done = false;
4947 list_for_each_entry_safe(clk_provider, next,
4948 &clk_provider_list, node) {
4949 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004950
Ricardo Ribalda Delgado989eafd2016-07-05 18:23:32 +02004951 /* Don't populate platform devices */
4952 of_node_set_flag(clk_provider->np,
4953 OF_POPULATED);
4954
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004955 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004956 of_clk_set_defaults(clk_provider->np, true);
4957
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004958 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004959 of_node_put(clk_provider->np);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004960 kfree(clk_provider);
4961 is_init_done = true;
4962 }
4963 }
4964
4965 /*
Sylwester Nawrockie5ca8fb42014-03-27 12:08:36 +01004966 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004967 * remaining providers during the last loop, so now we
4968 * initialize all the remaining ones unconditionally
4969 * in case the clock parent was not mandatory
4970 */
4971 if (!is_init_done)
4972 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05004973 }
4974}
4975#endif