blob: 872c9d0746c62e2ba4782ba27b28a4e51dd623d0 [file] [log] [blame]
Mike Turquetteb24764902012-03-15 23:11:19 -07001/*
2 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
3 * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org>
Deepak Katragaddabfb96502018-02-07 10:37:41 -08004 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
Mike Turquetteb24764902012-03-15 23:11:19 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Standard functionality for the common clock API. See Documentation/clk.txt
11 */
12
Deepak Katragadda9abd7942017-06-13 14:20:09 -070013#define pr_fmt(fmt) "clk: " fmt
14
Stephen Boyd3c373112015-06-19 15:00:46 -070015#include <linux/clk.h>
Michael Turquetteb09d6d92015-01-29 14:22:50 -080016#include <linux/clk-provider.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020017#include <linux/clk/clk-conf.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070018#include <linux/module.h>
19#include <linux/mutex.h>
20#include <linux/spinlock.h>
21#include <linux/err.h>
22#include <linux/list.h>
23#include <linux/slab.h>
Grant Likely766e6a42012-04-09 14:50:06 -050024#include <linux/of.h>
Stephen Boyd46c87732012-09-24 13:38:04 -070025#include <linux/device.h>
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +053026#include <linux/init.h>
Mike Turquette533ddeb2013-03-28 13:59:02 -070027#include <linux/sched.h>
Stephen Boyd562ef0b2015-05-01 12:16:14 -070028#include <linux/clkdev.h>
Deepak Katragadda677bad12016-11-04 13:33:13 -070029#include <linux/of_platform.h>
30#include <linux/pm_opp.h>
Stephen Boyd5cb05a12016-05-16 11:05:16 +053031#include <linux/regulator/consumer.h>
Mike Turquetteb24764902012-03-15 23:11:19 -070032
Sylwester Nawrockid6782c22013-08-23 17:03:43 +020033#include "clk.h"
34
Shefali Jain0dc6e782017-11-27 13:06:27 +053035#if defined(CONFIG_COMMON_CLK)
36
Mike Turquetteb24764902012-03-15 23:11:19 -070037static DEFINE_SPINLOCK(enable_lock);
38static DEFINE_MUTEX(prepare_lock);
39
Mike Turquette533ddeb2013-03-28 13:59:02 -070040static struct task_struct *prepare_owner;
41static struct task_struct *enable_owner;
42
43static int prepare_refcnt;
44static int enable_refcnt;
45
Mike Turquetteb24764902012-03-15 23:11:19 -070046static HLIST_HEAD(clk_root_list);
47static HLIST_HEAD(clk_orphan_list);
48static LIST_HEAD(clk_notifier_list);
49
Stephen Boyd5cb05a12016-05-16 11:05:16 +053050struct clk_handoff_vdd {
51 struct list_head list;
52 struct clk_vdd_class *vdd_class;
53};
54
55static LIST_HEAD(clk_handoff_vdd_list);
56
Michael Turquetteb09d6d92015-01-29 14:22:50 -080057/*** private data structures ***/
58
59struct clk_core {
60 const char *name;
61 const struct clk_ops *ops;
62 struct clk_hw *hw;
63 struct module *owner;
64 struct clk_core *parent;
65 const char **parent_names;
66 struct clk_core **parents;
67 u8 num_parents;
68 u8 new_parent_index;
69 unsigned long rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010070 unsigned long req_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080071 unsigned long new_rate;
72 struct clk_core *new_parent;
73 struct clk_core *new_child;
74 unsigned long flags;
Heiko Stuebnere6500342015-04-22 22:53:05 +020075 bool orphan;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080076 unsigned int enable_count;
77 unsigned int prepare_count;
Michael Turquettee9b8c592017-04-21 12:27:39 +053078 bool need_handoff_enable;
79 bool need_handoff_prepare;
Stephen Boyd9783c0d2015-07-16 12:50:27 -070080 unsigned long min_rate;
81 unsigned long max_rate;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080082 unsigned long accuracy;
83 int phase;
84 struct hlist_head children;
85 struct hlist_node child_node;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +010086 struct hlist_head clks;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080087 unsigned int notifier_count;
88#ifdef CONFIG_DEBUG_FS
89 struct dentry *dentry;
Maxime Coquelin8c9a8a82015-06-10 13:28:27 +020090 struct hlist_node debug_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080091#endif
92 struct kref ref;
Stephen Boyd5cb05a12016-05-16 11:05:16 +053093 struct clk_vdd_class *vdd_class;
94 unsigned long *rate_max;
95 int num_rate_max;
Michael Turquetteb09d6d92015-01-29 14:22:50 -080096};
97
Stephen Boyddfc202e2015-02-02 14:37:41 -080098#define CREATE_TRACE_POINTS
99#include <trace/events/clk.h>
100
Michael Turquetteb09d6d92015-01-29 14:22:50 -0800101struct clk {
102 struct clk_core *core;
103 const char *dev_id;
104 const char *con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100105 unsigned long min_rate;
106 unsigned long max_rate;
Stephen Boyd50595f82015-02-06 11:42:44 -0800107 struct hlist_node clks_node;
Michael Turquetteb09d6d92015-01-29 14:22:50 -0800108};
109
Mike Turquetteeab89f62013-03-28 13:59:01 -0700110/*** locking ***/
111static void clk_prepare_lock(void)
112{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700113 if (!mutex_trylock(&prepare_lock)) {
114 if (prepare_owner == current) {
115 prepare_refcnt++;
116 return;
117 }
118 mutex_lock(&prepare_lock);
119 }
120 WARN_ON_ONCE(prepare_owner != NULL);
121 WARN_ON_ONCE(prepare_refcnt != 0);
122 prepare_owner = current;
123 prepare_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700124}
125
126static void clk_prepare_unlock(void)
127{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700128 WARN_ON_ONCE(prepare_owner != current);
129 WARN_ON_ONCE(prepare_refcnt == 0);
130
131 if (--prepare_refcnt)
132 return;
133 prepare_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700134 mutex_unlock(&prepare_lock);
135}
136
137static unsigned long clk_enable_lock(void)
Stephen Boyda57aa182015-07-24 12:24:48 -0700138 __acquires(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700139{
140 unsigned long flags;
Mike Turquette533ddeb2013-03-28 13:59:02 -0700141
142 if (!spin_trylock_irqsave(&enable_lock, flags)) {
143 if (enable_owner == current) {
144 enable_refcnt++;
Stephen Boyda57aa182015-07-24 12:24:48 -0700145 __acquire(enable_lock);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700146 return flags;
147 }
148 spin_lock_irqsave(&enable_lock, flags);
149 }
150 WARN_ON_ONCE(enable_owner != NULL);
151 WARN_ON_ONCE(enable_refcnt != 0);
152 enable_owner = current;
153 enable_refcnt = 1;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700154 return flags;
155}
156
157static void clk_enable_unlock(unsigned long flags)
Stephen Boyda57aa182015-07-24 12:24:48 -0700158 __releases(enable_lock)
Mike Turquetteeab89f62013-03-28 13:59:01 -0700159{
Mike Turquette533ddeb2013-03-28 13:59:02 -0700160 WARN_ON_ONCE(enable_owner != current);
161 WARN_ON_ONCE(enable_refcnt == 0);
162
Stephen Boyda57aa182015-07-24 12:24:48 -0700163 if (--enable_refcnt) {
164 __release(enable_lock);
Mike Turquette533ddeb2013-03-28 13:59:02 -0700165 return;
Stephen Boyda57aa182015-07-24 12:24:48 -0700166 }
Mike Turquette533ddeb2013-03-28 13:59:02 -0700167 enable_owner = NULL;
Mike Turquetteeab89f62013-03-28 13:59:01 -0700168 spin_unlock_irqrestore(&enable_lock, flags);
169}
170
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700171static bool clk_core_is_prepared(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530172{
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700173 /*
174 * .is_prepared is optional for clocks that can prepare
175 * fall back to software usage counter if it is missing
176 */
177 if (!core->ops->is_prepared)
178 return core->prepare_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530179
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700180 return core->ops->is_prepared(core->hw);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530181}
182
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700183static bool clk_core_is_enabled(struct clk_core *core)
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530184{
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700185 /*
186 * .is_enabled is only mandatory for clocks that gate
187 * fall back to software usage counter if .is_enabled is missing
188 */
189 if (!core->ops->is_enabled)
190 return core->enable_count;
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530191
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700192 return core->ops->is_enabled(core->hw);
Prashant Gaikwad1af599d2012-12-26 19:16:22 +0530193}
194
Mike Turquetteb24764902012-03-15 23:11:19 -0700195/*** helper functions ***/
196
Geert Uytterhoevenb76281c2015-10-16 14:35:21 +0200197const char *__clk_get_name(const struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700198{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100199 return !clk ? NULL : clk->core->name;
Mike Turquetteb24764902012-03-15 23:11:19 -0700200}
Niels de Vos48950842012-12-13 13:12:25 +0100201EXPORT_SYMBOL_GPL(__clk_get_name);
Mike Turquetteb24764902012-03-15 23:11:19 -0700202
Stephen Boyde7df6f62015-08-12 13:04:56 -0700203const char *clk_hw_get_name(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700204{
205 return hw->core->name;
206}
207EXPORT_SYMBOL_GPL(clk_hw_get_name);
208
Russ Dill65800b22012-11-26 11:20:09 -0800209struct clk_hw *__clk_get_hw(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700210{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100211 return !clk ? NULL : clk->core->hw;
Mike Turquetteb24764902012-03-15 23:11:19 -0700212}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800213EXPORT_SYMBOL_GPL(__clk_get_hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700214
Stephen Boyde7df6f62015-08-12 13:04:56 -0700215unsigned int clk_hw_get_num_parents(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700216{
217 return hw->core->num_parents;
218}
219EXPORT_SYMBOL_GPL(clk_hw_get_num_parents);
220
Stephen Boyde7df6f62015-08-12 13:04:56 -0700221struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700222{
223 return hw->core->parent ? hw->core->parent->hw : NULL;
224}
225EXPORT_SYMBOL_GPL(clk_hw_get_parent);
226
Stephen Boyd4dff95d2015-04-30 14:43:22 -0700227static struct clk_core *__clk_lookup_subtree(const char *name,
228 struct clk_core *core)
229{
230 struct clk_core *child;
231 struct clk_core *ret;
232
233 if (!strcmp(core->name, name))
234 return core;
235
236 hlist_for_each_entry(child, &core->children, child_node) {
237 ret = __clk_lookup_subtree(name, child);
238 if (ret)
239 return ret;
240 }
241
242 return NULL;
243}
244
245static struct clk_core *clk_core_lookup(const char *name)
246{
247 struct clk_core *root_clk;
248 struct clk_core *ret;
249
250 if (!name)
251 return NULL;
252
253 /* search the 'proper' clk tree first */
254 hlist_for_each_entry(root_clk, &clk_root_list, child_node) {
255 ret = __clk_lookup_subtree(name, root_clk);
256 if (ret)
257 return ret;
258 }
259
260 /* if not found, then search the orphan tree */
261 hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) {
262 ret = __clk_lookup_subtree(name, root_clk);
263 if (ret)
264 return ret;
265 }
266
267 return NULL;
268}
269
Stephen Boydd6968fc2015-04-30 13:54:13 -0700270static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100271 u8 index)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100272{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700273 if (!core || index >= core->num_parents)
James Hogan7ef3dcc2013-07-29 12:24:58 +0100274 return NULL;
Masahiro Yamada88cfbef2015-12-28 19:23:01 +0900275
276 if (!core->parents[index])
277 core->parents[index] =
278 clk_core_lookup(core->parent_names[index]);
279
280 return core->parents[index];
James Hogan7ef3dcc2013-07-29 12:24:58 +0100281}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100282
Stephen Boyde7df6f62015-08-12 13:04:56 -0700283struct clk_hw *
284clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700285{
286 struct clk_core *parent;
287
288 parent = clk_core_get_parent_by_index(hw->core, index);
289
290 return !parent ? NULL : parent->hw;
291}
292EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index);
293
Russ Dill65800b22012-11-26 11:20:09 -0800294unsigned int __clk_get_enable_count(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700295{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100296 return !clk ? 0 : clk->core->enable_count;
Mike Turquetteb24764902012-03-15 23:11:19 -0700297}
298
Stephen Boydd6968fc2015-04-30 13:54:13 -0700299static unsigned long clk_core_get_rate_nolock(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700300{
301 unsigned long ret;
302
Stephen Boydd6968fc2015-04-30 13:54:13 -0700303 if (!core) {
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530304 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700305 goto out;
306 }
307
Stephen Boydd6968fc2015-04-30 13:54:13 -0700308 ret = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -0700309
Stephen Boyd47b0eeb2016-02-02 17:24:56 -0800310 if (!core->num_parents)
Mike Turquetteb24764902012-03-15 23:11:19 -0700311 goto out;
312
Stephen Boydd6968fc2015-04-30 13:54:13 -0700313 if (!core->parent)
Rajendra Nayak34e44fe2012-03-26 19:01:48 +0530314 ret = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -0700315
316out:
317 return ret;
318}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100319
Stephen Boyde7df6f62015-08-12 13:04:56 -0700320unsigned long clk_hw_get_rate(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700321{
322 return clk_core_get_rate_nolock(hw->core);
323}
324EXPORT_SYMBOL_GPL(clk_hw_get_rate);
325
Stephen Boydd6968fc2015-04-30 13:54:13 -0700326static unsigned long __clk_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100327{
Stephen Boydd6968fc2015-04-30 13:54:13 -0700328 if (!core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100329 return 0;
330
Stephen Boydd6968fc2015-04-30 13:54:13 -0700331 return core->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +0100332}
333
Russ Dill65800b22012-11-26 11:20:09 -0800334unsigned long __clk_get_flags(struct clk *clk)
Mike Turquetteb24764902012-03-15 23:11:19 -0700335{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100336 return !clk ? 0 : clk->core->flags;
Mike Turquetteb24764902012-03-15 23:11:19 -0700337}
Thierry Redingb05c6832013-09-03 09:43:51 +0200338EXPORT_SYMBOL_GPL(__clk_get_flags);
Mike Turquetteb24764902012-03-15 23:11:19 -0700339
Stephen Boyde7df6f62015-08-12 13:04:56 -0700340unsigned long clk_hw_get_flags(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700341{
342 return hw->core->flags;
343}
344EXPORT_SYMBOL_GPL(clk_hw_get_flags);
345
Stephen Boyde7df6f62015-08-12 13:04:56 -0700346bool clk_hw_is_prepared(const struct clk_hw *hw)
Stephen Boyd1a9c0692015-06-25 15:55:14 -0700347{
348 return clk_core_is_prepared(hw->core);
349}
350
Joachim Eastwoodbe68bf82015-10-24 18:55:22 +0200351bool clk_hw_is_enabled(const struct clk_hw *hw)
352{
353 return clk_core_is_enabled(hw->core);
354}
355
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100356bool __clk_is_enabled(struct clk *clk)
357{
358 if (!clk)
359 return false;
360
361 return clk_core_is_enabled(clk->core);
362}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800363EXPORT_SYMBOL_GPL(__clk_is_enabled);
Mike Turquetteb24764902012-03-15 23:11:19 -0700364
Stephen Boyd15a02c12015-01-19 18:05:28 -0800365static bool mux_is_better_rate(unsigned long rate, unsigned long now,
366 unsigned long best, unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100367{
Stephen Boyd15a02c12015-01-19 18:05:28 -0800368 if (flags & CLK_MUX_ROUND_CLOSEST)
369 return abs(now - rate) < abs(best - rate);
370
371 return now <= rate && now > best;
372}
373
Boris Brezillon0817b622015-07-07 20:48:08 +0200374static int
375clk_mux_determine_rate_flags(struct clk_hw *hw, struct clk_rate_request *req,
Stephen Boyd15a02c12015-01-19 18:05:28 -0800376 unsigned long flags)
James Hogane366fdd2013-07-29 12:25:02 +0100377{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100378 struct clk_core *core = hw->core, *parent, *best_parent = NULL;
Boris Brezillon0817b622015-07-07 20:48:08 +0200379 int i, num_parents, ret;
380 unsigned long best = 0;
381 struct clk_rate_request parent_req = *req;
James Hogane366fdd2013-07-29 12:25:02 +0100382
383 /* if NO_REPARENT flag set, pass through to current parent */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100384 if (core->flags & CLK_SET_RATE_NO_REPARENT) {
385 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200386 if (core->flags & CLK_SET_RATE_PARENT) {
387 ret = __clk_determine_rate(parent ? parent->hw : NULL,
388 &parent_req);
389 if (ret)
390 return ret;
391
392 best = parent_req.rate;
393 } else if (parent) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100394 best = clk_core_get_rate_nolock(parent);
Boris Brezillon0817b622015-07-07 20:48:08 +0200395 } else {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100396 best = clk_core_get_rate_nolock(core);
Boris Brezillon0817b622015-07-07 20:48:08 +0200397 }
398
James Hogane366fdd2013-07-29 12:25:02 +0100399 goto out;
400 }
401
402 /* find the parent that can provide the fastest rate <= rate */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100403 num_parents = core->num_parents;
James Hogane366fdd2013-07-29 12:25:02 +0100404 for (i = 0; i < num_parents; i++) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100405 parent = clk_core_get_parent_by_index(core, i);
James Hogane366fdd2013-07-29 12:25:02 +0100406 if (!parent)
407 continue;
Boris Brezillon0817b622015-07-07 20:48:08 +0200408
409 if (core->flags & CLK_SET_RATE_PARENT) {
410 parent_req = *req;
411 ret = __clk_determine_rate(parent->hw, &parent_req);
412 if (ret)
413 continue;
414 } else {
415 parent_req.rate = clk_core_get_rate_nolock(parent);
416 }
417
418 if (mux_is_better_rate(req->rate, parent_req.rate,
419 best, flags)) {
James Hogane366fdd2013-07-29 12:25:02 +0100420 best_parent = parent;
Boris Brezillon0817b622015-07-07 20:48:08 +0200421 best = parent_req.rate;
James Hogane366fdd2013-07-29 12:25:02 +0100422 }
423 }
424
Boris Brezillon57d866e2015-07-09 22:39:38 +0200425 if (!best_parent)
426 return -EINVAL;
427
James Hogane366fdd2013-07-29 12:25:02 +0100428out:
429 if (best_parent)
Boris Brezillon0817b622015-07-07 20:48:08 +0200430 req->best_parent_hw = best_parent->hw;
431 req->best_parent_rate = best;
432 req->rate = best;
James Hogane366fdd2013-07-29 12:25:02 +0100433
Boris Brezillon0817b622015-07-07 20:48:08 +0200434 return 0;
James Hogane366fdd2013-07-29 12:25:02 +0100435}
Stephen Boyd15a02c12015-01-19 18:05:28 -0800436
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100437struct clk *__clk_lookup(const char *name)
438{
439 struct clk_core *core = clk_core_lookup(name);
440
441 return !core ? NULL : core->hw->clk;
442}
443
Stephen Boydd6968fc2015-04-30 13:54:13 -0700444static void clk_core_get_boundaries(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100445 unsigned long *min_rate,
446 unsigned long *max_rate)
447{
448 struct clk *clk_user;
449
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700450 *min_rate = core->min_rate;
451 *max_rate = core->max_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100452
Stephen Boydd6968fc2015-04-30 13:54:13 -0700453 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100454 *min_rate = max(*min_rate, clk_user->min_rate);
455
Stephen Boydd6968fc2015-04-30 13:54:13 -0700456 hlist_for_each_entry(clk_user, &core->clks, clks_node)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +0100457 *max_rate = min(*max_rate, clk_user->max_rate);
458}
459
Stephen Boyd9783c0d2015-07-16 12:50:27 -0700460void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate,
461 unsigned long max_rate)
462{
463 hw->core->min_rate = min_rate;
464 hw->core->max_rate = max_rate;
465}
466EXPORT_SYMBOL_GPL(clk_hw_set_rate_range);
467
Stephen Boyd15a02c12015-01-19 18:05:28 -0800468/*
Taniya Dasd9744c12016-08-19 10:08:28 +0530469 * Aggregate the rate of all child nodes which are enabled and exclude the
470 * child node which requests for clk_aggregate_rate.
471 */
472unsigned long clk_aggregate_rate(struct clk_hw *hw,
473 const struct clk_core *parent)
474{
475 struct clk_core *child;
476 unsigned long aggre_rate = 0;
477
478 hlist_for_each_entry(child, &parent->children, child_node) {
479 if (child->enable_count &&
480 strcmp(child->name, hw->init->name))
481 aggre_rate = max(child->rate, aggre_rate);
482 }
483
484 return aggre_rate;
485}
486EXPORT_SYMBOL_GPL(clk_aggregate_rate);
487
488/*
Stephen Boyd15a02c12015-01-19 18:05:28 -0800489 * Helper for finding best parent to provide a given frequency. This can be used
490 * directly as a determine_rate callback (e.g. for a mux), or from a more
491 * complex clock that may combine a mux with other operations.
492 */
Boris Brezillon0817b622015-07-07 20:48:08 +0200493int __clk_mux_determine_rate(struct clk_hw *hw,
494 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800495{
Boris Brezillon0817b622015-07-07 20:48:08 +0200496 return clk_mux_determine_rate_flags(hw, req, 0);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800497}
Stephen Boyd0b7f04b2014-01-17 19:47:17 -0800498EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
James Hogane366fdd2013-07-29 12:25:02 +0100499
Boris Brezillon0817b622015-07-07 20:48:08 +0200500int __clk_mux_determine_rate_closest(struct clk_hw *hw,
501 struct clk_rate_request *req)
Stephen Boyd15a02c12015-01-19 18:05:28 -0800502{
Boris Brezillon0817b622015-07-07 20:48:08 +0200503 return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST);
Stephen Boyd15a02c12015-01-19 18:05:28 -0800504}
505EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest);
506
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530507/*
508 * Find the voltage level required for a given clock rate.
509 */
510static int clk_find_vdd_level(struct clk_core *clk, unsigned long rate)
511{
512 int level;
513
Deepak Katragaddaa755ecb2016-11-28 14:48:56 -0800514 /*
515 * For certain PLLs, due to the limitation in the bits allocated for
516 * programming the fractional divider, the actual rate of the PLL will
517 * be slightly higher than the requested rate (in the order of several
518 * Hz). To accommodate this difference, convert the FMAX rate and the
519 * clock frequency to KHz and use that for deriving the voltage level.
520 */
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530521 for (level = 0; level < clk->num_rate_max; level++)
Deepak Katragaddaa755ecb2016-11-28 14:48:56 -0800522 if (DIV_ROUND_CLOSEST(rate, 1000) <=
523 DIV_ROUND_CLOSEST(clk->rate_max[level], 1000))
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530524 break;
525
526 if (level == clk->num_rate_max) {
527 pr_err("Rate %lu for %s is greater than highest Fmax\n", rate,
528 clk->name);
529 return -EINVAL;
530 }
531
532 return level;
533}
534
535/*
536 * Update voltage level given the current votes.
537 */
538static int clk_update_vdd(struct clk_vdd_class *vdd_class)
539{
540 int level, rc = 0, i, ignore;
541 struct regulator **r = vdd_class->regulator;
542 int *uv = vdd_class->vdd_uv;
543 int n_reg = vdd_class->num_regulators;
544 int cur_lvl = vdd_class->cur_level;
545 int max_lvl = vdd_class->num_levels - 1;
546 int cur_base = cur_lvl * n_reg;
547 int new_base;
548
549 /* aggregate votes */
550 for (level = max_lvl; level > 0; level--)
551 if (vdd_class->level_votes[level])
552 break;
553
554 if (level == cur_lvl)
555 return 0;
556
557 max_lvl = max_lvl * n_reg;
558 new_base = level * n_reg;
559
560 for (i = 0; i < vdd_class->num_regulators; i++) {
561 pr_debug("Set Voltage level Min %d, Max %d\n", uv[new_base + i],
562 uv[max_lvl + i]);
563 rc = regulator_set_voltage(r[i], uv[new_base + i],
Taniya Daseee50c82016-12-03 19:06:59 +0530564 vdd_class->use_max_uV ? INT_MAX : uv[max_lvl + i]);
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530565 if (rc)
566 goto set_voltage_fail;
567
568 if (cur_lvl == 0 || cur_lvl == vdd_class->num_levels)
569 rc = regulator_enable(r[i]);
570 else if (level == 0)
571 rc = regulator_disable(r[i]);
572 if (rc)
573 goto enable_disable_fail;
574 }
575
576 if (vdd_class->set_vdd && !vdd_class->num_regulators)
577 rc = vdd_class->set_vdd(vdd_class, level);
578
579 if (!rc)
580 vdd_class->cur_level = level;
581
582 return rc;
583
584enable_disable_fail:
Taniya Daseee50c82016-12-03 19:06:59 +0530585 regulator_set_voltage(r[i], uv[cur_base + i],
586 vdd_class->use_max_uV ? INT_MAX : uv[max_lvl + i]);
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530587
588set_voltage_fail:
589 for (i--; i >= 0; i--) {
Taniya Daseee50c82016-12-03 19:06:59 +0530590 regulator_set_voltage(r[i], uv[cur_base + i],
591 vdd_class->use_max_uV ? INT_MAX : uv[max_lvl + i]);
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530592 if (cur_lvl == 0 || cur_lvl == vdd_class->num_levels)
593 regulator_disable(r[i]);
594 else if (level == 0)
595 ignore = regulator_enable(r[i]);
596 }
597
598 return rc;
599}
600
601/*
602 * Vote for a voltage level.
603 */
604static int clk_vote_vdd_level(struct clk_vdd_class *vdd_class, int level)
605{
606 int rc = 0;
607
608 if (level >= vdd_class->num_levels)
609 return -EINVAL;
610
611 mutex_lock(&vdd_class->lock);
612
613 vdd_class->level_votes[level]++;
614
615 rc = clk_update_vdd(vdd_class);
616 if (rc)
617 vdd_class->level_votes[level]--;
618
619 mutex_unlock(&vdd_class->lock);
620
621 return rc;
622}
623
624/*
625 * Remove vote for a voltage level.
626 */
627static int clk_unvote_vdd_level(struct clk_vdd_class *vdd_class, int level)
628{
629 int rc = 0;
630
631 if (level >= vdd_class->num_levels)
632 return -EINVAL;
633
634 mutex_lock(&vdd_class->lock);
635
636 if (WARN(!vdd_class->level_votes[level],
637 "Reference counts are incorrect for %s level %d\n",
638 vdd_class->class_name, level))
639 goto out;
640
641 vdd_class->level_votes[level]--;
642
643 rc = clk_update_vdd(vdd_class);
644 if (rc)
645 vdd_class->level_votes[level]++;
646
647out:
648 mutex_unlock(&vdd_class->lock);
649 return rc;
650}
651
652/*
653 * Vote for a voltage level corresponding to a clock's rate.
654 */
655static int clk_vote_rate_vdd(struct clk_core *core, unsigned long rate)
656{
657 int level;
658
659 if (!core->vdd_class)
660 return 0;
661
662 level = clk_find_vdd_level(core, rate);
663 if (level < 0)
664 return level;
665
666 return clk_vote_vdd_level(core->vdd_class, level);
667}
668
669/*
670 * Remove vote for a voltage level corresponding to a clock's rate.
671 */
672static void clk_unvote_rate_vdd(struct clk_core *core, unsigned long rate)
673{
674 int level;
675
676 if (!core->vdd_class)
677 return;
678
679 level = clk_find_vdd_level(core, rate);
680 if (level < 0)
681 return;
682
683 clk_unvote_vdd_level(core->vdd_class, level);
684}
685
686static bool clk_is_rate_level_valid(struct clk_core *core, unsigned long rate)
687{
688 int level;
689
690 if (!core->vdd_class)
691 return true;
692
693 level = clk_find_vdd_level(core, rate);
694
695 return level >= 0;
696}
697
698static int clk_vdd_class_init(struct clk_vdd_class *vdd)
699{
700 struct clk_handoff_vdd *v;
701
Taniya Daseee50c82016-12-03 19:06:59 +0530702 if (vdd->skip_handoff)
703 return 0;
704
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530705 list_for_each_entry(v, &clk_handoff_vdd_list, list) {
706 if (v->vdd_class == vdd)
707 return 0;
708 }
709
710 pr_debug("voting for vdd_class %s\n", vdd->class_name);
711
712 if (clk_vote_vdd_level(vdd, vdd->num_levels - 1))
713 pr_err("failed to vote for %s\n", vdd->class_name);
714
715 v = kmalloc(sizeof(*v), GFP_KERNEL);
716 if (!v)
717 return -ENOMEM;
718
719 v->vdd_class = vdd;
720
721 list_add_tail(&v->list, &clk_handoff_vdd_list);
722
723 return 0;
724}
725
Mike Turquetteb24764902012-03-15 23:11:19 -0700726/*** clk api ***/
727
Stephen Boydd6968fc2015-04-30 13:54:13 -0700728static void clk_core_unprepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700729{
Stephen Boyda6334722015-05-06 17:00:54 -0700730 lockdep_assert_held(&prepare_lock);
731
Stephen Boydd6968fc2015-04-30 13:54:13 -0700732 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700733 return;
734
Stephen Boydd6968fc2015-04-30 13:54:13 -0700735 if (WARN_ON(core->prepare_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700736 return;
737
Lee Jones2e20fbf2016-02-11 13:19:10 -0800738 if (WARN_ON(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL))
739 return;
740
Stephen Boydd6968fc2015-04-30 13:54:13 -0700741 if (--core->prepare_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700742 return;
743
Stephen Boydd6968fc2015-04-30 13:54:13 -0700744 WARN_ON(core->enable_count > 0);
Mike Turquetteb24764902012-03-15 23:11:19 -0700745
Stephen Boydd6968fc2015-04-30 13:54:13 -0700746 trace_clk_unprepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800747
Stephen Boydd6968fc2015-04-30 13:54:13 -0700748 if (core->ops->unprepare)
749 core->ops->unprepare(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700750
Stephen Boydd6968fc2015-04-30 13:54:13 -0700751 trace_clk_unprepare_complete(core);
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530752
753 clk_unvote_rate_vdd(core, core->rate);
754
Stephen Boydd6968fc2015-04-30 13:54:13 -0700755 clk_core_unprepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700756}
757
Dong Aishenga6adc302016-06-30 17:31:11 +0800758static void clk_core_unprepare_lock(struct clk_core *core)
759{
760 clk_prepare_lock();
761 clk_core_unprepare(core);
762 clk_prepare_unlock();
763}
764
Mike Turquetteb24764902012-03-15 23:11:19 -0700765/**
766 * clk_unprepare - undo preparation of a clock source
Peter Meerwald24ee1a02013-06-29 15:14:19 +0200767 * @clk: the clk being unprepared
Mike Turquetteb24764902012-03-15 23:11:19 -0700768 *
769 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
770 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
771 * if the operation may sleep. One example is a clk which is accessed over
772 * I2c. In the complex case a clk gate operation may require a fast and a slow
773 * part. It is this reason that clk_unprepare and clk_disable are not mutually
774 * exclusive. In fact clk_disable must be called before clk_unprepare.
775 */
776void clk_unprepare(struct clk *clk)
777{
Stephen Boyd63589e92014-03-26 16:06:37 -0700778 if (IS_ERR_OR_NULL(clk))
779 return;
780
Dong Aishenga6adc302016-06-30 17:31:11 +0800781 clk_core_unprepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700782}
783EXPORT_SYMBOL_GPL(clk_unprepare);
784
Stephen Boydd6968fc2015-04-30 13:54:13 -0700785static int clk_core_prepare(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700786{
787 int ret = 0;
788
Stephen Boyda6334722015-05-06 17:00:54 -0700789 lockdep_assert_held(&prepare_lock);
790
Stephen Boydd6968fc2015-04-30 13:54:13 -0700791 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700792 return 0;
793
Stephen Boydd6968fc2015-04-30 13:54:13 -0700794 if (core->prepare_count == 0) {
795 ret = clk_core_prepare(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700796 if (ret)
797 return ret;
798
Stephen Boydd6968fc2015-04-30 13:54:13 -0700799 trace_clk_prepare(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800800
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530801 ret = clk_vote_rate_vdd(core, core->rate);
802 if (ret) {
803 clk_core_unprepare(core->parent);
804 return ret;
805 }
806
Stephen Boydd6968fc2015-04-30 13:54:13 -0700807 if (core->ops->prepare)
808 ret = core->ops->prepare(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800809
Stephen Boydd6968fc2015-04-30 13:54:13 -0700810 trace_clk_prepare_complete(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800811
812 if (ret) {
Stephen Boyd5cb05a12016-05-16 11:05:16 +0530813 clk_unvote_rate_vdd(core, core->rate);
Stephen Boydd6968fc2015-04-30 13:54:13 -0700814 clk_core_unprepare(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800815 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700816 }
817 }
818
Stephen Boydd6968fc2015-04-30 13:54:13 -0700819 core->prepare_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700820
821 return 0;
822}
823
Dong Aishenga6adc302016-06-30 17:31:11 +0800824static int clk_core_prepare_lock(struct clk_core *core)
825{
826 int ret;
827
828 clk_prepare_lock();
829 ret = clk_core_prepare(core);
830 clk_prepare_unlock();
831
832 return ret;
833}
834
Mike Turquetteb24764902012-03-15 23:11:19 -0700835/**
836 * clk_prepare - prepare a clock source
837 * @clk: the clk being prepared
838 *
839 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
840 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
841 * operation may sleep. One example is a clk which is accessed over I2c. In
842 * the complex case a clk ungate operation may require a fast and a slow part.
843 * It is this reason that clk_prepare and clk_enable are not mutually
844 * exclusive. In fact clk_prepare must be called before clk_enable.
845 * Returns 0 on success, -EERROR otherwise.
846 */
847int clk_prepare(struct clk *clk)
848{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100849 if (!clk)
850 return 0;
851
Dong Aishenga6adc302016-06-30 17:31:11 +0800852 return clk_core_prepare_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700853}
854EXPORT_SYMBOL_GPL(clk_prepare);
855
Stephen Boydd6968fc2015-04-30 13:54:13 -0700856static void clk_core_disable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700857{
Stephen Boyda6334722015-05-06 17:00:54 -0700858 lockdep_assert_held(&enable_lock);
859
Stephen Boydd6968fc2015-04-30 13:54:13 -0700860 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700861 return;
862
Stephen Boydd6968fc2015-04-30 13:54:13 -0700863 if (WARN_ON(core->enable_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700864 return;
865
Lee Jones2e20fbf2016-02-11 13:19:10 -0800866 if (WARN_ON(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL))
867 return;
868
Stephen Boydd6968fc2015-04-30 13:54:13 -0700869 if (--core->enable_count > 0)
Mike Turquetteb24764902012-03-15 23:11:19 -0700870 return;
871
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700872 trace_clk_disable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800873
Stephen Boydd6968fc2015-04-30 13:54:13 -0700874 if (core->ops->disable)
875 core->ops->disable(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -0700876
Paul E. McKenney2f87a6e2016-04-26 12:43:57 -0700877 trace_clk_disable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800878
Stephen Boydd6968fc2015-04-30 13:54:13 -0700879 clk_core_disable(core->parent);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +0100880}
881
Dong Aishenga6adc302016-06-30 17:31:11 +0800882static void clk_core_disable_lock(struct clk_core *core)
883{
884 unsigned long flags;
885
886 flags = clk_enable_lock();
887 clk_core_disable(core);
888 clk_enable_unlock(flags);
889}
890
Mike Turquetteb24764902012-03-15 23:11:19 -0700891/**
892 * clk_disable - gate a clock
893 * @clk: the clk being gated
894 *
895 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
896 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
897 * clk if the operation is fast and will never sleep. One example is a
898 * SoC-internal clk which is controlled via simple register writes. In the
899 * complex case a clk gate operation may require a fast and a slow part. It is
900 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
901 * In fact clk_disable must be called before clk_unprepare.
902 */
903void clk_disable(struct clk *clk)
904{
Stephen Boyd63589e92014-03-26 16:06:37 -0700905 if (IS_ERR_OR_NULL(clk))
906 return;
907
Dong Aishenga6adc302016-06-30 17:31:11 +0800908 clk_core_disable_lock(clk->core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700909}
910EXPORT_SYMBOL_GPL(clk_disable);
911
Stephen Boydd6968fc2015-04-30 13:54:13 -0700912static int clk_core_enable(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700913{
914 int ret = 0;
915
Stephen Boyda6334722015-05-06 17:00:54 -0700916 lockdep_assert_held(&enable_lock);
917
Stephen Boydd6968fc2015-04-30 13:54:13 -0700918 if (!core)
Mike Turquetteb24764902012-03-15 23:11:19 -0700919 return 0;
920
Stephen Boydd6968fc2015-04-30 13:54:13 -0700921 if (WARN_ON(core->prepare_count == 0))
Mike Turquetteb24764902012-03-15 23:11:19 -0700922 return -ESHUTDOWN;
923
Stephen Boydd6968fc2015-04-30 13:54:13 -0700924 if (core->enable_count == 0) {
925 ret = clk_core_enable(core->parent);
Mike Turquetteb24764902012-03-15 23:11:19 -0700926
927 if (ret)
928 return ret;
929
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -0700930 trace_clk_enable_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800931
Stephen Boydd6968fc2015-04-30 13:54:13 -0700932 if (core->ops->enable)
933 ret = core->ops->enable(core->hw);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800934
Paul E. McKenneyf17a0dd2016-04-26 14:02:23 -0700935 trace_clk_enable_complete_rcuidle(core);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800936
937 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -0700938 clk_core_disable(core->parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -0800939 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -0700940 }
941 }
942
Stephen Boydd6968fc2015-04-30 13:54:13 -0700943 core->enable_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -0700944 return 0;
945}
946
Dong Aishenga6adc302016-06-30 17:31:11 +0800947static int clk_core_enable_lock(struct clk_core *core)
948{
949 unsigned long flags;
950 int ret;
951
952 flags = clk_enable_lock();
953 ret = clk_core_enable(core);
954 clk_enable_unlock(flags);
955
956 return ret;
957}
958
Mike Turquetteb24764902012-03-15 23:11:19 -0700959/**
960 * clk_enable - ungate a clock
961 * @clk: the clk being ungated
962 *
963 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
964 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
965 * if the operation will never sleep. One example is a SoC-internal clk which
966 * is controlled via simple register writes. In the complex case a clk ungate
967 * operation may require a fast and a slow part. It is this reason that
968 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
969 * must be called before clk_enable. Returns 0 on success, -EERROR
970 * otherwise.
971 */
972int clk_enable(struct clk *clk)
973{
Dong Aisheng864e1602015-04-30 14:02:19 -0700974 if (!clk)
975 return 0;
976
Dong Aishenga6adc302016-06-30 17:31:11 +0800977 return clk_core_enable_lock(clk->core);
978}
979EXPORT_SYMBOL_GPL(clk_enable);
980
981static int clk_core_prepare_enable(struct clk_core *core)
982{
983 int ret;
984
985 ret = clk_core_prepare_lock(core);
986 if (ret)
987 return ret;
988
989 ret = clk_core_enable_lock(core);
990 if (ret)
991 clk_core_unprepare_lock(core);
Mike Turquetteb24764902012-03-15 23:11:19 -0700992
993 return ret;
994}
Dong Aishenga6adc302016-06-30 17:31:11 +0800995
996static void clk_core_disable_unprepare(struct clk_core *core)
997{
998 clk_core_disable_lock(core);
999 clk_core_unprepare_lock(core);
1000}
Mike Turquetteb24764902012-03-15 23:11:19 -07001001
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001002static void clk_unprepare_unused_subtree(struct clk_core *core)
1003{
1004 struct clk_core *child;
1005
1006 lockdep_assert_held(&prepare_lock);
1007
1008 hlist_for_each_entry(child, &core->children, child_node)
1009 clk_unprepare_unused_subtree(child);
1010
Taniya Das30684a42017-04-21 13:33:20 +05301011 /*
1012 * setting CLK_ENABLE_HAND_OFF flag triggers this conditional
1013 *
1014 * need_handoff_prepare implies this clk was already prepared by
1015 * __clk_init. now we have a proper user, so unset the flag in our
1016 * internal bookkeeping. See CLK_ENABLE_HAND_OFF flag in clk-provider.h
1017 * for details.
1018 */
1019 if (core->need_handoff_prepare) {
1020 core->need_handoff_prepare = false;
1021 clk_core_unprepare(core);
1022 }
1023
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001024 if (core->prepare_count)
1025 return;
1026
1027 if (core->flags & CLK_IGNORE_UNUSED)
1028 return;
1029
1030 if (clk_core_is_prepared(core)) {
1031 trace_clk_unprepare(core);
1032 if (core->ops->unprepare_unused)
1033 core->ops->unprepare_unused(core->hw);
1034 else if (core->ops->unprepare)
1035 core->ops->unprepare(core->hw);
1036 trace_clk_unprepare_complete(core);
1037 }
1038}
1039
1040static void clk_disable_unused_subtree(struct clk_core *core)
1041{
1042 struct clk_core *child;
1043 unsigned long flags;
1044
1045 lockdep_assert_held(&prepare_lock);
1046
1047 hlist_for_each_entry(child, &core->children, child_node)
1048 clk_disable_unused_subtree(child);
1049
Taniya Das30684a42017-04-21 13:33:20 +05301050 /*
1051 * setting CLK_ENABLE_HAND_OFF flag triggers this conditional
1052 *
1053 * need_handoff_enable implies this clk was already enabled by
1054 * __clk_init. now we have a proper user, so unset the flag in our
1055 * internal bookkeeping. See CLK_ENABLE_HAND_OFF flag in clk-provider.h
1056 * for details.
1057 */
1058 if (core->need_handoff_enable) {
1059 core->need_handoff_enable = false;
1060 flags = clk_enable_lock();
1061 clk_core_disable(core);
1062 clk_enable_unlock(flags);
1063 }
1064
Dong Aishenga4b35182016-06-30 17:31:13 +08001065 if (core->flags & CLK_OPS_PARENT_ENABLE)
1066 clk_core_prepare_enable(core->parent);
1067
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001068 flags = clk_enable_lock();
1069
1070 if (core->enable_count)
1071 goto unlock_out;
1072
1073 if (core->flags & CLK_IGNORE_UNUSED)
1074 goto unlock_out;
1075
1076 /*
1077 * some gate clocks have special needs during the disable-unused
1078 * sequence. call .disable_unused if available, otherwise fall
1079 * back to .disable
1080 */
1081 if (clk_core_is_enabled(core)) {
1082 trace_clk_disable(core);
1083 if (core->ops->disable_unused)
1084 core->ops->disable_unused(core->hw);
1085 else if (core->ops->disable)
1086 core->ops->disable(core->hw);
1087 trace_clk_disable_complete(core);
1088 }
1089
1090unlock_out:
1091 clk_enable_unlock(flags);
Dong Aishenga4b35182016-06-30 17:31:13 +08001092 if (core->flags & CLK_OPS_PARENT_ENABLE)
1093 clk_core_disable_unprepare(core->parent);
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001094}
1095
1096static bool clk_ignore_unused;
1097static int __init clk_ignore_unused_setup(char *__unused)
1098{
1099 clk_ignore_unused = true;
1100 return 1;
1101}
1102__setup("clk_ignore_unused", clk_ignore_unused_setup);
1103
1104static int clk_disable_unused(void)
1105{
1106 struct clk_core *core;
Stephen Boyd5cb05a12016-05-16 11:05:16 +05301107 struct clk_handoff_vdd *v, *v_temp;
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001108
1109 if (clk_ignore_unused) {
1110 pr_warn("clk: Not disabling unused clocks\n");
1111 return 0;
1112 }
1113
1114 clk_prepare_lock();
1115
1116 hlist_for_each_entry(core, &clk_root_list, child_node)
1117 clk_disable_unused_subtree(core);
1118
1119 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1120 clk_disable_unused_subtree(core);
1121
1122 hlist_for_each_entry(core, &clk_root_list, child_node)
1123 clk_unprepare_unused_subtree(core);
1124
1125 hlist_for_each_entry(core, &clk_orphan_list, child_node)
1126 clk_unprepare_unused_subtree(core);
1127
Stephen Boyd5cb05a12016-05-16 11:05:16 +05301128 list_for_each_entry_safe(v, v_temp, &clk_handoff_vdd_list, list) {
1129 clk_unvote_vdd_level(v->vdd_class,
1130 v->vdd_class->num_levels - 1);
1131 list_del(&v->list);
1132 kfree(v);
1133 };
1134
Dong Aisheng7ec986e2016-06-30 17:31:12 +08001135 clk_prepare_unlock();
1136
1137 return 0;
1138}
1139late_initcall_sync(clk_disable_unused);
1140
Boris Brezillon0817b622015-07-07 20:48:08 +02001141static int clk_core_round_rate_nolock(struct clk_core *core,
1142 struct clk_rate_request *req)
Mike Turquetteb24764902012-03-15 23:11:19 -07001143{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001144 struct clk_core *parent;
Boris Brezillon0817b622015-07-07 20:48:08 +02001145 long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001146
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001147 lockdep_assert_held(&prepare_lock);
1148
Stephen Boydd6968fc2015-04-30 13:54:13 -07001149 if (!core)
Stephen Boyd2ac6b1f2012-10-03 23:38:55 -07001150 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001151
Stephen Boydd6968fc2015-04-30 13:54:13 -07001152 parent = core->parent;
Boris Brezillon0817b622015-07-07 20:48:08 +02001153 if (parent) {
1154 req->best_parent_hw = parent->hw;
1155 req->best_parent_rate = parent->rate;
1156 } else {
1157 req->best_parent_hw = NULL;
1158 req->best_parent_rate = 0;
1159 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001160
Stephen Boydd6968fc2015-04-30 13:54:13 -07001161 if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001162 return core->ops->determine_rate(core->hw, req);
1163 } else if (core->ops->round_rate) {
1164 rate = core->ops->round_rate(core->hw, req->rate,
1165 &req->best_parent_rate);
1166 if (rate < 0)
1167 return rate;
1168
1169 req->rate = rate;
1170 } else if (core->flags & CLK_SET_RATE_PARENT) {
1171 return clk_core_round_rate_nolock(parent, req);
1172 } else {
1173 req->rate = core->rate;
1174 }
1175
1176 return 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001177}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001178
1179/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001180 * __clk_determine_rate - get the closest rate actually supported by a clock
1181 * @hw: determine the rate of this clock
Peng Fan2d5b5202016-06-13 19:34:21 +08001182 * @req: target rate request
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001183 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001184 * Useful for clk_ops such as .set_rate and .determine_rate.
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001185 */
Boris Brezillon0817b622015-07-07 20:48:08 +02001186int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001187{
Boris Brezillon0817b622015-07-07 20:48:08 +02001188 if (!hw) {
1189 req->rate = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001190 return 0;
Boris Brezillon0817b622015-07-07 20:48:08 +02001191 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001192
Boris Brezillon0817b622015-07-07 20:48:08 +02001193 return clk_core_round_rate_nolock(hw->core, req);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001194}
1195EXPORT_SYMBOL_GPL(__clk_determine_rate);
1196
Stephen Boyd1a9c0692015-06-25 15:55:14 -07001197unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate)
1198{
1199 int ret;
1200 struct clk_rate_request req;
1201
1202 clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate);
1203 req.rate = rate;
1204
1205 ret = clk_core_round_rate_nolock(hw->core, &req);
1206 if (ret)
1207 return 0;
1208
1209 return req.rate;
1210}
1211EXPORT_SYMBOL_GPL(clk_hw_round_rate);
1212
Mike Turquetteb24764902012-03-15 23:11:19 -07001213/**
1214 * clk_round_rate - round the given rate for a clk
1215 * @clk: the clk for which we are rounding a rate
1216 * @rate: the rate which is to be rounded
1217 *
1218 * Takes in a rate as input and rounds it to a rate that the clk can actually
1219 * use which is then returned. If clk doesn't support round_rate operation
1220 * then the parent rate is returned.
1221 */
1222long clk_round_rate(struct clk *clk, unsigned long rate)
1223{
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001224 struct clk_rate_request req;
1225 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001226
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001227 if (!clk)
1228 return 0;
1229
Mike Turquetteeab89f62013-03-28 13:59:01 -07001230 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001231
1232 clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate);
1233 req.rate = rate;
1234
1235 ret = clk_core_round_rate_nolock(clk->core, &req);
Mike Turquetteeab89f62013-03-28 13:59:01 -07001236 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001237
Stephen Boydfc4a05d2015-06-25 17:24:15 -07001238 if (ret)
1239 return ret;
1240
1241 return req.rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001242}
1243EXPORT_SYMBOL_GPL(clk_round_rate);
1244
1245/**
1246 * __clk_notify - call clk notifier chain
Stephen Boydd6968fc2015-04-30 13:54:13 -07001247 * @core: clk that is changing rate
Mike Turquetteb24764902012-03-15 23:11:19 -07001248 * @msg: clk notifier type (see include/linux/clk.h)
1249 * @old_rate: old clk rate
1250 * @new_rate: new clk rate
1251 *
1252 * Triggers a notifier call chain on the clk rate-change notification
1253 * for 'clk'. Passes a pointer to the struct clk and the previous
1254 * and current rates to the notifier callback. Intended to be called by
1255 * internal clock code only. Returns NOTIFY_DONE from the last driver
1256 * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if
1257 * a driver returns that.
1258 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001259static int __clk_notify(struct clk_core *core, unsigned long msg,
Mike Turquetteb24764902012-03-15 23:11:19 -07001260 unsigned long old_rate, unsigned long new_rate)
1261{
1262 struct clk_notifier *cn;
1263 struct clk_notifier_data cnd;
1264 int ret = NOTIFY_DONE;
1265
Mike Turquetteb24764902012-03-15 23:11:19 -07001266 cnd.old_rate = old_rate;
1267 cnd.new_rate = new_rate;
1268
1269 list_for_each_entry(cn, &clk_notifier_list, node) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001270 if (cn->clk->core == core) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001271 cnd.clk = cn->clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001272 ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
1273 &cnd);
Mike Turquetteb24764902012-03-15 23:11:19 -07001274 }
1275 }
1276
1277 return ret;
1278}
1279
1280/**
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001281 * __clk_recalc_accuracies
Stephen Boydd6968fc2015-04-30 13:54:13 -07001282 * @core: first clk in the subtree
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001283 *
1284 * Walks the subtree of clks starting with clk and recalculates accuracies as
1285 * it goes. Note that if a clk does not implement the .recalc_accuracy
Stephen Boyd6e5ab412015-04-30 15:11:31 -07001286 * callback then it is assumed that the clock will take on the accuracy of its
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001287 * parent.
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001288 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001289static void __clk_recalc_accuracies(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001290{
1291 unsigned long parent_accuracy = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001292 struct clk_core *child;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001293
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001294 lockdep_assert_held(&prepare_lock);
1295
Stephen Boydd6968fc2015-04-30 13:54:13 -07001296 if (core->parent)
1297 parent_accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001298
Stephen Boydd6968fc2015-04-30 13:54:13 -07001299 if (core->ops->recalc_accuracy)
1300 core->accuracy = core->ops->recalc_accuracy(core->hw,
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001301 parent_accuracy);
1302 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07001303 core->accuracy = parent_accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001304
Stephen Boydd6968fc2015-04-30 13:54:13 -07001305 hlist_for_each_entry(child, &core->children, child_node)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001306 __clk_recalc_accuracies(child);
1307}
1308
Stephen Boydd6968fc2015-04-30 13:54:13 -07001309static long clk_core_get_accuracy(struct clk_core *core)
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001310{
1311 unsigned long accuracy;
1312
1313 clk_prepare_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001314 if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE))
1315 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001316
Stephen Boydd6968fc2015-04-30 13:54:13 -07001317 accuracy = __clk_get_accuracy(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001318 clk_prepare_unlock();
1319
1320 return accuracy;
1321}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001322
1323/**
1324 * clk_get_accuracy - return the accuracy of clk
1325 * @clk: the clk whose accuracy is being returned
1326 *
1327 * Simply returns the cached accuracy of the clk, unless
1328 * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be
1329 * issued.
1330 * If clk is NULL then returns 0.
1331 */
1332long clk_get_accuracy(struct clk *clk)
1333{
1334 if (!clk)
1335 return 0;
1336
1337 return clk_core_get_accuracy(clk->core);
1338}
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001339EXPORT_SYMBOL_GPL(clk_get_accuracy);
1340
Stephen Boydd6968fc2015-04-30 13:54:13 -07001341static unsigned long clk_recalc(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001342 unsigned long parent_rate)
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001343{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001344 if (core->ops->recalc_rate)
1345 return core->ops->recalc_rate(core->hw, parent_rate);
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001346 return parent_rate;
1347}
1348
Boris BREZILLON5279fc42013-12-21 10:34:47 +01001349/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001350 * __clk_recalc_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001351 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001352 * @msg: notification type (see include/linux/clk.h)
1353 *
1354 * Walks the subtree of clks starting with clk and recalculates rates as it
1355 * goes. Note that if a clk does not implement the .recalc_rate callback then
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001356 * it is assumed that the clock will take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001357 *
1358 * clk_recalc_rates also propagates the POST_RATE_CHANGE notification,
1359 * if necessary.
Mike Turquetteb24764902012-03-15 23:11:19 -07001360 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001361static void __clk_recalc_rates(struct clk_core *core, unsigned long msg)
Mike Turquetteb24764902012-03-15 23:11:19 -07001362{
1363 unsigned long old_rate;
1364 unsigned long parent_rate = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001365 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001366
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001367 lockdep_assert_held(&prepare_lock);
1368
Stephen Boydd6968fc2015-04-30 13:54:13 -07001369 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001370
Stephen Boydd6968fc2015-04-30 13:54:13 -07001371 if (core->parent)
1372 parent_rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001373
Stephen Boydd6968fc2015-04-30 13:54:13 -07001374 core->rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001375
1376 /*
1377 * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE
1378 * & ABORT_RATE_CHANGE notifiers
1379 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001380 if (core->notifier_count && msg)
1381 __clk_notify(core, msg, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001382
Stephen Boydd6968fc2015-04-30 13:54:13 -07001383 hlist_for_each_entry(child, &core->children, child_node)
Mike Turquetteb24764902012-03-15 23:11:19 -07001384 __clk_recalc_rates(child, msg);
1385}
1386
Stephen Boydd6968fc2015-04-30 13:54:13 -07001387static unsigned long clk_core_get_rate(struct clk_core *core)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001388{
1389 unsigned long rate;
1390
1391 clk_prepare_lock();
1392
Stephen Boydd6968fc2015-04-30 13:54:13 -07001393 if (core && (core->flags & CLK_GET_RATE_NOCACHE))
1394 __clk_recalc_rates(core, 0);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001395
Stephen Boydd6968fc2015-04-30 13:54:13 -07001396 rate = clk_core_get_rate_nolock(core);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001397 clk_prepare_unlock();
1398
1399 return rate;
1400}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001401
Mike Turquetteb24764902012-03-15 23:11:19 -07001402/**
Ulf Hanssona093bde2012-08-31 14:21:28 +02001403 * clk_get_rate - return the rate of clk
1404 * @clk: the clk whose rate is being returned
1405 *
1406 * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag
1407 * is set, which means a recalc_rate will be issued.
1408 * If clk is NULL then returns 0.
1409 */
1410unsigned long clk_get_rate(struct clk *clk)
1411{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001412 if (!clk)
1413 return 0;
Ulf Hanssona093bde2012-08-31 14:21:28 +02001414
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001415 return clk_core_get_rate(clk->core);
Ulf Hanssona093bde2012-08-31 14:21:28 +02001416}
1417EXPORT_SYMBOL_GPL(clk_get_rate);
1418
Stephen Boydd6968fc2015-04-30 13:54:13 -07001419static int clk_fetch_parent_index(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001420 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001421{
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001422 int i;
James Hogan4935b222013-07-29 12:24:59 +01001423
Masahiro Yamada508f8842015-12-28 19:23:08 +09001424 if (!parent)
1425 return -EINVAL;
1426
Masahiro Yamada470b5e22015-12-28 19:23:09 +09001427 for (i = 0; i < core->num_parents; i++)
1428 if (clk_core_get_parent_by_index(core, i) == parent)
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001429 return i;
Tomasz Figada0f0b22013-09-29 02:37:16 +02001430
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001431 return -EINVAL;
James Hogan4935b222013-07-29 12:24:59 +01001432}
1433
Heiko Stuebnere6500342015-04-22 22:53:05 +02001434/*
1435 * Update the orphan status of @core and all its children.
1436 */
1437static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan)
1438{
1439 struct clk_core *child;
1440
1441 core->orphan = is_orphan;
1442
1443 hlist_for_each_entry(child, &core->children, child_node)
1444 clk_core_update_orphan_status(child, is_orphan);
1445}
1446
Stephen Boydd6968fc2015-04-30 13:54:13 -07001447static void clk_reparent(struct clk_core *core, struct clk_core *new_parent)
James Hogan4935b222013-07-29 12:24:59 +01001448{
Heiko Stuebnere6500342015-04-22 22:53:05 +02001449 bool was_orphan = core->orphan;
1450
Stephen Boydd6968fc2015-04-30 13:54:13 -07001451 hlist_del(&core->child_node);
James Hogan4935b222013-07-29 12:24:59 +01001452
James Hogan903efc52013-08-29 12:10:51 +01001453 if (new_parent) {
Heiko Stuebnere6500342015-04-22 22:53:05 +02001454 bool becomes_orphan = new_parent->orphan;
1455
James Hogan903efc52013-08-29 12:10:51 +01001456 /* avoid duplicate POST_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001457 if (new_parent->new_child == core)
James Hogan903efc52013-08-29 12:10:51 +01001458 new_parent->new_child = NULL;
1459
Stephen Boydd6968fc2015-04-30 13:54:13 -07001460 hlist_add_head(&core->child_node, &new_parent->children);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001461
1462 if (was_orphan != becomes_orphan)
1463 clk_core_update_orphan_status(core, becomes_orphan);
James Hogan903efc52013-08-29 12:10:51 +01001464 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07001465 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02001466 if (!was_orphan)
1467 clk_core_update_orphan_status(core, true);
James Hogan903efc52013-08-29 12:10:51 +01001468 }
James Hogan4935b222013-07-29 12:24:59 +01001469
Stephen Boydd6968fc2015-04-30 13:54:13 -07001470 core->parent = new_parent;
James Hogan4935b222013-07-29 12:24:59 +01001471}
1472
Stephen Boydd6968fc2015-04-30 13:54:13 -07001473static struct clk_core *__clk_set_parent_before(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001474 struct clk_core *parent)
James Hogan4935b222013-07-29 12:24:59 +01001475{
1476 unsigned long flags;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001477 struct clk_core *old_parent = core->parent;
James Hogan4935b222013-07-29 12:24:59 +01001478
1479 /*
Dong Aishengfc8726a2016-06-30 17:31:14 +08001480 * 1. enable parents for CLK_OPS_PARENT_ENABLE clock
1481 *
1482 * 2. Migrate prepare state between parents and prevent race with
James Hogan4935b222013-07-29 12:24:59 +01001483 * clk_enable().
1484 *
1485 * If the clock is not prepared, then a race with
1486 * clk_enable/disable() is impossible since we already have the
1487 * prepare lock (future calls to clk_enable() need to be preceded by
1488 * a clk_prepare()).
1489 *
1490 * If the clock is prepared, migrate the prepared state to the new
1491 * parent and also protect against a race with clk_enable() by
1492 * forcing the clock and the new parent on. This ensures that all
1493 * future calls to clk_enable() are practically NOPs with respect to
1494 * hardware and software states.
1495 *
1496 * See also: Comment for clk_set_parent() below.
1497 */
Dong Aishengfc8726a2016-06-30 17:31:14 +08001498
1499 /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */
1500 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1501 clk_core_prepare_enable(old_parent);
1502 clk_core_prepare_enable(parent);
1503 }
1504
1505 /* migrate prepare count if > 0 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001506 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001507 clk_core_prepare_enable(parent);
1508 clk_core_enable_lock(core);
James Hogan4935b222013-07-29 12:24:59 +01001509 }
1510
1511 /* update the clk tree topology */
1512 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001513 clk_reparent(core, parent);
James Hogan4935b222013-07-29 12:24:59 +01001514 clk_enable_unlock(flags);
1515
Stephen Boyd3fa22522014-01-15 10:47:22 -08001516 return old_parent;
1517}
1518
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001519static void __clk_set_parent_after(struct clk_core *core,
1520 struct clk_core *parent,
1521 struct clk_core *old_parent)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001522{
1523 /*
1524 * Finish the migration of prepare state and undo the changes done
1525 * for preventing a race with clk_enable().
1526 */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001527 if (core->prepare_count) {
Dong Aishengfc8726a2016-06-30 17:31:14 +08001528 clk_core_disable_lock(core);
1529 clk_core_disable_unprepare(old_parent);
1530 }
1531
1532 /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
1533 if (core->flags & CLK_OPS_PARENT_ENABLE) {
1534 clk_core_disable_unprepare(parent);
1535 clk_core_disable_unprepare(old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001536 }
Stephen Boyd3fa22522014-01-15 10:47:22 -08001537}
1538
Stephen Boydd6968fc2015-04-30 13:54:13 -07001539static int __clk_set_parent(struct clk_core *core, struct clk_core *parent,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001540 u8 p_index)
Stephen Boyd3fa22522014-01-15 10:47:22 -08001541{
1542 unsigned long flags;
1543 int ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001544 struct clk_core *old_parent;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001545
Stephen Boydd6968fc2015-04-30 13:54:13 -07001546 old_parent = __clk_set_parent_before(core, parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001547
Stephen Boydd6968fc2015-04-30 13:54:13 -07001548 trace_clk_set_parent(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001549
James Hogan4935b222013-07-29 12:24:59 +01001550 /* change clock input source */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001551 if (parent && core->ops->set_parent)
1552 ret = core->ops->set_parent(core->hw, p_index);
James Hogan4935b222013-07-29 12:24:59 +01001553
Stephen Boydd6968fc2015-04-30 13:54:13 -07001554 trace_clk_set_parent_complete(core, parent);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001555
James Hogan4935b222013-07-29 12:24:59 +01001556 if (ret) {
1557 flags = clk_enable_lock();
Stephen Boydd6968fc2015-04-30 13:54:13 -07001558 clk_reparent(core, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001559 clk_enable_unlock(flags);
Dong Aishengc660b2eb2015-07-28 21:19:41 +08001560 __clk_set_parent_after(core, old_parent, parent);
James Hogan4935b222013-07-29 12:24:59 +01001561
James Hogan4935b222013-07-29 12:24:59 +01001562 return ret;
1563 }
1564
Stephen Boydd6968fc2015-04-30 13:54:13 -07001565 __clk_set_parent_after(core, parent, old_parent);
James Hogan4935b222013-07-29 12:24:59 +01001566
James Hogan4935b222013-07-29 12:24:59 +01001567 return 0;
1568}
1569
Ulf Hanssona093bde2012-08-31 14:21:28 +02001570/**
Mike Turquetteb24764902012-03-15 23:11:19 -07001571 * __clk_speculate_rates
Stephen Boydd6968fc2015-04-30 13:54:13 -07001572 * @core: first clk in the subtree
Mike Turquetteb24764902012-03-15 23:11:19 -07001573 * @parent_rate: the "future" rate of clk's parent
1574 *
1575 * Walks the subtree of clks starting with clk, speculating rates as it
1576 * goes and firing off PRE_RATE_CHANGE notifications as necessary.
1577 *
1578 * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending
1579 * pre-rate change notifications and returns early if no clks in the
1580 * subtree have subscribed to the notifications. Note that if a clk does not
1581 * implement the .recalc_rate callback then it is assumed that the clock will
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001582 * take on the rate of its parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07001583 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001584static int __clk_speculate_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001585 unsigned long parent_rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001586{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001587 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001588 unsigned long new_rate;
1589 int ret = NOTIFY_DONE;
1590
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01001591 lockdep_assert_held(&prepare_lock);
1592
Stephen Boydd6968fc2015-04-30 13:54:13 -07001593 new_rate = clk_recalc(core, parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001594
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001595 /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001596 if (core->notifier_count)
1597 ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001598
Mike Turquette86bcfa22014-02-24 16:08:41 -08001599 if (ret & NOTIFY_STOP_MASK) {
1600 pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001601 __func__, core->name, ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07001602 goto out;
Mike Turquette86bcfa22014-02-24 16:08:41 -08001603 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001604
Stephen Boydd6968fc2015-04-30 13:54:13 -07001605 hlist_for_each_entry(child, &core->children, child_node) {
Mike Turquetteb24764902012-03-15 23:11:19 -07001606 ret = __clk_speculate_rates(child, new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001607 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07001608 break;
1609 }
1610
1611out:
1612 return ret;
1613}
1614
Stephen Boydd6968fc2015-04-30 13:54:13 -07001615static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001616 struct clk_core *new_parent, u8 p_index)
Mike Turquetteb24764902012-03-15 23:11:19 -07001617{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001618 struct clk_core *child;
Mike Turquetteb24764902012-03-15 23:11:19 -07001619
Stephen Boydd6968fc2015-04-30 13:54:13 -07001620 core->new_rate = new_rate;
1621 core->new_parent = new_parent;
1622 core->new_parent_index = p_index;
James Hogan71472c02013-07-29 12:25:00 +01001623 /* include clk in new parent's PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001624 core->new_child = NULL;
1625 if (new_parent && new_parent != core->parent)
1626 new_parent->new_child = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001627
Stephen Boydd6968fc2015-04-30 13:54:13 -07001628 hlist_for_each_entry(child, &core->children, child_node) {
Stephen Boyd8f2c2db2014-03-26 16:06:36 -07001629 child->new_rate = clk_recalc(child, new_rate);
James Hogan71472c02013-07-29 12:25:00 +01001630 clk_calc_subtree(child, child->new_rate, NULL, 0);
Mike Turquetteb24764902012-03-15 23:11:19 -07001631 }
1632}
1633
1634/*
1635 * calculate the new rates returning the topmost clock that has to be
1636 * changed.
1637 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001638static struct clk_core *clk_calc_new_rates(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001639 unsigned long rate)
Mike Turquetteb24764902012-03-15 23:11:19 -07001640{
Stephen Boydd6968fc2015-04-30 13:54:13 -07001641 struct clk_core *top = core;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001642 struct clk_core *old_parent, *parent;
Shawn Guo81536e02012-04-12 20:50:17 +08001643 unsigned long best_parent_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001644 unsigned long new_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001645 unsigned long min_rate;
1646 unsigned long max_rate;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001647 int p_index = 0;
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001648 long ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001649
Mike Turquette7452b212012-03-26 14:45:36 -07001650 /* sanity */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001651 if (IS_ERR_OR_NULL(core))
Mike Turquette7452b212012-03-26 14:45:36 -07001652 return NULL;
1653
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001654 /* save parent rate, if it exists */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001655 parent = old_parent = core->parent;
James Hogan71472c02013-07-29 12:25:00 +01001656 if (parent)
1657 best_parent_rate = parent->rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001658
Stephen Boydd6968fc2015-04-30 13:54:13 -07001659 clk_core_get_boundaries(core, &min_rate, &max_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001660
James Hogan71472c02013-07-29 12:25:00 +01001661 /* find the closest rate and parent clk/rate */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001662 if (core->ops->determine_rate) {
Boris Brezillon0817b622015-07-07 20:48:08 +02001663 struct clk_rate_request req;
1664
1665 req.rate = rate;
1666 req.min_rate = min_rate;
1667 req.max_rate = max_rate;
1668 if (parent) {
1669 req.best_parent_hw = parent->hw;
1670 req.best_parent_rate = parent->rate;
1671 } else {
1672 req.best_parent_hw = NULL;
1673 req.best_parent_rate = 0;
1674 }
1675
1676 ret = core->ops->determine_rate(core->hw, &req);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001677 if (ret < 0)
1678 return NULL;
1679
Boris Brezillon0817b622015-07-07 20:48:08 +02001680 best_parent_rate = req.best_parent_rate;
1681 new_rate = req.rate;
1682 parent = req.best_parent_hw ? req.best_parent_hw->core : NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001683 } else if (core->ops->round_rate) {
1684 ret = core->ops->round_rate(core->hw, rate,
Boris Brezillon0817b622015-07-07 20:48:08 +02001685 &best_parent_rate);
Boris Brezillon03bc10a2015-03-29 03:48:48 +02001686 if (ret < 0)
1687 return NULL;
1688
1689 new_rate = ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001690 if (new_rate < min_rate || new_rate > max_rate)
1691 return NULL;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001692 } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) {
James Hogan71472c02013-07-29 12:25:00 +01001693 /* pass-through clock without adjustable parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001694 core->new_rate = core->rate;
James Hogan71472c02013-07-29 12:25:00 +01001695 return NULL;
1696 } else {
1697 /* pass-through clock with adjustable parent */
1698 top = clk_calc_new_rates(parent, rate);
1699 new_rate = parent->new_rate;
Mike Turquette63f5c3b2012-05-02 16:23:43 -07001700 goto out;
Mike Turquette7452b212012-03-26 14:45:36 -07001701 }
1702
James Hogan71472c02013-07-29 12:25:00 +01001703 /* some clocks must be gated to change parent */
1704 if (parent != old_parent &&
Stephen Boydd6968fc2015-04-30 13:54:13 -07001705 (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
James Hogan71472c02013-07-29 12:25:00 +01001706 pr_debug("%s: %s not gated but wants to reparent\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001707 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07001708 return NULL;
1709 }
1710
James Hogan71472c02013-07-29 12:25:00 +01001711 /* try finding the new parent index */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001712 if (parent && core->num_parents > 1) {
1713 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02001714 if (p_index < 0) {
James Hogan71472c02013-07-29 12:25:00 +01001715 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07001716 __func__, parent->name, core->name);
James Hogan71472c02013-07-29 12:25:00 +01001717 return NULL;
1718 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001719 }
1720
Deepak Katragadda1cabdbe2017-04-28 13:42:50 -07001721 /*
1722 * The Fabia PLLs only have 16 bits to program the fractional divider.
1723 * Hence the programmed rate might be slightly different than the
1724 * requested one.
1725 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001726 if ((core->flags & CLK_SET_RATE_PARENT) && parent &&
Deepak Katragadda1cabdbe2017-04-28 13:42:50 -07001727 (DIV_ROUND_CLOSEST(best_parent_rate, 1000) !=
1728 DIV_ROUND_CLOSEST(parent->rate, 1000)))
James Hogan71472c02013-07-29 12:25:00 +01001729 top = clk_calc_new_rates(parent, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001730
1731out:
Stephen Boyd5cb05a12016-05-16 11:05:16 +05301732 if (!clk_is_rate_level_valid(core, rate))
1733 return NULL;
1734
Stephen Boydd6968fc2015-04-30 13:54:13 -07001735 clk_calc_subtree(core, new_rate, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07001736
1737 return top;
1738}
1739
1740/*
1741 * Notify about rate changes in a subtree. Always walk down the whole tree
1742 * so that in case of an error we can walk down the whole tree again and
1743 * abort the change.
1744 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001745static struct clk_core *clk_propagate_rate_change(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001746 unsigned long event)
Mike Turquetteb24764902012-03-15 23:11:19 -07001747{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001748 struct clk_core *child, *tmp_clk, *fail_clk = NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001749 int ret = NOTIFY_DONE;
1750
Stephen Boydd6968fc2015-04-30 13:54:13 -07001751 if (core->rate == core->new_rate)
Sachin Kamat5fda6852013-03-13 15:17:49 +05301752 return NULL;
Mike Turquetteb24764902012-03-15 23:11:19 -07001753
Stephen Boydd6968fc2015-04-30 13:54:13 -07001754 if (core->notifier_count) {
1755 ret = __clk_notify(core, event, core->rate, core->new_rate);
Soren Brinkmannfb72a052013-04-03 12:17:12 -07001756 if (ret & NOTIFY_STOP_MASK)
Stephen Boydd6968fc2015-04-30 13:54:13 -07001757 fail_clk = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07001758 }
1759
Stephen Boydd6968fc2015-04-30 13:54:13 -07001760 hlist_for_each_entry(child, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001761 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001762 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01001763 continue;
1764 tmp_clk = clk_propagate_rate_change(child, event);
1765 if (tmp_clk)
1766 fail_clk = tmp_clk;
1767 }
1768
Stephen Boydd6968fc2015-04-30 13:54:13 -07001769 /* handle the new child who might not be in core->children yet */
1770 if (core->new_child) {
1771 tmp_clk = clk_propagate_rate_change(core->new_child, event);
James Hogan71472c02013-07-29 12:25:00 +01001772 if (tmp_clk)
1773 fail_clk = tmp_clk;
Mike Turquetteb24764902012-03-15 23:11:19 -07001774 }
1775
1776 return fail_clk;
1777}
1778
1779/*
1780 * walk down a subtree and set the new rates notifying the rate
1781 * change on the way
1782 */
Taniya Das083a1982016-06-14 16:39:56 +05301783static int clk_change_rate(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07001784{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001785 struct clk_core *child;
Tero Kristo067bb172014-08-21 16:47:45 +03001786 struct hlist_node *tmp;
Mike Turquetteb24764902012-03-15 23:11:19 -07001787 unsigned long old_rate;
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001788 unsigned long best_parent_rate = 0;
Stephen Boyd3fa22522014-01-15 10:47:22 -08001789 bool skip_set_rate = false;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01001790 struct clk_core *old_parent;
Dong Aishengfc8726a2016-06-30 17:31:14 +08001791 struct clk_core *parent = NULL;
Taniya Das083a1982016-06-14 16:39:56 +05301792 int rc = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07001793
Stephen Boydd6968fc2015-04-30 13:54:13 -07001794 old_rate = core->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07001795
Dong Aishengfc8726a2016-06-30 17:31:14 +08001796 if (core->new_parent) {
1797 parent = core->new_parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001798 best_parent_rate = core->new_parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08001799 } else if (core->parent) {
1800 parent = core->parent;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001801 best_parent_rate = core->parent->rate;
Dong Aishengfc8726a2016-06-30 17:31:14 +08001802 }
Pawel Mollbf47b4f2012-06-08 14:04:06 +01001803
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01001804 if (core->flags & CLK_SET_RATE_UNGATE) {
1805 unsigned long flags;
1806
1807 clk_core_prepare(core);
1808 flags = clk_enable_lock();
1809 clk_core_enable(core);
1810 clk_enable_unlock(flags);
1811 }
1812
Taniya Das0624f562017-05-10 15:23:22 +05301813 trace_clk_set_rate(core, core->new_rate);
1814
1815 /* Enforce vdd requirements for new frequency. */
1816 if (core->prepare_count) {
1817 rc = clk_vote_rate_vdd(core, core->new_rate);
1818 if (rc)
1819 goto out;
1820 }
1821
Stephen Boydd6968fc2015-04-30 13:54:13 -07001822 if (core->new_parent && core->new_parent != core->parent) {
1823 old_parent = __clk_set_parent_before(core, core->new_parent);
1824 trace_clk_set_parent(core, core->new_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001825
Stephen Boydd6968fc2015-04-30 13:54:13 -07001826 if (core->ops->set_rate_and_parent) {
Stephen Boyd3fa22522014-01-15 10:47:22 -08001827 skip_set_rate = true;
Stephen Boydd6968fc2015-04-30 13:54:13 -07001828 core->ops->set_rate_and_parent(core->hw, core->new_rate,
Stephen Boyd3fa22522014-01-15 10:47:22 -08001829 best_parent_rate,
Stephen Boydd6968fc2015-04-30 13:54:13 -07001830 core->new_parent_index);
1831 } else if (core->ops->set_parent) {
1832 core->ops->set_parent(core->hw, core->new_parent_index);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001833 }
1834
Stephen Boydd6968fc2015-04-30 13:54:13 -07001835 trace_clk_set_parent_complete(core, core->new_parent);
1836 __clk_set_parent_after(core, core->new_parent, old_parent);
Stephen Boyd3fa22522014-01-15 10:47:22 -08001837 }
1838
Dong Aishengfc8726a2016-06-30 17:31:14 +08001839 if (core->flags & CLK_OPS_PARENT_ENABLE)
1840 clk_core_prepare_enable(parent);
1841
Taniya Das083a1982016-06-14 16:39:56 +05301842 if (!skip_set_rate && core->ops->set_rate) {
1843 rc = core->ops->set_rate(core->hw, core->new_rate,
1844 best_parent_rate);
1845 if (rc)
Stephen Boyd5cb05a12016-05-16 11:05:16 +05301846 goto err_set_rate;
Taniya Das083a1982016-06-14 16:39:56 +05301847 }
Mike Turquetteb24764902012-03-15 23:11:19 -07001848
Stephen Boydd6968fc2015-04-30 13:54:13 -07001849 trace_clk_set_rate_complete(core, core->new_rate);
Stephen Boyddfc202e2015-02-02 14:37:41 -08001850
Stephen Boyd5cb05a12016-05-16 11:05:16 +05301851 /* Release vdd requirements for old frequency. */
1852 if (core->prepare_count)
1853 clk_unvote_rate_vdd(core, old_rate);
1854
Stephen Boydd6968fc2015-04-30 13:54:13 -07001855 core->rate = clk_recalc(core, best_parent_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001856
Heiko Stuebner2eb8c712015-12-22 22:27:58 +01001857 if (core->flags & CLK_SET_RATE_UNGATE) {
1858 unsigned long flags;
1859
1860 flags = clk_enable_lock();
1861 clk_core_disable(core);
1862 clk_enable_unlock(flags);
1863 clk_core_unprepare(core);
1864 }
1865
Dong Aishengfc8726a2016-06-30 17:31:14 +08001866 if (core->flags & CLK_OPS_PARENT_ENABLE)
1867 clk_core_disable_unprepare(parent);
1868
Stephen Boydd6968fc2015-04-30 13:54:13 -07001869 if (core->notifier_count && old_rate != core->rate)
1870 __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001871
Michael Turquette85e88fa2015-06-20 12:18:03 -07001872 if (core->flags & CLK_RECALC_NEW_RATES)
1873 (void)clk_calc_new_rates(core, core->new_rate);
Bartlomiej Zolnierkiewiczd8d91982015-04-03 18:43:44 +02001874
Deepak Katragaddabfb96502018-02-07 10:37:41 -08001875 if (core->flags & CLK_CHILD_NO_RATE_PROP)
1876 return rc;
Tero Kristo067bb172014-08-21 16:47:45 +03001877 /*
1878 * Use safe iteration, as change_rate can actually swap parents
1879 * for certain clock types.
1880 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001881 hlist_for_each_entry_safe(child, tmp, &core->children, child_node) {
James Hogan71472c02013-07-29 12:25:00 +01001882 /* Skip children who will be reparented to another clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001883 if (child->new_parent && child->new_parent != core)
James Hogan71472c02013-07-29 12:25:00 +01001884 continue;
Taniya Das083a1982016-06-14 16:39:56 +05301885 rc = clk_change_rate(child);
1886 if (rc)
1887 return rc;
James Hogan71472c02013-07-29 12:25:00 +01001888 }
1889
Stephen Boydd6968fc2015-04-30 13:54:13 -07001890 /* handle the new child who might not be in core->children yet */
1891 if (core->new_child)
Taniya Das083a1982016-06-14 16:39:56 +05301892 rc = clk_change_rate(core->new_child);
1893
1894 return rc;
Stephen Boyd5cb05a12016-05-16 11:05:16 +05301895
1896err_set_rate:
1897 if (core->prepare_count)
1898 clk_unvote_rate_vdd(core, core->new_rate);
Taniya Das083a1982016-06-14 16:39:56 +05301899out:
1900 trace_clk_set_rate_complete(core, core->new_rate);
1901
1902 return rc;
Mike Turquetteb24764902012-03-15 23:11:19 -07001903}
1904
Stephen Boydd6968fc2015-04-30 13:54:13 -07001905static int clk_core_set_rate_nolock(struct clk_core *core,
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001906 unsigned long req_rate)
1907{
1908 struct clk_core *top, *fail_clk;
1909 unsigned long rate = req_rate;
Taniya Das083a1982016-06-14 16:39:56 +05301910 int ret = 0;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001911
Stephen Boydd6968fc2015-04-30 13:54:13 -07001912 if (!core)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001913 return 0;
1914
1915 /* bail early if nothing to do */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001916 if (rate == clk_core_get_rate_nolock(core))
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001917 return 0;
1918
Stephen Boydd6968fc2015-04-30 13:54:13 -07001919 if ((core->flags & CLK_SET_RATE_GATE) && core->prepare_count)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001920 return -EBUSY;
1921
1922 /* calculate new rates and get the topmost changed clock */
Stephen Boydd6968fc2015-04-30 13:54:13 -07001923 top = clk_calc_new_rates(core, rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001924 if (!top)
1925 return -EINVAL;
1926
1927 /* notify that we are about to change rates */
1928 fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE);
1929 if (fail_clk) {
Taniya Das083a1982016-06-14 16:39:56 +05301930 pr_debug("%s: failed to set %s clock to run at %lu\n", __func__,
1931 fail_clk->name, req_rate);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001932 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1933 return -EBUSY;
1934 }
1935
1936 /* change the rates */
Taniya Das083a1982016-06-14 16:39:56 +05301937 ret = clk_change_rate(top);
1938 if (ret) {
1939 pr_err("%s: failed to set %s clock to run at %lu\n", __func__,
1940 top->name, req_rate);
1941 clk_propagate_rate_change(top, ABORT_RATE_CHANGE);
1942 return ret;
1943 }
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001944
Stephen Boydd6968fc2015-04-30 13:54:13 -07001945 core->req_rate = req_rate;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001946
Taniya Das083a1982016-06-14 16:39:56 +05301947 return ret;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001948}
1949
Mike Turquetteb24764902012-03-15 23:11:19 -07001950/**
1951 * clk_set_rate - specify a new rate for clk
1952 * @clk: the clk whose rate is being changed
1953 * @rate: the new rate for clk
1954 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001955 * In the simplest case clk_set_rate will only adjust the rate of clk.
Mike Turquetteb24764902012-03-15 23:11:19 -07001956 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001957 * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to
1958 * propagate up to clk's parent; whether or not this happens depends on the
1959 * outcome of clk's .round_rate implementation. If *parent_rate is unchanged
1960 * after calling .round_rate then upstream parent propagation is ignored. If
1961 * *parent_rate comes back with a new rate for clk's parent then we propagate
Peter Meerwald24ee1a02013-06-29 15:14:19 +02001962 * up to clk's parent and set its rate. Upward propagation will continue
Mike Turquette5654dc92012-03-26 11:51:34 -07001963 * until either a clk does not support the CLK_SET_RATE_PARENT flag or
1964 * .round_rate stops requesting changes to clk's parent_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07001965 *
Mike Turquette5654dc92012-03-26 11:51:34 -07001966 * Rate changes are accomplished via tree traversal that also recalculates the
1967 * rates for the clocks and fires off POST_RATE_CHANGE notifiers.
Mike Turquetteb24764902012-03-15 23:11:19 -07001968 *
1969 * Returns 0 on success, -EERROR otherwise.
1970 */
1971int clk_set_rate(struct clk *clk, unsigned long rate)
1972{
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001973 int ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07001974
Mike Turquette89ac8d72013-08-21 23:58:09 -07001975 if (!clk)
1976 return 0;
1977
Mike Turquetteb24764902012-03-15 23:11:19 -07001978 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07001979 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001980
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001981 ret = clk_core_set_rate_nolock(clk->core, rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07001982
Mike Turquetteeab89f62013-03-28 13:59:01 -07001983 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07001984
1985 return ret;
1986}
1987EXPORT_SYMBOL_GPL(clk_set_rate);
1988
1989/**
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01001990 * clk_set_rate_range - set a rate range for a clock source
1991 * @clk: clock source
1992 * @min: desired minimum clock rate in Hz, inclusive
1993 * @max: desired maximum clock rate in Hz, inclusive
1994 *
1995 * Returns success (0) or negative errno.
1996 */
1997int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max)
1998{
1999 int ret = 0;
2000
2001 if (!clk)
2002 return 0;
2003
2004 if (min > max) {
2005 pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n",
2006 __func__, clk->core->name, clk->dev_id, clk->con_id,
2007 min, max);
2008 return -EINVAL;
2009 }
2010
2011 clk_prepare_lock();
2012
2013 if (min != clk->min_rate || max != clk->max_rate) {
2014 clk->min_rate = min;
2015 clk->max_rate = max;
2016 ret = clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
2017 }
2018
2019 clk_prepare_unlock();
2020
2021 return ret;
2022}
2023EXPORT_SYMBOL_GPL(clk_set_rate_range);
2024
2025/**
2026 * clk_set_min_rate - set a minimum clock rate for a clock source
2027 * @clk: clock source
2028 * @rate: desired minimum clock rate in Hz, inclusive
2029 *
2030 * Returns success (0) or negative errno.
2031 */
2032int clk_set_min_rate(struct clk *clk, unsigned long rate)
2033{
2034 if (!clk)
2035 return 0;
2036
2037 return clk_set_rate_range(clk, rate, clk->max_rate);
2038}
2039EXPORT_SYMBOL_GPL(clk_set_min_rate);
2040
2041/**
2042 * clk_set_max_rate - set a maximum clock rate for a clock source
2043 * @clk: clock source
2044 * @rate: desired maximum clock rate in Hz, inclusive
2045 *
2046 * Returns success (0) or negative errno.
2047 */
2048int clk_set_max_rate(struct clk *clk, unsigned long rate)
2049{
2050 if (!clk)
2051 return 0;
2052
2053 return clk_set_rate_range(clk, clk->min_rate, rate);
2054}
2055EXPORT_SYMBOL_GPL(clk_set_max_rate);
2056
2057/**
Mike Turquetteb24764902012-03-15 23:11:19 -07002058 * clk_get_parent - return the parent of a clk
2059 * @clk: the clk whose parent gets returned
2060 *
2061 * Simply returns clk->parent. Returns NULL if clk is NULL.
2062 */
2063struct clk *clk_get_parent(struct clk *clk)
2064{
2065 struct clk *parent;
2066
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002067 if (!clk)
2068 return NULL;
2069
Mike Turquetteeab89f62013-03-28 13:59:01 -07002070 clk_prepare_lock();
Stephen Boydfc4a05d2015-06-25 17:24:15 -07002071 /* TODO: Create a per-user clk and change callers to call clk_put */
2072 parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk;
Mike Turquetteeab89f62013-03-28 13:59:01 -07002073 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002074
2075 return parent;
2076}
2077EXPORT_SYMBOL_GPL(clk_get_parent);
2078
Stephen Boydd6968fc2015-04-30 13:54:13 -07002079static struct clk_core *__clk_init_parent(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07002080{
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002081 u8 index = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002082
Masahiro Yamada2430a942016-02-09 20:19:14 +09002083 if (core->num_parents > 1 && core->ops->get_parent)
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002084 index = core->ops->get_parent(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07002085
Masahiro Yamada5146e0b2015-12-28 19:23:04 +09002086 return clk_core_get_parent_by_index(core, index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002087}
2088
Stephen Boydd6968fc2015-04-30 13:54:13 -07002089static void clk_core_reparent(struct clk_core *core,
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002090 struct clk_core *new_parent)
Ulf Hanssonb33d2122013-04-02 23:09:37 +02002091{
Stephen Boydd6968fc2015-04-30 13:54:13 -07002092 clk_reparent(core, new_parent);
2093 __clk_recalc_accuracies(core);
2094 __clk_recalc_rates(core, POST_RATE_CHANGE);
Mike Turquetteb24764902012-03-15 23:11:19 -07002095}
2096
Tomeu Vizoso42c86542015-03-11 11:34:25 +01002097void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent)
2098{
2099 if (!hw)
2100 return;
2101
2102 clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core);
2103}
2104
Mike Turquetteb24764902012-03-15 23:11:19 -07002105/**
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002106 * clk_has_parent - check if a clock is a possible parent for another
2107 * @clk: clock source
2108 * @parent: parent clock source
Mike Turquetteb24764902012-03-15 23:11:19 -07002109 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002110 * This function can be used in drivers that need to check that a clock can be
2111 * the parent of another without actually changing the parent.
Saravana Kannanf8aa0bd2013-05-15 21:07:24 -07002112 *
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002113 * Returns true if @parent is a possible parent for @clk, false otherwise.
Mike Turquetteb24764902012-03-15 23:11:19 -07002114 */
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002115bool clk_has_parent(struct clk *clk, struct clk *parent)
2116{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002117 struct clk_core *core, *parent_core;
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002118 unsigned int i;
2119
2120 /* NULL clocks should be nops, so return success if either is NULL. */
2121 if (!clk || !parent)
2122 return true;
2123
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002124 core = clk->core;
2125 parent_core = parent->core;
2126
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002127 /* Optimize for the case where the parent is already the parent. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002128 if (core->parent == parent_core)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002129 return true;
2130
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002131 for (i = 0; i < core->num_parents; i++)
2132 if (strcmp(core->parent_names[i], parent_core->name) == 0)
Thierry Reding4e88f3d2015-01-21 17:13:00 +01002133 return true;
2134
2135 return false;
2136}
2137EXPORT_SYMBOL_GPL(clk_has_parent);
2138
Stephen Boydd6968fc2015-04-30 13:54:13 -07002139static int clk_core_set_parent(struct clk_core *core, struct clk_core *parent)
Mike Turquetteb24764902012-03-15 23:11:19 -07002140{
2141 int ret = 0;
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002142 int p_index = 0;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002143 unsigned long p_rate = 0;
Mike Turquetteb24764902012-03-15 23:11:19 -07002144
Stephen Boydd6968fc2015-04-30 13:54:13 -07002145 if (!core)
Mike Turquette89ac8d72013-08-21 23:58:09 -07002146 return 0;
2147
Mike Turquetteb24764902012-03-15 23:11:19 -07002148 /* prevent racing with updates to the clock topology */
Mike Turquetteeab89f62013-03-28 13:59:01 -07002149 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002150
Taniya Das8436bd72016-11-21 17:50:13 +05302151 if (core->parent == parent && !(core->flags & CLK_IS_MEASURE))
Mike Turquetteb24764902012-03-15 23:11:19 -07002152 goto out;
2153
Stephen Boydb61c43c2015-02-02 14:11:25 -08002154 /* verify ops for for multi-parent clks */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002155 if ((core->num_parents > 1) && (!core->ops->set_parent)) {
Stephen Boydb61c43c2015-02-02 14:11:25 -08002156 ret = -ENOSYS;
2157 goto out;
2158 }
2159
Ulf Hansson031dcc92013-04-02 23:09:38 +02002160 /* check that we are allowed to re-parent if the clock is in use */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002161 if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02002162 ret = -EBUSY;
2163 goto out;
2164 }
2165
2166 /* try finding the new parent index */
2167 if (parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002168 p_index = clk_fetch_parent_index(core, parent);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002169 if (p_index < 0) {
Ulf Hansson031dcc92013-04-02 23:09:38 +02002170 pr_debug("%s: clk %s can not be parent of clk %s\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07002171 __func__, parent->name, core->name);
Tomasz Figaf1c8b2e2013-09-29 02:37:14 +02002172 ret = p_index;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002173 goto out;
2174 }
Masahiro Yamadae8f0e682015-12-28 19:23:10 +09002175 p_rate = parent->rate;
Ulf Hansson031dcc92013-04-02 23:09:38 +02002176 }
2177
Mike Turquetteb24764902012-03-15 23:11:19 -07002178 /* propagate PRE_RATE_CHANGE notifications */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002179 ret = __clk_speculate_rates(core, p_rate);
Mike Turquetteb24764902012-03-15 23:11:19 -07002180
2181 /* abort if a driver objects */
Soren Brinkmannfb72a052013-04-03 12:17:12 -07002182 if (ret & NOTIFY_STOP_MASK)
Mike Turquetteb24764902012-03-15 23:11:19 -07002183 goto out;
2184
Ulf Hansson031dcc92013-04-02 23:09:38 +02002185 /* do the re-parent */
Stephen Boydd6968fc2015-04-30 13:54:13 -07002186 ret = __clk_set_parent(core, parent, p_index);
Mike Turquetteb24764902012-03-15 23:11:19 -07002187
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002188 /* propagate rate an accuracy recalculation accordingly */
2189 if (ret) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002190 __clk_recalc_rates(core, ABORT_RATE_CHANGE);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002191 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07002192 __clk_recalc_rates(core, POST_RATE_CHANGE);
2193 __clk_recalc_accuracies(core);
Boris BREZILLON5279fc42013-12-21 10:34:47 +01002194 }
Mike Turquetteb24764902012-03-15 23:11:19 -07002195
2196out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07002197 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07002198
2199 return ret;
2200}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002201
2202/**
2203 * clk_set_parent - switch the parent of a mux clk
2204 * @clk: the mux clk whose input we are switching
2205 * @parent: the new input to clk
2206 *
2207 * Re-parent clk to use parent as its new input source. If clk is in
2208 * prepared state, the clk will get enabled for the duration of this call. If
2209 * that's not acceptable for a specific clk (Eg: the consumer can't handle
2210 * that, the reparenting is glitchy in hardware, etc), use the
2211 * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared.
2212 *
2213 * After successfully changing clk's parent clk_set_parent will update the
2214 * clk topology, sysfs topology and propagate rate recalculation via
2215 * __clk_recalc_rates.
2216 *
2217 * Returns 0 on success, -EERROR otherwise.
2218 */
2219int clk_set_parent(struct clk *clk, struct clk *parent)
2220{
2221 if (!clk)
2222 return 0;
2223
2224 return clk_core_set_parent(clk->core, parent ? parent->core : NULL);
2225}
Mike Turquetteb24764902012-03-15 23:11:19 -07002226EXPORT_SYMBOL_GPL(clk_set_parent);
2227
2228/**
Mike Turquettee59c5372014-02-18 21:21:25 -08002229 * clk_set_phase - adjust the phase shift of a clock signal
2230 * @clk: clock signal source
2231 * @degrees: number of degrees the signal is shifted
2232 *
2233 * Shifts the phase of a clock signal by the specified
2234 * degrees. Returns 0 on success, -EERROR otherwise.
2235 *
2236 * This function makes no distinction about the input or reference
2237 * signal that we adjust the clock signal phase against. For example
2238 * phase locked-loop clock signal generators we may shift phase with
2239 * respect to feedback clock signal input, but for other cases the
2240 * clock phase may be shifted with respect to some other, unspecified
2241 * signal.
2242 *
2243 * Additionally the concept of phase shift does not propagate through
2244 * the clock tree hierarchy, which sets it apart from clock rates and
2245 * clock accuracy. A parent clock phase attribute does not have an
2246 * impact on the phase attribute of a child clock.
2247 */
2248int clk_set_phase(struct clk *clk, int degrees)
2249{
Stephen Boyd08b95752015-02-02 14:09:43 -08002250 int ret = -EINVAL;
Mike Turquettee59c5372014-02-18 21:21:25 -08002251
2252 if (!clk)
Stephen Boyd08b95752015-02-02 14:09:43 -08002253 return 0;
Mike Turquettee59c5372014-02-18 21:21:25 -08002254
2255 /* sanity check degrees */
2256 degrees %= 360;
2257 if (degrees < 0)
2258 degrees += 360;
2259
2260 clk_prepare_lock();
2261
Stephen Boyddfc202e2015-02-02 14:37:41 -08002262 trace_clk_set_phase(clk->core, degrees);
2263
Stephen Boyd08b95752015-02-02 14:09:43 -08002264 if (clk->core->ops->set_phase)
2265 ret = clk->core->ops->set_phase(clk->core->hw, degrees);
Mike Turquettee59c5372014-02-18 21:21:25 -08002266
Stephen Boyddfc202e2015-02-02 14:37:41 -08002267 trace_clk_set_phase_complete(clk->core, degrees);
2268
Mike Turquettee59c5372014-02-18 21:21:25 -08002269 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002270 clk->core->phase = degrees;
Mike Turquettee59c5372014-02-18 21:21:25 -08002271
Mike Turquettee59c5372014-02-18 21:21:25 -08002272 clk_prepare_unlock();
2273
Mike Turquettee59c5372014-02-18 21:21:25 -08002274 return ret;
2275}
Maxime Ripard9767b042015-01-20 22:23:43 +01002276EXPORT_SYMBOL_GPL(clk_set_phase);
Mike Turquettee59c5372014-02-18 21:21:25 -08002277
Stephen Boydd6968fc2015-04-30 13:54:13 -07002278static int clk_core_get_phase(struct clk_core *core)
Mike Turquettee59c5372014-02-18 21:21:25 -08002279{
Stephen Boyd1f3e1982015-04-30 14:21:56 -07002280 int ret;
Mike Turquettee59c5372014-02-18 21:21:25 -08002281
2282 clk_prepare_lock();
Shawn Lin2c440ef2018-03-14 08:28:31 +08002283 /* Always try to update cached phase if possible */
2284 if (core->ops->get_phase)
2285 core->phase = core->ops->get_phase(core->hw);
Stephen Boydd6968fc2015-04-30 13:54:13 -07002286 ret = core->phase;
Mike Turquettee59c5372014-02-18 21:21:25 -08002287 clk_prepare_unlock();
2288
Mike Turquettee59c5372014-02-18 21:21:25 -08002289 return ret;
2290}
2291
2292/**
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01002293 * clk_get_phase - return the phase shift of a clock signal
2294 * @clk: clock signal source
2295 *
2296 * Returns the phase shift of a clock node in degrees, otherwise returns
2297 * -EERROR.
2298 */
2299int clk_get_phase(struct clk *clk)
2300{
2301 if (!clk)
2302 return 0;
2303
2304 return clk_core_get_phase(clk->core);
2305}
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002306EXPORT_SYMBOL_GPL(clk_get_phase);
Mike Turquetteb24764902012-03-15 23:11:19 -07002307
2308/**
Michael Turquette3d3801e2015-02-25 09:11:01 -08002309 * clk_is_match - check if two clk's point to the same hardware clock
2310 * @p: clk compared against q
2311 * @q: clk compared against p
2312 *
2313 * Returns true if the two struct clk pointers both point to the same hardware
2314 * clock node. Put differently, returns true if struct clk *p and struct clk *q
2315 * share the same struct clk_core object.
2316 *
2317 * Returns false otherwise. Note that two NULL clks are treated as matching.
2318 */
2319bool clk_is_match(const struct clk *p, const struct clk *q)
2320{
2321 /* trivial case: identical struct clk's or both NULL */
2322 if (p == q)
2323 return true;
2324
Geert Uytterhoeven3fe003f2015-10-29 20:55:00 +01002325 /* true if clk->core pointers match. Avoid dereferencing garbage */
Michael Turquette3d3801e2015-02-25 09:11:01 -08002326 if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q))
2327 if (p->core == q->core)
2328 return true;
2329
2330 return false;
2331}
2332EXPORT_SYMBOL_GPL(clk_is_match);
2333
Taniya Das63c20c72016-06-15 12:15:01 +05302334int clk_set_flags(struct clk *clk, unsigned long flags)
2335{
2336 if (!clk)
2337 return 0;
2338
2339 if (!clk->core->ops->set_flags)
2340 return -EINVAL;
2341
2342 return clk->core->ops->set_flags(clk->core->hw, flags);
2343}
2344EXPORT_SYMBOL_GPL(clk_set_flags);
2345
Taniya Das08d79242017-04-13 12:24:51 +05302346unsigned long clk_list_frequency(struct clk *clk, unsigned int index)
2347{
2348 int ret = 0;
2349
2350 if (!clk || !clk->core->ops->list_rate)
2351 return -EINVAL;
2352
2353 clk_prepare_lock();
2354 ret = clk->core->ops->list_rate(clk->core->hw, index, ULONG_MAX);
2355 clk_prepare_unlock();
2356
2357 return ret;
2358}
2359EXPORT_SYMBOL_GPL(clk_list_frequency);
2360
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002361/*** debugfs support ***/
2362
2363#ifdef CONFIG_DEBUG_FS
2364#include <linux/debugfs.h>
2365
2366static struct dentry *rootdir;
2367static int inited = 0;
Taniya Das6c15e542016-11-07 10:08:30 +05302368static u32 debug_suspend;
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002369static DEFINE_MUTEX(clk_debug_lock);
2370static HLIST_HEAD(clk_debug_list);
2371
2372static struct hlist_head *all_lists[] = {
2373 &clk_root_list,
2374 &clk_orphan_list,
2375 NULL,
2376};
2377
2378static struct hlist_head *orphan_list[] = {
2379 &clk_orphan_list,
2380 NULL,
2381};
2382
Amit Nischal15aca8c2017-03-06 16:40:58 +05302383static void clk_state_subtree(struct clk_core *c)
2384{
2385 int vdd_level = 0;
2386 struct clk_core *child;
2387
2388 if (!c)
2389 return;
2390
2391 if (c->vdd_class) {
2392 vdd_level = clk_find_vdd_level(c, c->rate);
2393 if (vdd_level < 0)
2394 vdd_level = 0;
2395 }
2396
2397 trace_clk_state(c->name, c->prepare_count, c->enable_count,
2398 c->rate, vdd_level);
2399
2400 hlist_for_each_entry(child, &c->children, child_node)
2401 clk_state_subtree(child);
2402}
2403
2404static int clk_state_show(struct seq_file *s, void *data)
2405{
2406 struct clk_core *c;
2407 struct hlist_head **lists = (struct hlist_head **)s->private;
2408
2409 clk_prepare_lock();
2410
2411 for (; *lists; lists++)
2412 hlist_for_each_entry(c, *lists, child_node)
2413 clk_state_subtree(c);
2414
2415 clk_prepare_unlock();
2416
2417 return 0;
2418}
2419
2420
2421static int clk_state_open(struct inode *inode, struct file *file)
2422{
2423 return single_open(file, clk_state_show, inode->i_private);
2424}
2425
2426static const struct file_operations clk_state_fops = {
2427 .open = clk_state_open,
2428 .read = seq_read,
2429 .llseek = seq_lseek,
2430 .release = single_release,
2431};
2432
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002433static void clk_summary_show_one(struct seq_file *s, struct clk_core *c,
2434 int level)
2435{
2436 if (!c)
2437 return;
2438
2439 seq_printf(s, "%*s%-*s %11d %12d %11lu %10lu %-3d\n",
2440 level * 3 + 1, "",
2441 30 - level * 3, c->name,
2442 c->enable_count, c->prepare_count, clk_core_get_rate(c),
2443 clk_core_get_accuracy(c), clk_core_get_phase(c));
2444}
2445
2446static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c,
2447 int level)
2448{
2449 struct clk_core *child;
2450
2451 if (!c)
2452 return;
2453
2454 clk_summary_show_one(s, c, level);
2455
2456 hlist_for_each_entry(child, &c->children, child_node)
2457 clk_summary_show_subtree(s, child, level + 1);
2458}
2459
2460static int clk_summary_show(struct seq_file *s, void *data)
2461{
2462 struct clk_core *c;
2463 struct hlist_head **lists = (struct hlist_head **)s->private;
2464
2465 seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy phase\n");
2466 seq_puts(s, "----------------------------------------------------------------------------------------\n");
2467
2468 clk_prepare_lock();
2469
2470 for (; *lists; lists++)
2471 hlist_for_each_entry(c, *lists, child_node)
2472 clk_summary_show_subtree(s, c, 0);
2473
2474 clk_prepare_unlock();
2475
2476 return 0;
2477}
2478
2479
2480static int clk_summary_open(struct inode *inode, struct file *file)
2481{
2482 return single_open(file, clk_summary_show, inode->i_private);
2483}
2484
2485static const struct file_operations clk_summary_fops = {
2486 .open = clk_summary_open,
2487 .read = seq_read,
2488 .llseek = seq_lseek,
2489 .release = single_release,
2490};
2491
2492static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level)
2493{
2494 if (!c)
2495 return;
2496
Stefan Wahren7cb81132015-04-29 16:36:43 +00002497 /* This should be JSON format, i.e. elements separated with a comma */
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002498 seq_printf(s, "\"%s\": { ", c->name);
2499 seq_printf(s, "\"enable_count\": %d,", c->enable_count);
2500 seq_printf(s, "\"prepare_count\": %d,", c->prepare_count);
Stefan Wahren7cb81132015-04-29 16:36:43 +00002501 seq_printf(s, "\"rate\": %lu,", clk_core_get_rate(c));
2502 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy(c));
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002503 seq_printf(s, "\"phase\": %d", clk_core_get_phase(c));
2504}
2505
2506static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level)
2507{
2508 struct clk_core *child;
2509
2510 if (!c)
2511 return;
2512
2513 clk_dump_one(s, c, level);
2514
2515 hlist_for_each_entry(child, &c->children, child_node) {
2516 seq_printf(s, ",");
2517 clk_dump_subtree(s, child, level + 1);
2518 }
2519
2520 seq_printf(s, "}");
2521}
2522
2523static int clk_dump(struct seq_file *s, void *data)
2524{
2525 struct clk_core *c;
2526 bool first_node = true;
2527 struct hlist_head **lists = (struct hlist_head **)s->private;
2528
2529 seq_printf(s, "{");
2530
2531 clk_prepare_lock();
2532
2533 for (; *lists; lists++) {
2534 hlist_for_each_entry(c, *lists, child_node) {
2535 if (!first_node)
2536 seq_puts(s, ",");
2537 first_node = false;
2538 clk_dump_subtree(s, c, 0);
2539 }
2540 }
2541
2542 clk_prepare_unlock();
2543
Felipe Balbi70e9f4d2015-05-01 09:48:37 -05002544 seq_puts(s, "}\n");
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002545 return 0;
2546}
2547
2548
2549static int clk_dump_open(struct inode *inode, struct file *file)
2550{
2551 return single_open(file, clk_dump, inode->i_private);
2552}
2553
2554static const struct file_operations clk_dump_fops = {
2555 .open = clk_dump_open,
2556 .read = seq_read,
2557 .llseek = seq_lseek,
2558 .release = single_release,
2559};
2560
Taniya Das2dd25722016-11-14 11:26:02 +05302561static int clock_debug_rate_set(void *data, u64 val)
2562{
2563 struct clk_core *core = data;
2564 int ret;
2565
2566 ret = clk_set_rate(core->hw->clk, val);
2567 if (ret)
2568 pr_err("clk_set_rate(%lu) failed (%d)\n",
2569 (unsigned long)val, ret);
2570
2571 return ret;
2572}
2573
2574static int clock_debug_rate_get(void *data, u64 *val)
2575{
2576 struct clk_core *core = data;
2577
2578 *val = core->hw->core->rate;
2579
2580 return 0;
2581}
2582
2583DEFINE_SIMPLE_ATTRIBUTE(clock_rate_fops, clock_debug_rate_get,
2584 clock_debug_rate_set, "%llu\n");
2585
2586static ssize_t clock_parent_read(struct file *filp, char __user *ubuf,
2587 size_t cnt, loff_t *ppos)
2588{
2589 char name[256] = {0};
2590 struct clk_core *core = filp->private_data;
2591 struct clk_core *p = core->hw->core->parent;
2592
2593 snprintf(name, sizeof(name), "%s\n", p ? p->name : "None\n");
2594
2595 return simple_read_from_buffer(ubuf, cnt, ppos, name, strlen(name));
2596}
2597
2598static const struct file_operations clock_parent_fops = {
2599 .open = simple_open,
2600 .read = clock_parent_read,
2601};
2602
2603static int clock_debug_enable_set(void *data, u64 val)
2604{
2605 struct clk_core *core = data;
2606 int rc = 0;
2607
2608 if (val)
2609 rc = clk_prepare_enable(core->hw->clk);
2610 else
2611 clk_disable_unprepare(core->hw->clk);
2612
2613 return rc;
2614}
2615
2616static int clock_debug_enable_get(void *data, u64 *val)
2617{
2618 struct clk_core *core = data;
2619 int enabled = 0;
2620
2621 enabled = core->enable_count;
2622
2623 *val = enabled;
2624
2625 return 0;
2626}
2627
2628DEFINE_SIMPLE_ATTRIBUTE(clock_enable_fops, clock_debug_enable_get,
2629 clock_debug_enable_set, "%lld\n");
2630
2631#define clock_debug_output(m, c, fmt, ...) \
2632do { \
2633 if (m) \
2634 seq_printf(m, fmt, ##__VA_ARGS__); \
2635 else if (c) \
2636 pr_cont(fmt, ##__VA_ARGS__); \
2637 else \
2638 pr_info(fmt, ##__VA_ARGS__); \
2639} while (0)
2640
Taniya Dasa5aadd72017-01-23 12:24:10 +05302641/*
2642 * clock_debug_print_enabled_debug_suspend() - Print names of enabled clocks
2643 * during suspend.
2644 */
2645static void clock_debug_print_enabled_debug_suspend(struct seq_file *s)
2646{
2647 struct clk_core *core;
2648 int cnt = 0;
2649
2650 if (!mutex_trylock(&clk_debug_lock))
2651 return;
2652
2653 clock_debug_output(s, 0, "Enabled clocks:\n");
2654
2655 hlist_for_each_entry(core, &clk_debug_list, debug_node) {
2656 if (!core || !core->prepare_count)
2657 continue;
2658
2659 if (core->vdd_class)
2660 clock_debug_output(s, 0, " %s:%u:%u [%ld, %d]",
2661 core->name, core->prepare_count,
2662 core->enable_count, core->rate,
2663 clk_find_vdd_level(core, core->rate));
2664
2665 else
2666 clock_debug_output(s, 0, " %s:%u:%u [%ld]",
2667 core->name, core->prepare_count,
2668 core->enable_count, core->rate);
2669 cnt++;
2670 }
2671
2672 mutex_unlock(&clk_debug_lock);
2673
2674 if (cnt)
2675 clock_debug_output(s, 0, "Enabled clock count: %d\n", cnt);
2676 else
2677 clock_debug_output(s, 0, "No clocks enabled.\n");
2678}
2679
2680static int clock_debug_print_clock(struct clk_core *c, struct seq_file *s)
Taniya Das2dd25722016-11-14 11:26:02 +05302681{
2682 char *start = "";
2683 struct clk *clk;
2684
2685 if (!c || !c->prepare_count)
2686 return 0;
2687
2688 clk = c->hw->clk;
2689
2690 clock_debug_output(s, 0, "\t");
2691
2692 do {
Taniya Das876112d2016-11-14 11:54:02 +05302693 if (clk->core->vdd_class)
2694 clock_debug_output(s, 1, "%s%s:%u:%u [%ld, %d]", start,
2695 clk->core->name,
2696 clk->core->prepare_count,
2697 clk->core->enable_count,
2698 clk->core->rate,
2699 clk_find_vdd_level(clk->core, clk->core->rate));
2700 else
2701 clock_debug_output(s, 1, "%s%s:%u:%u [%ld]", start,
Taniya Das2dd25722016-11-14 11:26:02 +05302702 clk->core->name,
2703 clk->core->prepare_count,
2704 clk->core->enable_count,
2705 clk->core->rate);
2706 start = " -> ";
2707 } while ((clk = clk_get_parent(clk)));
2708
2709 clock_debug_output(s, 1, "\n");
2710
2711 return 1;
2712}
2713
2714/*
2715 * clock_debug_print_enabled_clocks() - Print names of enabled clocks
2716 */
2717static void clock_debug_print_enabled_clocks(struct seq_file *s)
2718{
2719 struct clk_core *core;
2720 int cnt = 0;
2721
Shefali Jain5c15a992017-09-20 16:01:01 +05302722 if (!mutex_trylock(&clk_debug_lock))
2723 return;
Taniya Das2dd25722016-11-14 11:26:02 +05302724
Shefali Jain5c15a992017-09-20 16:01:01 +05302725 clock_debug_output(s, 0, "Enabled clocks:\n");
Taniya Das2dd25722016-11-14 11:26:02 +05302726
2727 hlist_for_each_entry(core, &clk_debug_list, debug_node)
2728 cnt += clock_debug_print_clock(core, s);
2729
2730 mutex_unlock(&clk_debug_lock);
2731
2732 if (cnt)
2733 clock_debug_output(s, 0, "Enabled clock count: %d\n", cnt);
2734 else
2735 clock_debug_output(s, 0, "No clocks enabled.\n");
2736}
2737
2738static int enabled_clocks_show(struct seq_file *s, void *unused)
2739{
2740 clock_debug_print_enabled_clocks(s);
2741
2742 return 0;
2743}
2744
2745static int enabled_clocks_open(struct inode *inode, struct file *file)
2746{
2747 return single_open(file, enabled_clocks_show, inode->i_private);
2748}
2749
2750static const struct file_operations clk_enabled_list_fops = {
2751 .open = enabled_clocks_open,
2752 .read = seq_read,
2753 .llseek = seq_lseek,
2754 .release = seq_release,
2755};
2756
Taniya Das8436bd72016-11-21 17:50:13 +05302757void clk_debug_print_hw(struct clk_core *clk, struct seq_file *f)
Taniya Das2dd25722016-11-14 11:26:02 +05302758{
2759 if (IS_ERR_OR_NULL(clk))
2760 return;
2761
2762 clk_debug_print_hw(clk->parent, f);
2763
2764 clock_debug_output(f, false, "%s\n", clk->name);
2765
2766 if (!clk->ops->list_registers)
2767 return;
2768
2769 clk->ops->list_registers(f, clk->hw);
2770}
2771
2772static int print_hw_show(struct seq_file *m, void *unused)
2773{
2774 struct clk_core *c = m->private;
2775
2776 clk_debug_print_hw(c, m);
2777
2778 return 0;
2779}
2780
2781static int print_hw_open(struct inode *inode, struct file *file)
2782{
2783 return single_open(file, print_hw_show, inode->i_private);
2784}
2785
2786static const struct file_operations clock_print_hw_fops = {
2787 .open = print_hw_open,
2788 .read = seq_read,
2789 .llseek = seq_lseek,
2790 .release = seq_release,
2791};
2792
Taniya Das876112d2016-11-14 11:54:02 +05302793static int list_rates_show(struct seq_file *s, void *unused)
2794{
2795 struct clk_core *core = s->private;
2796 int level = 0, i = 0;
2797 unsigned long rate, rate_max = 0;
2798
2799 /* Find max frequency supported within voltage constraints. */
2800 if (!core->vdd_class) {
2801 rate_max = ULONG_MAX;
2802 } else {
2803 for (level = 0; level < core->num_rate_max; level++)
2804 if (core->rate_max[level])
2805 rate_max = core->rate_max[level];
2806 }
2807
2808 /*
2809 * List supported frequencies <= rate_max. Higher frequencies may
2810 * appear in the frequency table, but are not valid and should not
2811 * be listed.
2812 */
2813 while (!IS_ERR_VALUE(rate =
2814 core->ops->list_rate(core->hw, i++, rate_max))) {
2815 if (rate <= 0)
2816 break;
2817 if (rate <= rate_max)
2818 seq_printf(s, "%lu\n", rate);
2819 }
2820
2821 return 0;
2822}
2823
2824static int list_rates_open(struct inode *inode, struct file *file)
2825{
2826 return single_open(file, list_rates_show, inode->i_private);
2827}
2828
2829static const struct file_operations list_rates_fops = {
2830 .open = list_rates_open,
2831 .read = seq_read,
2832 .llseek = seq_lseek,
2833 .release = seq_release,
2834};
2835
2836static void clock_print_rate_max_by_level(struct seq_file *s, int level)
2837{
2838 struct clk_core *core = s->private;
2839 struct clk_vdd_class *vdd_class = core->vdd_class;
2840 int off, i, vdd_level, nregs = vdd_class->num_regulators;
2841
2842 vdd_level = clk_find_vdd_level(core, core->rate);
2843
2844 seq_printf(s, "%2s%10lu", vdd_level == level ? "[" : "",
2845 core->rate_max[level]);
2846
2847 for (i = 0; i < nregs; i++) {
2848 off = nregs*level + i;
2849 if (vdd_class->vdd_uv)
2850 seq_printf(s, "%10u", vdd_class->vdd_uv[off]);
2851 }
2852
2853 if (vdd_level == level)
2854 seq_puts(s, "]");
2855
2856 seq_puts(s, "\n");
2857}
2858
2859static int rate_max_show(struct seq_file *s, void *unused)
2860{
2861 struct clk_core *core = s->private;
2862 struct clk_vdd_class *vdd_class = core->vdd_class;
2863 int level = 0, i, nregs = vdd_class->num_regulators;
2864 char reg_name[10];
2865
2866 int vdd_level = clk_find_vdd_level(core, core->rate);
2867
2868 if (vdd_level < 0) {
2869 seq_printf(s, "could not find_vdd_level for %s, %ld\n",
2870 core->name, core->rate);
2871 return 0;
2872 }
2873
2874 seq_printf(s, "%12s", "");
2875 for (i = 0; i < nregs; i++) {
2876 snprintf(reg_name, ARRAY_SIZE(reg_name), "reg %d", i);
2877 seq_printf(s, "%10s", reg_name);
2878 }
2879
2880 seq_printf(s, "\n%12s", "freq");
2881 for (i = 0; i < nregs; i++)
2882 seq_printf(s, "%10s", "uV");
2883
2884 seq_puts(s, "\n");
2885
2886 for (level = 0; level < core->num_rate_max; level++)
2887 clock_print_rate_max_by_level(s, level);
2888
2889 return 0;
2890}
2891
2892static int rate_max_open(struct inode *inode, struct file *file)
2893{
2894 return single_open(file, rate_max_show, inode->i_private);
2895}
2896
2897static const struct file_operations rate_max_fops = {
2898 .open = rate_max_open,
2899 .read = seq_read,
2900 .llseek = seq_lseek,
2901 .release = seq_release,
2902};
2903
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002904static int clk_debug_create_one(struct clk_core *core, struct dentry *pdentry)
2905{
2906 struct dentry *d;
2907 int ret = -ENOMEM;
2908
2909 if (!core || !pdentry) {
2910 ret = -EINVAL;
2911 goto out;
2912 }
2913
2914 d = debugfs_create_dir(core->name, pdentry);
2915 if (!d)
2916 goto out;
2917
2918 core->dentry = d;
2919
Taniya Das2dd25722016-11-14 11:26:02 +05302920 d = debugfs_create_file("clk_rate", 0444, core->dentry, core,
2921 &clock_rate_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002922 if (!d)
2923 goto err_out;
2924
Taniya Das876112d2016-11-14 11:54:02 +05302925 if (core->ops->list_rate) {
2926 if (!debugfs_create_file("clk_list_rates",
2927 0444, core->dentry, core, &list_rates_fops))
2928 goto err_out;
2929 }
2930
2931 if (core->vdd_class && !debugfs_create_file("clk_rate_max",
2932 0444, core->dentry, core, &rate_max_fops))
2933 goto err_out;
2934
Taniya Das2dd25722016-11-14 11:26:02 +05302935 d = debugfs_create_u32("clk_accuracy", 0444, core->dentry,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002936 (u32 *)&core->accuracy);
2937 if (!d)
2938 goto err_out;
2939
Taniya Das2dd25722016-11-14 11:26:02 +05302940 d = debugfs_create_u32("clk_phase", 0444, core->dentry,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002941 (u32 *)&core->phase);
2942 if (!d)
2943 goto err_out;
2944
Taniya Das2dd25722016-11-14 11:26:02 +05302945 d = debugfs_create_x32("clk_flags", 0444, core->dentry,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002946 (u32 *)&core->flags);
2947 if (!d)
2948 goto err_out;
2949
Taniya Das2dd25722016-11-14 11:26:02 +05302950 d = debugfs_create_u32("clk_prepare_count", 0444, core->dentry,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002951 (u32 *)&core->prepare_count);
2952 if (!d)
2953 goto err_out;
2954
Taniya Das2dd25722016-11-14 11:26:02 +05302955 d = debugfs_create_file("clk_enable_count", 0444, core->dentry,
2956 core, &clock_enable_fops);
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002957 if (!d)
2958 goto err_out;
2959
Taniya Das2dd25722016-11-14 11:26:02 +05302960 d = debugfs_create_u32("clk_notifier_count", 0444, core->dentry,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002961 (u32 *)&core->notifier_count);
2962 if (!d)
2963 goto err_out;
2964
Taniya Das2dd25722016-11-14 11:26:02 +05302965 d = debugfs_create_file("clk_parent", 0444, core->dentry, core,
2966 &clock_parent_fops);
2967 if (!d)
2968 goto err_out;
2969
2970 d = debugfs_create_file("clk_print_regs", 0444, core->dentry,
2971 core, &clock_print_hw_fops);
2972 if (!d)
2973 goto err_out;
2974
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002975 if (core->ops->debug_init) {
2976 ret = core->ops->debug_init(core->hw, core->dentry);
2977 if (ret)
2978 goto err_out;
2979 }
2980
2981 ret = 0;
2982 goto out;
2983
2984err_out:
2985 debugfs_remove_recursive(core->dentry);
2986 core->dentry = NULL;
2987out:
2988 return ret;
2989}
2990
2991/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002992 * clk_debug_register - add a clk node to the debugfs clk directory
2993 * @core: the clk being added to the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002994 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07002995 * Dynamically adds a clk to the debugfs clk directory if debugfs has been
2996 * initialized. Otherwise it bails out early since the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07002997 * will be created lazily by clk_debug_init as part of a late_initcall.
2998 */
2999static int clk_debug_register(struct clk_core *core)
3000{
3001 int ret = 0;
3002
3003 mutex_lock(&clk_debug_lock);
3004 hlist_add_head(&core->debug_node, &clk_debug_list);
3005
3006 if (!inited)
3007 goto unlock;
3008
3009 ret = clk_debug_create_one(core, rootdir);
3010unlock:
3011 mutex_unlock(&clk_debug_lock);
3012
3013 return ret;
3014}
3015
3016 /**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003017 * clk_debug_unregister - remove a clk node from the debugfs clk directory
3018 * @core: the clk being removed from the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003019 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003020 * Dynamically removes a clk and all its child nodes from the
3021 * debugfs clk directory if clk->dentry points to debugfs created by
Stephen Boyd706d5c72016-02-22 15:43:41 -08003022 * clk_debug_register in __clk_core_init.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003023 */
3024static void clk_debug_unregister(struct clk_core *core)
3025{
3026 mutex_lock(&clk_debug_lock);
3027 hlist_del_init(&core->debug_node);
3028 debugfs_remove_recursive(core->dentry);
3029 core->dentry = NULL;
3030 mutex_unlock(&clk_debug_lock);
3031}
3032
3033struct dentry *clk_debugfs_add_file(struct clk_hw *hw, char *name, umode_t mode,
3034 void *data, const struct file_operations *fops)
3035{
3036 struct dentry *d = NULL;
3037
3038 if (hw->core->dentry)
3039 d = debugfs_create_file(name, mode, hw->core->dentry, data,
3040 fops);
3041
3042 return d;
3043}
3044EXPORT_SYMBOL_GPL(clk_debugfs_add_file);
3045
Taniya Das6c15e542016-11-07 10:08:30 +05303046/*
3047 * Print the names of all enabled clocks and their parents if
Shefali Jain5c15a992017-09-20 16:01:01 +05303048 * debug_suspend is set from debugfs along with print_parent flag set to 1.
3049 * Otherwise if print_parent set to 0, print only enabled clocks
3050 *
Taniya Das6c15e542016-11-07 10:08:30 +05303051 */
Shefali Jain5c15a992017-09-20 16:01:01 +05303052void clock_debug_print_enabled(bool print_parent)
Taniya Das6c15e542016-11-07 10:08:30 +05303053{
3054 if (likely(!debug_suspend))
3055 return;
3056
Shefali Jain5c15a992017-09-20 16:01:01 +05303057 if (print_parent)
3058 clock_debug_print_enabled_clocks(NULL);
3059 else
3060 clock_debug_print_enabled_debug_suspend(NULL);
Taniya Das6c15e542016-11-07 10:08:30 +05303061}
3062EXPORT_SYMBOL_GPL(clock_debug_print_enabled);
3063
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003064/**
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003065 * clk_debug_init - lazily populate the debugfs clk directory
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003066 *
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003067 * clks are often initialized very early during boot before memory can be
3068 * dynamically allocated and well before debugfs is setup. This function
3069 * populates the debugfs clk directory once at boot-time when we know that
3070 * debugfs is setup. It should only be called once at boot-time, all other clks
3071 * added dynamically will be done so with clk_debug_register.
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003072 */
3073static int __init clk_debug_init(void)
3074{
3075 struct clk_core *core;
3076 struct dentry *d;
3077
3078 rootdir = debugfs_create_dir("clk", NULL);
3079
3080 if (!rootdir)
3081 return -ENOMEM;
3082
Taniya Das2dd25722016-11-14 11:26:02 +05303083 d = debugfs_create_file("clk_summary", 0444, rootdir, &all_lists,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003084 &clk_summary_fops);
3085 if (!d)
3086 return -ENOMEM;
3087
Taniya Das2dd25722016-11-14 11:26:02 +05303088 d = debugfs_create_file("clk_dump", 0444, rootdir, &all_lists,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003089 &clk_dump_fops);
3090 if (!d)
3091 return -ENOMEM;
3092
Taniya Das2dd25722016-11-14 11:26:02 +05303093 d = debugfs_create_file("clk_orphan_summary", 0444, rootdir,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003094 &orphan_list, &clk_summary_fops);
3095 if (!d)
3096 return -ENOMEM;
3097
Taniya Das2dd25722016-11-14 11:26:02 +05303098 d = debugfs_create_file("clk_orphan_dump", 0444, rootdir,
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003099 &orphan_list, &clk_dump_fops);
3100 if (!d)
3101 return -ENOMEM;
3102
Taniya Das2dd25722016-11-14 11:26:02 +05303103 d = debugfs_create_file("clk_enabled_list", 0444, rootdir,
3104 &clk_debug_list, &clk_enabled_list_fops);
3105 if (!d)
3106 return -ENOMEM;
3107
Taniya Das6c15e542016-11-07 10:08:30 +05303108
3109 d = debugfs_create_u32("debug_suspend", 0644, rootdir, &debug_suspend);
3110 if (!d)
3111 return -ENOMEM;
3112
Amit Nischal15aca8c2017-03-06 16:40:58 +05303113 d = debugfs_create_file("trace_clocks", 0444, rootdir, &all_lists,
3114 &clk_state_fops);
3115 if (!d)
3116 return -ENOMEM;
3117
Stephen Boyd4dff95d2015-04-30 14:43:22 -07003118 mutex_lock(&clk_debug_lock);
3119 hlist_for_each_entry(core, &clk_debug_list, debug_node)
3120 clk_debug_create_one(core, rootdir);
3121
3122 inited = 1;
3123 mutex_unlock(&clk_debug_lock);
3124
3125 return 0;
3126}
3127late_initcall(clk_debug_init);
3128#else
3129static inline int clk_debug_register(struct clk_core *core) { return 0; }
3130static inline void clk_debug_reparent(struct clk_core *core,
3131 struct clk_core *new_parent)
3132{
3133}
3134static inline void clk_debug_unregister(struct clk_core *core)
3135{
3136}
3137#endif
3138
Michael Turquette3d3801e2015-02-25 09:11:01 -08003139/**
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003140 * __clk_core_init - initialize the data structures in a struct clk_core
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09003141 * @core: clk_core being initialized
Mike Turquetteb24764902012-03-15 23:11:19 -07003142 *
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003143 * Initializes the lists in struct clk_core, queries the hardware for the
Mike Turquetteb24764902012-03-15 23:11:19 -07003144 * parent and rate and sets them both.
Mike Turquetteb24764902012-03-15 23:11:19 -07003145 */
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003146static int __clk_core_init(struct clk_core *core)
Mike Turquetteb24764902012-03-15 23:11:19 -07003147{
Mike Turquetted1302a32012-03-29 14:30:40 -07003148 int i, ret = 0;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003149 struct clk_core *orphan;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003150 struct hlist_node *tmp2;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003151 unsigned long rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003152
Masahiro Yamadad35c80c2015-12-28 19:22:56 +09003153 if (!core)
Mike Turquetted1302a32012-03-29 14:30:40 -07003154 return -EINVAL;
Mike Turquetteb24764902012-03-15 23:11:19 -07003155
Mike Turquetteeab89f62013-03-28 13:59:01 -07003156 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003157
3158 /* check to see if a clock with this name is already registered */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003159 if (clk_core_lookup(core->name)) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003160 pr_debug("%s: clk %s already initialized\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003161 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003162 ret = -EEXIST;
Mike Turquetteb24764902012-03-15 23:11:19 -07003163 goto out;
Mike Turquetted1302a32012-03-29 14:30:40 -07003164 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003165
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003166 /* check that clk_ops are sane. See Documentation/clk.txt */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003167 if (core->ops->set_rate &&
3168 !((core->ops->round_rate || core->ops->determine_rate) &&
3169 core->ops->recalc_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003170 pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n",
3171 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003172 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003173 goto out;
3174 }
3175
Stephen Boydd6968fc2015-04-30 13:54:13 -07003176 if (core->ops->set_parent && !core->ops->get_parent) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003177 pr_err("%s: %s must implement .get_parent & .set_parent\n",
3178 __func__, core->name);
Mike Turquetted1302a32012-03-29 14:30:40 -07003179 ret = -EINVAL;
Mike Turquetted4d7e3d2012-03-26 16:15:52 -07003180 goto out;
3181 }
3182
Masahiro Yamada3c8e77d2015-12-28 19:23:04 +09003183 if (core->num_parents > 1 && !core->ops->get_parent) {
3184 pr_err("%s: %s must implement .get_parent as it has multi parents\n",
3185 __func__, core->name);
3186 ret = -EINVAL;
3187 goto out;
3188 }
3189
Stephen Boydd6968fc2015-04-30 13:54:13 -07003190 if (core->ops->set_rate_and_parent &&
3191 !(core->ops->set_parent && core->ops->set_rate)) {
Masahiro Yamadac44fccb2015-12-28 19:23:03 +09003192 pr_err("%s: %s must implement .set_parent & .set_rate\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003193 __func__, core->name);
Stephen Boyd3fa22522014-01-15 10:47:22 -08003194 ret = -EINVAL;
3195 goto out;
3196 }
3197
Mike Turquetteb24764902012-03-15 23:11:19 -07003198 /* throw a WARN if any entries in parent_names are NULL */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003199 for (i = 0; i < core->num_parents; i++)
3200 WARN(!core->parent_names[i],
Mike Turquetteb24764902012-03-15 23:11:19 -07003201 "%s: invalid NULL in %s's .parent_names\n",
Stephen Boydd6968fc2015-04-30 13:54:13 -07003202 __func__, core->name);
Mike Turquetteb24764902012-03-15 23:11:19 -07003203
Stephen Boydd6968fc2015-04-30 13:54:13 -07003204 core->parent = __clk_init_parent(core);
Mike Turquetteb24764902012-03-15 23:11:19 -07003205
3206 /*
Stephen Boyd706d5c72016-02-22 15:43:41 -08003207 * Populate core->parent if parent has already been clk_core_init'd. If
3208 * parent has not yet been clk_core_init'd then place clk in the orphan
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08003209 * list. If clk doesn't have any parents then place it in the root
Mike Turquetteb24764902012-03-15 23:11:19 -07003210 * clk list.
3211 *
3212 * Every time a new clk is clk_init'd then we walk the list of orphan
3213 * clocks and re-parent any that are children of the clock currently
3214 * being clk_init'd.
3215 */
Heiko Stuebnere6500342015-04-22 22:53:05 +02003216 if (core->parent) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003217 hlist_add_head(&core->child_node,
3218 &core->parent->children);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003219 core->orphan = core->parent->orphan;
Stephen Boyd47b0eeb2016-02-02 17:24:56 -08003220 } else if (!core->num_parents) {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003221 hlist_add_head(&core->child_node, &clk_root_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003222 core->orphan = false;
3223 } else {
Stephen Boydd6968fc2015-04-30 13:54:13 -07003224 hlist_add_head(&core->child_node, &clk_orphan_list);
Heiko Stuebnere6500342015-04-22 22:53:05 +02003225 core->orphan = true;
3226 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003227
3228 /*
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003229 * Set clk's accuracy. The preferred method is to use
3230 * .recalc_accuracy. For simple clocks and lazy developers the default
3231 * fallback is to use the parent's accuracy. If a clock doesn't have a
3232 * parent (or is orphaned) then accuracy is set to zero (perfect
3233 * clock).
3234 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003235 if (core->ops->recalc_accuracy)
3236 core->accuracy = core->ops->recalc_accuracy(core->hw,
3237 __clk_get_accuracy(core->parent));
3238 else if (core->parent)
3239 core->accuracy = core->parent->accuracy;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003240 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07003241 core->accuracy = 0;
Boris BREZILLON5279fc42013-12-21 10:34:47 +01003242
3243 /*
Maxime Ripard9824cf72014-07-14 13:53:27 +02003244 * Set clk's phase.
3245 * Since a phase is by definition relative to its parent, just
3246 * query the current clock phase, or just assume it's in phase.
3247 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003248 if (core->ops->get_phase)
3249 core->phase = core->ops->get_phase(core->hw);
Maxime Ripard9824cf72014-07-14 13:53:27 +02003250 else
Stephen Boydd6968fc2015-04-30 13:54:13 -07003251 core->phase = 0;
Maxime Ripard9824cf72014-07-14 13:53:27 +02003252
3253 /*
Mike Turquetteb24764902012-03-15 23:11:19 -07003254 * Set clk's rate. The preferred method is to use .recalc_rate. For
3255 * simple clocks and lazy developers the default fallback is to use the
3256 * parent's rate. If a clock doesn't have a parent (or is orphaned)
3257 * then rate is set to zero.
3258 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003259 if (core->ops->recalc_rate)
3260 rate = core->ops->recalc_rate(core->hw,
3261 clk_core_get_rate_nolock(core->parent));
3262 else if (core->parent)
3263 rate = core->parent->rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003264 else
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003265 rate = 0;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003266 core->rate = core->req_rate = rate;
Mike Turquetteb24764902012-03-15 23:11:19 -07003267
3268 /*
Jerome Brunetbbdfb442018-02-14 14:43:36 +01003269 * Enable CLK_IS_CRITICAL clocks so newly added critical clocks
3270 * don't get accidentally disabled when walking the orphan tree and
3271 * reparenting clocks
3272 */
3273 if (core->flags & CLK_IS_CRITICAL) {
3274 unsigned long flags;
3275
Guenter Roeck92e9a802019-12-25 08:34:29 -08003276 ret = clk_core_prepare(core);
3277 if (ret)
3278 goto out;
Jerome Brunetbbdfb442018-02-14 14:43:36 +01003279
3280 flags = clk_enable_lock();
Guenter Roeck92e9a802019-12-25 08:34:29 -08003281 ret = clk_core_enable(core);
Jerome Brunetbbdfb442018-02-14 14:43:36 +01003282 clk_enable_unlock(flags);
Guenter Roeck92e9a802019-12-25 08:34:29 -08003283 if (ret) {
3284 clk_core_unprepare(core);
3285 goto out;
3286 }
Jerome Brunetbbdfb442018-02-14 14:43:36 +01003287 }
3288
3289 /*
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09003290 * walk the list of orphan clocks and reparent any that newly finds a
3291 * parent.
Mike Turquetteb24764902012-03-15 23:11:19 -07003292 */
Sasha Levinb67bfe02013-02-27 17:06:00 -08003293 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09003294 struct clk_core *parent = __clk_init_parent(orphan);
Martin Fuzzey1f61e5f2012-11-22 20:15:05 +01003295
Michael Turquette904e6ea2016-07-08 16:32:10 -07003296 /*
Jerome Brunetbbdfb442018-02-14 14:43:36 +01003297 * We need to use __clk_set_parent_before() and _after() to
3298 * to properly migrate any prepare/enable count of the orphan
3299 * clock. This is important for CLK_IS_CRITICAL clocks, which
3300 * are enabled during init but might not have a parent yet.
Michael Turquette904e6ea2016-07-08 16:32:10 -07003301 */
3302 if (parent) {
Stephen Boyd9fd65f82017-11-02 00:36:09 -07003303 /* update the clk tree topology */
Michael Turquette904e6ea2016-07-08 16:32:10 -07003304 __clk_set_parent_before(orphan, parent);
3305 __clk_set_parent_after(orphan, parent, NULL);
3306 __clk_recalc_accuracies(orphan);
3307 __clk_recalc_rates(orphan, 0);
3308 }
Masahiro Yamada0e8f6e42015-12-28 19:23:07 +09003309 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003310
3311 /*
3312 * optional platform-specific magic
3313 *
3314 * The .init callback is not used by any of the basic clock types, but
3315 * exists for weird hardware that must perform initialization magic.
3316 * Please consider other ways of solving initialization problems before
Peter Meerwald24ee1a02013-06-29 15:14:19 +02003317 * using this callback, as its use is discouraged.
Mike Turquetteb24764902012-03-15 23:11:19 -07003318 */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003319 if (core->ops->init)
3320 core->ops->init(core->hw);
Mike Turquetteb24764902012-03-15 23:11:19 -07003321
Michael Turquettee9b8c592017-04-21 12:27:39 +05303322 /*
3323 * enable clocks with the CLK_ENABLE_HAND_OFF flag set
3324 *
3325 * This flag causes the framework to enable the clock at registration
3326 * time, which is sometimes necessary for clocks that would cause a
3327 * system crash when gated (e.g. cpu, memory, etc). The prepare_count
3328 * is migrated over to the first clk consumer to call clk_prepare().
3329 * Similarly the clk's enable_count is migrated to the first consumer
3330 * to call clk_enable().
3331 */
3332 if (core->flags & CLK_ENABLE_HAND_OFF) {
3333 unsigned long flags;
3334
Taniya Das30684a42017-04-21 13:33:20 +05303335 /*
3336 * Few clocks might have hardware gating which would be
3337 * required to be ON before prepare/enabling the clocks. So
3338 * check if the clock has been turned ON earlier and we should
3339 * prepare/enable those clocks.
3340 */
3341 if (clk_core_is_enabled(core)) {
3342 core->need_handoff_prepare = true;
3343 core->need_handoff_enable = true;
3344 ret = clk_core_prepare(core);
3345 if (ret)
3346 goto out;
3347 flags = clk_enable_lock();
3348 clk_core_enable(core);
3349 clk_enable_unlock(flags);
3350 }
Michael Turquettee9b8c592017-04-21 12:27:39 +05303351 }
3352
Stephen Boydd6968fc2015-04-30 13:54:13 -07003353 kref_init(&core->ref);
Mike Turquetteb24764902012-03-15 23:11:19 -07003354out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07003355 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003356
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08003357 if (!ret)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003358 clk_debug_register(core);
Stephen Boyd89f7e9d2014-12-12 15:04:16 -08003359
Mike Turquetted1302a32012-03-29 14:30:40 -07003360 return ret;
Mike Turquetteb24764902012-03-15 23:11:19 -07003361}
3362
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003363struct clk *__clk_create_clk(struct clk_hw *hw, const char *dev_id,
3364 const char *con_id)
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003365{
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003366 struct clk *clk;
3367
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003368 /* This is to allow this function to be chained to others */
Masahiro Yamadac1de1352015-11-20 14:38:49 +09003369 if (IS_ERR_OR_NULL(hw))
Masahiro Yamada8a231332016-07-19 16:28:47 +09003370 return ERR_CAST(hw);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003371
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003372 clk = kzalloc(sizeof(*clk), GFP_KERNEL);
3373 if (!clk)
3374 return ERR_PTR(-ENOMEM);
3375
3376 clk->core = hw->core;
3377 clk->dev_id = dev_id;
3378 clk->con_id = con_id;
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003379 clk->max_rate = ULONG_MAX;
3380
3381 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08003382 hlist_add_head(&clk->clks_node, &hw->core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003383 clk_prepare_unlock();
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003384
3385 return clk;
3386}
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003387
Stephen Boyd73e0e492015-02-06 11:42:43 -08003388void __clk_free_clk(struct clk *clk)
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003389{
3390 clk_prepare_lock();
Stephen Boyd50595f82015-02-06 11:42:44 -08003391 hlist_del(&clk->clks_node);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003392 clk_prepare_unlock();
3393
3394 kfree(clk);
3395}
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003396
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003397/**
3398 * clk_register - allocate a new clock, register it and return an opaque cookie
3399 * @dev: device that is registering this clock
3400 * @hw: link to hardware-specific clock data
3401 *
3402 * clk_register is the primary interface for populating the clock tree with new
3403 * clock nodes. It returns a pointer to the newly allocated struct clk which
Shailendra Vermaa59a5162015-05-21 00:06:48 +05303404 * cannot be dereferenced by driver code but may be used in conjunction with the
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003405 * rest of the clock API. In the event of an error clk_register will return an
3406 * error code; drivers must test for an error code after calling clk_register.
3407 */
3408struct clk *clk_register(struct device *dev, struct clk_hw *hw)
Mike Turquetteb24764902012-03-15 23:11:19 -07003409{
Mike Turquetted1302a32012-03-29 14:30:40 -07003410 int i, ret;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003411 struct clk_core *core;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003412
Stephen Boydd6968fc2015-04-30 13:54:13 -07003413 core = kzalloc(sizeof(*core), GFP_KERNEL);
3414 if (!core) {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003415 ret = -ENOMEM;
3416 goto fail_out;
3417 }
Mike Turquetteb24764902012-03-15 23:11:19 -07003418
Stephen Boydd6968fc2015-04-30 13:54:13 -07003419 core->name = kstrdup_const(hw->init->name, GFP_KERNEL);
3420 if (!core->name) {
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003421 ret = -ENOMEM;
3422 goto fail_name;
3423 }
Stephen Boydd6968fc2015-04-30 13:54:13 -07003424 core->ops = hw->init->ops;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003425 if (dev && dev->driver)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003426 core->owner = dev->driver->owner;
3427 core->hw = hw;
3428 core->flags = hw->init->flags;
3429 core->num_parents = hw->init->num_parents;
Stephen Boyd9783c0d2015-07-16 12:50:27 -07003430 core->min_rate = 0;
3431 core->max_rate = ULONG_MAX;
Stephen Boyd5cb05a12016-05-16 11:05:16 +05303432 core->vdd_class = hw->init->vdd_class;
3433 core->rate_max = hw->init->rate_max;
3434 core->num_rate_max = hw->init->num_rate_max;
Stephen Boydd6968fc2015-04-30 13:54:13 -07003435 hw->core = core;
Mike Turquetteb24764902012-03-15 23:11:19 -07003436
Stephen Boyd5cb05a12016-05-16 11:05:16 +05303437 if (core->vdd_class) {
3438 ret = clk_vdd_class_init(core->vdd_class);
3439 if (ret) {
3440 pr_err("Failed to initialize vdd class\n");
3441 goto fail_parent_names;
3442 }
3443 }
3444
Mike Turquetted1302a32012-03-29 14:30:40 -07003445 /* allocate local copy in case parent_names is __initdata */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003446 core->parent_names = kcalloc(core->num_parents, sizeof(char *),
Tomasz Figa96a7ed92013-09-29 02:37:15 +02003447 GFP_KERNEL);
Mike Turquetteb24764902012-03-15 23:11:19 -07003448
Stephen Boydd6968fc2015-04-30 13:54:13 -07003449 if (!core->parent_names) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003450 ret = -ENOMEM;
3451 goto fail_parent_names;
3452 }
3453
3454
3455 /* copy each string name in case parent_names is __initdata */
Stephen Boydd6968fc2015-04-30 13:54:13 -07003456 for (i = 0; i < core->num_parents; i++) {
3457 core->parent_names[i] = kstrdup_const(hw->init->parent_names[i],
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003458 GFP_KERNEL);
Stephen Boydd6968fc2015-04-30 13:54:13 -07003459 if (!core->parent_names[i]) {
Mike Turquetted1302a32012-03-29 14:30:40 -07003460 ret = -ENOMEM;
3461 goto fail_parent_names_copy;
3462 }
3463 }
3464
Masahiro Yamada176d1162015-12-28 19:23:00 +09003465 /* avoid unnecessary string look-ups of clk_core's possible parents. */
3466 core->parents = kcalloc(core->num_parents, sizeof(*core->parents),
3467 GFP_KERNEL);
3468 if (!core->parents) {
3469 ret = -ENOMEM;
3470 goto fail_parents;
3471 };
3472
Stephen Boydd6968fc2015-04-30 13:54:13 -07003473 INIT_HLIST_HEAD(&core->clks);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003474
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003475 hw->clk = __clk_create_clk(hw, NULL, NULL);
3476 if (IS_ERR(hw->clk)) {
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003477 ret = PTR_ERR(hw->clk);
Masahiro Yamada176d1162015-12-28 19:23:00 +09003478 goto fail_parents;
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003479 }
Mike Turquetted1302a32012-03-29 14:30:40 -07003480
Masahiro Yamadabe45ebf2015-12-28 19:22:57 +09003481 ret = __clk_core_init(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003482 if (!ret)
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003483 return hw->clk;
3484
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003485 __clk_free_clk(hw->clk);
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003486 hw->clk = NULL;
Mike Turquetted1302a32012-03-29 14:30:40 -07003487
Masahiro Yamada176d1162015-12-28 19:23:00 +09003488fail_parents:
3489 kfree(core->parents);
Mike Turquetted1302a32012-03-29 14:30:40 -07003490fail_parent_names_copy:
3491 while (--i >= 0)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003492 kfree_const(core->parent_names[i]);
3493 kfree(core->parent_names);
Mike Turquetted1302a32012-03-29 14:30:40 -07003494fail_parent_names:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003495 kfree_const(core->name);
Saravana Kannan0197b3e2012-04-25 22:58:56 -07003496fail_name:
Stephen Boydd6968fc2015-04-30 13:54:13 -07003497 kfree(core);
Mike Turquetted1302a32012-03-29 14:30:40 -07003498fail_out:
3499 return ERR_PTR(ret);
Mike Turquetteb24764902012-03-15 23:11:19 -07003500}
3501EXPORT_SYMBOL_GPL(clk_register);
3502
Stephen Boyd41438042016-02-05 17:02:52 -08003503/**
3504 * clk_hw_register - register a clk_hw and return an error code
3505 * @dev: device that is registering this clock
3506 * @hw: link to hardware-specific clock data
3507 *
3508 * clk_hw_register is the primary interface for populating the clock tree with
3509 * new clock nodes. It returns an integer equal to zero indicating success or
3510 * less than zero indicating failure. Drivers must test for an error code after
3511 * calling clk_hw_register().
3512 */
3513int clk_hw_register(struct device *dev, struct clk_hw *hw)
3514{
3515 return PTR_ERR_OR_ZERO(clk_register(dev, hw));
3516}
3517EXPORT_SYMBOL_GPL(clk_hw_register);
3518
Stephen Boyd6e5ab412015-04-30 15:11:31 -07003519/* Free memory allocated for a clock. */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003520static void __clk_release(struct kref *ref)
3521{
Stephen Boydd6968fc2015-04-30 13:54:13 -07003522 struct clk_core *core = container_of(ref, struct clk_core, ref);
3523 int i = core->num_parents;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003524
Krzysztof Kozlowski496eadf2015-01-09 09:28:10 +01003525 lockdep_assert_held(&prepare_lock);
3526
Stephen Boydd6968fc2015-04-30 13:54:13 -07003527 kfree(core->parents);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003528 while (--i >= 0)
Stephen Boydd6968fc2015-04-30 13:54:13 -07003529 kfree_const(core->parent_names[i]);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003530
Stephen Boydd6968fc2015-04-30 13:54:13 -07003531 kfree(core->parent_names);
3532 kfree_const(core->name);
3533 kfree(core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003534}
3535
3536/*
3537 * Empty clk_ops for unregistered clocks. These are used temporarily
3538 * after clk_unregister() was called on a clock and until last clock
3539 * consumer calls clk_put() and the struct clk object is freed.
3540 */
3541static int clk_nodrv_prepare_enable(struct clk_hw *hw)
3542{
3543 return -ENXIO;
3544}
3545
3546static void clk_nodrv_disable_unprepare(struct clk_hw *hw)
3547{
3548 WARN_ON_ONCE(1);
3549}
3550
3551static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate,
3552 unsigned long parent_rate)
3553{
3554 return -ENXIO;
3555}
3556
3557static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index)
3558{
3559 return -ENXIO;
3560}
3561
3562static const struct clk_ops clk_nodrv_ops = {
3563 .enable = clk_nodrv_prepare_enable,
3564 .disable = clk_nodrv_disable_unprepare,
3565 .prepare = clk_nodrv_prepare_enable,
3566 .unprepare = clk_nodrv_disable_unprepare,
3567 .set_rate = clk_nodrv_set_rate,
3568 .set_parent = clk_nodrv_set_parent,
3569};
3570
Mark Brown1df5c932012-04-18 09:07:12 +01003571/**
3572 * clk_unregister - unregister a currently registered clock
3573 * @clk: clock to unregister
Mark Brown1df5c932012-04-18 09:07:12 +01003574 */
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003575void clk_unregister(struct clk *clk)
3576{
3577 unsigned long flags;
3578
Stephen Boyd6314b672014-09-04 23:37:49 -07003579 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
3580 return;
3581
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003582 clk_debug_unregister(clk->core);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003583
3584 clk_prepare_lock();
3585
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003586 if (clk->core->ops == &clk_nodrv_ops) {
3587 pr_err("%s: unregistered clock: %s\n", __func__,
3588 clk->core->name);
Insu Yun4106a3d2016-01-30 10:12:04 -05003589 goto unlock;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003590 }
3591 /*
3592 * Assign empty clock ops for consumers that might still hold
3593 * a reference to this clock.
3594 */
3595 flags = clk_enable_lock();
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003596 clk->core->ops = &clk_nodrv_ops;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003597 clk_enable_unlock(flags);
3598
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003599 if (!hlist_empty(&clk->core->children)) {
3600 struct clk_core *child;
Stephen Boyd874f2242014-04-18 16:29:43 -07003601 struct hlist_node *t;
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003602
3603 /* Reparent all children to the orphan list. */
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003604 hlist_for_each_entry_safe(child, t, &clk->core->children,
3605 child_node)
3606 clk_core_set_parent(child, NULL);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003607 }
3608
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003609 hlist_del_init(&clk->core->child_node);
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003610
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003611 if (clk->core->prepare_count)
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003612 pr_warn("%s: unregistering prepared clock: %s\n",
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003613 __func__, clk->core->name);
3614 kref_put(&clk->core->ref, __clk_release);
Insu Yun4106a3d2016-01-30 10:12:04 -05003615unlock:
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003616 clk_prepare_unlock();
3617}
Mark Brown1df5c932012-04-18 09:07:12 +01003618EXPORT_SYMBOL_GPL(clk_unregister);
3619
Stephen Boyd41438042016-02-05 17:02:52 -08003620/**
3621 * clk_hw_unregister - unregister a currently registered clk_hw
3622 * @hw: hardware-specific clock data to unregister
3623 */
3624void clk_hw_unregister(struct clk_hw *hw)
3625{
3626 clk_unregister(hw->clk);
3627}
3628EXPORT_SYMBOL_GPL(clk_hw_unregister);
3629
Stephen Boyd46c87732012-09-24 13:38:04 -07003630static void devm_clk_release(struct device *dev, void *res)
3631{
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003632 clk_unregister(*(struct clk **)res);
Stephen Boyd46c87732012-09-24 13:38:04 -07003633}
3634
Stephen Boyd41438042016-02-05 17:02:52 -08003635static void devm_clk_hw_release(struct device *dev, void *res)
3636{
3637 clk_hw_unregister(*(struct clk_hw **)res);
3638}
3639
Deepak Katragadda677bad12016-11-04 13:33:13 -07003640#define MAX_LEN_OPP_HANDLE 50
3641#define LEN_OPP_HANDLE 16
3642
3643static int derive_device_list(struct device **device_list,
3644 struct clk_core *core,
3645 struct device_node *np,
3646 char *clk_handle_name, int count)
3647{
3648 int j;
3649 struct platform_device *pdev;
3650 struct device_node *dev_node;
3651
3652 for (j = 0; j < count; j++) {
3653 device_list[j] = NULL;
3654 dev_node = of_parse_phandle(np, clk_handle_name, j);
3655 if (!dev_node) {
3656 pr_err("Unable to get device_node pointer for %s opp-handle (%s)\n",
3657 core->name, clk_handle_name);
3658 return -ENODEV;
3659 }
3660
3661 pdev = of_find_device_by_node(dev_node);
3662 if (!pdev) {
3663 pr_err("Unable to find platform_device node for %s opp-handle\n",
3664 core->name);
3665 return -ENODEV;
3666 }
3667 device_list[j] = &pdev->dev;
3668 }
3669 return 0;
3670}
3671
3672static int clk_get_voltage(struct clk_core *core, unsigned long rate, int n)
3673{
3674 struct clk_vdd_class *vdd;
3675 int level, corner;
3676
3677 /* Use the first regulator in the vdd class for the OPP table. */
3678 vdd = core->vdd_class;
3679 if (vdd->num_regulators > 1) {
3680 corner = vdd->vdd_uv[vdd->num_regulators * n];
3681 } else {
3682 level = clk_find_vdd_level(core, rate);
3683 if (level < 0) {
3684 pr_err("Could not find vdd level\n");
3685 return -EINVAL;
3686 }
3687 corner = vdd->vdd_uv[level];
3688 }
3689
3690 if (!corner) {
3691 pr_err("%s: Unable to find vdd level for rate %lu\n",
3692 core->name, rate);
3693 return -EINVAL;
3694 }
3695
3696 return corner;
3697}
3698
3699static int clk_add_and_print_opp(struct clk_hw *hw,
3700 struct device **device_list, int count,
3701 unsigned long rate, int uv, int n)
3702{
3703 struct clk_core *core = hw->core;
3704 int j, ret = 0;
3705
3706 for (j = 0; j < count; j++) {
3707 ret = dev_pm_opp_add(device_list[j], rate, uv);
3708 if (ret) {
3709 pr_err("%s: couldn't add OPP for %lu - err: %d\n",
3710 core->name, rate, ret);
3711 return ret;
3712 }
3713
3714 if (n == 0 || n == core->num_rate_max - 1 ||
3715 rate == clk_hw_round_rate(hw, INT_MAX))
3716 pr_info("%s: set OPP pair(%lu Hz: %u uV) on %s\n",
3717 core->name, rate, uv,
3718 dev_name(device_list[j]));
3719 }
3720 return ret;
3721}
3722
3723static void clk_populate_clock_opp_table(struct device_node *np,
3724 struct clk_hw *hw)
3725{
3726 struct device **device_list;
3727 struct clk_core *core = hw->core;
3728 char clk_handle_name[MAX_LEN_OPP_HANDLE];
3729 int n, len, count, uv;
3730 unsigned long rate = 0, ret = 0;
3731
3732 if (!core || !core->num_rate_max)
3733 return;
3734
3735 if (strlen(core->name) + LEN_OPP_HANDLE < MAX_LEN_OPP_HANDLE) {
3736 ret = snprintf(clk_handle_name, ARRAY_SIZE(clk_handle_name),
3737 "qcom,%s-opp-handle", core->name);
3738 if (ret < strlen(core->name) + LEN_OPP_HANDLE) {
3739 pr_err("%s: Failed to hold clk_handle_name\n",
3740 core->name);
3741 return;
3742 }
3743 } else {
3744 pr_err("clk name (%s) too large to fit in clk_handle_name\n",
3745 core->name);
3746 return;
3747 }
3748
3749 if (of_find_property(np, clk_handle_name, &len)) {
3750 count = len/sizeof(u32);
3751
3752 device_list = kmalloc_array(count, sizeof(struct device *),
3753 GFP_KERNEL);
3754 if (!device_list)
3755 return;
3756
3757 ret = derive_device_list(device_list, core, np,
3758 clk_handle_name, count);
3759 if (ret < 0) {
3760 pr_err("Failed to fill device_list for %s\n",
3761 clk_handle_name);
3762 goto err_derive_device_list;
3763 }
3764 } else {
3765 pr_debug("Unable to find %s\n", clk_handle_name);
3766 return;
3767 }
3768
3769 for (n = 0; ; n++) {
3770 ret = clk_hw_round_rate(hw, rate + 1);
3771 if (ret < 0) {
3772 pr_err("clk_round_rate failed for %s\n",
3773 core->name);
3774 goto err_derive_device_list;
3775 }
3776
3777 /*
3778 * If clk_hw_round_rate gives the same value on consecutive
3779 * iterations, exit the loop since we're at the maximum clock
3780 * frequency.
3781 */
3782 if (rate == ret)
3783 break;
3784 rate = ret;
3785
3786 uv = clk_get_voltage(core, rate, n);
3787 if (uv < 0)
3788 goto err_derive_device_list;
3789
3790 ret = clk_add_and_print_opp(hw, device_list, count,
3791 rate, uv, n);
3792 if (ret)
3793 goto err_derive_device_list;
3794 }
3795
3796err_derive_device_list:
3797 kfree(device_list);
3798}
3799
Stephen Boyd46c87732012-09-24 13:38:04 -07003800/**
3801 * devm_clk_register - resource managed clk_register()
3802 * @dev: device that is registering this clock
3803 * @hw: link to hardware-specific clock data
3804 *
3805 * Managed clk_register(). Clocks returned from this function are
3806 * automatically clk_unregister()ed on driver detach. See clk_register() for
3807 * more information.
3808 */
3809struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
3810{
3811 struct clk *clk;
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003812 struct clk **clkp;
Stephen Boyd46c87732012-09-24 13:38:04 -07003813
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003814 clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
3815 if (!clkp)
Stephen Boyd46c87732012-09-24 13:38:04 -07003816 return ERR_PTR(-ENOMEM);
3817
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003818 clk = clk_register(dev, hw);
3819 if (!IS_ERR(clk)) {
3820 *clkp = clk;
3821 devres_add(dev, clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07003822 } else {
Stephen Boyd293ba3b2014-04-18 16:29:42 -07003823 devres_free(clkp);
Stephen Boyd46c87732012-09-24 13:38:04 -07003824 }
3825
Deepak Katragadda677bad12016-11-04 13:33:13 -07003826 clk_populate_clock_opp_table(dev->of_node, hw);
Stephen Boyd46c87732012-09-24 13:38:04 -07003827 return clk;
3828}
3829EXPORT_SYMBOL_GPL(devm_clk_register);
3830
Stephen Boyd41438042016-02-05 17:02:52 -08003831/**
3832 * devm_clk_hw_register - resource managed clk_hw_register()
3833 * @dev: device that is registering this clock
3834 * @hw: link to hardware-specific clock data
3835 *
Masahiro Yamadac47265a2016-05-01 19:56:08 +09003836 * Managed clk_hw_register(). Clocks registered by this function are
Stephen Boyd41438042016-02-05 17:02:52 -08003837 * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register()
3838 * for more information.
3839 */
3840int devm_clk_hw_register(struct device *dev, struct clk_hw *hw)
3841{
3842 struct clk_hw **hwp;
3843 int ret;
3844
3845 hwp = devres_alloc(devm_clk_hw_release, sizeof(*hwp), GFP_KERNEL);
3846 if (!hwp)
3847 return -ENOMEM;
3848
3849 ret = clk_hw_register(dev, hw);
3850 if (!ret) {
3851 *hwp = hw;
3852 devres_add(dev, hwp);
3853 } else {
3854 devres_free(hwp);
3855 }
3856
Deepak Katragadda677bad12016-11-04 13:33:13 -07003857 clk_populate_clock_opp_table(dev->of_node, hw);
Stephen Boyd41438042016-02-05 17:02:52 -08003858 return ret;
3859}
3860EXPORT_SYMBOL_GPL(devm_clk_hw_register);
3861
Stephen Boyd46c87732012-09-24 13:38:04 -07003862static int devm_clk_match(struct device *dev, void *res, void *data)
3863{
3864 struct clk *c = res;
3865 if (WARN_ON(!c))
3866 return 0;
3867 return c == data;
3868}
3869
Stephen Boyd41438042016-02-05 17:02:52 -08003870static int devm_clk_hw_match(struct device *dev, void *res, void *data)
3871{
3872 struct clk_hw *hw = res;
3873
3874 if (WARN_ON(!hw))
3875 return 0;
3876 return hw == data;
3877}
3878
Stephen Boyd46c87732012-09-24 13:38:04 -07003879/**
3880 * devm_clk_unregister - resource managed clk_unregister()
3881 * @clk: clock to unregister
3882 *
3883 * Deallocate a clock allocated with devm_clk_register(). Normally
3884 * this function will not need to be called and the resource management
3885 * code will ensure that the resource is freed.
3886 */
3887void devm_clk_unregister(struct device *dev, struct clk *clk)
3888{
3889 WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk));
3890}
3891EXPORT_SYMBOL_GPL(devm_clk_unregister);
3892
Stephen Boyd41438042016-02-05 17:02:52 -08003893/**
3894 * devm_clk_hw_unregister - resource managed clk_hw_unregister()
3895 * @dev: device that is unregistering the hardware-specific clock data
3896 * @hw: link to hardware-specific clock data
3897 *
3898 * Unregister a clk_hw registered with devm_clk_hw_register(). Normally
3899 * this function will not need to be called and the resource management
3900 * code will ensure that the resource is freed.
3901 */
3902void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw)
3903{
3904 WARN_ON(devres_release(dev, devm_clk_hw_release, devm_clk_hw_match,
3905 hw));
3906}
3907EXPORT_SYMBOL_GPL(devm_clk_hw_unregister);
3908
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003909/*
3910 * clkdev helpers
3911 */
3912int __clk_get(struct clk *clk)
3913{
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003914 struct clk_core *core = !clk ? NULL : clk->core;
3915
3916 if (core) {
3917 if (!try_module_get(core->owner))
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01003918 return 0;
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003919
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003920 kref_get(&core->ref);
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01003921 }
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003922 return 1;
3923}
3924
3925void __clk_put(struct clk *clk)
3926{
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01003927 struct module *owner;
3928
Sylwester Nawrocki00efcb12014-01-07 13:03:43 +01003929 if (!clk || WARN_ON_ONCE(IS_ERR(clk)))
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003930 return;
3931
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003932 clk_prepare_lock();
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003933
Stephen Boyd50595f82015-02-06 11:42:44 -08003934 hlist_del(&clk->clks_node);
Tomeu Vizosoec02ace2015-02-06 15:13:01 +01003935 if (clk->min_rate > clk->core->req_rate ||
3936 clk->max_rate < clk->core->req_rate)
3937 clk_core_set_rate_nolock(clk->core, clk->core->req_rate);
3938
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003939 owner = clk->core->owner;
3940 kref_put(&clk->core->ref, __clk_release);
3941
Sylwester Nawrockifcb0ee62013-08-24 15:00:10 +02003942 clk_prepare_unlock();
3943
Tomeu Vizoso10cdfe52014-12-02 08:54:19 +01003944 module_put(owner);
Tomeu Vizoso1c8e6002015-01-23 12:03:31 +01003945
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01003946 kfree(clk);
Sylwester Nawrockiac2df522013-08-24 20:10:41 +02003947}
3948
Mike Turquetteb24764902012-03-15 23:11:19 -07003949/*** clk rate change notifiers ***/
3950
3951/**
3952 * clk_notifier_register - add a clk rate change notifier
3953 * @clk: struct clk * to watch
3954 * @nb: struct notifier_block * with callback info
3955 *
3956 * Request notification when clk's rate changes. This uses an SRCU
3957 * notifier because we want it to block and notifier unregistrations are
3958 * uncommon. The callbacks associated with the notifier must not
3959 * re-enter into the clk framework by calling any top-level clk APIs;
3960 * this will cause a nested prepare_lock mutex.
3961 *
Masahiro Yamada198bb592015-11-30 16:40:51 +09003962 * In all notification cases (pre, post and abort rate change) the original
3963 * clock rate is passed to the callback via struct clk_notifier_data.old_rate
3964 * and the new frequency is passed via struct clk_notifier_data.new_rate.
Mike Turquetteb24764902012-03-15 23:11:19 -07003965 *
Mike Turquetteb24764902012-03-15 23:11:19 -07003966 * clk_notifier_register() must be called from non-atomic context.
3967 * Returns -EINVAL if called with null arguments, -ENOMEM upon
3968 * allocation failure; otherwise, passes along the return value of
3969 * srcu_notifier_chain_register().
3970 */
3971int clk_notifier_register(struct clk *clk, struct notifier_block *nb)
3972{
3973 struct clk_notifier *cn;
3974 int ret = -ENOMEM;
3975
3976 if (!clk || !nb)
3977 return -EINVAL;
3978
Mike Turquetteeab89f62013-03-28 13:59:01 -07003979 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07003980
3981 /* search the list of notifiers for this clk */
3982 list_for_each_entry(cn, &clk_notifier_list, node)
3983 if (cn->clk == clk)
3984 break;
3985
3986 /* if clk wasn't in the notifier list, allocate new clk_notifier */
3987 if (cn->clk != clk) {
3988 cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL);
3989 if (!cn)
3990 goto out;
3991
3992 cn->clk = clk;
3993 srcu_init_notifier_head(&cn->notifier_head);
3994
3995 list_add(&cn->node, &clk_notifier_list);
3996 }
3997
3998 ret = srcu_notifier_chain_register(&cn->notifier_head, nb);
3999
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004000 clk->core->notifier_count++;
Mike Turquetteb24764902012-03-15 23:11:19 -07004001
4002out:
Mike Turquetteeab89f62013-03-28 13:59:01 -07004003 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004004
4005 return ret;
4006}
4007EXPORT_SYMBOL_GPL(clk_notifier_register);
4008
4009/**
4010 * clk_notifier_unregister - remove a clk rate change notifier
4011 * @clk: struct clk *
4012 * @nb: struct notifier_block * with callback info
4013 *
4014 * Request no further notification for changes to 'clk' and frees memory
4015 * allocated in clk_notifier_register.
4016 *
4017 * Returns -EINVAL if called with null arguments; otherwise, passes
4018 * along the return value of srcu_notifier_chain_unregister().
4019 */
4020int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb)
4021{
4022 struct clk_notifier *cn = NULL;
4023 int ret = -EINVAL;
4024
4025 if (!clk || !nb)
4026 return -EINVAL;
4027
Mike Turquetteeab89f62013-03-28 13:59:01 -07004028 clk_prepare_lock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004029
4030 list_for_each_entry(cn, &clk_notifier_list, node)
4031 if (cn->clk == clk)
4032 break;
4033
4034 if (cn->clk == clk) {
4035 ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb);
4036
Tomeu Vizoso035a61c2015-01-23 12:03:30 +01004037 clk->core->notifier_count--;
Mike Turquetteb24764902012-03-15 23:11:19 -07004038
4039 /* XXX the notifier code should handle this better */
4040 if (!cn->notifier_head.head) {
4041 srcu_cleanup_notifier_head(&cn->notifier_head);
Lai Jiangshan72b53222013-06-03 17:17:15 +08004042 list_del(&cn->node);
Mike Turquetteb24764902012-03-15 23:11:19 -07004043 kfree(cn);
4044 }
4045
4046 } else {
4047 ret = -ENOENT;
4048 }
4049
Mike Turquetteeab89f62013-03-28 13:59:01 -07004050 clk_prepare_unlock();
Mike Turquetteb24764902012-03-15 23:11:19 -07004051
4052 return ret;
4053}
4054EXPORT_SYMBOL_GPL(clk_notifier_unregister);
Grant Likely766e6a42012-04-09 14:50:06 -05004055
Shefali Jain0dc6e782017-11-27 13:06:27 +05304056#endif /* CONFIG_COMMON_CLK */
4057
Grant Likely766e6a42012-04-09 14:50:06 -05004058#ifdef CONFIG_OF
4059/**
4060 * struct of_clk_provider - Clock provider registration structure
4061 * @link: Entry in global list of clock providers
4062 * @node: Pointer to device tree node of clock provider
4063 * @get: Get clock callback. Returns NULL or a struct clk for the
4064 * given clock specifier
4065 * @data: context pointer to be passed into @get callback
4066 */
4067struct of_clk_provider {
4068 struct list_head link;
4069
4070 struct device_node *node;
4071 struct clk *(*get)(struct of_phandle_args *clkspec, void *data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004072 struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data);
Grant Likely766e6a42012-04-09 14:50:06 -05004073 void *data;
4074};
4075
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304076static const struct of_device_id __clk_of_table_sentinel
4077 __used __section(__clk_of_table_end);
4078
Grant Likely766e6a42012-04-09 14:50:06 -05004079static LIST_HEAD(of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004080static DEFINE_MUTEX(of_clk_mutex);
4081
Grant Likely766e6a42012-04-09 14:50:06 -05004082struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec,
4083 void *data)
4084{
4085 return data;
4086}
4087EXPORT_SYMBOL_GPL(of_clk_src_simple_get);
4088
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004089struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data)
4090{
4091 return data;
4092}
4093EXPORT_SYMBOL_GPL(of_clk_hw_simple_get);
4094
Shefali Jain0dc6e782017-11-27 13:06:27 +05304095#if defined(CONFIG_COMMON_CLK)
4096
Shawn Guo494bfec2012-08-22 21:36:27 +08004097struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data)
4098{
4099 struct clk_onecell_data *clk_data = data;
4100 unsigned int idx = clkspec->args[0];
4101
4102 if (idx >= clk_data->clk_num) {
Geert Uytterhoeven7e963532015-10-16 17:12:32 +02004103 pr_err("%s: invalid clock index %u\n", __func__, idx);
Shawn Guo494bfec2012-08-22 21:36:27 +08004104 return ERR_PTR(-EINVAL);
4105 }
4106
4107 return clk_data->clks[idx];
4108}
4109EXPORT_SYMBOL_GPL(of_clk_src_onecell_get);
4110
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004111struct clk_hw *
4112of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
4113{
4114 struct clk_hw_onecell_data *hw_data = data;
4115 unsigned int idx = clkspec->args[0];
4116
4117 if (idx >= hw_data->num) {
4118 pr_err("%s: invalid index %u\n", __func__, idx);
4119 return ERR_PTR(-EINVAL);
4120 }
4121
4122 return hw_data->hws[idx];
4123}
4124EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get);
4125
Shefali Jain0dc6e782017-11-27 13:06:27 +05304126#endif /* CONFIG_COMMON_CLK */
4127
4128/**
4129 * of_clk_del_provider() - Remove a previously registered clock provider
4130 * @np: Device node pointer associated with clock provider
4131 */
4132void of_clk_del_provider(struct device_node *np)
4133{
4134 struct of_clk_provider *cp;
4135
4136 mutex_lock(&of_clk_mutex);
4137 list_for_each_entry(cp, &of_clk_providers, link) {
4138 if (cp->node == np) {
4139 list_del(&cp->link);
4140 of_node_put(cp->node);
4141 kfree(cp);
4142 break;
4143 }
4144 }
4145 mutex_unlock(&of_clk_mutex);
4146}
4147EXPORT_SYMBOL_GPL(of_clk_del_provider);
4148
Grant Likely766e6a42012-04-09 14:50:06 -05004149/**
4150 * of_clk_add_provider() - Register a clock provider for a node
4151 * @np: Device node pointer associated with clock provider
4152 * @clk_src_get: callback for decoding clock
4153 * @data: context pointer for @clk_src_get callback.
4154 */
4155int of_clk_add_provider(struct device_node *np,
4156 struct clk *(*clk_src_get)(struct of_phandle_args *clkspec,
4157 void *data),
4158 void *data)
4159{
4160 struct of_clk_provider *cp;
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004161 int ret;
Grant Likely766e6a42012-04-09 14:50:06 -05004162
4163 cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL);
4164 if (!cp)
4165 return -ENOMEM;
4166
4167 cp->node = of_node_get(np);
4168 cp->data = data;
4169 cp->get = clk_src_get;
4170
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004171 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004172 list_add(&cp->link, &of_clk_providers);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004173 mutex_unlock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004174 pr_debug("Added clock from %s\n", np->full_name);
4175
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004176 ret = of_clk_set_defaults(np, true);
4177 if (ret < 0)
4178 of_clk_del_provider(np);
4179
4180 return ret;
Grant Likely766e6a42012-04-09 14:50:06 -05004181}
4182EXPORT_SYMBOL_GPL(of_clk_add_provider);
4183
4184/**
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004185 * of_clk_add_hw_provider() - Register a clock provider for a node
4186 * @np: Device node pointer associated with clock provider
4187 * @get: callback for decoding clk_hw
4188 * @data: context pointer for @get callback.
4189 */
4190int of_clk_add_hw_provider(struct device_node *np,
4191 struct clk_hw *(*get)(struct of_phandle_args *clkspec,
4192 void *data),
4193 void *data)
4194{
4195 struct of_clk_provider *cp;
4196 int ret;
4197
4198 cp = kzalloc(sizeof(*cp), GFP_KERNEL);
4199 if (!cp)
4200 return -ENOMEM;
4201
4202 cp->node = of_node_get(np);
4203 cp->data = data;
4204 cp->get_hw = get;
4205
4206 mutex_lock(&of_clk_mutex);
4207 list_add(&cp->link, &of_clk_providers);
4208 mutex_unlock(&of_clk_mutex);
4209 pr_debug("Added clk_hw provider from %s\n", np->full_name);
4210
4211 ret = of_clk_set_defaults(np, true);
4212 if (ret < 0)
4213 of_clk_del_provider(np);
4214
4215 return ret;
4216}
4217EXPORT_SYMBOL_GPL(of_clk_add_hw_provider);
4218
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004219static struct clk_hw *
4220__of_clk_get_hw_from_provider(struct of_clk_provider *provider,
4221 struct of_phandle_args *clkspec)
4222{
4223 struct clk *clk;
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004224
Stephen Boyd74002fc2016-08-25 13:35:36 -07004225 if (provider->get_hw)
4226 return provider->get_hw(clkspec, provider->data);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004227
Stephen Boyd74002fc2016-08-25 13:35:36 -07004228 clk = provider->get(clkspec, provider->data);
4229 if (IS_ERR(clk))
4230 return ERR_CAST(clk);
4231 return __clk_get_hw(clk);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004232}
4233
Stephen Boyd73e0e492015-02-06 11:42:43 -08004234struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec,
4235 const char *dev_id, const char *con_id)
Grant Likely766e6a42012-04-09 14:50:06 -05004236{
4237 struct of_clk_provider *provider;
Jean-Francois Moinea34cd462013-11-25 19:47:04 +01004238 struct clk *clk = ERR_PTR(-EPROBE_DEFER);
Stephen Boydf155d152016-08-15 14:32:23 -07004239 struct clk_hw *hw;
Grant Likely766e6a42012-04-09 14:50:06 -05004240
Stephen Boyd306c3422015-02-05 15:39:11 -08004241 if (!clkspec)
4242 return ERR_PTR(-EINVAL);
4243
Grant Likely766e6a42012-04-09 14:50:06 -05004244 /* Check if we have such a provider in our array */
Stephen Boyd306c3422015-02-05 15:39:11 -08004245 mutex_lock(&of_clk_mutex);
Grant Likely766e6a42012-04-09 14:50:06 -05004246 list_for_each_entry(provider, &of_clk_providers, link) {
Stephen Boydf155d152016-08-15 14:32:23 -07004247 if (provider->node == clkspec->np) {
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004248 hw = __of_clk_get_hw_from_provider(provider, clkspec);
Stephen Boyd0861e5b2016-02-05 17:38:26 -08004249 clk = __clk_create_clk(hw, dev_id, con_id);
Stephen Boydf155d152016-08-15 14:32:23 -07004250 }
Stephen Boyd73e0e492015-02-06 11:42:43 -08004251
Stephen Boydf155d152016-08-15 14:32:23 -07004252 if (!IS_ERR(clk)) {
4253 if (!__clk_get(clk)) {
Stephen Boyd73e0e492015-02-06 11:42:43 -08004254 __clk_free_clk(clk);
4255 clk = ERR_PTR(-ENOENT);
4256 }
4257
Grant Likely766e6a42012-04-09 14:50:06 -05004258 break;
Stephen Boyd73e0e492015-02-06 11:42:43 -08004259 }
Grant Likely766e6a42012-04-09 14:50:06 -05004260 }
Stephen Boyd306c3422015-02-05 15:39:11 -08004261 mutex_unlock(&of_clk_mutex);
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004262
4263 return clk;
4264}
4265
Stephen Boyd306c3422015-02-05 15:39:11 -08004266/**
4267 * of_clk_get_from_provider() - Lookup a clock from a clock provider
4268 * @clkspec: pointer to a clock specifier data structure
4269 *
4270 * This function looks up a struct clk from the registered list of clock
4271 * providers, an input is a clock specifier data structure as returned
4272 * from the of_parse_phandle_with_args() function call.
4273 */
Sylwester Nawrockid6782c22013-08-23 17:03:43 +02004274struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
4275{
Stephen Boyd306c3422015-02-05 15:39:11 -08004276 return __of_clk_get_from_provider(clkspec, NULL, __func__);
Grant Likely766e6a42012-04-09 14:50:06 -05004277}
Andrew F. Davisfb4dd222016-02-12 12:50:16 -06004278EXPORT_SYMBOL_GPL(of_clk_get_from_provider);
Grant Likely766e6a42012-04-09 14:50:06 -05004279
Stephen Boyd929e7f32016-02-19 15:52:32 -08004280/**
4281 * of_clk_get_parent_count() - Count the number of clocks a device node has
4282 * @np: device node to count
4283 *
4284 * Returns: The number of clocks that are possible parents of this node
4285 */
4286unsigned int of_clk_get_parent_count(struct device_node *np)
Mike Turquettef6102742013-10-07 23:12:13 -07004287{
Stephen Boyd929e7f32016-02-19 15:52:32 -08004288 int count;
4289
4290 count = of_count_phandle_with_args(np, "clocks", "#clock-cells");
4291 if (count < 0)
4292 return 0;
4293
4294 return count;
Mike Turquettef6102742013-10-07 23:12:13 -07004295}
4296EXPORT_SYMBOL_GPL(of_clk_get_parent_count);
4297
Grant Likely766e6a42012-04-09 14:50:06 -05004298const char *of_clk_get_parent_name(struct device_node *np, int index)
4299{
4300 struct of_phandle_args clkspec;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004301 struct property *prop;
Grant Likely766e6a42012-04-09 14:50:06 -05004302 const char *clk_name;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004303 const __be32 *vp;
4304 u32 pv;
Grant Likely766e6a42012-04-09 14:50:06 -05004305 int rc;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004306 int count;
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004307 struct clk *clk;
Grant Likely766e6a42012-04-09 14:50:06 -05004308
Grant Likely766e6a42012-04-09 14:50:06 -05004309 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index,
4310 &clkspec);
4311 if (rc)
4312 return NULL;
4313
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004314 index = clkspec.args_count ? clkspec.args[0] : 0;
4315 count = 0;
4316
4317 /* if there is an indices property, use it to transfer the index
4318 * specified into an array offset for the clock-output-names property.
4319 */
4320 of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) {
4321 if (index == pv) {
4322 index = count;
4323 break;
4324 }
4325 count++;
4326 }
Masahiro Yamada8da411c2015-12-03 11:20:35 +09004327 /* We went off the end of 'clock-indices' without finding it */
4328 if (prop && !vp)
4329 return NULL;
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004330
Grant Likely766e6a42012-04-09 14:50:06 -05004331 if (of_property_read_string_index(clkspec.np, "clock-output-names",
Ben Dooks7a0fc1a2014-02-13 18:02:49 +00004332 index,
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004333 &clk_name) < 0) {
4334 /*
4335 * Best effort to get the name if the clock has been
4336 * registered with the framework. If the clock isn't
4337 * registered, we return the node name as the name of
4338 * the clock as long as #clock-cells = 0.
4339 */
4340 clk = of_clk_get_from_provider(&clkspec);
4341 if (IS_ERR(clk)) {
4342 if (clkspec.args_count == 0)
4343 clk_name = clkspec.np->name;
4344 else
4345 clk_name = NULL;
4346 } else {
Shefali Jain0dc6e782017-11-27 13:06:27 +05304347#if defined(CONFIG_COMMON_CLK)
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004348 clk_name = __clk_get_name(clk);
4349 clk_put(clk);
Shefali Jain0dc6e782017-11-27 13:06:27 +05304350#endif
Stephen Boyd0a4807c2015-10-14 14:03:07 -07004351 }
4352 }
4353
Grant Likely766e6a42012-04-09 14:50:06 -05004354
4355 of_node_put(clkspec.np);
4356 return clk_name;
4357}
4358EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
4359
Dinh Nguyen2e61dfb2015-06-05 11:26:13 -05004360/**
4361 * of_clk_parent_fill() - Fill @parents with names of @np's parents and return
4362 * number of parents
4363 * @np: Device node pointer associated with clock provider
4364 * @parents: pointer to char array that hold the parents' names
4365 * @size: size of the @parents array
4366 *
4367 * Return: number of parents for the clock node.
4368 */
4369int of_clk_parent_fill(struct device_node *np, const char **parents,
4370 unsigned int size)
4371{
4372 unsigned int i = 0;
4373
4374 while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL)
4375 i++;
4376
4377 return i;
4378}
4379EXPORT_SYMBOL_GPL(of_clk_parent_fill);
4380
Shefali Jain0dc6e782017-11-27 13:06:27 +05304381#if defined(CONFIG_COMMON_CLK)
4382
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004383struct clock_provider {
4384 of_clk_init_cb_t clk_init_cb;
4385 struct device_node *np;
4386 struct list_head node;
4387};
4388
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004389/*
4390 * This function looks for a parent clock. If there is one, then it
4391 * checks that the provider for this parent clock was initialized, in
4392 * this case the parent clock will be ready.
4393 */
4394static int parent_ready(struct device_node *np)
4395{
4396 int i = 0;
4397
4398 while (true) {
4399 struct clk *clk = of_clk_get(np, i);
4400
4401 /* this parent is ready we can check the next one */
4402 if (!IS_ERR(clk)) {
4403 clk_put(clk);
4404 i++;
4405 continue;
4406 }
4407
4408 /* at least one parent is not ready, we exit now */
4409 if (PTR_ERR(clk) == -EPROBE_DEFER)
4410 return 0;
4411
4412 /*
4413 * Here we make assumption that the device tree is
4414 * written correctly. So an error means that there is
4415 * no more parent. As we didn't exit yet, then the
4416 * previous parent are ready. If there is no clock
4417 * parent, no need to wait for them, then we can
4418 * consider their absence as being ready
4419 */
4420 return 1;
4421 }
4422}
4423
Grant Likely766e6a42012-04-09 14:50:06 -05004424/**
Lee Jonesd56f8992016-02-11 13:19:11 -08004425 * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree
4426 * @np: Device node pointer associated with clock provider
4427 * @index: clock index
4428 * @flags: pointer to clk_core->flags
4429 *
4430 * Detects if the clock-critical property exists and, if so, sets the
4431 * corresponding CLK_IS_CRITICAL flag.
4432 *
4433 * Do not use this function. It exists only for legacy Device Tree
4434 * bindings, such as the one-clock-per-node style that are outdated.
4435 * Those bindings typically put all clock data into .dts and the Linux
4436 * driver has no clock data, thus making it impossible to set this flag
4437 * correctly from the driver. Only those drivers may call
4438 * of_clk_detect_critical from their setup functions.
4439 *
4440 * Return: error code or zero on success
4441 */
4442int of_clk_detect_critical(struct device_node *np,
4443 int index, unsigned long *flags)
4444{
4445 struct property *prop;
4446 const __be32 *cur;
4447 uint32_t idx;
4448
4449 if (!np || !flags)
4450 return -EINVAL;
4451
4452 of_property_for_each_u32(np, "clock-critical", prop, cur, idx)
4453 if (index == idx)
4454 *flags |= CLK_IS_CRITICAL;
4455
4456 return 0;
4457}
4458
4459/**
Grant Likely766e6a42012-04-09 14:50:06 -05004460 * of_clk_init() - Scan and init clock providers from the DT
4461 * @matches: array of compatible values and init functions for providers.
4462 *
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004463 * This function scans the device tree for matching clock providers
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01004464 * and calls their initialization functions. It also does it by trying
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004465 * to follow the dependencies.
Grant Likely766e6a42012-04-09 14:50:06 -05004466 */
4467void __init of_clk_init(const struct of_device_id *matches)
4468{
Alex Elder7f7ed582013-08-22 11:31:31 -05004469 const struct of_device_id *match;
Grant Likely766e6a42012-04-09 14:50:06 -05004470 struct device_node *np;
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004471 struct clock_provider *clk_provider, *next;
4472 bool is_init_done;
4473 bool force = false;
Stephen Boyd2573a022015-07-06 16:50:00 -07004474 LIST_HEAD(clk_provider_list);
Grant Likely766e6a42012-04-09 14:50:06 -05004475
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304476 if (!matches)
Tero Kristo819b4862013-10-22 11:39:36 +03004477 matches = &__clk_of_table;
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +05304478
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004479 /* First prepare the list of the clocks providers */
Alex Elder7f7ed582013-08-22 11:31:31 -05004480 for_each_matching_node_and_match(np, matches, &match) {
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004481 struct clock_provider *parent;
4482
Geert Uytterhoeven3e5dd6f2016-02-26 16:54:31 +01004483 if (!of_device_is_available(np))
4484 continue;
4485
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004486 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
4487 if (!parent) {
4488 list_for_each_entry_safe(clk_provider, next,
4489 &clk_provider_list, node) {
4490 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004491 of_node_put(clk_provider->np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004492 kfree(clk_provider);
4493 }
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004494 of_node_put(np);
Stephen Boyd2e3b19f2015-07-06 16:48:19 -07004495 return;
4496 }
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004497
4498 parent->clk_init_cb = match->data;
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004499 parent->np = of_node_get(np);
Sylwester Nawrocki3f6d4392014-03-27 11:43:32 +01004500 list_add_tail(&parent->node, &clk_provider_list);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004501 }
4502
4503 while (!list_empty(&clk_provider_list)) {
4504 is_init_done = false;
4505 list_for_each_entry_safe(clk_provider, next,
4506 &clk_provider_list, node) {
4507 if (force || parent_ready(clk_provider->np)) {
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004508
Ricardo Ribalda Delgado989eafd2016-07-05 18:23:32 +02004509 /* Don't populate platform devices */
4510 of_node_set_flag(clk_provider->np,
4511 OF_POPULATED);
4512
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004513 clk_provider->clk_init_cb(clk_provider->np);
Sylwester Nawrocki86be4082014-06-18 17:29:32 +02004514 of_clk_set_defaults(clk_provider->np, true);
4515
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004516 list_del(&clk_provider->node);
Julia Lawall6bc9d9d2015-10-21 22:41:36 +02004517 of_node_put(clk_provider->np);
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004518 kfree(clk_provider);
4519 is_init_done = true;
4520 }
4521 }
4522
4523 /*
Sylwester Nawrockie5ca8fb2014-03-27 12:08:36 +01004524 * We didn't manage to initialize any of the
Gregory CLEMENT1771b102014-02-24 19:10:13 +01004525 * remaining providers during the last loop, so now we
4526 * initialize all the remaining ones unconditionally
4527 * in case the clock parent was not mandatory
4528 */
4529 if (!is_init_done)
4530 force = true;
Grant Likely766e6a42012-04-09 14:50:06 -05004531 }
4532}
Shefali Jain0dc6e782017-11-27 13:06:27 +05304533
4534#endif /* CONFIG_COMMON_CLK */
4535
Grant Likely766e6a42012-04-09 14:50:06 -05004536#endif