blob: 3f588ed06ce31abed8f91436603e07d9b7068455 [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);
Rafael J. Wysocki64c7d7e2020-05-21 19:08:09 +0200117 if (ret < 0) {
118 pm_runtime_put_noidle(core->dev);
119 return ret;
120 }
121 return 0;
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200122}
123
124static void clk_pm_runtime_put(struct clk_core *core)
125{
Miquel Raynal24478832018-12-04 20:24:37 +0100126 if (!core->rpm_enabled)
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200127 return;
128
129 pm_runtime_put_sync(core->dev);
130}
131
Mike Turquetteeab89f62013-03-28 13:59:01 -0700132/*** locking ***/
133static void clk_prepare_lock(void)
134{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700135 if (!mutex_trylock(&prepare_lock)) {
136 if (prepare_owner == current) {
137 prepare_refcnt++;
138 return;
139 }
140 mutex_lock(&prepare_lock);
141 }
142 WARN_ON_ONCE(prepare_owner != NULL);
143 WARN_ON_ONCE(prepare_refcnt != 0);
144 prepare_owner = current;
145 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700146}
147
148static void clk_prepare_unlock(void)
149{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700150 WARN_ON_ONCE(prepare_owner != current);
151 WARN_ON_ONCE(prepare_refcnt == 0);
152
153 if (--prepare_refcnt)
154 return;
155 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700156 mutex_unlock(&prepare_lock);
157}
158
159static unsigned long clk_enable_lock(void)
Stephen Boyda57aa182015-07-24 12:24:48 -0700160 __acquires(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700161{
162 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -0700163
David Lechnera12aa8a2018-01-04 19:46:08 -0600164 /*
165 * On UP systems, spin_trylock_irqsave() always returns true, even if
166 * we already hold the lock. So, in that case, we rely only on
167 * reference counting.
168 */
169 if (!IS_ENABLED(CONFIG_SMP) ||
170 !spin_trylock_irqsave(&enable_lock, flags)) {
Mike Turquette533ddeb2013-03-28 13:59:02 -0700171 if (enable_owner == current) {
172 enable_refcnt++;
Stephen Boyda57aa182015-07-24 12:24:48 -0700173 __acquire(enable_lock);
David Lechnera12aa8a2018-01-04 19:46:08 -0600174 if (!IS_ENABLED(CONFIG_SMP))
175 local_save_flags(flags);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700176 return flags;
177 }
178 spin_lock_irqsave(&enable_lock, flags);
179 }
180 WARN_ON_ONCE(enable_owner != NULL);
181 WARN_ON_ONCE(enable_refcnt != 0);
182 enable_owner = current;
183 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700184 return flags;
185}
186
187static void clk_enable_unlock(unsigned long flags)
Stephen Boyda57aa182015-07-24 12:24:48 -0700188 __releases(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700189{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700190 WARN_ON_ONCE(enable_owner != current);
191 WARN_ON_ONCE(enable_refcnt == 0);
192
Stephen Boyda57aa182015-07-24 12:24:48 -0700193 if (--enable_refcnt) {
194 __release(enable_lock);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700195 return;
Stephen Boyda57aa182015-07-24 12:24:48 -0700196 }
Mike Turquette533ddeb2013-03-28 13:59:02 -0700197 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700198 spin_unlock_irqrestore(&enable_lock, flags);
199}
200
Jerome Brunete55a8392017-12-01 22:51:56 +0100201static bool clk_core_rate_is_protected(struct clk_core *core)
202{
203 return core->protect_count;
204}
205
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700206static bool clk_core_is_prepared(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530207{
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200208 bool ret = false;
209
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700210 /*
211 * .is_prepared is optional for clocks that can prepare
212 * fall back to software usage counter if it is missing
213 */
214 if (!core->ops->is_prepared)
215 return core->prepare_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530216
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200217 if (!clk_pm_runtime_get(core)) {
218 ret = core->ops->is_prepared(core->hw);
219 clk_pm_runtime_put(core);
220 }
221
222 return ret;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530223}
224
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700225static bool clk_core_is_enabled(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530226{
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200227 bool ret = false;
228
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700229 /*
230 * .is_enabled is only mandatory for clocks that gate
231 * fall back to software usage counter if .is_enabled is missing
232 */
233 if (!core->ops->is_enabled)
234 return core->enable_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530235
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200236 /*
237 * Check if clock controller's device is runtime active before
238 * calling .is_enabled callback. If not, assume that clock is
239 * disabled, because we might be called from atomic context, from
240 * which pm_runtime_get() is not allowed.
241 * This function is called mainly from clk_disable_unused_subtree,
242 * which ensures proper runtime pm activation of controller before
243 * taking enable spinlock, but the below check is needed if one tries
244 * to call it from other places.
245 */
Miquel Raynal24478832018-12-04 20:24:37 +0100246 if (core->rpm_enabled) {
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200247 pm_runtime_get_noresume(core->dev);
248 if (!pm_runtime_active(core->dev)) {
249 ret = false;
250 goto done;
251 }
252 }
253
254 ret = core->ops->is_enabled(core->hw);
255done:
Miquel Raynal24478832018-12-04 20:24:37 +0100256 if (core->rpm_enabled)
Dong Aisheng756efe12017-12-22 17:46:04 +0800257 pm_runtime_put(core->dev);
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200258
259 return ret;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530260}
261
Mike Turquetteb24764902012-03-15 23:11:19 -0700262/*** helper functions ***/
263
Geert Uytterhoevenb76281c2015-10-16 14:35:21 +0200264const char *__clk_get_name(const struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700265{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100266 return !clk ? NULL : clk->core->name;
Mike Turquetteb24764902012-03-15 23:11:19 -0700267}
Niels de Vos48950842012-12-13 13:12:25 +0100268EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700269
Stephen Boyde7df6f62015-08-12 13:04:56 -0700270const char *clk_hw_get_name(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700271{
272 return hw->core->name;
273}
274EXPORT_SYMBOL_GPL(clk_hw_get_name);
275
Russ Dill65800b22012-11-26 11:20:09 -0800276struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700277{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100278 return !clk ? NULL : clk->core->hw;
Mike Turquetteb24764902012-03-15 23:11:19 -0700279}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800280EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700281
Stephen Boyde7df6f62015-08-12 13:04:56 -0700282unsigned int clk_hw_get_num_parents(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700283{
284 return hw->core->num_parents;
285}
286EXPORT_SYMBOL_GPL(clk_hw_get_num_parents);
287
Stephen Boyde7df6f62015-08-12 13:04:56 -0700288struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700289{
290 return hw->core->parent ? hw->core->parent->hw : NULL;
291}
292EXPORT_SYMBOL_GPL(clk_hw_get_parent);
293
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700294static struct clk_core *__clk_lookup_subtree(const char *name,
295 struct clk_core *core)
296{
297 struct clk_core *child;
298 struct clk_core *ret;
299
300 if (!strcmp(core->name, name))
301 return core;
302
303 hlist_for_each_entry(child, &core->children, child_node) {
304 ret = __clk_lookup_subtree(name, child);
305 if (ret)
306 return ret;
307 }
308
309 return NULL;
310}
311
312static struct clk_core *clk_core_lookup(const char *name)
313{
314 struct clk_core *root_clk;
315 struct clk_core *ret;
316
317 if (!name)
318 return NULL;
319
320 /* search the 'proper' clk tree first */
321 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
322 ret = __clk_lookup_subtree(name, root_clk);
323 if (ret)
324 return ret;
325 }
326
327 /* if not found, then search the orphan tree */
328 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
329 ret = __clk_lookup_subtree(name, root_clk);
330 if (ret)
331 return ret;
332 }
333
334 return NULL;
335}
336
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700337#ifdef CONFIG_OF
338static int of_parse_clkspec(const struct device_node *np, int index,
339 const char *name, struct of_phandle_args *out_args);
340static struct clk_hw *
341of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec);
342#else
343static inline int of_parse_clkspec(const struct device_node *np, int index,
344 const char *name,
345 struct of_phandle_args *out_args)
346{
347 return -ENOENT;
348}
349static inline struct clk_hw *
350of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
351{
352 return ERR_PTR(-ENOENT);
353}
354#endif
355
Stephen Boydfc0c2092019-04-12 11:31:47 -0700356/**
Stephen Boyddde4eff2019-04-12 11:31:48 -0700357 * clk_core_get - Find the clk_core parent of a clk
Stephen Boydfc0c2092019-04-12 11:31:47 -0700358 * @core: clk to find parent of
Stephen Boyd1a079562019-04-30 10:22:30 -0700359 * @p_index: parent index to search for
Stephen Boydfc0c2092019-04-12 11:31:47 -0700360 *
361 * This is the preferred method for clk providers to find the parent of a
362 * clk when that parent is external to the clk controller. The parent_names
363 * array is indexed and treated as a local name matching a string in the device
Stephen Boyddde4eff2019-04-12 11:31:48 -0700364 * node's 'clock-names' property or as the 'con_id' matching the device's
365 * dev_name() in a clk_lookup. This allows clk providers to use their own
Stephen Boydfc0c2092019-04-12 11:31:47 -0700366 * namespace instead of looking for a globally unique parent string.
367 *
368 * For example the following DT snippet would allow a clock registered by the
369 * clock-controller@c001 that has a clk_init_data::parent_data array
370 * with 'xtal' in the 'name' member to find the clock provided by the
371 * clock-controller@f00abcd without needing to get the globally unique name of
372 * the xtal clk.
373 *
374 * parent: clock-controller@f00abcd {
375 * reg = <0xf00abcd 0xabcd>;
376 * #clock-cells = <0>;
377 * };
378 *
379 * clock-controller@c001 {
380 * reg = <0xc001 0xf00d>;
381 * clocks = <&parent>;
382 * clock-names = "xtal";
383 * #clock-cells = <1>;
384 * };
385 *
386 * Returns: -ENOENT when the provider can't be found or the clk doesn't
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700387 * exist in the provider or the name can't be found in the DT node or
388 * in a clkdev lookup. NULL when the provider knows about the clk but it
389 * isn't provided on this system.
Stephen Boydfc0c2092019-04-12 11:31:47 -0700390 * A valid clk_core pointer when the clk can be found in the provider.
391 */
Stephen Boyd1a079562019-04-30 10:22:30 -0700392static struct clk_core *clk_core_get(struct clk_core *core, u8 p_index)
Stephen Boydfc0c2092019-04-12 11:31:47 -0700393{
Stephen Boyd1a079562019-04-30 10:22:30 -0700394 const char *name = core->parents[p_index].fw_name;
395 int index = core->parents[p_index].index;
Stephen Boyddde4eff2019-04-12 11:31:48 -0700396 struct clk_hw *hw = ERR_PTR(-ENOENT);
397 struct device *dev = core->dev;
398 const char *dev_id = dev ? dev_name(dev) : NULL;
Stephen Boydfc0c2092019-04-12 11:31:47 -0700399 struct device_node *np = core->of_node;
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700400 struct of_phandle_args clkspec;
Stephen Boydfc0c2092019-04-12 11:31:47 -0700401
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700402 if (np && (name || index >= 0) &&
403 !of_parse_clkspec(np, index, name, &clkspec)) {
404 hw = of_clk_get_hw_from_clkspec(&clkspec);
405 of_node_put(clkspec.np);
406 } else if (name) {
407 /*
408 * If the DT search above couldn't find the provider fallback to
409 * looking up via clkdev based clk_lookups.
410 */
Stephen Boyddde4eff2019-04-12 11:31:48 -0700411 hw = clk_find_hw(dev_id, name);
Stephen Boyd4f8c6ab2019-08-13 14:41:47 -0700412 }
Stephen Boyddde4eff2019-04-12 11:31:48 -0700413
414 if (IS_ERR(hw))
Stephen Boydfc0c2092019-04-12 11:31:47 -0700415 return ERR_CAST(hw);
416
417 return hw->core;
418}
419
420static void clk_core_fill_parent_index(struct clk_core *core, u8 index)
421{
422 struct clk_parent_map *entry = &core->parents[index];
423 struct clk_core *parent = ERR_PTR(-ENOENT);
424
425 if (entry->hw) {
426 parent = entry->hw->core;
427 /*
428 * We have a direct reference but it isn't registered yet?
429 * Orphan it and let clk_reparent() update the orphan status
430 * when the parent is registered.
431 */
432 if (!parent)
433 parent = ERR_PTR(-EPROBE_DEFER);
434 } else {
Stephen Boyd1a079562019-04-30 10:22:30 -0700435 parent = clk_core_get(core, index);
Masahiro Yamada45586c72020-02-03 17:37:45 -0800436 if (PTR_ERR(parent) == -ENOENT && entry->name)
Stephen Boydfc0c2092019-04-12 11:31:47 -0700437 parent = clk_core_lookup(entry->name);
438 }
439
440 /* Only cache it if it's not an error */
441 if (!IS_ERR(parent))
442 entry->core = parent;
443}
444
Stephen Boydd6968fc2015-04-30 13:54:13 -0700445static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100446 u8 index)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100447{
Stephen Boydfc0c2092019-04-12 11:31:47 -0700448 if (!core || index >= core->num_parents || !core->parents)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100449 return NULL;
Masahiro Yamada88cfbef2015-12-28 19:23:01 +0900450
Stephen Boydfc0c2092019-04-12 11:31:47 -0700451 if (!core->parents[index].core)
452 clk_core_fill_parent_index(core, index);
Masahiro Yamada88cfbef2015-12-28 19:23:01 +0900453
Stephen Boydfc0c2092019-04-12 11:31:47 -0700454 return core->parents[index].core;
James Hogan7ef3dcc2013-07-29 12:24:58 +0100455}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100456
Stephen Boyde7df6f62015-08-12 13:04:56 -0700457struct clk_hw *
458clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700459{
460 struct clk_core *parent;
461
462 parent = clk_core_get_parent_by_index(hw->core, index);
463
464 return !parent ? NULL : parent->hw;
465}
466EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
467
Russ Dill65800b22012-11-26 11:20:09 -0800468unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700469{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100470 return !clk ? 0 : clk->core->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700471}
472
Stephen Boydd6968fc2015-04-30 13:54:13 -0700473static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700474{
Stephen Boyd73d4f942019-02-01 15:39:50 -0800475 if (!core)
476 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700477
Stephen Boyd73d4f942019-02-01 15:39:50 -0800478 if (!core->num_parents || core->parent)
479 return core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700480
Stephen Boyd73d4f942019-02-01 15:39:50 -0800481 /*
482 * Clk must have a parent because num_parents > 0 but the parent isn't
483 * known yet. Best to return 0 as the rate of this clk until we can
484 * properly recalc the rate based on the parent's rate.
485 */
486 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700487}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100488
Stephen Boyde7df6f62015-08-12 13:04:56 -0700489unsigned long clk_hw_get_rate(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700490{
491 return clk_core_get_rate_nolock(hw->core);
492}
493EXPORT_SYMBOL_GPL(clk_hw_get_rate);
494
Stephen Boyd0daa3762020-02-05 15:28:01 -0800495static unsigned long clk_core_get_accuracy_no_lock(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100496{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700497 if (!core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100498 return 0;
499
Stephen Boydd6968fc2015-04-30 13:54:13 -0700500 return core->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100501}
502
Russ Dill65800b22012-11-26 11:20:09 -0800503unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700504{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100505 return !clk ? 0 : clk->core->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700506}
Thierry Redingb05c6832013-09-03 09:43:51 +0200507EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700508
Stephen Boyde7df6f62015-08-12 13:04:56 -0700509unsigned long clk_hw_get_flags(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700510{
511 return hw->core->flags;
512}
513EXPORT_SYMBOL_GPL(clk_hw_get_flags);
514
Stephen Boyde7df6f62015-08-12 13:04:56 -0700515bool clk_hw_is_prepared(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700516{
517 return clk_core_is_prepared(hw->core);
518}
Jerome Brunet12aa3772019-02-01 13:58:38 +0100519EXPORT_SYMBOL_GPL(clk_hw_is_prepared);
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700520
Jerome Brunete55a8392017-12-01 22:51:56 +0100521bool clk_hw_rate_is_protected(const struct clk_hw *hw)
522{
523 return clk_core_rate_is_protected(hw->core);
524}
Jerome Brunet12aa3772019-02-01 13:58:38 +0100525EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected);
Jerome Brunete55a8392017-12-01 22:51:56 +0100526
Joachim Eastwoodbe68bf82015-10-24 18:55:22 +0200527bool clk_hw_is_enabled(const struct clk_hw *hw)
528{
529 return clk_core_is_enabled(hw->core);
530}
Jerome Brunet12aa3772019-02-01 13:58:38 +0100531EXPORT_SYMBOL_GPL(clk_hw_is_enabled);
Joachim Eastwoodbe68bf82015-10-24 18:55:22 +0200532
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100533bool __clk_is_enabled(struct clk *clk)
534{
535 if (!clk)
536 return false;
537
538 return clk_core_is_enabled(clk->core);
539}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800540EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700541
Stephen Boyd15a02c12015-01-19 18:05:28 -0800542static bool mux_is_better_rate(unsigned long rate, unsigned long now,
543 unsigned long best, unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100544{
Stephen Boyd15a02c12015-01-19 18:05:28 -0800545 if (flags & CLK_MUX_ROUND_CLOSEST)
546 return abs(now - rate) < abs(best - rate);
547
548 return now <= rate && now > best;
549}
550
Jerome Brunet4ad69b802018-04-09 15:59:20 +0200551int clk_mux_determine_rate_flags(struct clk_hw *hw,
552 struct clk_rate_request *req,
553 unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100554{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100555 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
Boris Brezillon0817b622015-07-07 20:48:08 +0200556 int i, num_parents, ret;
557 unsigned long best = 0;
558 struct clk_rate_request parent_req = *req;
James Hogane366fdd2013-07-29 12:25:02 +0100559
560 /* if NO_REPARENT flag set, pass through to current parent */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100561 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
562 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200563 if (core->flags & CLK_SET_RATE_PARENT) {
564 ret = __clk_determine_rate(parent ? parent->hw : NULL,
565 &parent_req);
566 if (ret)
567 return ret;
568
569 best = parent_req.rate;
570 } else if (parent) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100571 best = clk_core_get_rate_nolock(parent);
Boris Brezillon0817b622015-07-07 20:48:08 +0200572 } else {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100573 best = clk_core_get_rate_nolock(core);
Boris Brezillon0817b622015-07-07 20:48:08 +0200574 }
575
James Hogane366fdd2013-07-29 12:25:02 +0100576 goto out;
577 }
578
579 /* find the parent that can provide the fastest rate <= rate */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100580 num_parents = core->num_parents;
James Hogane366fdd2013-07-29 12:25:02 +0100581 for (i = 0; i < num_parents; i++) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100582 parent = clk_core_get_parent_by_index(core, i);
James Hogane366fdd2013-07-29 12:25:02 +0100583 if (!parent)
584 continue;
Boris Brezillon0817b622015-07-07 20:48:08 +0200585
586 if (core->flags & CLK_SET_RATE_PARENT) {
587 parent_req = *req;
588 ret = __clk_determine_rate(parent->hw, &parent_req);
589 if (ret)
590 continue;
591 } else {
592 parent_req.rate = clk_core_get_rate_nolock(parent);
593 }
594
595 if (mux_is_better_rate(req->rate, parent_req.rate,
596 best, flags)) {
James Hogane366fdd2013-07-29 12:25:02 +0100597 best_parent = parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200598 best = parent_req.rate;
James Hogane366fdd2013-07-29 12:25:02 +0100599 }
600 }
601
Boris Brezillon57d866e2015-07-09 22:39:38 +0200602 if (!best_parent)
603 return -EINVAL;
604
James Hogane366fdd2013-07-29 12:25:02 +0100605out:
606 if (best_parent)
Boris Brezillon0817b622015-07-07 20:48:08 +0200607 req->best_parent_hw = best_parent->hw;
608 req->best_parent_rate = best;
609 req->rate = best;
James Hogane366fdd2013-07-29 12:25:02 +0100610
Boris Brezillon0817b622015-07-07 20:48:08 +0200611 return 0;
James Hogane366fdd2013-07-29 12:25:02 +0100612}
Jerome Brunet4ad69b802018-04-09 15:59:20 +0200613EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800614
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100615struct clk *__clk_lookup(const char *name)
616{
617 struct clk_core *core = clk_core_lookup(name);
618
619 return !core ? NULL : core->hw->clk;
620}
621
Stephen Boydd6968fc2015-04-30 13:54:13 -0700622static void clk_core_get_boundaries(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100623 unsigned long *min_rate,
624 unsigned long *max_rate)
625{
626 struct clk *clk_user;
627
Leonard Crestez9f776722019-07-02 16:27:10 +0300628 lockdep_assert_held(&prepare_lock);
629
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700630 *min_rate = core->min_rate;
631 *max_rate = core->max_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100632
Stephen Boydd6968fc2015-04-30 13:54:13 -0700633 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100634 *min_rate = max(*min_rate, clk_user->min_rate);
635
Stephen Boydd6968fc2015-04-30 13:54:13 -0700636 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100637 *max_rate = min(*max_rate, clk_user->max_rate);
638}
639
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700640void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
641 unsigned long max_rate)
642{
643 hw->core->min_rate = min_rate;
644 hw->core->max_rate = max_rate;
645}
646EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
647
Stephen Boyd15a02c12015-01-19 18:05:28 -0800648/*
Stephen Boyd777c1a42018-12-11 13:24:50 -0800649 * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk
650 * @hw: mux type clk to determine rate on
651 * @req: rate request, also used to return preferred parent and frequencies
652 *
Stephen Boyd15a02c12015-01-19 18:05:28 -0800653 * Helper for finding best parent to provide a given frequency. This can be used
654 * directly as a determine_rate callback (e.g. for a mux), or from a more
655 * complex clock that may combine a mux with other operations.
Stephen Boyd777c1a42018-12-11 13:24:50 -0800656 *
657 * Returns: 0 on success, -EERROR value on error
Stephen Boyd15a02c12015-01-19 18:05:28 -0800658 */
Boris Brezillon0817b622015-07-07 20:48:08 +0200659int __clk_mux_determine_rate(struct clk_hw *hw,
660 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800661{
Boris Brezillon0817b622015-07-07 20:48:08 +0200662 return clk_mux_determine_rate_flags(hw, req, 0);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800663}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800664EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100665
Boris Brezillon0817b622015-07-07 20:48:08 +0200666int __clk_mux_determine_rate_closest(struct clk_hw *hw,
667 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800668{
Boris Brezillon0817b622015-07-07 20:48:08 +0200669 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800670}
671EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
672
Mike Turquetteb24764902012-03-15 23:11:19 -0700673/*** clk api ***/
674
Jerome Brunete55a8392017-12-01 22:51:56 +0100675static void clk_core_rate_unprotect(struct clk_core *core)
676{
677 lockdep_assert_held(&prepare_lock);
678
679 if (!core)
680 return;
681
Fabio Estevamab525dc2018-01-16 10:50:34 -0200682 if (WARN(core->protect_count == 0,
683 "%s already unprotected\n", core->name))
Jerome Brunete55a8392017-12-01 22:51:56 +0100684 return;
685
686 if (--core->protect_count > 0)
687 return;
688
689 clk_core_rate_unprotect(core->parent);
690}
691
692static int clk_core_rate_nuke_protect(struct clk_core *core)
693{
694 int ret;
695
696 lockdep_assert_held(&prepare_lock);
697
698 if (!core)
699 return -EINVAL;
700
701 if (core->protect_count == 0)
702 return 0;
703
704 ret = core->protect_count;
705 core->protect_count = 1;
706 clk_core_rate_unprotect(core);
707
708 return ret;
709}
710
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100711/**
712 * clk_rate_exclusive_put - release exclusivity over clock rate control
713 * @clk: the clk over which the exclusivity is released
714 *
715 * clk_rate_exclusive_put() completes a critical section during which a clock
716 * consumer cannot tolerate any other consumer making any operation on the
717 * clock which could result in a rate change or rate glitch. Exclusive clocks
718 * cannot have their rate changed, either directly or indirectly due to changes
719 * further up the parent chain of clocks. As a result, clocks up parent chain
720 * also get under exclusive control of the calling consumer.
721 *
722 * If exlusivity is claimed more than once on clock, even by the same consumer,
723 * the rate effectively gets locked as exclusivity can't be preempted.
724 *
725 * Calls to clk_rate_exclusive_put() must be balanced with calls to
726 * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return
727 * error status.
728 */
729void clk_rate_exclusive_put(struct clk *clk)
730{
731 if (!clk)
732 return;
733
734 clk_prepare_lock();
735
736 /*
737 * if there is something wrong with this consumer protect count, stop
738 * here before messing with the provider
739 */
740 if (WARN_ON(clk->exclusive_count <= 0))
741 goto out;
742
743 clk_core_rate_unprotect(clk->core);
744 clk->exclusive_count--;
745out:
746 clk_prepare_unlock();
747}
748EXPORT_SYMBOL_GPL(clk_rate_exclusive_put);
749
Jerome Brunete55a8392017-12-01 22:51:56 +0100750static void clk_core_rate_protect(struct clk_core *core)
751{
752 lockdep_assert_held(&prepare_lock);
753
754 if (!core)
755 return;
756
757 if (core->protect_count == 0)
758 clk_core_rate_protect(core->parent);
759
760 core->protect_count++;
761}
762
763static void clk_core_rate_restore_protect(struct clk_core *core, int count)
764{
765 lockdep_assert_held(&prepare_lock);
766
767 if (!core)
768 return;
769
770 if (count == 0)
771 return;
772
773 clk_core_rate_protect(core);
774 core->protect_count = count;
775}
776
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100777/**
778 * clk_rate_exclusive_get - get exclusivity over the clk rate control
779 * @clk: the clk over which the exclusity of rate control is requested
780 *
Andy Shevchenkoa37a5a92020-03-10 15:55:07 +0200781 * clk_rate_exclusive_get() begins a critical section during which a clock
Jerome Brunet55e9b8b2017-12-01 22:51:59 +0100782 * consumer cannot tolerate any other consumer making any operation on the
783 * clock which could result in a rate change or rate glitch. Exclusive clocks
784 * cannot have their rate changed, either directly or indirectly due to changes
785 * further up the parent chain of clocks. As a result, clocks up parent chain
786 * also get under exclusive control of the calling consumer.
787 *
788 * If exlusivity is claimed more than once on clock, even by the same consumer,
789 * the rate effectively gets locked as exclusivity can't be preempted.
790 *
791 * Calls to clk_rate_exclusive_get() should be balanced with calls to
792 * clk_rate_exclusive_put(). Calls to this function may sleep.
793 * Returns 0 on success, -EERROR otherwise
794 */
795int clk_rate_exclusive_get(struct clk *clk)
796{
797 if (!clk)
798 return 0;
799
800 clk_prepare_lock();
801 clk_core_rate_protect(clk->core);
802 clk->exclusive_count++;
803 clk_prepare_unlock();
804
805 return 0;
806}
807EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);
808
Stephen Boydd6968fc2015-04-30 13:54:13 -0700809static void clk_core_unprepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700810{
Stephen Boyda6334722015-05-06 17:00:54 -0700811 lockdep_assert_held(&prepare_lock);
812
Stephen Boydd6968fc2015-04-30 13:54:13 -0700813 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700814 return;
815
Fabio Estevamab525dc2018-01-16 10:50:34 -0200816 if (WARN(core->prepare_count == 0,
817 "%s already unprepared\n", core->name))
Mike Turquetteb24764902012-03-15 23:11:19 -0700818 return;
819
Fabio Estevamab525dc2018-01-16 10:50:34 -0200820 if (WARN(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL,
821 "Unpreparing critical %s\n", core->name))
Lee Jones2e20fbf2016-02-11 13:19:10 -0800822 return;
823
Jerome Brunet9461f7b2018-06-19 15:40:51 +0200824 if (core->flags & CLK_SET_RATE_GATE)
825 clk_core_rate_unprotect(core);
826
Stephen Boydd6968fc2015-04-30 13:54:13 -0700827 if (--core->prepare_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700828 return;
829
Fabio Estevamab525dc2018-01-16 10:50:34 -0200830 WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700831
Stephen Boydd6968fc2015-04-30 13:54:13 -0700832 trace_clk_unprepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800833
Stephen Boydd6968fc2015-04-30 13:54:13 -0700834 if (core->ops->unprepare)
835 core->ops->unprepare(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700836
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200837 clk_pm_runtime_put(core);
838
Stephen Boydd6968fc2015-04-30 13:54:13 -0700839 trace_clk_unprepare_complete(core);
840 clk_core_unprepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700841}
842
Dong Aishenga6adc302016-06-30 17:31:11 +0800843static void clk_core_unprepare_lock(struct clk_core *core)
844{
845 clk_prepare_lock();
846 clk_core_unprepare(core);
847 clk_prepare_unlock();
848}
849
Mike Turquetteb24764902012-03-15 23:11:19 -0700850/**
851 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200852 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700853 *
854 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
855 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
856 * if the operation may sleep. One example is a clk which is accessed over
857 * I2c. In the complex case a clk gate operation may require a fast and a slow
858 * part. It is this reason that clk_unprepare and clk_disable are not mutually
859 * exclusive. In fact clk_disable must be called before clk_unprepare.
860 */
861void clk_unprepare(struct clk *clk)
862{
Stephen Boyd63589e92014-03-26 16:06:37 -0700863 if (IS_ERR_OR_NULL(clk))
864 return;
865
Dong Aishenga6adc302016-06-30 17:31:11 +0800866 clk_core_unprepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700867}
868EXPORT_SYMBOL_GPL(clk_unprepare);
869
Stephen Boydd6968fc2015-04-30 13:54:13 -0700870static int clk_core_prepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700871{
872 int ret = 0;
873
Stephen Boyda6334722015-05-06 17:00:54 -0700874 lockdep_assert_held(&prepare_lock);
875
Stephen Boydd6968fc2015-04-30 13:54:13 -0700876 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700877 return 0;
878
Stephen Boydd6968fc2015-04-30 13:54:13 -0700879 if (core->prepare_count == 0) {
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200880 ret = clk_pm_runtime_get(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700881 if (ret)
882 return ret;
883
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200884 ret = clk_core_prepare(core->parent);
885 if (ret)
886 goto runtime_put;
887
Stephen Boydd6968fc2015-04-30 13:54:13 -0700888 trace_clk_prepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800889
Stephen Boydd6968fc2015-04-30 13:54:13 -0700890 if (core->ops->prepare)
891 ret = core->ops->prepare(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800892
Stephen Boydd6968fc2015-04-30 13:54:13 -0700893 trace_clk_prepare_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800894
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200895 if (ret)
896 goto unprepare;
Mike Turquetteb24764902012-03-15 23:11:19 -0700897 }
898
Stephen Boydd6968fc2015-04-30 13:54:13 -0700899 core->prepare_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700900
Jerome Brunet9461f7b2018-06-19 15:40:51 +0200901 /*
902 * CLK_SET_RATE_GATE is a special case of clock protection
903 * Instead of a consumer claiming exclusive rate control, it is
904 * actually the provider which prevents any consumer from making any
905 * operation which could result in a rate change or rate glitch while
906 * the clock is prepared.
907 */
908 if (core->flags & CLK_SET_RATE_GATE)
909 clk_core_rate_protect(core);
910
Mike Turquetteb24764902012-03-15 23:11:19 -0700911 return 0;
Marek Szyprowski9a34b452017-08-21 10:04:59 +0200912unprepare:
913 clk_core_unprepare(core->parent);
914runtime_put:
915 clk_pm_runtime_put(core);
916 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700917}
918
Dong Aishenga6adc302016-06-30 17:31:11 +0800919static int clk_core_prepare_lock(struct clk_core *core)
920{
921 int ret;
922
923 clk_prepare_lock();
924 ret = clk_core_prepare(core);
925 clk_prepare_unlock();
926
927 return ret;
928}
929
Mike Turquetteb24764902012-03-15 23:11:19 -0700930/**
931 * clk_prepare - prepare a clock source
932 * @clk: the clk being prepared
933 *
934 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
935 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
936 * operation may sleep. One example is a clk which is accessed over I2c. In
937 * the complex case a clk ungate operation may require a fast and a slow part.
938 * It is this reason that clk_prepare and clk_enable are not mutually
939 * exclusive. In fact clk_prepare must be called before clk_enable.
940 * Returns 0 on success, -EERROR otherwise.
941 */
942int clk_prepare(struct clk *clk)
943{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100944 if (!clk)
945 return 0;
946
Dong Aishenga6adc302016-06-30 17:31:11 +0800947 return clk_core_prepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700948}
949EXPORT_SYMBOL_GPL(clk_prepare);
950
Stephen Boydd6968fc2015-04-30 13:54:13 -0700951static void clk_core_disable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700952{
Stephen Boyda6334722015-05-06 17:00:54 -0700953 lockdep_assert_held(&enable_lock);
954
Stephen Boydd6968fc2015-04-30 13:54:13 -0700955 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700956 return;
957
Fabio Estevamab525dc2018-01-16 10:50:34 -0200958 if (WARN(core->enable_count == 0, "%s already disabled\n", core->name))
Mike Turquetteb24764902012-03-15 23:11:19 -0700959 return;
960
Fabio Estevamab525dc2018-01-16 10:50:34 -0200961 if (WARN(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL,
962 "Disabling critical %s\n", core->name))
Lee Jones2e20fbf2016-02-11 13:19:10 -0800963 return;
964
Stephen Boydd6968fc2015-04-30 13:54:13 -0700965 if (--core->enable_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700966 return;
967
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700968 trace_clk_disable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800969
Stephen Boydd6968fc2015-04-30 13:54:13 -0700970 if (core->ops->disable)
971 core->ops->disable(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700972
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700973 trace_clk_disable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800974
Stephen Boydd6968fc2015-04-30 13:54:13 -0700975 clk_core_disable(core->parent);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100976}
977
Dong Aishenga6adc302016-06-30 17:31:11 +0800978static void clk_core_disable_lock(struct clk_core *core)
979{
980 unsigned long flags;
981
982 flags = clk_enable_lock();
983 clk_core_disable(core);
984 clk_enable_unlock(flags);
985}
986
Mike Turquetteb24764902012-03-15 23:11:19 -0700987/**
988 * clk_disable - gate a clock
989 * @clk: the clk being gated
990 *
991 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
992 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
993 * clk if the operation is fast and will never sleep. One example is a
994 * SoC-internal clk which is controlled via simple register writes. In the
995 * complex case a clk gate operation may require a fast and a slow part. It is
996 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
997 * In fact clk_disable must be called before clk_unprepare.
998 */
999void clk_disable(struct clk *clk)
1000{
Stephen Boyd63589e92014-03-26 16:06:37 -07001001 if (IS_ERR_OR_NULL(clk))
1002 return;
1003
Dong Aishenga6adc302016-06-30 17:31:11 +08001004 clk_core_disable_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -07001005}
1006EXPORT_SYMBOL_GPL(clk_disable);
1007
Stephen Boydd6968fc2015-04-30 13:54:13 -07001008static int clk_core_enable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001009{
1010 int ret = 0;
1011
Stephen Boyda6334722015-05-06 17:00:54 -07001012 lockdep_assert_held(&enable_lock);
1013
Stephen Boydd6968fc2015-04-30 13:54:13 -07001014 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001015 return 0;
1016
Fabio Estevamab525dc2018-01-16 10:50:34 -02001017 if (WARN(core->prepare_count == 0,
1018 "Enabling unprepared %s\n", core->name))
Mike Turquetteb24764902012-03-15 23:11:19 -07001019 return -ESHUTDOWN;
1020
Stephen Boydd6968fc2015-04-30 13:54:13 -07001021 if (core->enable_count == 0) {
1022 ret = clk_core_enable(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -07001023
1024 if (ret)
1025 return ret;
1026
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -07001027 trace_clk_enable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001028
Stephen Boydd6968fc2015-04-30 13:54:13 -07001029 if (core->ops->enable)
1030 ret = core->ops->enable(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001031
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -07001032 trace_clk_enable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001033
1034 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001035 clk_core_disable(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001036 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001037 }
1038 }
1039
Stephen Boydd6968fc2015-04-30 13:54:13 -07001040 core->enable_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07001041 return 0;
1042}
1043
Dong Aishenga6adc302016-06-30 17:31:11 +08001044static int clk_core_enable_lock(struct clk_core *core)
1045{
1046 unsigned long flags;
1047 int ret;
1048
1049 flags = clk_enable_lock();
1050 ret = clk_core_enable(core);
1051 clk_enable_unlock(flags);
1052
1053 return ret;
1054}
1055
Keerthy43536542018-09-04 12:19:36 +05301056/**
1057 * clk_gate_restore_context - restore context for poweroff
1058 * @hw: the clk_hw pointer of clock whose state is to be restored
1059 *
1060 * The clock gate restore context function enables or disables
1061 * the gate clocks based on the enable_count. This is done in cases
1062 * where the clock context is lost and based on the enable_count
1063 * the clock either needs to be enabled/disabled. This
1064 * helps restore the state of gate clocks.
1065 */
1066void clk_gate_restore_context(struct clk_hw *hw)
1067{
Stephen Boyd9be76622018-10-11 09:28:13 -07001068 struct clk_core *core = hw->core;
1069
1070 if (core->enable_count)
1071 core->ops->enable(hw);
Keerthy43536542018-09-04 12:19:36 +05301072 else
Stephen Boyd9be76622018-10-11 09:28:13 -07001073 core->ops->disable(hw);
Keerthy43536542018-09-04 12:19:36 +05301074}
1075EXPORT_SYMBOL_GPL(clk_gate_restore_context);
1076
Stephen Boyd9be76622018-10-11 09:28:13 -07001077static int clk_core_save_context(struct clk_core *core)
Russ Dill8b95d1c2018-09-04 12:19:35 +05301078{
1079 struct clk_core *child;
1080 int ret = 0;
1081
Stephen Boyd9be76622018-10-11 09:28:13 -07001082 hlist_for_each_entry(child, &core->children, child_node) {
1083 ret = clk_core_save_context(child);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301084 if (ret < 0)
1085 return ret;
1086 }
1087
Stephen Boyd9be76622018-10-11 09:28:13 -07001088 if (core->ops && core->ops->save_context)
1089 ret = core->ops->save_context(core->hw);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301090
1091 return ret;
1092}
1093
Stephen Boyd9be76622018-10-11 09:28:13 -07001094static void clk_core_restore_context(struct clk_core *core)
Russ Dill8b95d1c2018-09-04 12:19:35 +05301095{
1096 struct clk_core *child;
1097
Stephen Boyd9be76622018-10-11 09:28:13 -07001098 if (core->ops && core->ops->restore_context)
1099 core->ops->restore_context(core->hw);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301100
Stephen Boyd9be76622018-10-11 09:28:13 -07001101 hlist_for_each_entry(child, &core->children, child_node)
1102 clk_core_restore_context(child);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301103}
1104
1105/**
1106 * clk_save_context - save clock context for poweroff
1107 *
1108 * Saves the context of the clock register for powerstates in which the
1109 * contents of the registers will be lost. Occurs deep within the suspend
1110 * code. Returns 0 on success.
1111 */
1112int clk_save_context(void)
1113{
1114 struct clk_core *clk;
1115 int ret;
1116
1117 hlist_for_each_entry(clk, &clk_root_list, child_node) {
Stephen Boyd9be76622018-10-11 09:28:13 -07001118 ret = clk_core_save_context(clk);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301119 if (ret < 0)
1120 return ret;
1121 }
1122
1123 hlist_for_each_entry(clk, &clk_orphan_list, child_node) {
Stephen Boyd9be76622018-10-11 09:28:13 -07001124 ret = clk_core_save_context(clk);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301125 if (ret < 0)
1126 return ret;
1127 }
1128
1129 return 0;
1130}
1131EXPORT_SYMBOL_GPL(clk_save_context);
1132
1133/**
1134 * clk_restore_context - restore clock context after poweroff
1135 *
1136 * Restore the saved clock context upon resume.
1137 *
1138 */
1139void clk_restore_context(void)
1140{
Stephen Boyd9be76622018-10-11 09:28:13 -07001141 struct clk_core *core;
Russ Dill8b95d1c2018-09-04 12:19:35 +05301142
Stephen Boyd9be76622018-10-11 09:28:13 -07001143 hlist_for_each_entry(core, &clk_root_list, child_node)
1144 clk_core_restore_context(core);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301145
Stephen Boyd9be76622018-10-11 09:28:13 -07001146 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1147 clk_core_restore_context(core);
Russ Dill8b95d1c2018-09-04 12:19:35 +05301148}
1149EXPORT_SYMBOL_GPL(clk_restore_context);
1150
Mike Turquetteb24764902012-03-15 23:11:19 -07001151/**
1152 * clk_enable - ungate a clock
1153 * @clk: the clk being ungated
1154 *
1155 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1156 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1157 * if the operation will never sleep. One example is a SoC-internal clk which
1158 * is controlled via simple register writes. In the complex case a clk ungate
1159 * operation may require a fast and a slow part. It is this reason that
1160 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1161 * must be called before clk_enable. Returns 0 on success, -EERROR
1162 * otherwise.
1163 */
1164int clk_enable(struct clk *clk)
1165{
Dong Aisheng864e1602015-04-30 14:02:19 -07001166 if (!clk)
1167 return 0;
1168
Dong Aishenga6adc302016-06-30 17:31:11 +08001169 return clk_core_enable_lock(clk->core);
1170}
1171EXPORT_SYMBOL_GPL(clk_enable);
1172
1173static int clk_core_prepare_enable(struct clk_core *core)
1174{
1175 int ret;
1176
1177 ret = clk_core_prepare_lock(core);
1178 if (ret)
1179 return ret;
1180
1181 ret = clk_core_enable_lock(core);
1182 if (ret)
1183 clk_core_unprepare_lock(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07001184
1185 return ret;
1186}
Dong Aishenga6adc302016-06-30 17:31:11 +08001187
1188static void clk_core_disable_unprepare(struct clk_core *core)
1189{
1190 clk_core_disable_lock(core);
1191 clk_core_unprepare_lock(core);
1192}
Mike Turquetteb24764902012-03-15 23:11:19 -07001193
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001194static void __init clk_unprepare_unused_subtree(struct clk_core *core)
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001195{
1196 struct clk_core *child;
1197
1198 lockdep_assert_held(&prepare_lock);
1199
1200 hlist_for_each_entry(child, &core->children, child_node)
1201 clk_unprepare_unused_subtree(child);
1202
1203 if (core->prepare_count)
1204 return;
1205
1206 if (core->flags & CLK_IGNORE_UNUSED)
1207 return;
1208
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001209 if (clk_pm_runtime_get(core))
1210 return;
1211
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001212 if (clk_core_is_prepared(core)) {
1213 trace_clk_unprepare(core);
1214 if (core->ops->unprepare_unused)
1215 core->ops->unprepare_unused(core->hw);
1216 else if (core->ops->unprepare)
1217 core->ops->unprepare(core->hw);
1218 trace_clk_unprepare_complete(core);
1219 }
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001220
1221 clk_pm_runtime_put(core);
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001222}
1223
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001224static void __init clk_disable_unused_subtree(struct clk_core *core)
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001225{
1226 struct clk_core *child;
1227 unsigned long flags;
1228
1229 lockdep_assert_held(&prepare_lock);
1230
1231 hlist_for_each_entry(child, &core->children, child_node)
1232 clk_disable_unused_subtree(child);
1233
Dong Aishenga4b35182016-06-30 17:31:13 +08001234 if (core->flags & CLK_OPS_PARENT_ENABLE)
1235 clk_core_prepare_enable(core->parent);
1236
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001237 if (clk_pm_runtime_get(core))
1238 goto unprepare_out;
1239
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001240 flags = clk_enable_lock();
1241
1242 if (core->enable_count)
1243 goto unlock_out;
1244
1245 if (core->flags & CLK_IGNORE_UNUSED)
1246 goto unlock_out;
1247
1248 /*
1249 * some gate clocks have special needs during the disable-unused
1250 * sequence. call .disable_unused if available, otherwise fall
1251 * back to .disable
1252 */
1253 if (clk_core_is_enabled(core)) {
1254 trace_clk_disable(core);
1255 if (core->ops->disable_unused)
1256 core->ops->disable_unused(core->hw);
1257 else if (core->ops->disable)
1258 core->ops->disable(core->hw);
1259 trace_clk_disable_complete(core);
1260 }
1261
1262unlock_out:
1263 clk_enable_unlock(flags);
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001264 clk_pm_runtime_put(core);
1265unprepare_out:
Dong Aishenga4b35182016-06-30 17:31:13 +08001266 if (core->flags & CLK_OPS_PARENT_ENABLE)
1267 clk_core_disable_unprepare(core->parent);
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001268}
1269
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001270static bool clk_ignore_unused __initdata;
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001271static int __init clk_ignore_unused_setup(char *__unused)
1272{
1273 clk_ignore_unused = true;
1274 return 1;
1275}
1276__setup("clk_ignore_unused", clk_ignore_unused_setup);
1277
Rasmus Villemoes564f86d2019-10-04 11:48:25 +02001278static int __init clk_disable_unused(void)
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001279{
1280 struct clk_core *core;
1281
1282 if (clk_ignore_unused) {
1283 pr_warn("clk: Not disabling unused clocks\n");
1284 return 0;
1285 }
1286
1287 clk_prepare_lock();
1288
1289 hlist_for_each_entry(core, &clk_root_list, child_node)
1290 clk_disable_unused_subtree(core);
1291
1292 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1293 clk_disable_unused_subtree(core);
1294
1295 hlist_for_each_entry(core, &clk_root_list, child_node)
1296 clk_unprepare_unused_subtree(core);
1297
1298 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1299 clk_unprepare_unused_subtree(core);
1300
1301 clk_prepare_unlock();
1302
1303 return 0;
1304}
1305late_initcall_sync(clk_disable_unused);
1306
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001307static int clk_core_determine_round_nolock(struct clk_core *core,
1308 struct clk_rate_request *req)
Mike Turquetteb24764902012-03-15 23:11:19 -07001309{
Boris Brezillon0817b622015-07-07 20:48:08 +02001310 long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001311
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001312 lockdep_assert_held(&prepare_lock);
1313
Stephen Boydd6968fc2015-04-30 13:54:13 -07001314 if (!core)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -07001315 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001316
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001317 /*
1318 * At this point, core protection will be disabled if
1319 * - if the provider is not protected at all
1320 * - if the calling consumer is the only one which has exclusivity
1321 * over the provider
1322 */
Jerome Brunete55a8392017-12-01 22:51:56 +01001323 if (clk_core_rate_is_protected(core)) {
1324 req->rate = core->rate;
1325 } else if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001326 return core->ops->determine_rate(core->hw, req);
1327 } else if (core->ops->round_rate) {
1328 rate = core->ops->round_rate(core->hw, req->rate,
1329 &req->best_parent_rate);
1330 if (rate < 0)
1331 return rate;
1332
1333 req->rate = rate;
Boris Brezillon0817b622015-07-07 20:48:08 +02001334 } else {
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001335 return -EINVAL;
Boris Brezillon0817b622015-07-07 20:48:08 +02001336 }
1337
1338 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001339}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001340
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001341static void clk_core_init_rate_req(struct clk_core * const core,
1342 struct clk_rate_request *req)
1343{
1344 struct clk_core *parent;
1345
1346 if (WARN_ON(!core || !req))
1347 return;
1348
Mike Turquetteb24764902012-03-15 23:11:19 -07001349 parent = core->parent;
1350 if (parent) {
1351 req->best_parent_hw = parent->hw;
1352 req->best_parent_rate = parent->rate;
1353 } else {
1354 req->best_parent_hw = NULL;
1355 req->best_parent_rate = 0;
1356 }
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001357}
Mike Turquetteb24764902012-03-15 23:11:19 -07001358
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001359static bool clk_core_can_round(struct clk_core * const core)
1360{
Geert Uytterhoeveneef1f1b2019-06-17 14:02:48 +02001361 return core->ops->determine_rate || core->ops->round_rate;
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001362}
Mike Turquetteb24764902012-03-15 23:11:19 -07001363
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001364static int clk_core_round_rate_nolock(struct clk_core *core,
1365 struct clk_rate_request *req)
1366{
1367 lockdep_assert_held(&prepare_lock);
1368
Jerome Brunet04bf9ab2018-02-14 14:43:35 +01001369 if (!core) {
1370 req->rate = 0;
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001371 return 0;
Jerome Brunet04bf9ab2018-02-14 14:43:35 +01001372 }
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001373
1374 clk_core_init_rate_req(core, req);
1375
1376 if (clk_core_can_round(core))
1377 return clk_core_determine_round_nolock(core, req);
1378 else if (core->flags & CLK_SET_RATE_PARENT)
1379 return clk_core_round_rate_nolock(core->parent, req);
1380
1381 req->rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001382 return 0;
1383}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001384
1385/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001386 * __clk_determine_rate - get the closest rate actually supported by a clock
1387 * @hw: determine the rate of this clock
Peng Fan2d5b5202016-06-13 19:34:21 +08001388 * @req: target rate request
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001389 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001390 * Useful for clk_ops such as .set_rate and .determine_rate.
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001391 */
Boris Brezillon0817b622015-07-07 20:48:08 +02001392int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001393{
Boris Brezillon0817b622015-07-07 20:48:08 +02001394 if (!hw) {
1395 req->rate = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001396 return 0;
Boris Brezillon0817b622015-07-07 20:48:08 +02001397 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001398
Boris Brezillon0817b622015-07-07 20:48:08 +02001399 return clk_core_round_rate_nolock(hw->core, req);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001400}
1401EXPORT_SYMBOL_GPL(__clk_determine_rate);
1402
Stephen Boyd1a9c0692015-06-25 15:55:14 -07001403unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1404{
1405 int ret;
1406 struct clk_rate_request req;
1407
1408 clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate);
1409 req.rate = rate;
1410
1411 ret = clk_core_round_rate_nolock(hw->core, &req);
1412 if (ret)
1413 return 0;
1414
1415 return req.rate;
1416}
1417EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1418
Mike Turquetteb24764902012-03-15 23:11:19 -07001419/**
1420 * clk_round_rate - round the given rate for a clk
1421 * @clk: the clk for which we are rounding a rate
1422 * @rate: the rate which is to be rounded
1423 *
1424 * Takes in a rate as input and rounds it to a rate that the clk can actually
1425 * use which is then returned. If clk doesn't support round_rate operation
1426 * then the parent rate is returned.
1427 */
1428long clk_round_rate(struct clk *clk, unsigned long rate)
1429{
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001430 struct clk_rate_request req;
1431 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001432
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001433 if (!clk)
1434 return 0;
1435
Mike Turquetteeab89f62013-03-28 13:59:01 -07001436 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001437
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001438 if (clk->exclusive_count)
1439 clk_core_rate_unprotect(clk->core);
1440
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001441 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
1442 req.rate = rate;
1443
1444 ret = clk_core_round_rate_nolock(clk->core, &req);
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01001445
1446 if (clk->exclusive_count)
1447 clk_core_rate_protect(clk->core);
1448
Mike Turquetteeab89f62013-03-28 13:59:01 -07001449 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001450
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001451 if (ret)
1452 return ret;
1453
1454 return req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001455}
1456EXPORT_SYMBOL_GPL(clk_round_rate);
1457
1458/**
1459 * __clk_notify - call clk notifier chain
Stephen Boydd6968fc2015-04-30 13:54:13 -07001460 * @core: clk that is changing rate
Mike Turquetteb24764902012-03-15 23:11:19 -07001461 * @msg: clk notifier type (see include/linux/clk.h)
1462 * @old_rate: old clk rate
1463 * @new_rate: new clk rate
1464 *
1465 * Triggers a notifier call chain on the clk rate-change notification
1466 * for 'clk'. Passes a pointer to the struct clk and the previous
1467 * and current rates to the notifier callback. Intended to be called by
1468 * internal clock code only. Returns NOTIFY_DONE from the last driver
1469 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1470 * a driver returns that.
1471 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001472static int __clk_notify(struct clk_core *core, unsigned long msg,
Mike Turquetteb24764902012-03-15 23:11:19 -07001473 unsigned long old_rate, unsigned long new_rate)
1474{
1475 struct clk_notifier *cn;
1476 struct clk_notifier_data cnd;
1477 int ret = NOTIFY_DONE;
1478
Mike Turquetteb24764902012-03-15 23:11:19 -07001479 cnd.old_rate = old_rate;
1480 cnd.new_rate = new_rate;
1481
1482 list_for_each_entry(cn, &clk_notifier_list, node) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001483 if (cn->clk->core == core) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001484 cnd.clk = cn->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001485 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1486 &cnd);
Peter De Schrijver17c34c52017-03-21 12:16:26 +02001487 if (ret & NOTIFY_STOP_MASK)
1488 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001489 }
1490 }
1491
1492 return ret;
1493}
1494
1495/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001496 * __clk_recalc_accuracies
Stephen Boydd6968fc2015-04-30 13:54:13 -07001497 * @core: first clk in the subtree
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001498 *
1499 * Walks the subtree of clks starting with clk and recalculates accuracies as
1500 * it goes. Note that if a clk does not implement the .recalc_accuracy
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001501 * callback then it is assumed that the clock will take on the accuracy of its
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001502 * parent.
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001503 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001504static void __clk_recalc_accuracies(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001505{
1506 unsigned long parent_accuracy = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001507 struct clk_core *child;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001508
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001509 lockdep_assert_held(&prepare_lock);
1510
Stephen Boydd6968fc2015-04-30 13:54:13 -07001511 if (core->parent)
1512 parent_accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001513
Stephen Boydd6968fc2015-04-30 13:54:13 -07001514 if (core->ops->recalc_accuracy)
1515 core->accuracy = core->ops->recalc_accuracy(core->hw,
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001516 parent_accuracy);
1517 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07001518 core->accuracy = parent_accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001519
Stephen Boydd6968fc2015-04-30 13:54:13 -07001520 hlist_for_each_entry(child, &core->children, child_node)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001521 __clk_recalc_accuracies(child);
1522}
1523
Stephen Boyd0daa3762020-02-05 15:28:01 -08001524static long clk_core_get_accuracy_recalc(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001525{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001526 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1527 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001528
Stephen Boyd0daa3762020-02-05 15:28:01 -08001529 return clk_core_get_accuracy_no_lock(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001530}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001531
1532/**
1533 * clk_get_accuracy - return the accuracy of clk
1534 * @clk: the clk whose accuracy is being returned
1535 *
1536 * Simply returns the cached accuracy of the clk, unless
1537 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1538 * issued.
1539 * If clk is NULL then returns 0.
1540 */
1541long clk_get_accuracy(struct clk *clk)
1542{
Stephen Boyd0daa3762020-02-05 15:28:01 -08001543 long accuracy;
1544
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001545 if (!clk)
1546 return 0;
1547
Stephen Boyd0daa3762020-02-05 15:28:01 -08001548 clk_prepare_lock();
1549 accuracy = clk_core_get_accuracy_recalc(clk->core);
1550 clk_prepare_unlock();
1551
1552 return accuracy;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001553}
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001554EXPORT_SYMBOL_GPL(clk_get_accuracy);
1555
Stephen Boydd6968fc2015-04-30 13:54:13 -07001556static unsigned long clk_recalc(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001557 unsigned long parent_rate)
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001558{
Marek Szyprowski9a34b452017-08-21 10:04:59 +02001559 unsigned long rate = parent_rate;
1560
1561 if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) {
1562 rate = core->ops->recalc_rate(core->hw, parent_rate);
1563 clk_pm_runtime_put(core);
1564 }
1565 return rate;
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001566}
1567
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001568/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001569 * __clk_recalc_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001570 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001571 * @msg: notification type (see include/linux/clk.h)
1572 *
1573 * Walks the subtree of clks starting with clk and recalculates rates as it
1574 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001575 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001576 *
1577 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1578 * if necessary.
Mike Turquetteb24764902012-03-15 23:11:19 -07001579 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001580static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
Mike Turquetteb24764902012-03-15 23:11:19 -07001581{
1582 unsigned long old_rate;
1583 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001584 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001585
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001586 lockdep_assert_held(&prepare_lock);
1587
Stephen Boydd6968fc2015-04-30 13:54:13 -07001588 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001589
Stephen Boydd6968fc2015-04-30 13:54:13 -07001590 if (core->parent)
1591 parent_rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001592
Stephen Boydd6968fc2015-04-30 13:54:13 -07001593 core->rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001594
1595 /*
1596 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1597 * & ABORT_RATE_CHANGE notifiers
1598 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001599 if (core->notifier_count && msg)
1600 __clk_notify(core, msg, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001601
Stephen Boydd6968fc2015-04-30 13:54:13 -07001602 hlist_for_each_entry(child, &core->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001603 __clk_recalc_rates(child, msg);
1604}
1605
Stephen Boyd0daa3762020-02-05 15:28:01 -08001606static unsigned long clk_core_get_rate_recalc(struct clk_core *core)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001607{
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 Boyd0daa3762020-02-05 15:28:01 -08001611 return clk_core_get_rate_nolock(core);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001612}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001613
Mike Turquetteb24764902012-03-15 23:11:19 -07001614/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001615 * clk_get_rate - return the rate of clk
1616 * @clk: the clk whose rate is being returned
1617 *
1618 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1619 * is set, which means a recalc_rate will be issued.
1620 * If clk is NULL then returns 0.
1621 */
1622unsigned long clk_get_rate(struct clk *clk)
1623{
Stephen Boyd0daa3762020-02-05 15:28:01 -08001624 unsigned long rate;
1625
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001626 if (!clk)
1627 return 0;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001628
Stephen Boyd0daa3762020-02-05 15:28:01 -08001629 clk_prepare_lock();
1630 rate = clk_core_get_rate_recalc(clk->core);
1631 clk_prepare_unlock();
1632
1633 return rate;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001634}
1635EXPORT_SYMBOL_GPL(clk_get_rate);
1636
Stephen Boydd6968fc2015-04-30 13:54:13 -07001637static int clk_fetch_parent_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001638 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001639{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001640 int i;
James Hogan4935b222013-07-29 12:24:59 +01001641
Masahiro Yamada508f8842015-12-28 19:23:08 +09001642 if (!parent)
1643 return -EINVAL;
1644
Derek Basehoreede77852018-12-20 16:31:00 -08001645 for (i = 0; i < core->num_parents; i++) {
Stephen Boyd1a079562019-04-30 10:22:30 -07001646 /* Found it first try! */
Stephen Boydfc0c2092019-04-12 11:31:47 -07001647 if (core->parents[i].core == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001648 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001649
Stephen Boyd1a079562019-04-30 10:22:30 -07001650 /* Something else is here, so keep looking */
Stephen Boydfc0c2092019-04-12 11:31:47 -07001651 if (core->parents[i].core)
Derek Basehoreede77852018-12-20 16:31:00 -08001652 continue;
1653
Stephen Boyd1a079562019-04-30 10:22:30 -07001654 /* Maybe core hasn't been cached but the hw is all we know? */
1655 if (core->parents[i].hw) {
1656 if (core->parents[i].hw == parent->hw)
1657 break;
1658
1659 /* Didn't match, but we're expecting a clk_hw */
1660 continue;
Derek Basehoreede77852018-12-20 16:31:00 -08001661 }
Stephen Boyd1a079562019-04-30 10:22:30 -07001662
1663 /* Maybe it hasn't been cached (clk_set_parent() path) */
1664 if (parent == clk_core_get(core, i))
1665 break;
1666
1667 /* Fallback to comparing globally unique names */
Martin Blumenstingl24876f02019-08-16 00:31:55 +02001668 if (core->parents[i].name &&
1669 !strcmp(parent->name, core->parents[i].name))
Stephen Boyd1a079562019-04-30 10:22:30 -07001670 break;
Derek Basehoreede77852018-12-20 16:31:00 -08001671 }
1672
Stephen Boyd1a079562019-04-30 10:22:30 -07001673 if (i == core->num_parents)
1674 return -EINVAL;
1675
1676 core->parents[i].core = parent;
1677 return i;
James Hogan4935b222013-07-29 12:24:59 +01001678}
1679
Sowjanya Komatinenid9b86cc2019-08-16 12:41:52 -07001680/**
1681 * clk_hw_get_parent_index - return the index of the parent clock
1682 * @hw: clk_hw associated with the clk being consumed
1683 *
1684 * Fetches and returns the index of parent clock. Returns -EINVAL if the given
1685 * clock does not have a current parent.
1686 */
1687int clk_hw_get_parent_index(struct clk_hw *hw)
1688{
1689 struct clk_hw *parent = clk_hw_get_parent(hw);
1690
1691 if (WARN_ON(parent == NULL))
1692 return -EINVAL;
1693
1694 return clk_fetch_parent_index(hw->core, parent->core);
1695}
1696EXPORT_SYMBOL_GPL(clk_hw_get_parent_index);
1697
Heiko Stuebnere6500342015-04-22 22:53:05 +02001698/*
1699 * Update the orphan status of @core and all its children.
1700 */
1701static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1702{
1703 struct clk_core *child;
1704
1705 core->orphan = is_orphan;
1706
1707 hlist_for_each_entry(child, &core->children, child_node)
1708 clk_core_update_orphan_status(child, is_orphan);
1709}
1710
Stephen Boydd6968fc2015-04-30 13:54:13 -07001711static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
James Hogan4935b222013-07-29 12:24:59 +01001712{
Heiko Stuebnere6500342015-04-22 22:53:05 +02001713 bool was_orphan = core->orphan;
1714
Stephen Boydd6968fc2015-04-30 13:54:13 -07001715 hlist_del(&core->child_node);
James Hogan4935b222013-07-29 12:24:59 +01001716
James Hogan903efc52013-08-29 12:10:51 +01001717 if (new_parent) {
Heiko Stuebnere6500342015-04-22 22:53:05 +02001718 bool becomes_orphan = new_parent->orphan;
1719
James Hogan903efc52013-08-29 12:10:51 +01001720 /* avoid duplicate POST_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001721 if (new_parent->new_child == core)
James Hogan903efc52013-08-29 12:10:51 +01001722 new_parent->new_child = NULL;
1723
Stephen Boydd6968fc2015-04-30 13:54:13 -07001724 hlist_add_head(&core->child_node, &new_parent->children);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001725
1726 if (was_orphan != becomes_orphan)
1727 clk_core_update_orphan_status(core, becomes_orphan);
James Hogan903efc52013-08-29 12:10:51 +01001728 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001729 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001730 if (!was_orphan)
1731 clk_core_update_orphan_status(core, true);
James Hogan903efc52013-08-29 12:10:51 +01001732 }
James Hogan4935b222013-07-29 12:24:59 +01001733
Stephen Boydd6968fc2015-04-30 13:54:13 -07001734 core->parent = new_parent;
James Hogan4935b222013-07-29 12:24:59 +01001735}
1736
Stephen Boydd6968fc2015-04-30 13:54:13 -07001737static struct clk_core *__clk_set_parent_before(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001738 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001739{
1740 unsigned long flags;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001741 struct clk_core *old_parent = core->parent;
James Hogan4935b222013-07-29 12:24:59 +01001742
1743 /*
Dong Aishengfc8726a2016-06-30 17:31:14 +08001744 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1745 *
1746 * 2. Migrate prepare state between parents and prevent race with
James Hogan4935b222013-07-29 12:24:59 +01001747 * clk_enable().
1748 *
1749 * If the clock is not prepared, then a race with
1750 * clk_enable/disable() is impossible since we already have the
1751 * prepare lock (future calls to clk_enable() need to be preceded by
1752 * a clk_prepare()).
1753 *
1754 * If the clock is prepared, migrate the prepared state to the new
1755 * parent and also protect against a race with clk_enable() by
1756 * forcing the clock and the new parent on. This ensures that all
1757 * future calls to clk_enable() are practically NOPs with respect to
1758 * hardware and software states.
1759 *
1760 * See also: Comment for clk_set_parent() below.
1761 */
Dong Aishengfc8726a2016-06-30 17:31:14 +08001762
1763 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1764 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1765 clk_core_prepare_enable(old_parent);
1766 clk_core_prepare_enable(parent);
1767 }
1768
1769 /* migrate prepare count if > 0 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001770 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001771 clk_core_prepare_enable(parent);
1772 clk_core_enable_lock(core);
James Hogan4935b222013-07-29 12:24:59 +01001773 }
1774
1775 /* update the clk tree topology */
1776 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001777 clk_reparent(core, parent);
James Hogan4935b222013-07-29 12:24:59 +01001778 clk_enable_unlock(flags);
1779
Stephen Boyd3fa22522014-01-15 10:47:22 -08001780 return old_parent;
1781}
1782
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001783static void __clk_set_parent_after(struct clk_core *core,
1784 struct clk_core *parent,
1785 struct clk_core *old_parent)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001786{
1787 /*
1788 * Finish the migration of prepare state and undo the changes done
1789 * for preventing a race with clk_enable().
1790 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001791 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001792 clk_core_disable_lock(core);
1793 clk_core_disable_unprepare(old_parent);
1794 }
1795
1796 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1797 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1798 clk_core_disable_unprepare(parent);
1799 clk_core_disable_unprepare(old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001800 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001801}
1802
Stephen Boydd6968fc2015-04-30 13:54:13 -07001803static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001804 u8 p_index)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001805{
1806 unsigned long flags;
1807 int ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001808 struct clk_core *old_parent;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001809
Stephen Boydd6968fc2015-04-30 13:54:13 -07001810 old_parent = __clk_set_parent_before(core, parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001811
Stephen Boydd6968fc2015-04-30 13:54:13 -07001812 trace_clk_set_parent(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001813
James Hogan4935b222013-07-29 12:24:59 +01001814 /* change clock input source */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001815 if (parent && core->ops->set_parent)
1816 ret = core->ops->set_parent(core->hw, p_index);
James Hogan4935b222013-07-29 12:24:59 +01001817
Stephen Boydd6968fc2015-04-30 13:54:13 -07001818 trace_clk_set_parent_complete(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001819
James Hogan4935b222013-07-29 12:24:59 +01001820 if (ret) {
1821 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001822 clk_reparent(core, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001823 clk_enable_unlock(flags);
Dong Aishengc660b2eb2015-07-28 21:19:41 +08001824 __clk_set_parent_after(core, old_parent, parent);
James Hogan4935b222013-07-29 12:24:59 +01001825
James Hogan4935b222013-07-29 12:24:59 +01001826 return ret;
1827 }
1828
Stephen Boydd6968fc2015-04-30 13:54:13 -07001829 __clk_set_parent_after(core, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001830
James Hogan4935b222013-07-29 12:24:59 +01001831 return 0;
1832}
1833
Ulf Hanssona093bde2012-08-31 14:21:28 +02001834/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001835 * __clk_speculate_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001836 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001837 * @parent_rate: the "future" rate of clk's parent
1838 *
1839 * Walks the subtree of clks starting with clk, speculating rates as it
1840 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1841 *
1842 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1843 * pre-rate change notifications and returns early if no clks in the
1844 * subtree have subscribed to the notifications. Note that if a clk does not
1845 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001846 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001847 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001848static int __clk_speculate_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001849 unsigned long parent_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001850{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001851 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001852 unsigned long new_rate;
1853 int ret = NOTIFY_DONE;
1854
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001855 lockdep_assert_held(&prepare_lock);
1856
Stephen Boydd6968fc2015-04-30 13:54:13 -07001857 new_rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001858
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001859 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001860 if (core->notifier_count)
1861 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001862
Mike Turquette86bcfa22014-02-24 16:08:41 -08001863 if (ret & NOTIFY_STOP_MASK) {
1864 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001865 __func__, core->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001866 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001867 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001868
Stephen Boydd6968fc2015-04-30 13:54:13 -07001869 hlist_for_each_entry(child, &core->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001870 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001871 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001872 break;
1873 }
1874
1875out:
1876 return ret;
1877}
1878
Stephen Boydd6968fc2015-04-30 13:54:13 -07001879static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001880 struct clk_core *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001881{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001882 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001883
Stephen Boydd6968fc2015-04-30 13:54:13 -07001884 core->new_rate = new_rate;
1885 core->new_parent = new_parent;
1886 core->new_parent_index = p_index;
James Hogan71472c02013-07-29 12:25:00 +01001887 /* include clk in new parent's PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001888 core->new_child = NULL;
1889 if (new_parent && new_parent != core->parent)
1890 new_parent->new_child = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001891
Stephen Boydd6968fc2015-04-30 13:54:13 -07001892 hlist_for_each_entry(child, &core->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001893 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001894 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001895 }
1896}
1897
1898/*
1899 * calculate the new rates returning the topmost clock that has to be
1900 * changed.
1901 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001902static struct clk_core *clk_calc_new_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001903 unsigned long rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001904{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001905 struct clk_core *top = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001906 struct clk_core *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001907 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001908 unsigned long new_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001909 unsigned long min_rate;
1910 unsigned long max_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001911 int p_index = 0;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001912 long ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001913
Mike Turquette7452b212012-03-26 14:45:36 -07001914 /* sanity */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001915 if (IS_ERR_OR_NULL(core))
Mike Turquette7452b212012-03-26 14:45:36 -07001916 return NULL;
1917
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001918 /* save parent rate, if it exists */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001919 parent = old_parent = core->parent;
James Hogan71472c02013-07-29 12:25:00 +01001920 if (parent)
1921 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001922
Stephen Boydd6968fc2015-04-30 13:54:13 -07001923 clk_core_get_boundaries(core, &min_rate, &max_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001924
James Hogan71472c02013-07-29 12:25:00 +01001925 /* find the closest rate and parent clk/rate */
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001926 if (clk_core_can_round(core)) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001927 struct clk_rate_request req;
1928
1929 req.rate = rate;
1930 req.min_rate = min_rate;
1931 req.max_rate = max_rate;
Boris Brezillon0817b622015-07-07 20:48:08 +02001932
Jerome Brunet0f6cc2b2017-12-01 22:51:54 +01001933 clk_core_init_rate_req(core, &req);
1934
1935 ret = clk_core_determine_round_nolock(core, &req);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001936 if (ret < 0)
1937 return NULL;
1938
Boris Brezillon0817b622015-07-07 20:48:08 +02001939 best_parent_rate = req.best_parent_rate;
1940 new_rate = req.rate;
1941 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001942
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001943 if (new_rate < min_rate || new_rate > max_rate)
1944 return NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001945 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
James Hogan71472c02013-07-29 12:25:00 +01001946 /* pass-through clock without adjustable parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001947 core->new_rate = core->rate;
James Hogan71472c02013-07-29 12:25:00 +01001948 return NULL;
1949 } else {
1950 /* pass-through clock with adjustable parent */
1951 top = clk_calc_new_rates(parent, rate);
1952 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001953 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001954 }
1955
James Hogan71472c02013-07-29 12:25:00 +01001956 /* some clocks must be gated to change parent */
1957 if (parent != old_parent &&
Stephen Boydd6968fc2015-04-30 13:54:13 -07001958 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
James Hogan71472c02013-07-29 12:25:00 +01001959 pr_debug("%s: %s not gated but wants to reparent\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001960 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001961 return NULL;
1962 }
1963
James Hogan71472c02013-07-29 12:25:00 +01001964 /* try finding the new parent index */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001965 if (parent && core->num_parents > 1) {
1966 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001967 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001968 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001969 __func__, parent->name, core->name);
James Hogan71472c02013-07-29 12:25:00 +01001970 return NULL;
1971 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001972 }
1973
Stephen Boydd6968fc2015-04-30 13:54:13 -07001974 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
James Hogan71472c02013-07-29 12:25:00 +01001975 best_parent_rate != parent->rate)
1976 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001977
1978out:
Stephen Boydd6968fc2015-04-30 13:54:13 -07001979 clk_calc_subtree(core, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001980
1981 return top;
1982}
1983
1984/*
1985 * Notify about rate changes in a subtree. Always walk down the whole tree
1986 * so that in case of an error we can walk down the whole tree again and
1987 * abort the change.
1988 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001989static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001990 unsigned long event)
Mike Turquetteb24764902012-03-15 23:11:19 -07001991{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001992 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001993 int ret = NOTIFY_DONE;
1994
Stephen Boydd6968fc2015-04-30 13:54:13 -07001995 if (core->rate == core->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301996 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001997
Stephen Boydd6968fc2015-04-30 13:54:13 -07001998 if (core->notifier_count) {
1999 ret = __clk_notify(core, event, core->rate, core->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07002000 if (ret & NOTIFY_STOP_MASK)
Stephen Boydd6968fc2015-04-30 13:54:13 -07002001 fail_clk = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07002002 }
2003
Stephen Boydd6968fc2015-04-30 13:54:13 -07002004 hlist_for_each_entry(child, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01002005 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002006 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01002007 continue;
2008 tmp_clk = clk_propagate_rate_change(child, event);
2009 if (tmp_clk)
2010 fail_clk = tmp_clk;
2011 }
2012
Stephen Boydd6968fc2015-04-30 13:54:13 -07002013 /* handle the new child who might not be in core->children yet */
2014 if (core->new_child) {
2015 tmp_clk = clk_propagate_rate_change(core->new_child, event);
James Hogan71472c02013-07-29 12:25:00 +01002016 if (tmp_clk)
2017 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07002018 }
2019
2020 return fail_clk;
2021}
2022
2023/*
2024 * walk down a subtree and set the new rates notifying the rate
2025 * change on the way
2026 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002027static void clk_change_rate(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002028{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002029 struct clk_core *child;
Tero Kristo067bb172014-08-21 16:47:45 +03002030 struct hlist_node *tmp;
Mike Turquetteb24764902012-03-15 23:11:19 -07002031 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01002032 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08002033 bool skip_set_rate = false;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002034 struct clk_core *old_parent;
Dong Aishengfc8726a2016-06-30 17:31:14 +08002035 struct clk_core *parent = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07002036
Stephen Boydd6968fc2015-04-30 13:54:13 -07002037 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002038
Dong Aishengfc8726a2016-06-30 17:31:14 +08002039 if (core->new_parent) {
2040 parent = core->new_parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002041 best_parent_rate = core->new_parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08002042 } else if (core->parent) {
2043 parent = core->parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002044 best_parent_rate = core->parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08002045 }
Pawel Mollbf47b4f2012-06-08 14:04:06 +01002046
Marek Szyprowski588fb542017-11-30 13:14:51 +01002047 if (clk_pm_runtime_get(core))
2048 return;
2049
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01002050 if (core->flags & CLK_SET_RATE_UNGATE) {
2051 unsigned long flags;
2052
2053 clk_core_prepare(core);
2054 flags = clk_enable_lock();
2055 clk_core_enable(core);
2056 clk_enable_unlock(flags);
2057 }
2058
Stephen Boydd6968fc2015-04-30 13:54:13 -07002059 if (core->new_parent && core->new_parent != core->parent) {
2060 old_parent = __clk_set_parent_before(core, core->new_parent);
2061 trace_clk_set_parent(core, core->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002062
Stephen Boydd6968fc2015-04-30 13:54:13 -07002063 if (core->ops->set_rate_and_parent) {
Stephen Boyd3fa22522014-01-15 10:47:22 -08002064 skip_set_rate = true;
Stephen Boydd6968fc2015-04-30 13:54:13 -07002065 core->ops->set_rate_and_parent(core->hw, core->new_rate,
Stephen Boyd3fa22522014-01-15 10:47:22 -08002066 best_parent_rate,
Stephen Boydd6968fc2015-04-30 13:54:13 -07002067 core->new_parent_index);
2068 } else if (core->ops->set_parent) {
2069 core->ops->set_parent(core->hw, core->new_parent_index);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002070 }
2071
Stephen Boydd6968fc2015-04-30 13:54:13 -07002072 trace_clk_set_parent_complete(core, core->new_parent);
2073 __clk_set_parent_after(core, core->new_parent, old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08002074 }
2075
Dong Aishengfc8726a2016-06-30 17:31:14 +08002076 if (core->flags & CLK_OPS_PARENT_ENABLE)
2077 clk_core_prepare_enable(parent);
2078
Stephen Boydd6968fc2015-04-30 13:54:13 -07002079 trace_clk_set_rate(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002080
Stephen Boydd6968fc2015-04-30 13:54:13 -07002081 if (!skip_set_rate && core->ops->set_rate)
2082 core->ops->set_rate(core->hw, core->new_rate, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002083
Stephen Boydd6968fc2015-04-30 13:54:13 -07002084 trace_clk_set_rate_complete(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002085
Stephen Boydd6968fc2015-04-30 13:54:13 -07002086 core->rate = clk_recalc(core, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002087
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01002088 if (core->flags & CLK_SET_RATE_UNGATE) {
2089 unsigned long flags;
2090
2091 flags = clk_enable_lock();
2092 clk_core_disable(core);
2093 clk_enable_unlock(flags);
2094 clk_core_unprepare(core);
2095 }
2096
Dong Aishengfc8726a2016-06-30 17:31:14 +08002097 if (core->flags & CLK_OPS_PARENT_ENABLE)
2098 clk_core_disable_unprepare(parent);
2099
Stephen Boydd6968fc2015-04-30 13:54:13 -07002100 if (core->notifier_count && old_rate != core->rate)
2101 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002102
Michael Turquette85e88fa2015-06-20 12:18:03 -07002103 if (core->flags & CLK_RECALC_NEW_RATES)
2104 (void)clk_calc_new_rates(core, core->new_rate);
Bartlomiej Zolnierkiewiczd8d91982015-04-03 18:43:44 +02002105
Tero Kristo067bb172014-08-21 16:47:45 +03002106 /*
2107 * Use safe iteration, as change_rate can actually swap parents
2108 * for certain clock types.
2109 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002110 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01002111 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002112 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01002113 continue;
Mike Turquetteb24764902012-03-15 23:11:19 -07002114 clk_change_rate(child);
James Hogan71472c02013-07-29 12:25:00 +01002115 }
2116
Stephen Boydd6968fc2015-04-30 13:54:13 -07002117 /* handle the new child who might not be in core->children yet */
2118 if (core->new_child)
2119 clk_change_rate(core->new_child);
Marek Szyprowski588fb542017-11-30 13:14:51 +01002120
2121 clk_pm_runtime_put(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002122}
2123
Jerome Brunetca5e0892017-12-01 22:51:55 +01002124static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core,
2125 unsigned long req_rate)
2126{
Jerome Brunete55a8392017-12-01 22:51:56 +01002127 int ret, cnt;
Jerome Brunetca5e0892017-12-01 22:51:55 +01002128 struct clk_rate_request req;
2129
2130 lockdep_assert_held(&prepare_lock);
2131
2132 if (!core)
2133 return 0;
2134
Jerome Brunete55a8392017-12-01 22:51:56 +01002135 /* simulate what the rate would be if it could be freely set */
2136 cnt = clk_core_rate_nuke_protect(core);
2137 if (cnt < 0)
2138 return cnt;
2139
Jerome Brunetca5e0892017-12-01 22:51:55 +01002140 clk_core_get_boundaries(core, &req.min_rate, &req.max_rate);
2141 req.rate = req_rate;
2142
2143 ret = clk_core_round_rate_nolock(core, &req);
2144
Jerome Brunete55a8392017-12-01 22:51:56 +01002145 /* restore the protection */
2146 clk_core_rate_restore_protect(core, cnt);
2147
Jerome Brunetca5e0892017-12-01 22:51:55 +01002148 return ret ? 0 : req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07002149}
2150
Stephen Boydd6968fc2015-04-30 13:54:13 -07002151static int clk_core_set_rate_nolock(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002152 unsigned long req_rate)
2153{
2154 struct clk_core *top, *fail_clk;
Jerome Brunetca5e0892017-12-01 22:51:55 +01002155 unsigned long rate;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002156 int ret = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002157
Stephen Boydd6968fc2015-04-30 13:54:13 -07002158 if (!core)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002159 return 0;
2160
Jerome Brunetca5e0892017-12-01 22:51:55 +01002161 rate = clk_core_req_round_rate_nolock(core, req_rate);
2162
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002163 /* bail early if nothing to do */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002164 if (rate == clk_core_get_rate_nolock(core))
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002165 return 0;
2166
Jerome Brunete55a8392017-12-01 22:51:56 +01002167 /* fail on a direct rate set of a protected provider */
2168 if (clk_core_rate_is_protected(core))
2169 return -EBUSY;
2170
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002171 /* calculate new rates and get the topmost changed clock */
Jerome Brunetca5e0892017-12-01 22:51:55 +01002172 top = clk_calc_new_rates(core, req_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002173 if (!top)
2174 return -EINVAL;
2175
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002176 ret = clk_pm_runtime_get(core);
2177 if (ret)
2178 return ret;
2179
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002180 /* notify that we are about to change rates */
2181 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
2182 if (fail_clk) {
2183 pr_debug("%s: failed to set %s rate\n", __func__,
2184 fail_clk->name);
2185 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002186 ret = -EBUSY;
2187 goto err;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002188 }
2189
2190 /* change the rates */
2191 clk_change_rate(top);
2192
Stephen Boydd6968fc2015-04-30 13:54:13 -07002193 core->req_rate = req_rate;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002194err:
2195 clk_pm_runtime_put(core);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002196
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002197 return ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002198}
2199
Mike Turquetteb24764902012-03-15 23:11:19 -07002200/**
2201 * clk_set_rate - specify a new rate for clk
2202 * @clk: the clk whose rate is being changed
2203 * @rate: the new rate for clk
2204 *
Mike Turquette5654dc92012-03-26 11:51:34 -07002205 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07002206 *
Mike Turquette5654dc92012-03-26 11:51:34 -07002207 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
2208 * propagate up to clk's parent; whether or not this happens depends on the
2209 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
2210 * after calling .round_rate then upstream parent propagation is ignored. If
2211 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02002212 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07002213 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
2214 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07002215 *
Mike Turquette5654dc92012-03-26 11:51:34 -07002216 * Rate changes are accomplished via tree traversal that also recalculates the
2217 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07002218 *
2219 * Returns 0 on success, -EERROR otherwise.
2220 */
2221int clk_set_rate(struct clk *clk, unsigned long rate)
2222{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002223 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07002224
Mike Turquette89ac8d72013-08-21 23:58:09 -07002225 if (!clk)
2226 return 0;
2227
Mike Turquetteb24764902012-03-15 23:11:19 -07002228 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07002229 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002230
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002231 if (clk->exclusive_count)
2232 clk_core_rate_unprotect(clk->core);
2233
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002234 ret = clk_core_set_rate_nolock(clk->core, rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002235
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002236 if (clk->exclusive_count)
2237 clk_core_rate_protect(clk->core);
2238
Mike Turquetteeab89f62013-03-28 13:59:01 -07002239 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002240
2241 return ret;
2242}
2243EXPORT_SYMBOL_GPL(clk_set_rate);
2244
2245/**
Geert Uytterhoeven65e22182019-06-17 15:56:02 +02002246 * clk_set_rate_exclusive - specify a new rate and get exclusive control
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002247 * @clk: the clk whose rate is being changed
2248 * @rate: the new rate for clk
2249 *
2250 * This is a combination of clk_set_rate() and clk_rate_exclusive_get()
2251 * within a critical section
2252 *
2253 * This can be used initially to ensure that at least 1 consumer is
Geert Uytterhoeven65e22182019-06-17 15:56:02 +02002254 * satisfied when several consumers are competing for exclusivity over the
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002255 * same clock provider.
2256 *
2257 * The exclusivity is not applied if setting the rate failed.
2258 *
2259 * Calls to clk_rate_exclusive_get() should be balanced with calls to
2260 * clk_rate_exclusive_put().
2261 *
2262 * Returns 0 on success, -EERROR otherwise.
2263 */
2264int clk_set_rate_exclusive(struct clk *clk, unsigned long rate)
2265{
2266 int ret;
2267
2268 if (!clk)
2269 return 0;
2270
2271 /* prevent racing with updates to the clock topology */
2272 clk_prepare_lock();
2273
2274 /*
2275 * The temporary protection removal is not here, on purpose
2276 * This function is meant to be used instead of clk_rate_protect,
2277 * so before the consumer code path protect the clock provider
2278 */
2279
2280 ret = clk_core_set_rate_nolock(clk->core, rate);
2281 if (!ret) {
2282 clk_core_rate_protect(clk->core);
2283 clk->exclusive_count++;
2284 }
2285
2286 clk_prepare_unlock();
2287
2288 return ret;
2289}
2290EXPORT_SYMBOL_GPL(clk_set_rate_exclusive);
2291
2292/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002293 * clk_set_rate_range - set a rate range for a clock source
2294 * @clk: clock source
2295 * @min: desired minimum clock rate in Hz, inclusive
2296 * @max: desired maximum clock rate in Hz, inclusive
2297 *
2298 * Returns success (0) or negative errno.
2299 */
2300int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
2301{
2302 int ret = 0;
Jerome Brunet6562fbc2017-12-01 22:52:00 +01002303 unsigned long old_min, old_max, rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002304
2305 if (!clk)
2306 return 0;
2307
2308 if (min > max) {
2309 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2310 __func__, clk->core->name, clk->dev_id, clk->con_id,
2311 min, max);
2312 return -EINVAL;
2313 }
2314
2315 clk_prepare_lock();
2316
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002317 if (clk->exclusive_count)
2318 clk_core_rate_unprotect(clk->core);
2319
Jerome Brunet6562fbc2017-12-01 22:52:00 +01002320 /* Save the current values in case we need to rollback the change */
2321 old_min = clk->min_rate;
2322 old_max = clk->max_rate;
2323 clk->min_rate = min;
2324 clk->max_rate = max;
2325
2326 rate = clk_core_get_rate_nolock(clk->core);
2327 if (rate < min || rate > max) {
2328 /*
2329 * FIXME:
2330 * We are in bit of trouble here, current rate is outside the
2331 * the requested range. We are going try to request appropriate
2332 * range boundary but there is a catch. It may fail for the
2333 * usual reason (clock broken, clock protected, etc) but also
2334 * because:
2335 * - round_rate() was not favorable and fell on the wrong
2336 * side of the boundary
2337 * - the determine_rate() callback does not really check for
2338 * this corner case when determining the rate
2339 */
2340
2341 if (rate < min)
2342 rate = min;
2343 else
2344 rate = max;
2345
2346 ret = clk_core_set_rate_nolock(clk->core, rate);
2347 if (ret) {
2348 /* rollback the changes */
2349 clk->min_rate = old_min;
2350 clk->max_rate = old_max;
2351 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002352 }
2353
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002354 if (clk->exclusive_count)
2355 clk_core_rate_protect(clk->core);
2356
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01002357 clk_prepare_unlock();
2358
2359 return ret;
2360}
2361EXPORT_SYMBOL_GPL(clk_set_rate_range);
2362
2363/**
2364 * clk_set_min_rate - set a minimum clock rate for a clock source
2365 * @clk: clock source
2366 * @rate: desired minimum clock rate in Hz, inclusive
2367 *
2368 * Returns success (0) or negative errno.
2369 */
2370int clk_set_min_rate(struct clk *clk, unsigned long rate)
2371{
2372 if (!clk)
2373 return 0;
2374
2375 return clk_set_rate_range(clk, rate, clk->max_rate);
2376}
2377EXPORT_SYMBOL_GPL(clk_set_min_rate);
2378
2379/**
2380 * clk_set_max_rate - set a maximum clock rate for a clock source
2381 * @clk: clock source
2382 * @rate: desired maximum clock rate in Hz, inclusive
2383 *
2384 * Returns success (0) or negative errno.
2385 */
2386int clk_set_max_rate(struct clk *clk, unsigned long rate)
2387{
2388 if (!clk)
2389 return 0;
2390
2391 return clk_set_rate_range(clk, clk->min_rate, rate);
2392}
2393EXPORT_SYMBOL_GPL(clk_set_max_rate);
2394
2395/**
Mike Turquetteb24764902012-03-15 23:11:19 -07002396 * clk_get_parent - return the parent of a clk
2397 * @clk: the clk whose parent gets returned
2398 *
2399 * Simply returns clk->parent. Returns NULL if clk is NULL.
2400 */
2401struct clk *clk_get_parent(struct clk *clk)
2402{
2403 struct clk *parent;
2404
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002405 if (!clk)
2406 return NULL;
2407
Mike Turquetteeab89f62013-03-28 13:59:01 -07002408 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002409 /* TODO: Create a per-user clk and change callers to call clk_put */
2410 parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk;
Mike Turquetteeab89f62013-03-28 13:59:01 -07002411 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002412
2413 return parent;
2414}
2415EXPORT_SYMBOL_GPL(clk_get_parent);
2416
Stephen Boydd6968fc2015-04-30 13:54:13 -07002417static struct clk_core *__clk_init_parent(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002418{
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002419 u8 index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002420
Masahiro Yamada2430a942016-02-09 20:19:14 +09002421 if (core->num_parents > 1 && core->ops->get_parent)
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002422 index = core->ops->get_parent(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07002423
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002424 return clk_core_get_parent_by_index(core, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002425}
2426
Stephen Boydd6968fc2015-04-30 13:54:13 -07002427static void clk_core_reparent(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002428 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +02002429{
Stephen Boydd6968fc2015-04-30 13:54:13 -07002430 clk_reparent(core, new_parent);
2431 __clk_recalc_accuracies(core);
2432 __clk_recalc_rates(core, POST_RATE_CHANGE);
Mike Turquetteb24764902012-03-15 23:11:19 -07002433}
2434
Tomeu Vizoso42c86542015-03-11 11:34:25 +01002435void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
2436{
2437 if (!hw)
2438 return;
2439
2440 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
2441}
2442
Mike Turquetteb24764902012-03-15 23:11:19 -07002443/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002444 * clk_has_parent - check if a clock is a possible parent for another
2445 * @clk: clock source
2446 * @parent: parent clock source
Mike Turquetteb24764902012-03-15 23:11:19 -07002447 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002448 * This function can be used in drivers that need to check that a clock can be
2449 * the parent of another without actually changing the parent.
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07002450 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002451 * Returns true if @parent is a possible parent for @clk, false otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07002452 */
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002453bool clk_has_parent(struct clk *clk, struct clk *parent)
2454{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002455 struct clk_core *core, *parent_core;
Stephen Boydfc0c2092019-04-12 11:31:47 -07002456 int i;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002457
2458 /* NULL clocks should be nops, so return success if either is NULL. */
2459 if (!clk || !parent)
2460 return true;
2461
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002462 core = clk->core;
2463 parent_core = parent->core;
2464
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002465 /* Optimize for the case where the parent is already the parent. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002466 if (core->parent == parent_core)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002467 return true;
2468
Stephen Boydfc0c2092019-04-12 11:31:47 -07002469 for (i = 0; i < core->num_parents; i++)
2470 if (!strcmp(core->parents[i].name, parent_core->name))
2471 return true;
2472
2473 return false;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002474}
2475EXPORT_SYMBOL_GPL(clk_has_parent);
2476
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002477static int clk_core_set_parent_nolock(struct clk_core *core,
2478 struct clk_core *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07002479{
2480 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002481 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002482 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002483
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002484 lockdep_assert_held(&prepare_lock);
2485
Stephen Boydd6968fc2015-04-30 13:54:13 -07002486 if (!core)
Mike Turquette89ac8d72013-08-21 23:58:09 -07002487 return 0;
2488
Stephen Boydd6968fc2015-04-30 13:54:13 -07002489 if (core->parent == parent)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002490 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002491
Rishi Guptaef13e552019-08-17 12:05:59 +05302492 /* verify ops for multi-parent clks */
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002493 if (core->num_parents > 1 && !core->ops->set_parent)
2494 return -EPERM;
Stephen Boydb61c43c2015-02-02 14:11:25 -08002495
Ulf Hansson031dcc92013-04-02 23:09:38 +02002496 /* check that we are allowed to re-parent if the clock is in use */
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002497 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count)
2498 return -EBUSY;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002499
Jerome Brunete55a8392017-12-01 22:51:56 +01002500 if (clk_core_rate_is_protected(core))
2501 return -EBUSY;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002502
2503 /* try finding the new parent index */
2504 if (parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002505 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002506 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02002507 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002508 __func__, parent->name, core->name);
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002509 return p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002510 }
Masahiro Yamadae8f0e682015-12-28 19:23:10 +09002511 p_rate = parent->rate;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002512 }
2513
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002514 ret = clk_pm_runtime_get(core);
2515 if (ret)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002516 return ret;
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002517
Mike Turquetteb24764902012-03-15 23:11:19 -07002518 /* propagate PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002519 ret = __clk_speculate_rates(core, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002520
2521 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07002522 if (ret & NOTIFY_STOP_MASK)
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002523 goto runtime_put;
Mike Turquetteb24764902012-03-15 23:11:19 -07002524
Ulf Hansson031dcc92013-04-02 23:09:38 +02002525 /* do the re-parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002526 ret = __clk_set_parent(core, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002527
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002528 /* propagate rate an accuracy recalculation accordingly */
2529 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002530 __clk_recalc_rates(core, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002531 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002532 __clk_recalc_rates(core, POST_RATE_CHANGE);
2533 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002534 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002535
Marek Szyprowski9a34b452017-08-21 10:04:59 +02002536runtime_put:
2537 clk_pm_runtime_put(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07002538
2539 return ret;
2540}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002541
Neil Armstrong35678942019-07-31 10:40:16 +02002542int clk_hw_set_parent(struct clk_hw *hw, struct clk_hw *parent)
2543{
2544 return clk_core_set_parent_nolock(hw->core, parent->core);
2545}
2546EXPORT_SYMBOL_GPL(clk_hw_set_parent);
2547
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002548/**
2549 * clk_set_parent - switch the parent of a mux clk
2550 * @clk: the mux clk whose input we are switching
2551 * @parent: the new input to clk
2552 *
2553 * Re-parent clk to use parent as its new input source. If clk is in
2554 * prepared state, the clk will get enabled for the duration of this call. If
2555 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2556 * that, the reparenting is glitchy in hardware, etc), use the
2557 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2558 *
2559 * After successfully changing clk's parent clk_set_parent will update the
2560 * clk topology, sysfs topology and propagate rate recalculation via
2561 * __clk_recalc_rates.
2562 *
2563 * Returns 0 on success, -EERROR otherwise.
2564 */
2565int clk_set_parent(struct clk *clk, struct clk *parent)
2566{
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002567 int ret;
2568
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002569 if (!clk)
2570 return 0;
2571
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002572 clk_prepare_lock();
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002573
2574 if (clk->exclusive_count)
2575 clk_core_rate_unprotect(clk->core);
2576
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002577 ret = clk_core_set_parent_nolock(clk->core,
2578 parent ? parent->core : NULL);
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002579
2580 if (clk->exclusive_count)
2581 clk_core_rate_protect(clk->core);
2582
Jerome Brunet91baa9f2017-12-01 22:51:52 +01002583 clk_prepare_unlock();
2584
2585 return ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002586}
Mike Turquetteb24764902012-03-15 23:11:19 -07002587EXPORT_SYMBOL_GPL(clk_set_parent);
2588
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002589static int clk_core_set_phase_nolock(struct clk_core *core, int degrees)
2590{
2591 int ret = -EINVAL;
2592
2593 lockdep_assert_held(&prepare_lock);
2594
2595 if (!core)
2596 return 0;
2597
Jerome Brunete55a8392017-12-01 22:51:56 +01002598 if (clk_core_rate_is_protected(core))
2599 return -EBUSY;
2600
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002601 trace_clk_set_phase(core, degrees);
2602
Shawn Lin7f95bee2018-03-08 14:49:41 +08002603 if (core->ops->set_phase) {
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002604 ret = core->ops->set_phase(core->hw, degrees);
Shawn Lin7f95bee2018-03-08 14:49:41 +08002605 if (!ret)
2606 core->phase = degrees;
2607 }
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002608
2609 trace_clk_set_phase_complete(core, degrees);
2610
2611 return ret;
2612}
2613
Mike Turquetteb24764902012-03-15 23:11:19 -07002614/**
Mike Turquettee59c5372014-02-18 21:21:25 -08002615 * clk_set_phase - adjust the phase shift of a clock signal
2616 * @clk: clock signal source
2617 * @degrees: number of degrees the signal is shifted
2618 *
2619 * Shifts the phase of a clock signal by the specified
2620 * degrees. Returns 0 on success, -EERROR otherwise.
2621 *
2622 * This function makes no distinction about the input or reference
2623 * signal that we adjust the clock signal phase against. For example
2624 * phase locked-loop clock signal generators we may shift phase with
2625 * respect to feedback clock signal input, but for other cases the
2626 * clock phase may be shifted with respect to some other, unspecified
2627 * signal.
2628 *
2629 * Additionally the concept of phase shift does not propagate through
2630 * the clock tree hierarchy, which sets it apart from clock rates and
2631 * clock accuracy. A parent clock phase attribute does not have an
2632 * impact on the phase attribute of a child clock.
2633 */
2634int clk_set_phase(struct clk *clk, int degrees)
2635{
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002636 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002637
2638 if (!clk)
Stephen Boyd08b95752015-02-02 14:09:43 -08002639 return 0;
Mike Turquettee59c5372014-02-18 21:21:25 -08002640
2641 /* sanity check degrees */
2642 degrees %= 360;
2643 if (degrees < 0)
2644 degrees += 360;
2645
2646 clk_prepare_lock();
2647
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002648 if (clk->exclusive_count)
2649 clk_core_rate_unprotect(clk->core);
Stephen Boyddfc202e2015-02-02 14:37:41 -08002650
Jerome Brunet9e4d04a2017-12-01 22:51:53 +01002651 ret = clk_core_set_phase_nolock(clk->core, degrees);
Mike Turquettee59c5372014-02-18 21:21:25 -08002652
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01002653 if (clk->exclusive_count)
2654 clk_core_rate_protect(clk->core);
Mike Turquettee59c5372014-02-18 21:21:25 -08002655
Mike Turquettee59c5372014-02-18 21:21:25 -08002656 clk_prepare_unlock();
2657
Mike Turquettee59c5372014-02-18 21:21:25 -08002658 return ret;
2659}
Maxime Ripard9767b04f2015-01-20 22:23:43 +01002660EXPORT_SYMBOL_GPL(clk_set_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08002661
Stephen Boydd6968fc2015-04-30 13:54:13 -07002662static int clk_core_get_phase(struct clk_core *core)
Mike Turquettee59c5372014-02-18 21:21:25 -08002663{
Stephen Boyd1f3e1982015-04-30 14:21:56 -07002664 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002665
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002666 lockdep_assert_held(&prepare_lock);
2667 if (!core->ops->get_phase)
2668 return 0;
2669
Shawn Lin1f9c63e2018-03-14 08:28:31 +08002670 /* Always try to update cached phase if possible */
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002671 ret = core->ops->get_phase(core->hw);
2672 if (ret >= 0)
2673 core->phase = ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002674
Mike Turquettee59c5372014-02-18 21:21:25 -08002675 return ret;
2676}
2677
2678/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002679 * clk_get_phase - return the phase shift of a clock signal
2680 * @clk: clock signal source
2681 *
2682 * Returns the phase shift of a clock node in degrees, otherwise returns
2683 * -EERROR.
2684 */
2685int clk_get_phase(struct clk *clk)
2686{
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002687 int ret;
2688
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002689 if (!clk)
2690 return 0;
2691
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002692 clk_prepare_lock();
2693 ret = clk_core_get_phase(clk->core);
2694 clk_prepare_unlock();
2695
2696 return ret;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002697}
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002698EXPORT_SYMBOL_GPL(clk_get_phase);
Mike Turquetteb24764902012-03-15 23:11:19 -07002699
Jerome Brunet9fba7382018-06-19 16:41:41 +02002700static void clk_core_reset_duty_cycle_nolock(struct clk_core *core)
2701{
2702 /* Assume a default value of 50% */
2703 core->duty.num = 1;
2704 core->duty.den = 2;
2705}
2706
2707static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core);
2708
2709static int clk_core_update_duty_cycle_nolock(struct clk_core *core)
2710{
2711 struct clk_duty *duty = &core->duty;
2712 int ret = 0;
2713
2714 if (!core->ops->get_duty_cycle)
2715 return clk_core_update_duty_cycle_parent_nolock(core);
2716
2717 ret = core->ops->get_duty_cycle(core->hw, duty);
2718 if (ret)
2719 goto reset;
2720
2721 /* Don't trust the clock provider too much */
2722 if (duty->den == 0 || duty->num > duty->den) {
2723 ret = -EINVAL;
2724 goto reset;
2725 }
2726
2727 return 0;
2728
2729reset:
2730 clk_core_reset_duty_cycle_nolock(core);
2731 return ret;
2732}
2733
2734static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core)
2735{
2736 int ret = 0;
2737
2738 if (core->parent &&
2739 core->flags & CLK_DUTY_CYCLE_PARENT) {
2740 ret = clk_core_update_duty_cycle_nolock(core->parent);
2741 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2742 } else {
2743 clk_core_reset_duty_cycle_nolock(core);
2744 }
2745
2746 return ret;
2747}
2748
2749static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2750 struct clk_duty *duty);
2751
2752static int clk_core_set_duty_cycle_nolock(struct clk_core *core,
2753 struct clk_duty *duty)
2754{
2755 int ret;
2756
2757 lockdep_assert_held(&prepare_lock);
2758
2759 if (clk_core_rate_is_protected(core))
2760 return -EBUSY;
2761
2762 trace_clk_set_duty_cycle(core, duty);
2763
2764 if (!core->ops->set_duty_cycle)
2765 return clk_core_set_duty_cycle_parent_nolock(core, duty);
2766
2767 ret = core->ops->set_duty_cycle(core->hw, duty);
2768 if (!ret)
2769 memcpy(&core->duty, duty, sizeof(*duty));
2770
2771 trace_clk_set_duty_cycle_complete(core, duty);
2772
2773 return ret;
2774}
2775
2776static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core,
2777 struct clk_duty *duty)
2778{
2779 int ret = 0;
2780
2781 if (core->parent &&
2782 core->flags & (CLK_DUTY_CYCLE_PARENT | CLK_SET_RATE_PARENT)) {
2783 ret = clk_core_set_duty_cycle_nolock(core->parent, duty);
2784 memcpy(&core->duty, &core->parent->duty, sizeof(core->duty));
2785 }
2786
2787 return ret;
2788}
2789
2790/**
2791 * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal
2792 * @clk: clock signal source
2793 * @num: numerator of the duty cycle ratio to be applied
2794 * @den: denominator of the duty cycle ratio to be applied
2795 *
2796 * Apply the duty cycle ratio if the ratio is valid and the clock can
2797 * perform this operation
2798 *
2799 * Returns (0) on success, a negative errno otherwise.
2800 */
2801int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den)
2802{
2803 int ret;
2804 struct clk_duty duty;
2805
2806 if (!clk)
2807 return 0;
2808
2809 /* sanity check the ratio */
2810 if (den == 0 || num > den)
2811 return -EINVAL;
2812
2813 duty.num = num;
2814 duty.den = den;
2815
2816 clk_prepare_lock();
2817
2818 if (clk->exclusive_count)
2819 clk_core_rate_unprotect(clk->core);
2820
2821 ret = clk_core_set_duty_cycle_nolock(clk->core, &duty);
2822
2823 if (clk->exclusive_count)
2824 clk_core_rate_protect(clk->core);
2825
2826 clk_prepare_unlock();
2827
2828 return ret;
2829}
2830EXPORT_SYMBOL_GPL(clk_set_duty_cycle);
2831
2832static int clk_core_get_scaled_duty_cycle(struct clk_core *core,
2833 unsigned int scale)
2834{
2835 struct clk_duty *duty = &core->duty;
2836 int ret;
2837
2838 clk_prepare_lock();
2839
2840 ret = clk_core_update_duty_cycle_nolock(core);
2841 if (!ret)
2842 ret = mult_frac(scale, duty->num, duty->den);
2843
2844 clk_prepare_unlock();
2845
2846 return ret;
2847}
2848
2849/**
2850 * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal
2851 * @clk: clock signal source
2852 * @scale: scaling factor to be applied to represent the ratio as an integer
2853 *
2854 * Returns the duty cycle ratio of a clock node multiplied by the provided
2855 * scaling factor, or negative errno on error.
2856 */
2857int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale)
2858{
2859 if (!clk)
2860 return 0;
2861
2862 return clk_core_get_scaled_duty_cycle(clk->core, scale);
2863}
2864EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle);
2865
Mike Turquetteb24764902012-03-15 23:11:19 -07002866/**
Michael Turquette3d3801e2015-02-25 09:11:01 -08002867 * clk_is_match - check if two clk's point to the same hardware clock
2868 * @p: clk compared against q
2869 * @q: clk compared against p
2870 *
2871 * Returns true if the two struct clk pointers both point to the same hardware
2872 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2873 * share the same struct clk_core object.
2874 *
2875 * Returns false otherwise. Note that two NULL clks are treated as matching.
2876 */
2877bool clk_is_match(const struct clk *p, const struct clk *q)
2878{
2879 /* trivial case: identical struct clk's or both NULL */
2880 if (p == q)
2881 return true;
2882
Geert Uytterhoeven3fe003f2015-10-29 20:55:00 +01002883 /* true if clk->core pointers match. Avoid dereferencing garbage */
Michael Turquette3d3801e2015-02-25 09:11:01 -08002884 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
2885 if (p->core == q->core)
2886 return true;
2887
2888 return false;
2889}
2890EXPORT_SYMBOL_GPL(clk_is_match);
2891
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002892/*** debugfs support ***/
2893
2894#ifdef CONFIG_DEBUG_FS
2895#include <linux/debugfs.h>
2896
2897static struct dentry *rootdir;
2898static int inited = 0;
2899static DEFINE_MUTEX(clk_debug_lock);
2900static HLIST_HEAD(clk_debug_list);
2901
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002902static struct hlist_head *orphan_list[] = {
2903 &clk_orphan_list,
2904 NULL,
2905};
2906
2907static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
2908 int level)
2909{
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002910 int phase;
2911
2912 seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu ",
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002913 level * 3 + 1, "",
2914 30 - level * 3, c->name,
Jerome Brunete55a8392017-12-01 22:51:56 +01002915 c->enable_count, c->prepare_count, c->protect_count,
Stephen Boyd0daa3762020-02-05 15:28:01 -08002916 clk_core_get_rate_recalc(c),
2917 clk_core_get_accuracy_recalc(c));
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002918
2919 phase = clk_core_get_phase(c);
2920 if (phase >= 0)
2921 seq_printf(s, "%5d", phase);
2922 else
2923 seq_puts(s, "-----");
2924
2925 seq_printf(s, " %6d\n", clk_core_get_scaled_duty_cycle(c, 100000));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002926}
2927
2928static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
2929 int level)
2930{
2931 struct clk_core *child;
2932
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002933 clk_summary_show_one(s, c, level);
2934
2935 hlist_for_each_entry(child, &c->children, child_node)
2936 clk_summary_show_subtree(s, child, level + 1);
2937}
2938
2939static int clk_summary_show(struct seq_file *s, void *data)
2940{
2941 struct clk_core *c;
2942 struct hlist_head **lists = (struct hlist_head **)s->private;
2943
Jerome Brunet9fba7382018-06-19 16:41:41 +02002944 seq_puts(s, " enable prepare protect duty\n");
2945 seq_puts(s, " clock count count count rate accuracy phase cycle\n");
2946 seq_puts(s, "---------------------------------------------------------------------------------------------\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002947
2948 clk_prepare_lock();
2949
2950 for (; *lists; lists++)
2951 hlist_for_each_entry(c, *lists, child_node)
2952 clk_summary_show_subtree(s, c, 0);
2953
2954 clk_prepare_unlock();
2955
2956 return 0;
2957}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002958DEFINE_SHOW_ATTRIBUTE(clk_summary);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002959
2960static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
2961{
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002962 int phase;
Leonard Crestez1bd37a42019-07-02 16:27:09 +03002963 unsigned long min_rate, max_rate;
2964
Leonard Crestez1bd37a42019-07-02 16:27:09 +03002965 clk_core_get_boundaries(c, &min_rate, &max_rate);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002966
Stefan Wahren7cb81132015-04-29 16:36:43 +00002967 /* This should be JSON format, i.e. elements separated with a comma */
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002968 seq_printf(s, "\"%s\": { ", c->name);
2969 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
2970 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Jerome Brunete55a8392017-12-01 22:51:56 +01002971 seq_printf(s, "\"protect_count\": %d,", c->protect_count);
Stephen Boyd0daa3762020-02-05 15:28:01 -08002972 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate_recalc(c));
Leonard Crestez1bd37a42019-07-02 16:27:09 +03002973 seq_printf(s, "\"min_rate\": %lu,", min_rate);
2974 seq_printf(s, "\"max_rate\": %lu,", max_rate);
Stephen Boyd0daa3762020-02-05 15:28:01 -08002975 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c));
Stephen Boydf21cf9c2020-02-05 15:27:59 -08002976 phase = clk_core_get_phase(c);
2977 if (phase >= 0)
2978 seq_printf(s, "\"phase\": %d,", phase);
Jerome Brunet9fba7382018-06-19 16:41:41 +02002979 seq_printf(s, "\"duty_cycle\": %u",
2980 clk_core_get_scaled_duty_cycle(c, 100000));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002981}
2982
2983static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
2984{
2985 struct clk_core *child;
2986
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002987 clk_dump_one(s, c, level);
2988
2989 hlist_for_each_entry(child, &c->children, child_node) {
Markus Elfring4d327582017-04-20 08:45:43 +02002990 seq_putc(s, ',');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002991 clk_dump_subtree(s, child, level + 1);
2992 }
2993
Markus Elfring4d327582017-04-20 08:45:43 +02002994 seq_putc(s, '}');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002995}
2996
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02002997static int clk_dump_show(struct seq_file *s, void *data)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002998{
2999 struct clk_core *c;
3000 bool first_node = true;
3001 struct hlist_head **lists = (struct hlist_head **)s->private;
3002
Markus Elfring4d327582017-04-20 08:45:43 +02003003 seq_putc(s, '{');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003004 clk_prepare_lock();
3005
3006 for (; *lists; lists++) {
3007 hlist_for_each_entry(c, *lists, child_node) {
3008 if (!first_node)
Markus Elfring4d327582017-04-20 08:45:43 +02003009 seq_putc(s, ',');
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003010 first_node = false;
3011 clk_dump_subtree(s, c, 0);
3012 }
3013 }
3014
3015 clk_prepare_unlock();
3016
Felipe Balbi70e9f4d2015-05-01 09:48:37 -05003017 seq_puts(s, "}\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003018 return 0;
3019}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003020DEFINE_SHOW_ATTRIBUTE(clk_dump);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003021
Geert Uytterhoeven37215da2019-08-28 15:23:06 +02003022#undef CLOCK_ALLOW_WRITE_DEBUGFS
3023#ifdef CLOCK_ALLOW_WRITE_DEBUGFS
3024/*
3025 * This can be dangerous, therefore don't provide any real compile time
3026 * configuration option for this feature.
3027 * People who want to use this will need to modify the source code directly.
3028 */
3029static int clk_rate_set(void *data, u64 val)
3030{
3031 struct clk_core *core = data;
3032 int ret;
3033
3034 clk_prepare_lock();
3035 ret = clk_core_set_rate_nolock(core, val);
3036 clk_prepare_unlock();
3037
3038 return ret;
3039}
3040
3041#define clk_rate_mode 0644
3042#else
3043#define clk_rate_set NULL
3044#define clk_rate_mode 0444
3045#endif
3046
3047static int clk_rate_get(void *data, u64 *val)
3048{
3049 struct clk_core *core = data;
3050
3051 *val = core->rate;
3052 return 0;
3053}
3054
3055DEFINE_DEBUGFS_ATTRIBUTE(clk_rate_fops, clk_rate_get, clk_rate_set, "%llu\n");
3056
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003057static const struct {
3058 unsigned long flag;
3059 const char *name;
3060} clk_flags[] = {
Geert Uytterhoeven40dd71c2018-07-06 17:16:54 +02003061#define ENTRY(f) { f, #f }
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003062 ENTRY(CLK_SET_RATE_GATE),
3063 ENTRY(CLK_SET_PARENT_GATE),
3064 ENTRY(CLK_SET_RATE_PARENT),
3065 ENTRY(CLK_IGNORE_UNUSED),
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003066 ENTRY(CLK_GET_RATE_NOCACHE),
3067 ENTRY(CLK_SET_RATE_NO_REPARENT),
3068 ENTRY(CLK_GET_ACCURACY_NOCACHE),
3069 ENTRY(CLK_RECALC_NEW_RATES),
3070 ENTRY(CLK_SET_RATE_UNGATE),
3071 ENTRY(CLK_IS_CRITICAL),
3072 ENTRY(CLK_OPS_PARENT_ENABLE),
Jerome Brunet9fba7382018-06-19 16:41:41 +02003073 ENTRY(CLK_DUTY_CYCLE_PARENT),
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003074#undef ENTRY
3075};
3076
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003077static int clk_flags_show(struct seq_file *s, void *data)
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003078{
3079 struct clk_core *core = s->private;
3080 unsigned long flags = core->flags;
3081 unsigned int i;
3082
3083 for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) {
3084 if (flags & clk_flags[i].flag) {
3085 seq_printf(s, "%s\n", clk_flags[i].name);
3086 flags &= ~clk_flags[i].flag;
3087 }
3088 }
3089 if (flags) {
3090 /* Unknown flags */
3091 seq_printf(s, "0x%lx\n", flags);
3092 }
3093
3094 return 0;
3095}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003096DEFINE_SHOW_ATTRIBUTE(clk_flags);
Geert Uytterhoevena6059ab2018-01-03 12:06:16 +01003097
Stephen Boyd11f6c232019-06-24 20:01:55 -07003098static void possible_parent_show(struct seq_file *s, struct clk_core *core,
3099 unsigned int i, char terminator)
Peter De Schrijver92031572017-03-21 15:20:31 +02003100{
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003101 struct clk_core *parent;
Peter De Schrijver92031572017-03-21 15:20:31 +02003102
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003103 /*
3104 * Go through the following options to fetch a parent's name.
3105 *
3106 * 1. Fetch the registered parent clock and use its name
3107 * 2. Use the global (fallback) name if specified
3108 * 3. Use the local fw_name if provided
3109 * 4. Fetch parent clock's clock-output-name if DT index was set
3110 *
3111 * This may still fail in some cases, such as when the parent is
3112 * specified directly via a struct clk_hw pointer, but it isn't
3113 * registered (yet).
3114 */
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003115 parent = clk_core_get_parent_by_index(core, i);
3116 if (parent)
Markus Elfring1ccc0dd2019-07-01 22:20:40 +02003117 seq_puts(s, parent->name);
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003118 else if (core->parents[i].name)
Markus Elfring1ccc0dd2019-07-01 22:20:40 +02003119 seq_puts(s, core->parents[i].name);
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003120 else if (core->parents[i].fw_name)
3121 seq_printf(s, "<%s>(fw)", core->parents[i].fw_name);
3122 else if (core->parents[i].index >= 0)
Markus Elfring1ccc0dd2019-07-01 22:20:40 +02003123 seq_puts(s,
3124 of_clk_get_parent_name(core->of_node,
3125 core->parents[i].index));
Chen-Yu Tsai2d156b72019-05-03 11:15:09 +08003126 else
3127 seq_puts(s, "(missing)");
Peter De Schrijver92031572017-03-21 15:20:31 +02003128
Stephen Boyd11f6c232019-06-24 20:01:55 -07003129 seq_putc(s, terminator);
3130}
3131
Peter De Schrijver92031572017-03-21 15:20:31 +02003132static int possible_parents_show(struct seq_file *s, void *data)
3133{
3134 struct clk_core *core = s->private;
3135 int i;
3136
3137 for (i = 0; i < core->num_parents - 1; i++)
Stephen Boyd11f6c232019-06-24 20:01:55 -07003138 possible_parent_show(s, core, i, ' ');
Peter De Schrijver92031572017-03-21 15:20:31 +02003139
Stephen Boyd11f6c232019-06-24 20:01:55 -07003140 possible_parent_show(s, core, i, '\n');
Peter De Schrijver92031572017-03-21 15:20:31 +02003141
3142 return 0;
3143}
Andy Shevchenkofec0ef32018-02-14 17:48:00 +02003144DEFINE_SHOW_ATTRIBUTE(possible_parents);
Peter De Schrijver92031572017-03-21 15:20:31 +02003145
Leonard Cresteze5e89242019-06-10 14:06:38 +03003146static int current_parent_show(struct seq_file *s, void *data)
3147{
3148 struct clk_core *core = s->private;
3149
3150 if (core->parent)
3151 seq_printf(s, "%s\n", core->parent->name);
3152
3153 return 0;
3154}
3155DEFINE_SHOW_ATTRIBUTE(current_parent);
3156
Jerome Brunet9fba7382018-06-19 16:41:41 +02003157static int clk_duty_cycle_show(struct seq_file *s, void *data)
3158{
3159 struct clk_core *core = s->private;
3160 struct clk_duty *duty = &core->duty;
3161
3162 seq_printf(s, "%u/%u\n", duty->num, duty->den);
3163
3164 return 0;
3165}
3166DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle);
3167
Leonard Crestez1bd37a42019-07-02 16:27:09 +03003168static int clk_min_rate_show(struct seq_file *s, void *data)
3169{
3170 struct clk_core *core = s->private;
3171 unsigned long min_rate, max_rate;
3172
3173 clk_prepare_lock();
3174 clk_core_get_boundaries(core, &min_rate, &max_rate);
3175 clk_prepare_unlock();
3176 seq_printf(s, "%lu\n", min_rate);
3177
3178 return 0;
3179}
3180DEFINE_SHOW_ATTRIBUTE(clk_min_rate);
3181
3182static int clk_max_rate_show(struct seq_file *s, void *data)
3183{
3184 struct clk_core *core = s->private;
3185 unsigned long min_rate, max_rate;
3186
3187 clk_prepare_lock();
3188 clk_core_get_boundaries(core, &min_rate, &max_rate);
3189 clk_prepare_unlock();
3190 seq_printf(s, "%lu\n", max_rate);
3191
3192 return 0;
3193}
3194DEFINE_SHOW_ATTRIBUTE(clk_max_rate);
3195
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003196static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003197{
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003198 struct dentry *root;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003199
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003200 if (!core || !pdentry)
3201 return;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003202
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003203 root = debugfs_create_dir(core->name, pdentry);
3204 core->dentry = root;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003205
Geert Uytterhoeven37215da2019-08-28 15:23:06 +02003206 debugfs_create_file("clk_rate", clk_rate_mode, root, core,
3207 &clk_rate_fops);
Leonard Crestez1bd37a42019-07-02 16:27:09 +03003208 debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops);
3209 debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops);
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003210 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3211 debugfs_create_u32("clk_phase", 0444, root, &core->phase);
3212 debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops);
3213 debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count);
3214 debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count);
3215 debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count);
3216 debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count);
Jerome Brunet9fba7382018-06-19 16:41:41 +02003217 debugfs_create_file("clk_duty_cycle", 0444, root, core,
3218 &clk_duty_cycle_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003219
Leonard Cresteze5e89242019-06-10 14:06:38 +03003220 if (core->num_parents > 0)
3221 debugfs_create_file("clk_parent", 0444, root, core,
3222 &current_parent_fops);
3223
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003224 if (core->num_parents > 1)
3225 debugfs_create_file("clk_possible_parents", 0444, root, core,
3226 &possible_parents_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003227
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003228 if (core->ops->debug_init)
3229 core->ops->debug_init(core->hw, core->dentry);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003230}
3231
3232/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003233 * clk_debug_register - add a clk node to the debugfs clk directory
3234 * @core: the clk being added to the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003235 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003236 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
3237 * initialized. Otherwise it bails out early since the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003238 * will be created lazily by clk_debug_init as part of a late_initcall.
3239 */
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003240static void clk_debug_register(struct clk_core *core)
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003241{
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003242 mutex_lock(&clk_debug_lock);
3243 hlist_add_head(&core->debug_node, &clk_debug_list);
Stephen Boyddb3188fa2018-01-03 16:44:37 -08003244 if (inited)
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003245 clk_debug_create_one(core, rootdir);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003246 mutex_unlock(&clk_debug_lock);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003247}
3248
3249 /**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003250 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3251 * @core: the clk being removed from the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003252 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003253 * Dynamically removes a clk and all its child nodes from the
3254 * debugfs clk directory if clk->dentry points to debugfs created by
Stephen Boyd706d5c72016-02-22 15:43:41 -08003255 * clk_debug_register in __clk_core_init.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003256 */
3257static void clk_debug_unregister(struct clk_core *core)
3258{
3259 mutex_lock(&clk_debug_lock);
3260 hlist_del_init(&core->debug_node);
3261 debugfs_remove_recursive(core->dentry);
3262 core->dentry = NULL;
3263 mutex_unlock(&clk_debug_lock);
3264}
3265
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003266/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003267 * clk_debug_init - lazily populate the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003268 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003269 * clks are often initialized very early during boot before memory can be
3270 * dynamically allocated and well before debugfs is setup. This function
3271 * populates the debugfs clk directory once at boot-time when we know that
3272 * debugfs is setup. It should only be called once at boot-time, all other clks
3273 * added dynamically will be done so with clk_debug_register.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003274 */
3275static int __init clk_debug_init(void)
3276{
3277 struct clk_core *core;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003278
3279 rootdir = debugfs_create_dir("clk", NULL);
3280
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003281 debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
3282 &clk_summary_fops);
3283 debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
3284 &clk_dump_fops);
3285 debugfs_create_file("clk_orphan_summary", 0444, rootdir, &orphan_list,
3286 &clk_summary_fops);
3287 debugfs_create_file("clk_orphan_dump", 0444, rootdir, &orphan_list,
3288 &clk_dump_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003289
3290 mutex_lock(&clk_debug_lock);
3291 hlist_for_each_entry(core, &clk_debug_list, debug_node)
3292 clk_debug_create_one(core, rootdir);
3293
3294 inited = 1;
3295 mutex_unlock(&clk_debug_lock);
3296
3297 return 0;
3298}
3299late_initcall(clk_debug_init);
3300#else
Greg Kroah-Hartman8a26bbb2018-05-29 18:08:00 +02003301static inline void clk_debug_register(struct clk_core *core) { }
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003302static 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;
Maxime Ripardc3944ec2020-02-25 14:42:48 +01003347 int phase;
Mike Turquetteb24764902012-03-15 23:11:19 -07003348
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09003349 if (!core)
Mike Turquetted1302a32012-03-29 14:30:40 -07003350 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07003351
Mike Turquetteeab89f62013-03-28 13:59:01 -07003352 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003353
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003354 ret = clk_pm_runtime_get(core);
3355 if (ret)
3356 goto unlock;
3357
Mike Turquetteb24764902012-03-15 23:11:19 -07003358 /* check to see if a clock with this name is already registered */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003359 if (clk_core_lookup(core->name)) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003360 pr_debug("%s: clk %s already initialized\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003361 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003362 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07003363 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07003364 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003365
Mauro Carvalho Chehab5fb94e92018-05-08 15:14:57 -03003366 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003367 if (core->ops->set_rate &&
3368 !((core->ops->round_rate || core->ops->determine_rate) &&
3369 core->ops->recalc_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003370 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3371 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003372 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003373 goto out;
3374 }
3375
Stephen Boydd6968fc2015-04-30 13:54:13 -07003376 if (core->ops->set_parent && !core->ops->get_parent) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003377 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3378 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003379 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003380 goto out;
3381 }
3382
Masahiro Yamada3c8e77d2015-12-28 19:23:04 +09003383 if (core->num_parents > 1 && !core->ops->get_parent) {
3384 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3385 __func__, core->name);
3386 ret = -EINVAL;
3387 goto out;
3388 }
3389
Stephen Boydd6968fc2015-04-30 13:54:13 -07003390 if (core->ops->set_rate_and_parent &&
3391 !(core->ops->set_parent && core->ops->set_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003392 pr_err("%s: %s must implement .set_parent & .set_rate\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003393 __func__, core->name);
Stephen Boyd3fa22522014-01-15 10:47:22 -08003394 ret = -EINVAL;
3395 goto out;
3396 }
3397
Jerome Brunetf6fa75c2019-09-24 14:39:52 +02003398 /*
3399 * optional platform-specific magic
3400 *
3401 * The .init callback is not used by any of the basic clock types, but
Jerome Brunet89d079d2019-09-24 14:39:53 +02003402 * exists for weird hardware that must perform initialization magic for
3403 * CCF to get an accurate view of clock for any other callbacks. It may
3404 * also be used needs to perform dynamic allocations. Such allocation
3405 * must be freed in the terminate() callback.
3406 * This callback shall not be used to initialize the parameters state,
3407 * such as rate, parent, etc ...
Jerome Brunetf6fa75c2019-09-24 14:39:52 +02003408 *
3409 * If it exist, this callback should called before any other callback of
3410 * the clock
3411 */
Jerome Brunet89d079d2019-09-24 14:39:53 +02003412 if (core->ops->init) {
3413 ret = core->ops->init(core->hw);
3414 if (ret)
3415 goto out;
3416 }
Jerome Brunetf6fa75c2019-09-24 14:39:52 +02003417
Stephen Boyd768a5d42020-02-05 15:28:00 -08003418 parent = core->parent = __clk_init_parent(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07003419
3420 /*
Stephen Boyd706d5c72016-02-22 15:43:41 -08003421 * Populate core->parent if parent has already been clk_core_init'd. If
3422 * parent has not yet been clk_core_init'd then place clk in the orphan
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08003423 * list. If clk doesn't have any parents then place it in the root
Mike Turquetteb24764902012-03-15 23:11:19 -07003424 * clk list.
3425 *
3426 * Every time a new clk is clk_init'd then we walk the list of orphan
3427 * clocks and re-parent any that are children of the clock currently
3428 * being clk_init'd.
3429 */
Stephen Boyd768a5d42020-02-05 15:28:00 -08003430 if (parent) {
3431 hlist_add_head(&core->child_node, &parent->children);
3432 core->orphan = parent->orphan;
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08003433 } else if (!core->num_parents) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003434 hlist_add_head(&core->child_node, &clk_root_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003435 core->orphan = false;
3436 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003437 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003438 core->orphan = true;
3439 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003440
3441 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003442 * Set clk's accuracy. The preferred method is to use
3443 * .recalc_accuracy. For simple clocks and lazy developers the default
3444 * fallback is to use the parent's accuracy. If a clock doesn't have a
3445 * parent (or is orphaned) then accuracy is set to zero (perfect
3446 * clock).
3447 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003448 if (core->ops->recalc_accuracy)
3449 core->accuracy = core->ops->recalc_accuracy(core->hw,
Stephen Boyd0daa3762020-02-05 15:28:01 -08003450 clk_core_get_accuracy_no_lock(parent));
Stephen Boyd768a5d42020-02-05 15:28:00 -08003451 else if (parent)
3452 core->accuracy = parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003453 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07003454 core->accuracy = 0;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003455
3456 /*
Stephen Boydf21cf9c2020-02-05 15:27:59 -08003457 * Set clk's phase by clk_core_get_phase() caching the phase.
Maxime Ripard9824cf72014-07-14 13:53:27 +02003458 * Since a phase is by definition relative to its parent, just
3459 * query the current clock phase, or just assume it's in phase.
3460 */
Maxime Ripardc3944ec2020-02-25 14:42:48 +01003461 phase = clk_core_get_phase(core);
3462 if (phase < 0) {
3463 ret = phase;
Stephen Boyd27608782020-02-05 15:28:02 -08003464 pr_warn("%s: Failed to get phase for clk '%s'\n", __func__,
3465 core->name);
3466 goto out;
3467 }
Maxime Ripard9824cf72014-07-14 13:53:27 +02003468
3469 /*
Jerome Brunet9fba7382018-06-19 16:41:41 +02003470 * Set clk's duty cycle.
3471 */
3472 clk_core_update_duty_cycle_nolock(core);
3473
3474 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07003475 * Set clk's rate. The preferred method is to use .recalc_rate. For
3476 * simple clocks and lazy developers the default fallback is to use the
3477 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3478 * then rate is set to zero.
3479 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003480 if (core->ops->recalc_rate)
3481 rate = core->ops->recalc_rate(core->hw,
Stephen Boyd768a5d42020-02-05 15:28:00 -08003482 clk_core_get_rate_nolock(parent));
3483 else if (parent)
3484 rate = parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003485 else
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003486 rate = 0;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003487 core->rate = core->req_rate = rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003488
3489 /*
Jerome Brunet99652a42018-02-14 14:43:36 +01003490 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3491 * don't get accidentally disabled when walking the orphan tree and
3492 * reparenting clocks
3493 */
3494 if (core->flags & CLK_IS_CRITICAL) {
3495 unsigned long flags;
3496
Guenter Roeck12ead772019-12-25 08:34:29 -08003497 ret = clk_core_prepare(core);
Stephen Boyd2d269992019-12-26 14:09:27 -08003498 if (ret) {
3499 pr_warn("%s: critical clk '%s' failed to prepare\n",
3500 __func__, core->name);
Guenter Roeck12ead772019-12-25 08:34:29 -08003501 goto out;
Stephen Boyd2d269992019-12-26 14:09:27 -08003502 }
Jerome Brunet99652a42018-02-14 14:43:36 +01003503
3504 flags = clk_enable_lock();
Guenter Roeck12ead772019-12-25 08:34:29 -08003505 ret = clk_core_enable(core);
Jerome Brunet99652a42018-02-14 14:43:36 +01003506 clk_enable_unlock(flags);
Guenter Roeck12ead772019-12-25 08:34:29 -08003507 if (ret) {
Stephen Boyd2d269992019-12-26 14:09:27 -08003508 pr_warn("%s: critical clk '%s' failed to enable\n",
3509 __func__, core->name);
Guenter Roeck12ead772019-12-25 08:34:29 -08003510 clk_core_unprepare(core);
3511 goto out;
Michael Turquette904e6ea2016-07-08 16:32:10 -07003512 }
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09003513 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003514
Jerome Brunet66d95062019-12-03 09:08:05 +01003515 clk_core_reparent_orphans_nolock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003516
Mike Turquetteb24764902012-03-15 23:11:19 -07003517
Stephen Boydd6968fc2015-04-30 13:54:13 -07003518 kref_init(&core->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07003519out:
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003520 clk_pm_runtime_put(core);
3521unlock:
Marc Zyngier018d4672020-05-05 15:09:53 +01003522 if (ret)
3523 hlist_del_init(&core->child_node);
3524
Mike Turquetteeab89f62013-03-28 13:59:01 -07003525 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003526
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08003527 if (!ret)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003528 clk_debug_register(core);
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08003529
Mike Turquetted1302a32012-03-29 14:30:40 -07003530 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07003531}
3532
Stephen Boyd1df40462018-12-11 08:32:04 -08003533/**
3534 * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core
3535 * @core: clk to add consumer to
3536 * @clk: consumer to link to a clk
3537 */
3538static void clk_core_link_consumer(struct clk_core *core, struct clk *clk)
3539{
3540 clk_prepare_lock();
3541 hlist_add_head(&clk->clks_node, &core->clks);
3542 clk_prepare_unlock();
3543}
3544
3545/**
3546 * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core
3547 * @clk: consumer to unlink
3548 */
3549static void clk_core_unlink_consumer(struct clk *clk)
3550{
3551 lockdep_assert_held(&prepare_lock);
3552 hlist_del(&clk->clks_node);
3553}
3554
3555/**
3556 * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core
3557 * @core: clk to allocate a consumer for
3558 * @dev_id: string describing device name
3559 * @con_id: connection ID string on device
3560 *
3561 * Returns: clk consumer left unlinked from the consumer list
3562 */
3563static struct clk *alloc_clk(struct clk_core *core, const char *dev_id,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003564 const char *con_id)
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003565{
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003566 struct clk *clk;
3567
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003568 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3569 if (!clk)
3570 return ERR_PTR(-ENOMEM);
3571
Stephen Boyd1df40462018-12-11 08:32:04 -08003572 clk->core = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003573 clk->dev_id = dev_id;
Leonard Crestez253160a2017-02-20 15:20:56 +02003574 clk->con_id = kstrdup_const(con_id, GFP_KERNEL);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003575 clk->max_rate = ULONG_MAX;
3576
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003577 return clk;
3578}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003579
Stephen Boyd1df40462018-12-11 08:32:04 -08003580/**
3581 * free_clk - Free a clk consumer
3582 * @clk: clk consumer to free
3583 *
3584 * Note, this assumes the clk has been unlinked from the clk_core consumer
3585 * list.
3586 */
3587static void free_clk(struct clk *clk)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003588{
Leonard Crestez253160a2017-02-20 15:20:56 +02003589 kfree_const(clk->con_id);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003590 kfree(clk);
3591}
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003592
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003593/**
Stephen Boyd1df40462018-12-11 08:32:04 -08003594 * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given
3595 * a clk_hw
Stephen Boydefa85042018-12-11 08:34:16 -08003596 * @dev: clk consumer device
Stephen Boyd1df40462018-12-11 08:32:04 -08003597 * @hw: clk_hw associated with the clk being consumed
3598 * @dev_id: string describing device name
3599 * @con_id: connection ID string on device
3600 *
3601 * This is the main function used to create a clk pointer for use by clk
3602 * consumers. It connects a consumer to the clk_core and clk_hw structures
3603 * used by the framework and clk provider respectively.
3604 */
Stephen Boydefa85042018-12-11 08:34:16 -08003605struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw,
Stephen Boyd1df40462018-12-11 08:32:04 -08003606 const char *dev_id, const char *con_id)
3607{
3608 struct clk *clk;
3609 struct clk_core *core;
3610
3611 /* This is to allow this function to be chained to others */
3612 if (IS_ERR_OR_NULL(hw))
3613 return ERR_CAST(hw);
3614
3615 core = hw->core;
3616 clk = alloc_clk(core, dev_id, con_id);
3617 if (IS_ERR(clk))
3618 return clk;
Stephen Boydefa85042018-12-11 08:34:16 -08003619 clk->dev = dev;
Stephen Boyd1df40462018-12-11 08:32:04 -08003620
3621 if (!try_module_get(core->owner)) {
3622 free_clk(clk);
3623 return ERR_PTR(-ENOENT);
3624 }
3625
3626 kref_get(&core->ref);
3627 clk_core_link_consumer(core, clk);
3628
3629 return clk;
3630}
3631
Stephen Boydfc0c2092019-04-12 11:31:47 -07003632static int clk_cpy_name(const char **dst_p, const char *src, bool must_exist)
Mike Turquetteb24764902012-03-15 23:11:19 -07003633{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003634 const char *dst;
3635
3636 if (!src) {
3637 if (must_exist)
3638 return -EINVAL;
3639 return 0;
3640 }
3641
3642 *dst_p = dst = kstrdup_const(src, GFP_KERNEL);
3643 if (!dst)
3644 return -ENOMEM;
3645
3646 return 0;
3647}
3648
Stephen Boyd0214f332019-07-31 12:35:17 -07003649static int clk_core_populate_parent_map(struct clk_core *core,
3650 const struct clk_init_data *init)
Stephen Boydfc0c2092019-04-12 11:31:47 -07003651{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003652 u8 num_parents = init->num_parents;
3653 const char * const *parent_names = init->parent_names;
3654 const struct clk_hw **parent_hws = init->parent_hws;
3655 const struct clk_parent_data *parent_data = init->parent_data;
3656 int i, ret = 0;
3657 struct clk_parent_map *parents, *parent;
3658
3659 if (!num_parents)
3660 return 0;
3661
3662 /*
3663 * Avoid unnecessary string look-ups of clk_core's possible parents by
3664 * having a cache of names/clk_hw pointers to clk_core pointers.
3665 */
3666 parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL);
3667 core->parents = parents;
3668 if (!parents)
3669 return -ENOMEM;
3670
3671 /* Copy everything over because it might be __initdata */
3672 for (i = 0, parent = parents; i < num_parents; i++, parent++) {
Stephen Boyd601b6e92019-04-12 11:31:49 -07003673 parent->index = -1;
Stephen Boydfc0c2092019-04-12 11:31:47 -07003674 if (parent_names) {
3675 /* throw a WARN if any entries are NULL */
3676 WARN(!parent_names[i],
3677 "%s: invalid NULL in %s's .parent_names\n",
3678 __func__, core->name);
3679 ret = clk_cpy_name(&parent->name, parent_names[i],
3680 true);
3681 } else if (parent_data) {
3682 parent->hw = parent_data[i].hw;
Stephen Boyd601b6e92019-04-12 11:31:49 -07003683 parent->index = parent_data[i].index;
Stephen Boydfc0c2092019-04-12 11:31:47 -07003684 ret = clk_cpy_name(&parent->fw_name,
3685 parent_data[i].fw_name, false);
3686 if (!ret)
3687 ret = clk_cpy_name(&parent->name,
3688 parent_data[i].name,
3689 false);
3690 } else if (parent_hws) {
3691 parent->hw = parent_hws[i];
3692 } else {
3693 ret = -EINVAL;
3694 WARN(1, "Must specify parents if num_parents > 0\n");
3695 }
3696
3697 if (ret) {
3698 do {
3699 kfree_const(parents[i].name);
3700 kfree_const(parents[i].fw_name);
3701 } while (--i >= 0);
3702 kfree(parents);
3703
3704 return ret;
3705 }
3706 }
3707
3708 return 0;
3709}
3710
3711static void clk_core_free_parent_map(struct clk_core *core)
3712{
3713 int i = core->num_parents;
3714
3715 if (!core->num_parents)
3716 return;
3717
3718 while (--i >= 0) {
3719 kfree_const(core->parents[i].name);
3720 kfree_const(core->parents[i].fw_name);
3721 }
3722
3723 kfree(core->parents);
3724}
3725
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -07003726static struct clk *
3727__clk_register(struct device *dev, struct device_node *np, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07003728{
Stephen Boydfc0c2092019-04-12 11:31:47 -07003729 int ret;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003730 struct clk_core *core;
Stephen Boyd0214f332019-07-31 12:35:17 -07003731 const struct clk_init_data *init = hw->init;
3732
3733 /*
3734 * The init data is not supposed to be used outside of registration path.
3735 * Set it to NULL so that provider drivers can't use it either and so that
3736 * we catch use of hw->init early on in the core.
3737 */
3738 hw->init = NULL;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003739
Stephen Boydd6968fc2015-04-30 13:54:13 -07003740 core = kzalloc(sizeof(*core), GFP_KERNEL);
3741 if (!core) {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003742 ret = -ENOMEM;
3743 goto fail_out;
3744 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003745
Stephen Boyd0214f332019-07-31 12:35:17 -07003746 core->name = kstrdup_const(init->name, GFP_KERNEL);
Stephen Boydd6968fc2015-04-30 13:54:13 -07003747 if (!core->name) {
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003748 ret = -ENOMEM;
3749 goto fail_name;
3750 }
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003751
Stephen Boyd0214f332019-07-31 12:35:17 -07003752 if (WARN_ON(!init->ops)) {
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003753 ret = -EINVAL;
3754 goto fail_ops;
3755 }
Stephen Boyd0214f332019-07-31 12:35:17 -07003756 core->ops = init->ops;
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003757
Marek Szyprowski9a34b452017-08-21 10:04:59 +02003758 if (dev && pm_runtime_enabled(dev))
Miquel Raynal24478832018-12-04 20:24:37 +01003759 core->rpm_enabled = true;
3760 core->dev = dev;
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -07003761 core->of_node = np;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003762 if (dev && dev->driver)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003763 core->owner = dev->driver->owner;
3764 core->hw = hw;
Stephen Boyd0214f332019-07-31 12:35:17 -07003765 core->flags = init->flags;
3766 core->num_parents = init->num_parents;
Stephen Boyd9783c0d2015-07-16 12:50:27 -07003767 core->min_rate = 0;
3768 core->max_rate = ULONG_MAX;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003769 hw->core = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07003770
Stephen Boyd0214f332019-07-31 12:35:17 -07003771 ret = clk_core_populate_parent_map(core, init);
Stephen Boydfc0c2092019-04-12 11:31:47 -07003772 if (ret)
Masahiro Yamada176d1162015-12-28 19:23:00 +09003773 goto fail_parents;
Masahiro Yamada176d1162015-12-28 19:23:00 +09003774
Stephen Boydd6968fc2015-04-30 13:54:13 -07003775 INIT_HLIST_HEAD(&core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003776
Stephen Boyd1df40462018-12-11 08:32:04 -08003777 /*
3778 * Don't call clk_hw_create_clk() here because that would pin the
3779 * provider module to itself and prevent it from ever being removed.
3780 */
3781 hw->clk = alloc_clk(core, NULL, NULL);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003782 if (IS_ERR(hw->clk)) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003783 ret = PTR_ERR(hw->clk);
Stephen Boydfc0c2092019-04-12 11:31:47 -07003784 goto fail_create_clk;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003785 }
Mike Turquetted1302a32012-03-29 14:30:40 -07003786
Stephen Boyd1df40462018-12-11 08:32:04 -08003787 clk_core_link_consumer(hw->core, hw->clk);
3788
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003789 ret = __clk_core_init(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003790 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003791 return hw->clk;
3792
Stephen Boyd1df40462018-12-11 08:32:04 -08003793 clk_prepare_lock();
3794 clk_core_unlink_consumer(hw->clk);
3795 clk_prepare_unlock();
3796
3797 free_clk(hw->clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003798 hw->clk = NULL;
Mike Turquetted1302a32012-03-29 14:30:40 -07003799
Stephen Boydfc0c2092019-04-12 11:31:47 -07003800fail_create_clk:
3801 clk_core_free_parent_map(core);
Masahiro Yamada176d1162015-12-28 19:23:00 +09003802fail_parents:
Jerome Brunet29fd2a32017-12-19 09:33:29 +01003803fail_ops:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003804 kfree_const(core->name);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003805fail_name:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003806 kfree(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003807fail_out:
3808 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07003809}
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003810
3811/**
Stephen Boyd9011f922019-12-30 10:29:35 -08003812 * dev_or_parent_of_node() - Get device node of @dev or @dev's parent
3813 * @dev: Device to get device node of
3814 *
3815 * Return: device node pointer of @dev, or the device node pointer of
3816 * @dev->parent if dev doesn't have a device node, or NULL if neither
3817 * @dev or @dev->parent have a device node.
3818 */
3819static struct device_node *dev_or_parent_of_node(struct device *dev)
3820{
3821 struct device_node *np;
3822
3823 if (!dev)
3824 return NULL;
3825
3826 np = dev_of_node(dev);
3827 if (!np)
3828 np = dev_of_node(dev->parent);
3829
3830 return np;
3831}
3832
3833/**
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003834 * clk_register - allocate a new clock, register it and return an opaque cookie
3835 * @dev: device that is registering this clock
3836 * @hw: link to hardware-specific clock data
3837 *
Stephen Boydc1157f62019-05-07 11:46:13 -07003838 * clk_register is the *deprecated* interface for populating the clock tree with
3839 * new clock nodes. Use clk_hw_register() instead.
3840 *
3841 * Returns: a pointer to the newly allocated struct clk which
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003842 * cannot be dereferenced by driver code but may be used in conjunction with the
3843 * rest of the clock API. In the event of an error clk_register will return an
3844 * error code; drivers must test for an error code after calling clk_register.
3845 */
3846struct clk *clk_register(struct device *dev, struct clk_hw *hw)
3847{
Stephen Boyd9011f922019-12-30 10:29:35 -08003848 return __clk_register(dev, dev_or_parent_of_node(dev), hw);
Stephen Boydfceaa7d2019-04-12 11:31:44 -07003849}
Mike Turquetteb24764902012-03-15 23:11:19 -07003850EXPORT_SYMBOL_GPL(clk_register);
3851
Stephen Boyd41438042016-02-05 17:02:52 -08003852/**
3853 * clk_hw_register - register a clk_hw and return an error code
3854 * @dev: device that is registering this clock
3855 * @hw: link to hardware-specific clock data
3856 *
3857 * clk_hw_register is the primary interface for populating the clock tree with
3858 * new clock nodes. It returns an integer equal to zero indicating success or
3859 * less than zero indicating failure. Drivers must test for an error code after
3860 * calling clk_hw_register().
3861 */
3862int clk_hw_register(struct device *dev, struct clk_hw *hw)
3863{
Stephen Boyd9011f922019-12-30 10:29:35 -08003864 return PTR_ERR_OR_ZERO(__clk_register(dev, dev_or_parent_of_node(dev),
3865 hw));
Stephen Boyd41438042016-02-05 17:02:52 -08003866}
3867EXPORT_SYMBOL_GPL(clk_hw_register);
3868
Stephen Boyd89a5ddcc2019-04-12 11:31:46 -07003869/*
3870 * of_clk_hw_register - register a clk_hw and return an error code
3871 * @node: device_node of device that is registering this clock
3872 * @hw: link to hardware-specific clock data
3873 *
3874 * of_clk_hw_register() is the primary interface for populating the clock tree
3875 * with new clock nodes when a struct device is not available, but a struct
3876 * device_node is. It returns an integer equal to zero indicating success or
3877 * less than zero indicating failure. Drivers must test for an error code after
3878 * calling of_clk_hw_register().
3879 */
3880int of_clk_hw_register(struct device_node *node, struct clk_hw *hw)
3881{
3882 return PTR_ERR_OR_ZERO(__clk_register(NULL, node, hw));
3883}
3884EXPORT_SYMBOL_GPL(of_clk_hw_register);
3885
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003886/* Free memory allocated for a clock. */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003887static void __clk_release(struct kref *ref)
3888{
Stephen Boydd6968fc2015-04-30 13:54:13 -07003889 struct clk_core *core = container_of(ref, struct clk_core, ref);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003890
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01003891 lockdep_assert_held(&prepare_lock);
3892
Stephen Boydfc0c2092019-04-12 11:31:47 -07003893 clk_core_free_parent_map(core);
Stephen Boydd6968fc2015-04-30 13:54:13 -07003894 kfree_const(core->name);
3895 kfree(core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003896}
3897
3898/*
3899 * Empty clk_ops for unregistered clocks. These are used temporarily
3900 * after clk_unregister() was called on a clock and until last clock
3901 * consumer calls clk_put() and the struct clk object is freed.
3902 */
3903static int clk_nodrv_prepare_enable(struct clk_hw *hw)
3904{
3905 return -ENXIO;
3906}
3907
3908static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
3909{
3910 WARN_ON_ONCE(1);
3911}
3912
3913static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
3914 unsigned long parent_rate)
3915{
3916 return -ENXIO;
3917}
3918
3919static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
3920{
3921 return -ENXIO;
3922}
3923
3924static const struct clk_ops clk_nodrv_ops = {
3925 .enable = clk_nodrv_prepare_enable,
3926 .disable = clk_nodrv_disable_unprepare,
3927 .prepare = clk_nodrv_prepare_enable,
3928 .unprepare = clk_nodrv_disable_unprepare,
3929 .set_rate = clk_nodrv_set_rate,
3930 .set_parent = clk_nodrv_set_parent,
3931};
3932
Stephen Boydbdcf1dc2019-08-28 11:19:59 -07003933static void clk_core_evict_parent_cache_subtree(struct clk_core *root,
3934 struct clk_core *target)
3935{
3936 int i;
3937 struct clk_core *child;
3938
3939 for (i = 0; i < root->num_parents; i++)
3940 if (root->parents[i].core == target)
3941 root->parents[i].core = NULL;
3942
3943 hlist_for_each_entry(child, &root->children, child_node)
3944 clk_core_evict_parent_cache_subtree(child, target);
3945}
3946
3947/* Remove this clk from all parent caches */
3948static void clk_core_evict_parent_cache(struct clk_core *core)
3949{
3950 struct hlist_head **lists;
3951 struct clk_core *root;
3952
3953 lockdep_assert_held(&prepare_lock);
3954
3955 for (lists = all_lists; *lists; lists++)
3956 hlist_for_each_entry(root, *lists, child_node)
3957 clk_core_evict_parent_cache_subtree(root, core);
3958
3959}
3960
Mark Brown1df5c932012-04-18 09:07:12 +01003961/**
3962 * clk_unregister - unregister a currently registered clock
3963 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01003964 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003965void clk_unregister(struct clk *clk)
3966{
3967 unsigned long flags;
Jerome Brunetf8737442019-09-24 14:39:54 +02003968 const struct clk_ops *ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003969
Stephen Boyd6314b672014-09-04 23:37:49 -07003970 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
3971 return;
3972
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003973 clk_debug_unregister(clk->core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003974
3975 clk_prepare_lock();
3976
Jerome Brunetf8737442019-09-24 14:39:54 +02003977 ops = clk->core->ops;
3978 if (ops == &clk_nodrv_ops) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003979 pr_err("%s: unregistered clock: %s\n", __func__,
3980 clk->core->name);
Insu Yun4106a3d2016-01-30 10:12:04 -05003981 goto unlock;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003982 }
3983 /*
3984 * Assign empty clock ops for consumers that might still hold
3985 * a reference to this clock.
3986 */
3987 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003988 clk->core->ops = &clk_nodrv_ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003989 clk_enable_unlock(flags);
3990
Jerome Brunetf8737442019-09-24 14:39:54 +02003991 if (ops->terminate)
3992 ops->terminate(clk->core->hw);
3993
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003994 if (!hlist_empty(&clk->core->children)) {
3995 struct clk_core *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07003996 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003997
3998 /* Reparent all children to the orphan list. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003999 hlist_for_each_entry_safe(child, t, &clk->core->children,
4000 child_node)
Jerome Brunet91baa9f2017-12-01 22:51:52 +01004001 clk_core_set_parent_nolock(child, NULL);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004002 }
4003
Stephen Boydbdcf1dc2019-08-28 11:19:59 -07004004 clk_core_evict_parent_cache(clk->core);
4005
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004006 hlist_del_init(&clk->core->child_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004007
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004008 if (clk->core->prepare_count)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004009 pr_warn("%s: unregistering prepared clock: %s\n",
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004010 __func__, clk->core->name);
Jerome Brunete55a8392017-12-01 22:51:56 +01004011
4012 if (clk->core->protect_count)
4013 pr_warn("%s: unregistering protected clock: %s\n",
4014 __func__, clk->core->name);
4015
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004016 kref_put(&clk->core->ref, __clk_release);
Kishon Vijay Abraham I82474702019-10-22 12:41:53 +05304017 free_clk(clk);
Insu Yun4106a3d2016-01-30 10:12:04 -05004018unlock:
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004019 clk_prepare_unlock();
4020}
Mark Brown1df5c932012-04-18 09:07:12 +01004021EXPORT_SYMBOL_GPL(clk_unregister);
4022
Stephen Boyd41438042016-02-05 17:02:52 -08004023/**
4024 * clk_hw_unregister - unregister a currently registered clk_hw
4025 * @hw: hardware-specific clock data to unregister
4026 */
4027void clk_hw_unregister(struct clk_hw *hw)
4028{
4029 clk_unregister(hw->clk);
4030}
4031EXPORT_SYMBOL_GPL(clk_hw_unregister);
4032
Stephen Boyd46c87732012-09-24 13:38:04 -07004033static void devm_clk_release(struct device *dev, void *res)
4034{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004035 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07004036}
4037
Stephen Boyd41438042016-02-05 17:02:52 -08004038static void devm_clk_hw_release(struct device *dev, void *res)
4039{
4040 clk_hw_unregister(*(struct clk_hw **)res);
4041}
4042
Stephen Boyd46c87732012-09-24 13:38:04 -07004043/**
4044 * devm_clk_register - resource managed clk_register()
4045 * @dev: device that is registering this clock
4046 * @hw: link to hardware-specific clock data
4047 *
Stephen Boyd9fe9b7a2018-12-11 10:49:40 -08004048 * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead.
4049 *
4050 * Clocks returned from this function are automatically clk_unregister()ed on
4051 * driver detach. See clk_register() for more information.
Stephen Boyd46c87732012-09-24 13:38:04 -07004052 */
4053struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
4054{
4055 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004056 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07004057
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004058 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
4059 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07004060 return ERR_PTR(-ENOMEM);
4061
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004062 clk = clk_register(dev, hw);
4063 if (!IS_ERR(clk)) {
4064 *clkp = clk;
4065 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07004066 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07004067 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07004068 }
4069
4070 return clk;
4071}
4072EXPORT_SYMBOL_GPL(devm_clk_register);
4073
Stephen Boyd41438042016-02-05 17:02:52 -08004074/**
4075 * devm_clk_hw_register - resource managed clk_hw_register()
4076 * @dev: device that is registering this clock
4077 * @hw: link to hardware-specific clock data
4078 *
Masahiro Yamadac47265a2016-05-01 19:56:08 +09004079 * Managed clk_hw_register(). Clocks registered by this function are
Stephen Boyd41438042016-02-05 17:02:52 -08004080 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
4081 * for more information.
4082 */
4083int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
4084{
4085 struct clk_hw **hwp;
4086 int ret;
4087
4088 hwp = devres_alloc(devm_clk_hw_release, sizeof(*hwp), GFP_KERNEL);
4089 if (!hwp)
4090 return -ENOMEM;
4091
4092 ret = clk_hw_register(dev, hw);
4093 if (!ret) {
4094 *hwp = hw;
4095 devres_add(dev, hwp);
4096 } else {
4097 devres_free(hwp);
4098 }
4099
4100 return ret;
4101}
4102EXPORT_SYMBOL_GPL(devm_clk_hw_register);
4103
Stephen Boyd46c87732012-09-24 13:38:04 -07004104static int devm_clk_match(struct device *dev, void *res, void *data)
4105{
4106 struct clk *c = res;
4107 if (WARN_ON(!c))
4108 return 0;
4109 return c == data;
4110}
4111
Stephen Boyd41438042016-02-05 17:02:52 -08004112static int devm_clk_hw_match(struct device *dev, void *res, void *data)
4113{
4114 struct clk_hw *hw = res;
4115
4116 if (WARN_ON(!hw))
4117 return 0;
4118 return hw == data;
4119}
4120
Stephen Boyd46c87732012-09-24 13:38:04 -07004121/**
4122 * devm_clk_unregister - resource managed clk_unregister()
4123 * @clk: clock to unregister
4124 *
4125 * Deallocate a clock allocated with devm_clk_register(). Normally
4126 * this function will not need to be called and the resource management
4127 * code will ensure that the resource is freed.
4128 */
4129void devm_clk_unregister(struct device *dev, struct clk *clk)
4130{
4131 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
4132}
4133EXPORT_SYMBOL_GPL(devm_clk_unregister);
4134
Stephen Boyd41438042016-02-05 17:02:52 -08004135/**
4136 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
4137 * @dev: device that is unregistering the hardware-specific clock data
4138 * @hw: link to hardware-specific clock data
4139 *
4140 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
4141 * this function will not need to be called and the resource management
4142 * code will ensure that the resource is freed.
4143 */
4144void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw)
4145{
4146 WARN_ON(devres_release(dev, devm_clk_hw_release, devm_clk_hw_match,
4147 hw));
4148}
4149EXPORT_SYMBOL_GPL(devm_clk_hw_unregister);
4150
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004151/*
4152 * clkdev helpers
4153 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004154
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004155void __clk_put(struct clk *clk)
4156{
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01004157 struct module *owner;
4158
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01004159 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004160 return;
4161
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004162 clk_prepare_lock();
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01004163
Jerome Brunet55e9b8b2017-12-01 22:51:59 +01004164 /*
4165 * Before calling clk_put, all calls to clk_rate_exclusive_get() from a
4166 * given user should be balanced with calls to clk_rate_exclusive_put()
4167 * and by that same consumer
4168 */
4169 if (WARN_ON(clk->exclusive_count)) {
4170 /* We voiced our concern, let's sanitize the situation */
4171 clk->core->protect_count -= (clk->exclusive_count - 1);
4172 clk_core_rate_unprotect(clk->core);
4173 clk->exclusive_count = 0;
4174 }
4175
Stephen Boyd50595f82015-02-06 11:42:44 -08004176 hlist_del(&clk->clks_node);
Tomeu Vizosoec02ace2015-02-06 15:13:01 +01004177 if (clk->min_rate > clk->core->req_rate ||
4178 clk->max_rate < clk->core->req_rate)
4179 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
4180
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01004181 owner = clk->core->owner;
4182 kref_put(&clk->core->ref, __clk_release);
4183
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02004184 clk_prepare_unlock();
4185
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01004186 module_put(owner);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01004187
Stephen Boyd1df40462018-12-11 08:32:04 -08004188 free_clk(clk);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02004189}
4190
Mike Turquetteb24764902012-03-15 23:11:19 -07004191/*** clk rate change notifiers ***/
4192
4193/**
4194 * clk_notifier_register - add a clk rate change notifier
4195 * @clk: struct clk * to watch
4196 * @nb: struct notifier_block * with callback info
4197 *
4198 * Request notification when clk's rate changes. This uses an SRCU
4199 * notifier because we want it to block and notifier unregistrations are
4200 * uncommon. The callbacks associated with the notifier must not
4201 * re-enter into the clk framework by calling any top-level clk APIs;
4202 * this will cause a nested prepare_lock mutex.
4203 *
Masahiro Yamada198bb592015-11-30 16:40:51 +09004204 * In all notification cases (pre, post and abort rate change) the original
4205 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
4206 * and the new frequency is passed via struct clk_notifier_data.new_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07004207 *
Mike Turquetteb24764902012-03-15 23:11:19 -07004208 * clk_notifier_register() must be called from non-atomic context.
4209 * Returns -EINVAL if called with null arguments, -ENOMEM upon
4210 * allocation failure; otherwise, passes along the return value of
4211 * srcu_notifier_chain_register().
4212 */
4213int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
4214{
4215 struct clk_notifier *cn;
4216 int ret = -ENOMEM;
4217
4218 if (!clk || !nb)
4219 return -EINVAL;
4220
Mike Turquetteeab89f62013-03-28 13:59:01 -07004221 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004222
4223 /* search the list of notifiers for this clk */
4224 list_for_each_entry(cn, &clk_notifier_list, node)
4225 if (cn->clk == clk)
4226 break;
4227
4228 /* if clk wasn't in the notifier list, allocate new clk_notifier */
4229 if (cn->clk != clk) {
Markus Elfring1808a322017-04-20 09:30:52 +02004230 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07004231 if (!cn)
4232 goto out;
4233
4234 cn->clk = clk;
4235 srcu_init_notifier_head(&cn->notifier_head);
4236
4237 list_add(&cn->node, &clk_notifier_list);
4238 }
4239
4240 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
4241
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004242 clk->core->notifier_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07004243
4244out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07004245 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004246
4247 return ret;
4248}
4249EXPORT_SYMBOL_GPL(clk_notifier_register);
4250
4251/**
4252 * clk_notifier_unregister - remove a clk rate change notifier
4253 * @clk: struct clk *
4254 * @nb: struct notifier_block * with callback info
4255 *
4256 * Request no further notification for changes to 'clk' and frees memory
4257 * allocated in clk_notifier_register.
4258 *
4259 * Returns -EINVAL if called with null arguments; otherwise, passes
4260 * along the return value of srcu_notifier_chain_unregister().
4261 */
4262int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
4263{
4264 struct clk_notifier *cn = NULL;
4265 int ret = -EINVAL;
4266
4267 if (!clk || !nb)
4268 return -EINVAL;
4269
Mike Turquetteeab89f62013-03-28 13:59:01 -07004270 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004271
4272 list_for_each_entry(cn, &clk_notifier_list, node)
4273 if (cn->clk == clk)
4274 break;
4275
4276 if (cn->clk == clk) {
4277 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
4278
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004279 clk->core->notifier_count--;
Mike Turquetteb24764902012-03-15 23:11:19 -07004280
4281 /* XXX the notifier code should handle this better */
4282 if (!cn->notifier_head.head) {
4283 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08004284 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07004285 kfree(cn);
4286 }
4287
4288 } else {
4289 ret = -ENOENT;
4290 }
4291
Mike Turquetteeab89f62013-03-28 13:59:01 -07004292 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004293
4294 return ret;
4295}
4296EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05004297
4298#ifdef CONFIG_OF
Olof Johanssonc7712562019-12-18 09:56:21 -08004299static void clk_core_reparent_orphans(void)
4300{
4301 clk_prepare_lock();
4302 clk_core_reparent_orphans_nolock();
4303 clk_prepare_unlock();
4304}
4305
Grant Likely766e6a42012-04-09 14:50:06 -05004306/**
4307 * struct of_clk_provider - Clock provider registration structure
4308 * @link: Entry in global list of clock providers
4309 * @node: Pointer to device tree node of clock provider
4310 * @get: Get clock callback. Returns NULL or a struct clk for the
4311 * given clock specifier
4312 * @data: context pointer to be passed into @get callback
4313 */
4314struct of_clk_provider {
4315 struct list_head link;
4316
4317 struct device_node *node;
4318 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004319 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
Grant Likely766e6a42012-04-09 14:50:06 -05004320 void *data;
4321};
4322
Stephen Boyd30d5a942019-05-23 17:11:57 -07004323extern struct of_device_id __clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304324static const struct of_device_id __clk_of_table_sentinel
4325 __used __section(__clk_of_table_end);
4326
Grant Likely766e6a42012-04-09 14:50:06 -05004327static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004328static DEFINE_MUTEX(of_clk_mutex);
4329
Grant Likely766e6a42012-04-09 14:50:06 -05004330struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
4331 void *data)
4332{
4333 return data;
4334}
4335EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
4336
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004337struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
4338{
4339 return data;
4340}
4341EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
4342
Shawn Guo494bfec2012-08-22 21:36:27 +08004343struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
4344{
4345 struct clk_onecell_data *clk_data = data;
4346 unsigned int idx = clkspec->args[0];
4347
4348 if (idx >= clk_data->clk_num) {
Geert Uytterhoeven7e963532015-10-16 17:12:32 +02004349 pr_err("%s: invalid clock index %u\n", __func__, idx);
Shawn Guo494bfec2012-08-22 21:36:27 +08004350 return ERR_PTR(-EINVAL);
4351 }
4352
4353 return clk_data->clks[idx];
4354}
4355EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
4356
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004357struct clk_hw *
4358of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
4359{
4360 struct clk_hw_onecell_data *hw_data = data;
4361 unsigned int idx = clkspec->args[0];
4362
4363 if (idx >= hw_data->num) {
4364 pr_err("%s: invalid index %u\n", __func__, idx);
4365 return ERR_PTR(-EINVAL);
4366 }
4367
4368 return hw_data->hws[idx];
4369}
4370EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
4371
Grant Likely766e6a42012-04-09 14:50:06 -05004372/**
4373 * of_clk_add_provider() - Register a clock provider for a node
4374 * @np: Device node pointer associated with clock provider
4375 * @clk_src_get: callback for decoding clock
4376 * @data: context pointer for @clk_src_get callback.
Stephen Boyd9fe9b7a2018-12-11 10:49:40 -08004377 *
4378 * This function is *deprecated*. Use of_clk_add_hw_provider() instead.
Grant Likely766e6a42012-04-09 14:50:06 -05004379 */
4380int of_clk_add_provider(struct device_node *np,
4381 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
4382 void *data),
4383 void *data)
4384{
4385 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004386 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05004387
Markus Elfring1808a322017-04-20 09:30:52 +02004388 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
Grant Likely766e6a42012-04-09 14:50:06 -05004389 if (!cp)
4390 return -ENOMEM;
4391
4392 cp->node = of_node_get(np);
4393 cp->data = data;
4394 cp->get = clk_src_get;
4395
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004396 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004397 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004398 mutex_unlock(&of_clk_mutex);
Rob Herring16673932017-07-18 16:42:52 -05004399 pr_debug("Added clock from %pOF\n", np);
Grant Likely766e6a42012-04-09 14:50:06 -05004400
Jerome Brunet66d95062019-12-03 09:08:05 +01004401 clk_core_reparent_orphans();
4402
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004403 ret = of_clk_set_defaults(np, true);
4404 if (ret < 0)
4405 of_clk_del_provider(np);
4406
4407 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05004408}
4409EXPORT_SYMBOL_GPL(of_clk_add_provider);
4410
4411/**
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004412 * of_clk_add_hw_provider() - Register a clock provider for a node
4413 * @np: Device node pointer associated with clock provider
4414 * @get: callback for decoding clk_hw
4415 * @data: context pointer for @get callback.
4416 */
4417int of_clk_add_hw_provider(struct device_node *np,
4418 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4419 void *data),
4420 void *data)
4421{
4422 struct of_clk_provider *cp;
4423 int ret;
4424
4425 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4426 if (!cp)
4427 return -ENOMEM;
4428
4429 cp->node = of_node_get(np);
4430 cp->data = data;
4431 cp->get_hw = get;
4432
4433 mutex_lock(&of_clk_mutex);
4434 list_add(&cp->link, &of_clk_providers);
4435 mutex_unlock(&of_clk_mutex);
Rob Herring16673932017-07-18 16:42:52 -05004436 pr_debug("Added clk_hw provider from %pOF\n", np);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004437
Jerome Brunet66d95062019-12-03 09:08:05 +01004438 clk_core_reparent_orphans();
4439
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004440 ret = of_clk_set_defaults(np, true);
4441 if (ret < 0)
4442 of_clk_del_provider(np);
4443
4444 return ret;
4445}
4446EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
4447
Stephen Boydaa795c42017-09-01 16:16:40 -07004448static void devm_of_clk_release_provider(struct device *dev, void *res)
4449{
4450 of_clk_del_provider(*(struct device_node **)res);
4451}
4452
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004453/*
4454 * We allow a child device to use its parent device as the clock provider node
4455 * for cases like MFD sub-devices where the child device driver wants to use
4456 * devm_*() APIs but not list the device in DT as a sub-node.
4457 */
4458static struct device_node *get_clk_provider_node(struct device *dev)
4459{
4460 struct device_node *np, *parent_np;
4461
4462 np = dev->of_node;
4463 parent_np = dev->parent ? dev->parent->of_node : NULL;
4464
4465 if (!of_find_property(np, "#clock-cells", NULL))
4466 if (of_find_property(parent_np, "#clock-cells", NULL))
4467 np = parent_np;
4468
4469 return np;
4470}
4471
Matti Vaittinene45838b2018-12-04 13:33:48 +02004472/**
4473 * devm_of_clk_add_hw_provider() - Managed clk provider node registration
4474 * @dev: Device acting as the clock provider (used for DT node and lifetime)
4475 * @get: callback for decoding clk_hw
4476 * @data: context pointer for @get callback
4477 *
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004478 * Registers clock provider for given device's node. If the device has no DT
4479 * node or if the device node lacks of clock provider information (#clock-cells)
4480 * then the parent device's node is scanned for this information. If parent node
4481 * has the #clock-cells then it is used in registration. Provider is
4482 * automatically released at device exit.
Matti Vaittinene45838b2018-12-04 13:33:48 +02004483 *
4484 * Return: 0 on success or an errno on failure.
4485 */
Stephen Boydaa795c42017-09-01 16:16:40 -07004486int devm_of_clk_add_hw_provider(struct device *dev,
4487 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4488 void *data),
4489 void *data)
4490{
4491 struct device_node **ptr, *np;
4492 int ret;
4493
4494 ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr),
4495 GFP_KERNEL);
4496 if (!ptr)
4497 return -ENOMEM;
4498
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004499 np = get_clk_provider_node(dev);
Stephen Boydaa795c42017-09-01 16:16:40 -07004500 ret = of_clk_add_hw_provider(np, get, data);
4501 if (!ret) {
4502 *ptr = np;
4503 devres_add(dev, ptr);
4504 } else {
4505 devres_free(ptr);
4506 }
4507
4508 return ret;
4509}
4510EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider);
4511
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004512/**
Grant Likely766e6a42012-04-09 14:50:06 -05004513 * of_clk_del_provider() - Remove a previously registered clock provider
4514 * @np: Device node pointer associated with clock provider
4515 */
4516void of_clk_del_provider(struct device_node *np)
4517{
4518 struct of_clk_provider *cp;
4519
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004520 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004521 list_for_each_entry(cp, &of_clk_providers, link) {
4522 if (cp->node == np) {
4523 list_del(&cp->link);
4524 of_node_put(cp->node);
4525 kfree(cp);
4526 break;
4527 }
4528 }
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004529 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004530}
4531EXPORT_SYMBOL_GPL(of_clk_del_provider);
4532
Stephen Boydaa795c42017-09-01 16:16:40 -07004533static int devm_clk_provider_match(struct device *dev, void *res, void *data)
4534{
4535 struct device_node **np = res;
4536
4537 if (WARN_ON(!np || !*np))
4538 return 0;
4539
4540 return *np == data;
4541}
4542
Matti Vaittinene45838b2018-12-04 13:33:48 +02004543/**
4544 * devm_of_clk_del_provider() - Remove clock provider registered using devm
4545 * @dev: Device to whose lifetime the clock provider was bound
4546 */
Stephen Boydaa795c42017-09-01 16:16:40 -07004547void devm_of_clk_del_provider(struct device *dev)
4548{
4549 int ret;
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004550 struct device_node *np = get_clk_provider_node(dev);
Stephen Boydaa795c42017-09-01 16:16:40 -07004551
4552 ret = devres_release(dev, devm_of_clk_release_provider,
Matti Vaittinen05502bf92018-12-04 13:34:53 +02004553 devm_clk_provider_match, np);
Stephen Boydaa795c42017-09-01 16:16:40 -07004554
4555 WARN_ON(ret);
4556}
4557EXPORT_SYMBOL(devm_of_clk_del_provider);
4558
Stephen Boyd226fd702019-08-26 14:20:42 -07004559/**
4560 * of_parse_clkspec() - Parse a DT clock specifier for a given device node
4561 * @np: device node to parse clock specifier from
4562 * @index: index of phandle to parse clock out of. If index < 0, @name is used
4563 * @name: clock name to find and parse. If name is NULL, the index is used
4564 * @out_args: Result of parsing the clock specifier
4565 *
4566 * Parses a device node's "clocks" and "clock-names" properties to find the
4567 * phandle and cells for the index or name that is desired. The resulting clock
4568 * specifier is placed into @out_args, or an errno is returned when there's a
4569 * parsing error. The @index argument is ignored if @name is non-NULL.
4570 *
4571 * Example:
4572 *
4573 * phandle1: clock-controller@1 {
4574 * #clock-cells = <2>;
4575 * }
4576 *
4577 * phandle2: clock-controller@2 {
4578 * #clock-cells = <1>;
4579 * }
4580 *
4581 * clock-consumer@3 {
4582 * clocks = <&phandle1 1 2 &phandle2 3>;
4583 * clock-names = "name1", "name2";
4584 * }
4585 *
4586 * To get a device_node for `clock-controller@2' node you may call this
4587 * function a few different ways:
4588 *
4589 * of_parse_clkspec(clock-consumer@3, -1, "name2", &args);
4590 * of_parse_clkspec(clock-consumer@3, 1, NULL, &args);
4591 * of_parse_clkspec(clock-consumer@3, 1, "name2", &args);
4592 *
4593 * Return: 0 upon successfully parsing the clock specifier. Otherwise, -ENOENT
4594 * if @name is NULL or -EINVAL if @name is non-NULL and it can't be found in
4595 * the "clock-names" property of @np.
Stephen Boyd5dc7e842019-03-08 10:35:01 -08004596 */
Stephen Boydcf13f282018-12-19 15:09:14 -08004597static int of_parse_clkspec(const struct device_node *np, int index,
4598 const char *name, struct of_phandle_args *out_args)
Stephen Boyd44722872018-12-19 10:59:55 -08004599{
4600 int ret = -ENOENT;
4601
4602 /* Walk up the tree of devices looking for a clock property that matches */
4603 while (np) {
4604 /*
4605 * For named clocks, first look up the name in the
4606 * "clock-names" property. If it cannot be found, then index
4607 * will be an error code and of_parse_phandle_with_args() will
4608 * return -EINVAL.
4609 */
4610 if (name)
4611 index = of_property_match_string(np, "clock-names", name);
4612 ret = of_parse_phandle_with_args(np, "clocks", "#clock-cells",
4613 index, out_args);
4614 if (!ret)
4615 break;
4616 if (name && index >= 0)
4617 break;
4618
4619 /*
4620 * No matching clock found on this node. If the parent node
4621 * has a "clock-ranges" property, then we can try one of its
4622 * clocks.
4623 */
4624 np = np->parent;
4625 if (np && !of_get_property(np, "clock-ranges", NULL))
4626 break;
4627 index = 0;
4628 }
4629
4630 return ret;
4631}
4632
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004633static struct clk_hw *
4634__of_clk_get_hw_from_provider(struct of_clk_provider *provider,
4635 struct of_phandle_args *clkspec)
4636{
4637 struct clk *clk;
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004638
Stephen Boyd74002fc2016-08-25 13:35:36 -07004639 if (provider->get_hw)
4640 return provider->get_hw(clkspec, provider->data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004641
Stephen Boyd74002fc2016-08-25 13:35:36 -07004642 clk = provider->get(clkspec, provider->data);
4643 if (IS_ERR(clk))
4644 return ERR_CAST(clk);
4645 return __clk_get_hw(clk);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004646}
4647
Stephen Boydcf13f282018-12-19 15:09:14 -08004648static struct clk_hw *
4649of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec)
Grant Likely766e6a42012-04-09 14:50:06 -05004650{
4651 struct of_clk_provider *provider;
Stephen Boyd1df40462018-12-11 08:32:04 -08004652 struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER);
Grant Likely766e6a42012-04-09 14:50:06 -05004653
Stephen Boyd306c3422015-02-05 15:39:11 -08004654 if (!clkspec)
4655 return ERR_PTR(-EINVAL);
4656
Stephen Boyd306c3422015-02-05 15:39:11 -08004657 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004658 list_for_each_entry(provider, &of_clk_providers, link) {
Stephen Boydf155d152016-08-15 14:32:23 -07004659 if (provider->node == clkspec->np) {
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004660 hw = __of_clk_get_hw_from_provider(provider, clkspec);
Stephen Boyd1df40462018-12-11 08:32:04 -08004661 if (!IS_ERR(hw))
4662 break;
Stephen Boyd73e0e492015-02-06 11:42:43 -08004663 }
Grant Likely766e6a42012-04-09 14:50:06 -05004664 }
Stephen Boyd306c3422015-02-05 15:39:11 -08004665 mutex_unlock(&of_clk_mutex);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004666
Stephen Boyd44722872018-12-19 10:59:55 -08004667 return hw;
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004668}
4669
Stephen Boyd306c3422015-02-05 15:39:11 -08004670/**
4671 * of_clk_get_from_provider() - Lookup a clock from a clock provider
4672 * @clkspec: pointer to a clock specifier data structure
4673 *
4674 * This function looks up a struct clk from the registered list of clock
4675 * providers, an input is a clock specifier data structure as returned
4676 * from the of_parse_phandle_with_args() function call.
4677 */
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004678struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
4679{
Stephen Boyd44722872018-12-19 10:59:55 -08004680 struct clk_hw *hw = of_clk_get_hw_from_clkspec(clkspec);
4681
Stephen Boydefa85042018-12-11 08:34:16 -08004682 return clk_hw_create_clk(NULL, hw, NULL, __func__);
Grant Likely766e6a42012-04-09 14:50:06 -05004683}
Andrew F. Davisfb4dd222016-02-12 12:50:16 -06004684EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
Grant Likely766e6a42012-04-09 14:50:06 -05004685
Stephen Boydcf13f282018-12-19 15:09:14 -08004686struct clk_hw *of_clk_get_hw(struct device_node *np, int index,
4687 const char *con_id)
4688{
4689 int ret;
4690 struct clk_hw *hw;
4691 struct of_phandle_args clkspec;
4692
4693 ret = of_parse_clkspec(np, index, con_id, &clkspec);
4694 if (ret)
4695 return ERR_PTR(ret);
4696
4697 hw = of_clk_get_hw_from_clkspec(&clkspec);
4698 of_node_put(clkspec.np);
4699
4700 return hw;
4701}
4702
4703static struct clk *__of_clk_get(struct device_node *np,
4704 int index, const char *dev_id,
4705 const char *con_id)
4706{
4707 struct clk_hw *hw = of_clk_get_hw(np, index, con_id);
4708
4709 return clk_hw_create_clk(NULL, hw, dev_id, con_id);
4710}
4711
4712struct clk *of_clk_get(struct device_node *np, int index)
4713{
4714 return __of_clk_get(np, index, np->full_name, NULL);
4715}
4716EXPORT_SYMBOL(of_clk_get);
4717
4718/**
4719 * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node
4720 * @np: pointer to clock consumer node
4721 * @name: name of consumer's clock input, or NULL for the first clock reference
4722 *
4723 * This function parses the clocks and clock-names properties,
4724 * and uses them to look up the struct clk from the registered list of clock
4725 * providers.
4726 */
4727struct clk *of_clk_get_by_name(struct device_node *np, const char *name)
4728{
4729 if (!np)
4730 return ERR_PTR(-ENOENT);
4731
Kuninori Morimoto65cf20a2019-03-06 16:18:28 +09004732 return __of_clk_get(np, 0, np->full_name, name);
Stephen Boydcf13f282018-12-19 15:09:14 -08004733}
4734EXPORT_SYMBOL(of_clk_get_by_name);
4735
Stephen Boyd929e7f32016-02-19 15:52:32 -08004736/**
4737 * of_clk_get_parent_count() - Count the number of clocks a device node has
4738 * @np: device node to count
4739 *
4740 * Returns: The number of clocks that are possible parents of this node
4741 */
Geert Uytterhoeven4a4472f2020-02-12 10:43:17 +01004742unsigned int of_clk_get_parent_count(const struct device_node *np)
Mike Turquettef6102742013-10-07 23:12:13 -07004743{
Stephen Boyd929e7f32016-02-19 15:52:32 -08004744 int count;
4745
4746 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
4747 if (count < 0)
4748 return 0;
4749
4750 return count;
Mike Turquettef6102742013-10-07 23:12:13 -07004751}
4752EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
4753
Geert Uytterhoeven4a4472f2020-02-12 10:43:17 +01004754const char *of_clk_get_parent_name(const struct device_node *np, int index)
Grant Likely766e6a42012-04-09 14:50:06 -05004755{
4756 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004757 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05004758 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004759 const __be32 *vp;
4760 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05004761 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004762 int count;
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004763 struct clk *clk;
Grant Likely766e6a42012-04-09 14:50:06 -05004764
Grant Likely766e6a42012-04-09 14:50:06 -05004765 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
4766 &clkspec);
4767 if (rc)
4768 return NULL;
4769
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004770 index = clkspec.args_count ? clkspec.args[0] : 0;
4771 count = 0;
4772
4773 /* if there is an indices property, use it to transfer the index
4774 * specified into an array offset for the clock-output-names property.
4775 */
4776 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
4777 if (index == pv) {
4778 index = count;
4779 break;
4780 }
4781 count++;
4782 }
Masahiro Yamada8da411c2015-12-03 11:20:35 +09004783 /* We went off the end of 'clock-indices' without finding it */
4784 if (prop && !vp)
4785 return NULL;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004786
Grant Likely766e6a42012-04-09 14:50:06 -05004787 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004788 index,
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004789 &clk_name) < 0) {
4790 /*
4791 * Best effort to get the name if the clock has been
4792 * registered with the framework. If the clock isn't
4793 * registered, we return the node name as the name of
4794 * the clock as long as #clock-cells = 0.
4795 */
4796 clk = of_clk_get_from_provider(&clkspec);
4797 if (IS_ERR(clk)) {
4798 if (clkspec.args_count == 0)
4799 clk_name = clkspec.np->name;
4800 else
4801 clk_name = NULL;
4802 } else {
4803 clk_name = __clk_get_name(clk);
4804 clk_put(clk);
4805 }
4806 }
4807
Grant Likely766e6a42012-04-09 14:50:06 -05004808
4809 of_node_put(clkspec.np);
4810 return clk_name;
4811}
4812EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
4813
Dinh Nguyen2e61dfb2015-06-05 11:26:13 -05004814/**
4815 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
4816 * number of parents
4817 * @np: Device node pointer associated with clock provider
4818 * @parents: pointer to char array that hold the parents' names
4819 * @size: size of the @parents array
4820 *
4821 * Return: number of parents for the clock node.
4822 */
4823int of_clk_parent_fill(struct device_node *np, const char **parents,
4824 unsigned int size)
4825{
4826 unsigned int i = 0;
4827
4828 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
4829 i++;
4830
4831 return i;
4832}
4833EXPORT_SYMBOL_GPL(of_clk_parent_fill);
4834
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004835struct clock_provider {
Geert Uytterhoevena59704332018-04-10 15:06:05 +02004836 void (*clk_init_cb)(struct device_node *);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004837 struct device_node *np;
4838 struct list_head node;
4839};
4840
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004841/*
4842 * This function looks for a parent clock. If there is one, then it
4843 * checks that the provider for this parent clock was initialized, in
4844 * this case the parent clock will be ready.
4845 */
4846static int parent_ready(struct device_node *np)
4847{
4848 int i = 0;
4849
4850 while (true) {
4851 struct clk *clk = of_clk_get(np, i);
4852
4853 /* this parent is ready we can check the next one */
4854 if (!IS_ERR(clk)) {
4855 clk_put(clk);
4856 i++;
4857 continue;
4858 }
4859
4860 /* at least one parent is not ready, we exit now */
4861 if (PTR_ERR(clk) == -EPROBE_DEFER)
4862 return 0;
4863
4864 /*
4865 * Here we make assumption that the device tree is
4866 * written correctly. So an error means that there is
4867 * no more parent. As we didn't exit yet, then the
4868 * previous parent are ready. If there is no clock
4869 * parent, no need to wait for them, then we can
4870 * consider their absence as being ready
4871 */
4872 return 1;
4873 }
4874}
4875
Grant Likely766e6a42012-04-09 14:50:06 -05004876/**
Lee Jonesd56f8992016-02-11 13:19:11 -08004877 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
4878 * @np: Device node pointer associated with clock provider
4879 * @index: clock index
Geert Uytterhoevenf7ae7502018-01-03 12:06:14 +01004880 * @flags: pointer to top-level framework flags
Lee Jonesd56f8992016-02-11 13:19:11 -08004881 *
4882 * Detects if the clock-critical property exists and, if so, sets the
4883 * corresponding CLK_IS_CRITICAL flag.
4884 *
4885 * Do not use this function. It exists only for legacy Device Tree
4886 * bindings, such as the one-clock-per-node style that are outdated.
4887 * Those bindings typically put all clock data into .dts and the Linux
4888 * driver has no clock data, thus making it impossible to set this flag
4889 * correctly from the driver. Only those drivers may call
4890 * of_clk_detect_critical from their setup functions.
4891 *
4892 * Return: error code or zero on success
4893 */
Geert Uytterhoevenbe545c72019-12-06 14:34:14 +01004894int of_clk_detect_critical(struct device_node *np, int index,
4895 unsigned long *flags)
Lee Jonesd56f8992016-02-11 13:19:11 -08004896{
4897 struct property *prop;
4898 const __be32 *cur;
4899 uint32_t idx;
4900
4901 if (!np || !flags)
4902 return -EINVAL;
4903
4904 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
4905 if (index == idx)
4906 *flags |= CLK_IS_CRITICAL;
4907
4908 return 0;
4909}
4910
4911/**
Grant Likely766e6a42012-04-09 14:50:06 -05004912 * of_clk_init() - Scan and init clock providers from the DT
4913 * @matches: array of compatible values and init functions for providers.
4914 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004915 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb42014-03-27 12:08:36 +01004916 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004917 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05004918 */
4919void __init of_clk_init(const struct of_device_id *matches)
4920{
Alex Elder7f7ed582013-08-22 11:31:31 -05004921 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05004922 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004923 struct clock_provider *clk_provider, *next;
4924 bool is_init_done;
4925 bool force = false;
Stephen Boyd2573a022015-07-06 16:50:00 -07004926 LIST_HEAD(clk_provider_list);
Grant Likely766e6a42012-04-09 14:50:06 -05004927
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304928 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03004929 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304930
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004931 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05004932 for_each_matching_node_and_match(np, matches, &match) {
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004933 struct clock_provider *parent;
4934
Geert Uytterhoeven3e5dd6f2016-02-26 16:54:31 +01004935 if (!of_device_is_available(np))
4936 continue;
4937
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004938 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
4939 if (!parent) {
4940 list_for_each_entry_safe(clk_provider, next,
4941 &clk_provider_list, node) {
4942 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004943 of_node_put(clk_provider->np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004944 kfree(clk_provider);
4945 }
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004946 of_node_put(np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004947 return;
4948 }
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004949
4950 parent->clk_init_cb = match->data;
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004951 parent->np = of_node_get(np);
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01004952 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004953 }
4954
4955 while (!list_empty(&clk_provider_list)) {
4956 is_init_done = false;
4957 list_for_each_entry_safe(clk_provider, next,
4958 &clk_provider_list, node) {
4959 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004960
Ricardo Ribalda Delgado989eafd2016-07-05 18:23:32 +02004961 /* Don't populate platform devices */
4962 of_node_set_flag(clk_provider->np,
4963 OF_POPULATED);
4964
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004965 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004966 of_clk_set_defaults(clk_provider->np, true);
4967
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004968 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004969 of_node_put(clk_provider->np);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004970 kfree(clk_provider);
4971 is_init_done = true;
4972 }
4973 }
4974
4975 /*
Sylwester Nawrockie5ca8fb42014-03-27 12:08:36 +01004976 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004977 * remaining providers during the last loop, so now we
4978 * initialize all the remaining ones unconditionally
4979 * in case the clock parent was not mandatory
4980 */
4981 if (!is_init_done)
4982 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05004983 }
4984}
4985#endif