Stephen Boyd | ebafb63 | 2018-12-11 09:43:03 -0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com> |
| 4 | * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org> |
| 5 | * |
Mauro Carvalho Chehab | 5fb94e9 | 2018-05-08 15:14:57 -0300 | [diff] [blame] | 6 | * Standard functionality for the common clock API. See Documentation/driver-api/clk.rst |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Stephen Boyd | 3c37311 | 2015-06-19 15:00:46 -0700 | [diff] [blame] | 9 | #include <linux/clk.h> |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 10 | #include <linux/clk-provider.h> |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 11 | #include <linux/clk/clk-conf.h> |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/mutex.h> |
| 14 | #include <linux/spinlock.h> |
| 15 | #include <linux/err.h> |
| 16 | #include <linux/list.h> |
| 17 | #include <linux/slab.h> |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 18 | #include <linux/of.h> |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 19 | #include <linux/device.h> |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 20 | #include <linux/init.h> |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 21 | #include <linux/pm_runtime.h> |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 22 | #include <linux/sched.h> |
Stephen Boyd | 562ef0b | 2015-05-01 12:16:14 -0700 | [diff] [blame] | 23 | #include <linux/clkdev.h> |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 24 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 25 | #include "clk.h" |
| 26 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 27 | static DEFINE_SPINLOCK(enable_lock); |
| 28 | static DEFINE_MUTEX(prepare_lock); |
| 29 | |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 30 | static struct task_struct *prepare_owner; |
| 31 | static struct task_struct *enable_owner; |
| 32 | |
| 33 | static int prepare_refcnt; |
| 34 | static int enable_refcnt; |
| 35 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 36 | static HLIST_HEAD(clk_root_list); |
| 37 | static HLIST_HEAD(clk_orphan_list); |
| 38 | static LIST_HEAD(clk_notifier_list); |
| 39 | |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 40 | /*** private data structures ***/ |
| 41 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 42 | struct clk_parent_map { |
| 43 | const struct clk_hw *hw; |
| 44 | struct clk_core *core; |
| 45 | const char *fw_name; |
| 46 | const char *name; |
Stephen Boyd | 601b6e9 | 2019-04-12 11:31:49 -0700 | [diff] [blame] | 47 | int index; |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 50 | struct clk_core { |
| 51 | const char *name; |
| 52 | const struct clk_ops *ops; |
| 53 | struct clk_hw *hw; |
| 54 | struct module *owner; |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 55 | struct device *dev; |
Stephen Boyd | 89a5ddcc | 2019-04-12 11:31:46 -0700 | [diff] [blame] | 56 | struct device_node *of_node; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 57 | struct clk_core *parent; |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 58 | struct clk_parent_map *parents; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 59 | u8 num_parents; |
| 60 | u8 new_parent_index; |
| 61 | unsigned long rate; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 62 | unsigned long req_rate; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 63 | unsigned long new_rate; |
| 64 | struct clk_core *new_parent; |
| 65 | struct clk_core *new_child; |
| 66 | unsigned long flags; |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 67 | bool orphan; |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 68 | bool rpm_enabled; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 69 | unsigned int enable_count; |
| 70 | unsigned int prepare_count; |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 71 | unsigned int protect_count; |
Stephen Boyd | 9783c0d | 2015-07-16 12:50:27 -0700 | [diff] [blame] | 72 | unsigned long min_rate; |
| 73 | unsigned long max_rate; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 74 | unsigned long accuracy; |
| 75 | int phase; |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 76 | struct clk_duty duty; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 77 | struct hlist_head children; |
| 78 | struct hlist_node child_node; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 79 | struct hlist_head clks; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 80 | unsigned int notifier_count; |
| 81 | #ifdef CONFIG_DEBUG_FS |
| 82 | struct dentry *dentry; |
Maxime Coquelin | 8c9a8a8 | 2015-06-10 13:28:27 +0200 | [diff] [blame] | 83 | struct hlist_node debug_node; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 84 | #endif |
| 85 | struct kref ref; |
| 86 | }; |
| 87 | |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 88 | #define CREATE_TRACE_POINTS |
| 89 | #include <trace/events/clk.h> |
| 90 | |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 91 | struct clk { |
| 92 | struct clk_core *core; |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 93 | struct device *dev; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 94 | const char *dev_id; |
| 95 | const char *con_id; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 96 | unsigned long min_rate; |
| 97 | unsigned long max_rate; |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 98 | unsigned int exclusive_count; |
Stephen Boyd | 50595f8 | 2015-02-06 11:42:44 -0800 | [diff] [blame] | 99 | struct hlist_node clks_node; |
Michael Turquette | b09d6d9 | 2015-01-29 14:22:50 -0800 | [diff] [blame] | 100 | }; |
| 101 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 102 | /*** runtime pm ***/ |
| 103 | static int clk_pm_runtime_get(struct clk_core *core) |
| 104 | { |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 105 | int ret; |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 106 | |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 107 | if (!core->rpm_enabled) |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 108 | return 0; |
| 109 | |
| 110 | ret = pm_runtime_get_sync(core->dev); |
| 111 | return ret < 0 ? ret : 0; |
| 112 | } |
| 113 | |
| 114 | static void clk_pm_runtime_put(struct clk_core *core) |
| 115 | { |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 116 | if (!core->rpm_enabled) |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 117 | return; |
| 118 | |
| 119 | pm_runtime_put_sync(core->dev); |
| 120 | } |
| 121 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 122 | /*** locking ***/ |
| 123 | static void clk_prepare_lock(void) |
| 124 | { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 125 | if (!mutex_trylock(&prepare_lock)) { |
| 126 | if (prepare_owner == current) { |
| 127 | prepare_refcnt++; |
| 128 | return; |
| 129 | } |
| 130 | mutex_lock(&prepare_lock); |
| 131 | } |
| 132 | WARN_ON_ONCE(prepare_owner != NULL); |
| 133 | WARN_ON_ONCE(prepare_refcnt != 0); |
| 134 | prepare_owner = current; |
| 135 | prepare_refcnt = 1; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | static void clk_prepare_unlock(void) |
| 139 | { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 140 | WARN_ON_ONCE(prepare_owner != current); |
| 141 | WARN_ON_ONCE(prepare_refcnt == 0); |
| 142 | |
| 143 | if (--prepare_refcnt) |
| 144 | return; |
| 145 | prepare_owner = NULL; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 146 | mutex_unlock(&prepare_lock); |
| 147 | } |
| 148 | |
| 149 | static unsigned long clk_enable_lock(void) |
Stephen Boyd | a57aa18 | 2015-07-24 12:24:48 -0700 | [diff] [blame] | 150 | __acquires(enable_lock) |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 151 | { |
| 152 | unsigned long flags; |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 153 | |
David Lechner | a12aa8a | 2018-01-04 19:46:08 -0600 | [diff] [blame] | 154 | /* |
| 155 | * On UP systems, spin_trylock_irqsave() always returns true, even if |
| 156 | * we already hold the lock. So, in that case, we rely only on |
| 157 | * reference counting. |
| 158 | */ |
| 159 | if (!IS_ENABLED(CONFIG_SMP) || |
| 160 | !spin_trylock_irqsave(&enable_lock, flags)) { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 161 | if (enable_owner == current) { |
| 162 | enable_refcnt++; |
Stephen Boyd | a57aa18 | 2015-07-24 12:24:48 -0700 | [diff] [blame] | 163 | __acquire(enable_lock); |
David Lechner | a12aa8a | 2018-01-04 19:46:08 -0600 | [diff] [blame] | 164 | if (!IS_ENABLED(CONFIG_SMP)) |
| 165 | local_save_flags(flags); |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 166 | return flags; |
| 167 | } |
| 168 | spin_lock_irqsave(&enable_lock, flags); |
| 169 | } |
| 170 | WARN_ON_ONCE(enable_owner != NULL); |
| 171 | WARN_ON_ONCE(enable_refcnt != 0); |
| 172 | enable_owner = current; |
| 173 | enable_refcnt = 1; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 174 | return flags; |
| 175 | } |
| 176 | |
| 177 | static void clk_enable_unlock(unsigned long flags) |
Stephen Boyd | a57aa18 | 2015-07-24 12:24:48 -0700 | [diff] [blame] | 178 | __releases(enable_lock) |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 179 | { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 180 | WARN_ON_ONCE(enable_owner != current); |
| 181 | WARN_ON_ONCE(enable_refcnt == 0); |
| 182 | |
Stephen Boyd | a57aa18 | 2015-07-24 12:24:48 -0700 | [diff] [blame] | 183 | if (--enable_refcnt) { |
| 184 | __release(enable_lock); |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 185 | return; |
Stephen Boyd | a57aa18 | 2015-07-24 12:24:48 -0700 | [diff] [blame] | 186 | } |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 187 | enable_owner = NULL; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 188 | spin_unlock_irqrestore(&enable_lock, flags); |
| 189 | } |
| 190 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 191 | static bool clk_core_rate_is_protected(struct clk_core *core) |
| 192 | { |
| 193 | return core->protect_count; |
| 194 | } |
| 195 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 196 | static bool clk_core_is_prepared(struct clk_core *core) |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 197 | { |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 198 | bool ret = false; |
| 199 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 200 | /* |
| 201 | * .is_prepared is optional for clocks that can prepare |
| 202 | * fall back to software usage counter if it is missing |
| 203 | */ |
| 204 | if (!core->ops->is_prepared) |
| 205 | return core->prepare_count; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 206 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 207 | if (!clk_pm_runtime_get(core)) { |
| 208 | ret = core->ops->is_prepared(core->hw); |
| 209 | clk_pm_runtime_put(core); |
| 210 | } |
| 211 | |
| 212 | return ret; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 213 | } |
| 214 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 215 | static bool clk_core_is_enabled(struct clk_core *core) |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 216 | { |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 217 | bool ret = false; |
| 218 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 219 | /* |
| 220 | * .is_enabled is only mandatory for clocks that gate |
| 221 | * fall back to software usage counter if .is_enabled is missing |
| 222 | */ |
| 223 | if (!core->ops->is_enabled) |
| 224 | return core->enable_count; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 225 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 226 | /* |
| 227 | * Check if clock controller's device is runtime active before |
| 228 | * calling .is_enabled callback. If not, assume that clock is |
| 229 | * disabled, because we might be called from atomic context, from |
| 230 | * which pm_runtime_get() is not allowed. |
| 231 | * This function is called mainly from clk_disable_unused_subtree, |
| 232 | * which ensures proper runtime pm activation of controller before |
| 233 | * taking enable spinlock, but the below check is needed if one tries |
| 234 | * to call it from other places. |
| 235 | */ |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 236 | if (core->rpm_enabled) { |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 237 | pm_runtime_get_noresume(core->dev); |
| 238 | if (!pm_runtime_active(core->dev)) { |
| 239 | ret = false; |
| 240 | goto done; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | ret = core->ops->is_enabled(core->hw); |
| 245 | done: |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 246 | if (core->rpm_enabled) |
Dong Aisheng | 756efe1 | 2017-12-22 17:46:04 +0800 | [diff] [blame] | 247 | pm_runtime_put(core->dev); |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 248 | |
| 249 | return ret; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 250 | } |
| 251 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 252 | /*** helper functions ***/ |
| 253 | |
Geert Uytterhoeven | b76281c | 2015-10-16 14:35:21 +0200 | [diff] [blame] | 254 | const char *__clk_get_name(const struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 255 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 256 | return !clk ? NULL : clk->core->name; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 257 | } |
Niels de Vos | 4895084 | 2012-12-13 13:12:25 +0100 | [diff] [blame] | 258 | EXPORT_SYMBOL_GPL(__clk_get_name); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 259 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 260 | const char *clk_hw_get_name(const struct clk_hw *hw) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 261 | { |
| 262 | return hw->core->name; |
| 263 | } |
| 264 | EXPORT_SYMBOL_GPL(clk_hw_get_name); |
| 265 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 266 | struct clk_hw *__clk_get_hw(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 267 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 268 | return !clk ? NULL : clk->core->hw; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 269 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 270 | EXPORT_SYMBOL_GPL(__clk_get_hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 271 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 272 | unsigned int clk_hw_get_num_parents(const struct clk_hw *hw) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 273 | { |
| 274 | return hw->core->num_parents; |
| 275 | } |
| 276 | EXPORT_SYMBOL_GPL(clk_hw_get_num_parents); |
| 277 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 278 | struct clk_hw *clk_hw_get_parent(const struct clk_hw *hw) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 279 | { |
| 280 | return hw->core->parent ? hw->core->parent->hw : NULL; |
| 281 | } |
| 282 | EXPORT_SYMBOL_GPL(clk_hw_get_parent); |
| 283 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 284 | static struct clk_core *__clk_lookup_subtree(const char *name, |
| 285 | struct clk_core *core) |
| 286 | { |
| 287 | struct clk_core *child; |
| 288 | struct clk_core *ret; |
| 289 | |
| 290 | if (!strcmp(core->name, name)) |
| 291 | return core; |
| 292 | |
| 293 | hlist_for_each_entry(child, &core->children, child_node) { |
| 294 | ret = __clk_lookup_subtree(name, child); |
| 295 | if (ret) |
| 296 | return ret; |
| 297 | } |
| 298 | |
| 299 | return NULL; |
| 300 | } |
| 301 | |
| 302 | static struct clk_core *clk_core_lookup(const char *name) |
| 303 | { |
| 304 | struct clk_core *root_clk; |
| 305 | struct clk_core *ret; |
| 306 | |
| 307 | if (!name) |
| 308 | return NULL; |
| 309 | |
| 310 | /* search the 'proper' clk tree first */ |
| 311 | hlist_for_each_entry(root_clk, &clk_root_list, child_node) { |
| 312 | ret = __clk_lookup_subtree(name, root_clk); |
| 313 | if (ret) |
| 314 | return ret; |
| 315 | } |
| 316 | |
| 317 | /* if not found, then search the orphan tree */ |
| 318 | hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) { |
| 319 | ret = __clk_lookup_subtree(name, root_clk); |
| 320 | if (ret) |
| 321 | return ret; |
| 322 | } |
| 323 | |
| 324 | return NULL; |
| 325 | } |
| 326 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 327 | /** |
Stephen Boyd | dde4eff | 2019-04-12 11:31:48 -0700 | [diff] [blame] | 328 | * clk_core_get - Find the clk_core parent of a clk |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 329 | * @core: clk to find parent of |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 330 | * @p_index: parent index to search for |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 331 | * |
| 332 | * This is the preferred method for clk providers to find the parent of a |
| 333 | * clk when that parent is external to the clk controller. The parent_names |
| 334 | * array is indexed and treated as a local name matching a string in the device |
Stephen Boyd | dde4eff | 2019-04-12 11:31:48 -0700 | [diff] [blame] | 335 | * node's 'clock-names' property or as the 'con_id' matching the device's |
| 336 | * dev_name() in a clk_lookup. This allows clk providers to use their own |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 337 | * namespace instead of looking for a globally unique parent string. |
| 338 | * |
| 339 | * For example the following DT snippet would allow a clock registered by the |
| 340 | * clock-controller@c001 that has a clk_init_data::parent_data array |
| 341 | * with 'xtal' in the 'name' member to find the clock provided by the |
| 342 | * clock-controller@f00abcd without needing to get the globally unique name of |
| 343 | * the xtal clk. |
| 344 | * |
| 345 | * parent: clock-controller@f00abcd { |
| 346 | * reg = <0xf00abcd 0xabcd>; |
| 347 | * #clock-cells = <0>; |
| 348 | * }; |
| 349 | * |
| 350 | * clock-controller@c001 { |
| 351 | * reg = <0xc001 0xf00d>; |
| 352 | * clocks = <&parent>; |
| 353 | * clock-names = "xtal"; |
| 354 | * #clock-cells = <1>; |
| 355 | * }; |
| 356 | * |
| 357 | * Returns: -ENOENT when the provider can't be found or the clk doesn't |
| 358 | * exist in the provider. -EINVAL when the name can't be found. NULL when the |
| 359 | * provider knows about the clk but it isn't provided on this system. |
| 360 | * A valid clk_core pointer when the clk can be found in the provider. |
| 361 | */ |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 362 | static struct clk_core *clk_core_get(struct clk_core *core, u8 p_index) |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 363 | { |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 364 | const char *name = core->parents[p_index].fw_name; |
| 365 | int index = core->parents[p_index].index; |
Stephen Boyd | dde4eff | 2019-04-12 11:31:48 -0700 | [diff] [blame] | 366 | struct clk_hw *hw = ERR_PTR(-ENOENT); |
| 367 | struct device *dev = core->dev; |
| 368 | const char *dev_id = dev ? dev_name(dev) : NULL; |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 369 | struct device_node *np = core->of_node; |
| 370 | |
Stephen Boyd | c8edb31 | 2019-06-14 10:46:06 -0700 | [diff] [blame] | 371 | if (np && (name || index >= 0)) |
Stephen Boyd | 601b6e9 | 2019-04-12 11:31:49 -0700 | [diff] [blame] | 372 | hw = of_clk_get_hw(np, index, name); |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 373 | |
Stephen Boyd | dde4eff | 2019-04-12 11:31:48 -0700 | [diff] [blame] | 374 | /* |
| 375 | * If the DT search above couldn't find the provider or the provider |
| 376 | * didn't know about this clk, fallback to looking up via clkdev based |
| 377 | * clk_lookups |
| 378 | */ |
Stephen Boyd | 601b6e9 | 2019-04-12 11:31:49 -0700 | [diff] [blame] | 379 | if (PTR_ERR(hw) == -ENOENT && name) |
Stephen Boyd | dde4eff | 2019-04-12 11:31:48 -0700 | [diff] [blame] | 380 | hw = clk_find_hw(dev_id, name); |
| 381 | |
| 382 | if (IS_ERR(hw)) |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 383 | return ERR_CAST(hw); |
| 384 | |
| 385 | return hw->core; |
| 386 | } |
| 387 | |
| 388 | static void clk_core_fill_parent_index(struct clk_core *core, u8 index) |
| 389 | { |
| 390 | struct clk_parent_map *entry = &core->parents[index]; |
| 391 | struct clk_core *parent = ERR_PTR(-ENOENT); |
| 392 | |
| 393 | if (entry->hw) { |
| 394 | parent = entry->hw->core; |
| 395 | /* |
| 396 | * We have a direct reference but it isn't registered yet? |
| 397 | * Orphan it and let clk_reparent() update the orphan status |
| 398 | * when the parent is registered. |
| 399 | */ |
| 400 | if (!parent) |
| 401 | parent = ERR_PTR(-EPROBE_DEFER); |
| 402 | } else { |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 403 | parent = clk_core_get(core, index); |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 404 | if (IS_ERR(parent) && PTR_ERR(parent) == -ENOENT) |
| 405 | parent = clk_core_lookup(entry->name); |
| 406 | } |
| 407 | |
| 408 | /* Only cache it if it's not an error */ |
| 409 | if (!IS_ERR(parent)) |
| 410 | entry->core = parent; |
| 411 | } |
| 412 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 413 | static struct clk_core *clk_core_get_parent_by_index(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 414 | u8 index) |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 415 | { |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 416 | if (!core || index >= core->num_parents || !core->parents) |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 417 | return NULL; |
Masahiro Yamada | 88cfbef | 2015-12-28 19:23:01 +0900 | [diff] [blame] | 418 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 419 | if (!core->parents[index].core) |
| 420 | clk_core_fill_parent_index(core, index); |
Masahiro Yamada | 88cfbef | 2015-12-28 19:23:01 +0900 | [diff] [blame] | 421 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 422 | return core->parents[index].core; |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 423 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 424 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 425 | struct clk_hw * |
| 426 | clk_hw_get_parent_by_index(const struct clk_hw *hw, unsigned int index) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 427 | { |
| 428 | struct clk_core *parent; |
| 429 | |
| 430 | parent = clk_core_get_parent_by_index(hw->core, index); |
| 431 | |
| 432 | return !parent ? NULL : parent->hw; |
| 433 | } |
| 434 | EXPORT_SYMBOL_GPL(clk_hw_get_parent_by_index); |
| 435 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 436 | unsigned int __clk_get_enable_count(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 437 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 438 | return !clk ? 0 : clk->core->enable_count; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 439 | } |
| 440 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 441 | static unsigned long clk_core_get_rate_nolock(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 442 | { |
Stephen Boyd | 73d4f94 | 2019-02-01 15:39:50 -0800 | [diff] [blame] | 443 | if (!core) |
| 444 | return 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 445 | |
Stephen Boyd | 73d4f94 | 2019-02-01 15:39:50 -0800 | [diff] [blame] | 446 | if (!core->num_parents || core->parent) |
| 447 | return core->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 448 | |
Stephen Boyd | 73d4f94 | 2019-02-01 15:39:50 -0800 | [diff] [blame] | 449 | /* |
| 450 | * Clk must have a parent because num_parents > 0 but the parent isn't |
| 451 | * known yet. Best to return 0 as the rate of this clk until we can |
| 452 | * properly recalc the rate based on the parent's rate. |
| 453 | */ |
| 454 | return 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 455 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 456 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 457 | unsigned long clk_hw_get_rate(const struct clk_hw *hw) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 458 | { |
| 459 | return clk_core_get_rate_nolock(hw->core); |
| 460 | } |
| 461 | EXPORT_SYMBOL_GPL(clk_hw_get_rate); |
| 462 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 463 | static unsigned long __clk_get_accuracy(struct clk_core *core) |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 464 | { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 465 | if (!core) |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 466 | return 0; |
| 467 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 468 | return core->accuracy; |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 469 | } |
| 470 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 471 | unsigned long __clk_get_flags(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 472 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 473 | return !clk ? 0 : clk->core->flags; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 474 | } |
Thierry Reding | b05c683 | 2013-09-03 09:43:51 +0200 | [diff] [blame] | 475 | EXPORT_SYMBOL_GPL(__clk_get_flags); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 476 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 477 | unsigned long clk_hw_get_flags(const struct clk_hw *hw) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 478 | { |
| 479 | return hw->core->flags; |
| 480 | } |
| 481 | EXPORT_SYMBOL_GPL(clk_hw_get_flags); |
| 482 | |
Stephen Boyd | e7df6f6 | 2015-08-12 13:04:56 -0700 | [diff] [blame] | 483 | bool clk_hw_is_prepared(const struct clk_hw *hw) |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 484 | { |
| 485 | return clk_core_is_prepared(hw->core); |
| 486 | } |
Jerome Brunet | 12aa377 | 2019-02-01 13:58:38 +0100 | [diff] [blame] | 487 | EXPORT_SYMBOL_GPL(clk_hw_is_prepared); |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 488 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 489 | bool clk_hw_rate_is_protected(const struct clk_hw *hw) |
| 490 | { |
| 491 | return clk_core_rate_is_protected(hw->core); |
| 492 | } |
Jerome Brunet | 12aa377 | 2019-02-01 13:58:38 +0100 | [diff] [blame] | 493 | EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected); |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 494 | |
Joachim Eastwood | be68bf8 | 2015-10-24 18:55:22 +0200 | [diff] [blame] | 495 | bool clk_hw_is_enabled(const struct clk_hw *hw) |
| 496 | { |
| 497 | return clk_core_is_enabled(hw->core); |
| 498 | } |
Jerome Brunet | 12aa377 | 2019-02-01 13:58:38 +0100 | [diff] [blame] | 499 | EXPORT_SYMBOL_GPL(clk_hw_is_enabled); |
Joachim Eastwood | be68bf8 | 2015-10-24 18:55:22 +0200 | [diff] [blame] | 500 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 501 | bool __clk_is_enabled(struct clk *clk) |
| 502 | { |
| 503 | if (!clk) |
| 504 | return false; |
| 505 | |
| 506 | return clk_core_is_enabled(clk->core); |
| 507 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 508 | EXPORT_SYMBOL_GPL(__clk_is_enabled); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 509 | |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 510 | static bool mux_is_better_rate(unsigned long rate, unsigned long now, |
| 511 | unsigned long best, unsigned long flags) |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 512 | { |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 513 | if (flags & CLK_MUX_ROUND_CLOSEST) |
| 514 | return abs(now - rate) < abs(best - rate); |
| 515 | |
| 516 | return now <= rate && now > best; |
| 517 | } |
| 518 | |
Jerome Brunet | 4ad69b80 | 2018-04-09 15:59:20 +0200 | [diff] [blame] | 519 | int clk_mux_determine_rate_flags(struct clk_hw *hw, |
| 520 | struct clk_rate_request *req, |
| 521 | unsigned long flags) |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 522 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 523 | struct clk_core *core = hw->core, *parent, *best_parent = NULL; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 524 | int i, num_parents, ret; |
| 525 | unsigned long best = 0; |
| 526 | struct clk_rate_request parent_req = *req; |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 527 | |
| 528 | /* if NO_REPARENT flag set, pass through to current parent */ |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 529 | if (core->flags & CLK_SET_RATE_NO_REPARENT) { |
| 530 | parent = core->parent; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 531 | if (core->flags & CLK_SET_RATE_PARENT) { |
| 532 | ret = __clk_determine_rate(parent ? parent->hw : NULL, |
| 533 | &parent_req); |
| 534 | if (ret) |
| 535 | return ret; |
| 536 | |
| 537 | best = parent_req.rate; |
| 538 | } else if (parent) { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 539 | best = clk_core_get_rate_nolock(parent); |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 540 | } else { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 541 | best = clk_core_get_rate_nolock(core); |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 542 | } |
| 543 | |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 544 | goto out; |
| 545 | } |
| 546 | |
| 547 | /* find the parent that can provide the fastest rate <= rate */ |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 548 | num_parents = core->num_parents; |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 549 | for (i = 0; i < num_parents; i++) { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 550 | parent = clk_core_get_parent_by_index(core, i); |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 551 | if (!parent) |
| 552 | continue; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 553 | |
| 554 | if (core->flags & CLK_SET_RATE_PARENT) { |
| 555 | parent_req = *req; |
| 556 | ret = __clk_determine_rate(parent->hw, &parent_req); |
| 557 | if (ret) |
| 558 | continue; |
| 559 | } else { |
| 560 | parent_req.rate = clk_core_get_rate_nolock(parent); |
| 561 | } |
| 562 | |
| 563 | if (mux_is_better_rate(req->rate, parent_req.rate, |
| 564 | best, flags)) { |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 565 | best_parent = parent; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 566 | best = parent_req.rate; |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 567 | } |
| 568 | } |
| 569 | |
Boris Brezillon | 57d866e | 2015-07-09 22:39:38 +0200 | [diff] [blame] | 570 | if (!best_parent) |
| 571 | return -EINVAL; |
| 572 | |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 573 | out: |
| 574 | if (best_parent) |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 575 | req->best_parent_hw = best_parent->hw; |
| 576 | req->best_parent_rate = best; |
| 577 | req->rate = best; |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 578 | |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 579 | return 0; |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 580 | } |
Jerome Brunet | 4ad69b80 | 2018-04-09 15:59:20 +0200 | [diff] [blame] | 581 | EXPORT_SYMBOL_GPL(clk_mux_determine_rate_flags); |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 582 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 583 | struct clk *__clk_lookup(const char *name) |
| 584 | { |
| 585 | struct clk_core *core = clk_core_lookup(name); |
| 586 | |
| 587 | return !core ? NULL : core->hw->clk; |
| 588 | } |
| 589 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 590 | static void clk_core_get_boundaries(struct clk_core *core, |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 591 | unsigned long *min_rate, |
| 592 | unsigned long *max_rate) |
| 593 | { |
| 594 | struct clk *clk_user; |
| 595 | |
Stephen Boyd | 9783c0d | 2015-07-16 12:50:27 -0700 | [diff] [blame] | 596 | *min_rate = core->min_rate; |
| 597 | *max_rate = core->max_rate; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 598 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 599 | hlist_for_each_entry(clk_user, &core->clks, clks_node) |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 600 | *min_rate = max(*min_rate, clk_user->min_rate); |
| 601 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 602 | hlist_for_each_entry(clk_user, &core->clks, clks_node) |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 603 | *max_rate = min(*max_rate, clk_user->max_rate); |
| 604 | } |
| 605 | |
Stephen Boyd | 9783c0d | 2015-07-16 12:50:27 -0700 | [diff] [blame] | 606 | void clk_hw_set_rate_range(struct clk_hw *hw, unsigned long min_rate, |
| 607 | unsigned long max_rate) |
| 608 | { |
| 609 | hw->core->min_rate = min_rate; |
| 610 | hw->core->max_rate = max_rate; |
| 611 | } |
| 612 | EXPORT_SYMBOL_GPL(clk_hw_set_rate_range); |
| 613 | |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 614 | /* |
Stephen Boyd | 777c1a4 | 2018-12-11 13:24:50 -0800 | [diff] [blame] | 615 | * __clk_mux_determine_rate - clk_ops::determine_rate implementation for a mux type clk |
| 616 | * @hw: mux type clk to determine rate on |
| 617 | * @req: rate request, also used to return preferred parent and frequencies |
| 618 | * |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 619 | * Helper for finding best parent to provide a given frequency. This can be used |
| 620 | * directly as a determine_rate callback (e.g. for a mux), or from a more |
| 621 | * complex clock that may combine a mux with other operations. |
Stephen Boyd | 777c1a4 | 2018-12-11 13:24:50 -0800 | [diff] [blame] | 622 | * |
| 623 | * Returns: 0 on success, -EERROR value on error |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 624 | */ |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 625 | int __clk_mux_determine_rate(struct clk_hw *hw, |
| 626 | struct clk_rate_request *req) |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 627 | { |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 628 | return clk_mux_determine_rate_flags(hw, req, 0); |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 629 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 630 | EXPORT_SYMBOL_GPL(__clk_mux_determine_rate); |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 631 | |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 632 | int __clk_mux_determine_rate_closest(struct clk_hw *hw, |
| 633 | struct clk_rate_request *req) |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 634 | { |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 635 | return clk_mux_determine_rate_flags(hw, req, CLK_MUX_ROUND_CLOSEST); |
Stephen Boyd | 15a02c1 | 2015-01-19 18:05:28 -0800 | [diff] [blame] | 636 | } |
| 637 | EXPORT_SYMBOL_GPL(__clk_mux_determine_rate_closest); |
| 638 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 639 | /*** clk api ***/ |
| 640 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 641 | static void clk_core_rate_unprotect(struct clk_core *core) |
| 642 | { |
| 643 | lockdep_assert_held(&prepare_lock); |
| 644 | |
| 645 | if (!core) |
| 646 | return; |
| 647 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 648 | if (WARN(core->protect_count == 0, |
| 649 | "%s already unprotected\n", core->name)) |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 650 | return; |
| 651 | |
| 652 | if (--core->protect_count > 0) |
| 653 | return; |
| 654 | |
| 655 | clk_core_rate_unprotect(core->parent); |
| 656 | } |
| 657 | |
| 658 | static int clk_core_rate_nuke_protect(struct clk_core *core) |
| 659 | { |
| 660 | int ret; |
| 661 | |
| 662 | lockdep_assert_held(&prepare_lock); |
| 663 | |
| 664 | if (!core) |
| 665 | return -EINVAL; |
| 666 | |
| 667 | if (core->protect_count == 0) |
| 668 | return 0; |
| 669 | |
| 670 | ret = core->protect_count; |
| 671 | core->protect_count = 1; |
| 672 | clk_core_rate_unprotect(core); |
| 673 | |
| 674 | return ret; |
| 675 | } |
| 676 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 677 | /** |
| 678 | * clk_rate_exclusive_put - release exclusivity over clock rate control |
| 679 | * @clk: the clk over which the exclusivity is released |
| 680 | * |
| 681 | * clk_rate_exclusive_put() completes a critical section during which a clock |
| 682 | * consumer cannot tolerate any other consumer making any operation on the |
| 683 | * clock which could result in a rate change or rate glitch. Exclusive clocks |
| 684 | * cannot have their rate changed, either directly or indirectly due to changes |
| 685 | * further up the parent chain of clocks. As a result, clocks up parent chain |
| 686 | * also get under exclusive control of the calling consumer. |
| 687 | * |
| 688 | * If exlusivity is claimed more than once on clock, even by the same consumer, |
| 689 | * the rate effectively gets locked as exclusivity can't be preempted. |
| 690 | * |
| 691 | * Calls to clk_rate_exclusive_put() must be balanced with calls to |
| 692 | * clk_rate_exclusive_get(). Calls to this function may sleep, and do not return |
| 693 | * error status. |
| 694 | */ |
| 695 | void clk_rate_exclusive_put(struct clk *clk) |
| 696 | { |
| 697 | if (!clk) |
| 698 | return; |
| 699 | |
| 700 | clk_prepare_lock(); |
| 701 | |
| 702 | /* |
| 703 | * if there is something wrong with this consumer protect count, stop |
| 704 | * here before messing with the provider |
| 705 | */ |
| 706 | if (WARN_ON(clk->exclusive_count <= 0)) |
| 707 | goto out; |
| 708 | |
| 709 | clk_core_rate_unprotect(clk->core); |
| 710 | clk->exclusive_count--; |
| 711 | out: |
| 712 | clk_prepare_unlock(); |
| 713 | } |
| 714 | EXPORT_SYMBOL_GPL(clk_rate_exclusive_put); |
| 715 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 716 | static void clk_core_rate_protect(struct clk_core *core) |
| 717 | { |
| 718 | lockdep_assert_held(&prepare_lock); |
| 719 | |
| 720 | if (!core) |
| 721 | return; |
| 722 | |
| 723 | if (core->protect_count == 0) |
| 724 | clk_core_rate_protect(core->parent); |
| 725 | |
| 726 | core->protect_count++; |
| 727 | } |
| 728 | |
| 729 | static void clk_core_rate_restore_protect(struct clk_core *core, int count) |
| 730 | { |
| 731 | lockdep_assert_held(&prepare_lock); |
| 732 | |
| 733 | if (!core) |
| 734 | return; |
| 735 | |
| 736 | if (count == 0) |
| 737 | return; |
| 738 | |
| 739 | clk_core_rate_protect(core); |
| 740 | core->protect_count = count; |
| 741 | } |
| 742 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 743 | /** |
| 744 | * clk_rate_exclusive_get - get exclusivity over the clk rate control |
| 745 | * @clk: the clk over which the exclusity of rate control is requested |
| 746 | * |
| 747 | * clk_rate_exlusive_get() begins a critical section during which a clock |
| 748 | * consumer cannot tolerate any other consumer making any operation on the |
| 749 | * clock which could result in a rate change or rate glitch. Exclusive clocks |
| 750 | * cannot have their rate changed, either directly or indirectly due to changes |
| 751 | * further up the parent chain of clocks. As a result, clocks up parent chain |
| 752 | * also get under exclusive control of the calling consumer. |
| 753 | * |
| 754 | * If exlusivity is claimed more than once on clock, even by the same consumer, |
| 755 | * the rate effectively gets locked as exclusivity can't be preempted. |
| 756 | * |
| 757 | * Calls to clk_rate_exclusive_get() should be balanced with calls to |
| 758 | * clk_rate_exclusive_put(). Calls to this function may sleep. |
| 759 | * Returns 0 on success, -EERROR otherwise |
| 760 | */ |
| 761 | int clk_rate_exclusive_get(struct clk *clk) |
| 762 | { |
| 763 | if (!clk) |
| 764 | return 0; |
| 765 | |
| 766 | clk_prepare_lock(); |
| 767 | clk_core_rate_protect(clk->core); |
| 768 | clk->exclusive_count++; |
| 769 | clk_prepare_unlock(); |
| 770 | |
| 771 | return 0; |
| 772 | } |
| 773 | EXPORT_SYMBOL_GPL(clk_rate_exclusive_get); |
| 774 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 775 | static void clk_core_unprepare(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 776 | { |
Stephen Boyd | a633472 | 2015-05-06 17:00:54 -0700 | [diff] [blame] | 777 | lockdep_assert_held(&prepare_lock); |
| 778 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 779 | if (!core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 780 | return; |
| 781 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 782 | if (WARN(core->prepare_count == 0, |
| 783 | "%s already unprepared\n", core->name)) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 784 | return; |
| 785 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 786 | if (WARN(core->prepare_count == 1 && core->flags & CLK_IS_CRITICAL, |
| 787 | "Unpreparing critical %s\n", core->name)) |
Lee Jones | 2e20fbf | 2016-02-11 13:19:10 -0800 | [diff] [blame] | 788 | return; |
| 789 | |
Jerome Brunet | 9461f7b | 2018-06-19 15:40:51 +0200 | [diff] [blame] | 790 | if (core->flags & CLK_SET_RATE_GATE) |
| 791 | clk_core_rate_unprotect(core); |
| 792 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 793 | if (--core->prepare_count > 0) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 794 | return; |
| 795 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 796 | WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 797 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 798 | trace_clk_unprepare(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 799 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 800 | if (core->ops->unprepare) |
| 801 | core->ops->unprepare(core->hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 802 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 803 | clk_pm_runtime_put(core); |
| 804 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 805 | trace_clk_unprepare_complete(core); |
| 806 | clk_core_unprepare(core->parent); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 807 | } |
| 808 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 809 | static void clk_core_unprepare_lock(struct clk_core *core) |
| 810 | { |
| 811 | clk_prepare_lock(); |
| 812 | clk_core_unprepare(core); |
| 813 | clk_prepare_unlock(); |
| 814 | } |
| 815 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 816 | /** |
| 817 | * clk_unprepare - undo preparation of a clock source |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 818 | * @clk: the clk being unprepared |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 819 | * |
| 820 | * clk_unprepare may sleep, which differentiates it from clk_disable. In a |
| 821 | * simple case, clk_unprepare can be used instead of clk_disable to gate a clk |
| 822 | * if the operation may sleep. One example is a clk which is accessed over |
| 823 | * I2c. In the complex case a clk gate operation may require a fast and a slow |
| 824 | * part. It is this reason that clk_unprepare and clk_disable are not mutually |
| 825 | * exclusive. In fact clk_disable must be called before clk_unprepare. |
| 826 | */ |
| 827 | void clk_unprepare(struct clk *clk) |
| 828 | { |
Stephen Boyd | 63589e9 | 2014-03-26 16:06:37 -0700 | [diff] [blame] | 829 | if (IS_ERR_OR_NULL(clk)) |
| 830 | return; |
| 831 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 832 | clk_core_unprepare_lock(clk->core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 833 | } |
| 834 | EXPORT_SYMBOL_GPL(clk_unprepare); |
| 835 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 836 | static int clk_core_prepare(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 837 | { |
| 838 | int ret = 0; |
| 839 | |
Stephen Boyd | a633472 | 2015-05-06 17:00:54 -0700 | [diff] [blame] | 840 | lockdep_assert_held(&prepare_lock); |
| 841 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 842 | if (!core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 843 | return 0; |
| 844 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 845 | if (core->prepare_count == 0) { |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 846 | ret = clk_pm_runtime_get(core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 847 | if (ret) |
| 848 | return ret; |
| 849 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 850 | ret = clk_core_prepare(core->parent); |
| 851 | if (ret) |
| 852 | goto runtime_put; |
| 853 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 854 | trace_clk_prepare(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 855 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 856 | if (core->ops->prepare) |
| 857 | ret = core->ops->prepare(core->hw); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 858 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 859 | trace_clk_prepare_complete(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 860 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 861 | if (ret) |
| 862 | goto unprepare; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 863 | } |
| 864 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 865 | core->prepare_count++; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 866 | |
Jerome Brunet | 9461f7b | 2018-06-19 15:40:51 +0200 | [diff] [blame] | 867 | /* |
| 868 | * CLK_SET_RATE_GATE is a special case of clock protection |
| 869 | * Instead of a consumer claiming exclusive rate control, it is |
| 870 | * actually the provider which prevents any consumer from making any |
| 871 | * operation which could result in a rate change or rate glitch while |
| 872 | * the clock is prepared. |
| 873 | */ |
| 874 | if (core->flags & CLK_SET_RATE_GATE) |
| 875 | clk_core_rate_protect(core); |
| 876 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 877 | return 0; |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 878 | unprepare: |
| 879 | clk_core_unprepare(core->parent); |
| 880 | runtime_put: |
| 881 | clk_pm_runtime_put(core); |
| 882 | return ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 883 | } |
| 884 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 885 | static int clk_core_prepare_lock(struct clk_core *core) |
| 886 | { |
| 887 | int ret; |
| 888 | |
| 889 | clk_prepare_lock(); |
| 890 | ret = clk_core_prepare(core); |
| 891 | clk_prepare_unlock(); |
| 892 | |
| 893 | return ret; |
| 894 | } |
| 895 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 896 | /** |
| 897 | * clk_prepare - prepare a clock source |
| 898 | * @clk: the clk being prepared |
| 899 | * |
| 900 | * clk_prepare may sleep, which differentiates it from clk_enable. In a simple |
| 901 | * case, clk_prepare can be used instead of clk_enable to ungate a clk if the |
| 902 | * operation may sleep. One example is a clk which is accessed over I2c. In |
| 903 | * the complex case a clk ungate operation may require a fast and a slow part. |
| 904 | * It is this reason that clk_prepare and clk_enable are not mutually |
| 905 | * exclusive. In fact clk_prepare must be called before clk_enable. |
| 906 | * Returns 0 on success, -EERROR otherwise. |
| 907 | */ |
| 908 | int clk_prepare(struct clk *clk) |
| 909 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 910 | if (!clk) |
| 911 | return 0; |
| 912 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 913 | return clk_core_prepare_lock(clk->core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 914 | } |
| 915 | EXPORT_SYMBOL_GPL(clk_prepare); |
| 916 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 917 | static void clk_core_disable(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 918 | { |
Stephen Boyd | a633472 | 2015-05-06 17:00:54 -0700 | [diff] [blame] | 919 | lockdep_assert_held(&enable_lock); |
| 920 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 921 | if (!core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 922 | return; |
| 923 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 924 | if (WARN(core->enable_count == 0, "%s already disabled\n", core->name)) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 925 | return; |
| 926 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 927 | if (WARN(core->enable_count == 1 && core->flags & CLK_IS_CRITICAL, |
| 928 | "Disabling critical %s\n", core->name)) |
Lee Jones | 2e20fbf | 2016-02-11 13:19:10 -0800 | [diff] [blame] | 929 | return; |
| 930 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 931 | if (--core->enable_count > 0) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 932 | return; |
| 933 | |
Paul E. McKenney | 2f87a6e | 2016-04-26 12:43:57 -0700 | [diff] [blame] | 934 | trace_clk_disable_rcuidle(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 935 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 936 | if (core->ops->disable) |
| 937 | core->ops->disable(core->hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 938 | |
Paul E. McKenney | 2f87a6e | 2016-04-26 12:43:57 -0700 | [diff] [blame] | 939 | trace_clk_disable_complete_rcuidle(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 940 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 941 | clk_core_disable(core->parent); |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 942 | } |
| 943 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 944 | static void clk_core_disable_lock(struct clk_core *core) |
| 945 | { |
| 946 | unsigned long flags; |
| 947 | |
| 948 | flags = clk_enable_lock(); |
| 949 | clk_core_disable(core); |
| 950 | clk_enable_unlock(flags); |
| 951 | } |
| 952 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 953 | /** |
| 954 | * clk_disable - gate a clock |
| 955 | * @clk: the clk being gated |
| 956 | * |
| 957 | * clk_disable must not sleep, which differentiates it from clk_unprepare. In |
| 958 | * a simple case, clk_disable can be used instead of clk_unprepare to gate a |
| 959 | * clk if the operation is fast and will never sleep. One example is a |
| 960 | * SoC-internal clk which is controlled via simple register writes. In the |
| 961 | * complex case a clk gate operation may require a fast and a slow part. It is |
| 962 | * this reason that clk_unprepare and clk_disable are not mutually exclusive. |
| 963 | * In fact clk_disable must be called before clk_unprepare. |
| 964 | */ |
| 965 | void clk_disable(struct clk *clk) |
| 966 | { |
Stephen Boyd | 63589e9 | 2014-03-26 16:06:37 -0700 | [diff] [blame] | 967 | if (IS_ERR_OR_NULL(clk)) |
| 968 | return; |
| 969 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 970 | clk_core_disable_lock(clk->core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 971 | } |
| 972 | EXPORT_SYMBOL_GPL(clk_disable); |
| 973 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 974 | static int clk_core_enable(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 975 | { |
| 976 | int ret = 0; |
| 977 | |
Stephen Boyd | a633472 | 2015-05-06 17:00:54 -0700 | [diff] [blame] | 978 | lockdep_assert_held(&enable_lock); |
| 979 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 980 | if (!core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 981 | return 0; |
| 982 | |
Fabio Estevam | ab525dc | 2018-01-16 10:50:34 -0200 | [diff] [blame] | 983 | if (WARN(core->prepare_count == 0, |
| 984 | "Enabling unprepared %s\n", core->name)) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 985 | return -ESHUTDOWN; |
| 986 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 987 | if (core->enable_count == 0) { |
| 988 | ret = clk_core_enable(core->parent); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 989 | |
| 990 | if (ret) |
| 991 | return ret; |
| 992 | |
Paul E. McKenney | f17a0dd | 2016-04-26 14:02:23 -0700 | [diff] [blame] | 993 | trace_clk_enable_rcuidle(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 994 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 995 | if (core->ops->enable) |
| 996 | ret = core->ops->enable(core->hw); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 997 | |
Paul E. McKenney | f17a0dd | 2016-04-26 14:02:23 -0700 | [diff] [blame] | 998 | trace_clk_enable_complete_rcuidle(core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 999 | |
| 1000 | if (ret) { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1001 | clk_core_disable(core->parent); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 1002 | return ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1003 | } |
| 1004 | } |
| 1005 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1006 | core->enable_count++; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1007 | return 0; |
| 1008 | } |
| 1009 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 1010 | static int clk_core_enable_lock(struct clk_core *core) |
| 1011 | { |
| 1012 | unsigned long flags; |
| 1013 | int ret; |
| 1014 | |
| 1015 | flags = clk_enable_lock(); |
| 1016 | ret = clk_core_enable(core); |
| 1017 | clk_enable_unlock(flags); |
| 1018 | |
| 1019 | return ret; |
| 1020 | } |
| 1021 | |
Keerthy | 4353654 | 2018-09-04 12:19:36 +0530 | [diff] [blame] | 1022 | /** |
| 1023 | * clk_gate_restore_context - restore context for poweroff |
| 1024 | * @hw: the clk_hw pointer of clock whose state is to be restored |
| 1025 | * |
| 1026 | * The clock gate restore context function enables or disables |
| 1027 | * the gate clocks based on the enable_count. This is done in cases |
| 1028 | * where the clock context is lost and based on the enable_count |
| 1029 | * the clock either needs to be enabled/disabled. This |
| 1030 | * helps restore the state of gate clocks. |
| 1031 | */ |
| 1032 | void clk_gate_restore_context(struct clk_hw *hw) |
| 1033 | { |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1034 | struct clk_core *core = hw->core; |
| 1035 | |
| 1036 | if (core->enable_count) |
| 1037 | core->ops->enable(hw); |
Keerthy | 4353654 | 2018-09-04 12:19:36 +0530 | [diff] [blame] | 1038 | else |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1039 | core->ops->disable(hw); |
Keerthy | 4353654 | 2018-09-04 12:19:36 +0530 | [diff] [blame] | 1040 | } |
| 1041 | EXPORT_SYMBOL_GPL(clk_gate_restore_context); |
| 1042 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1043 | static int clk_core_save_context(struct clk_core *core) |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1044 | { |
| 1045 | struct clk_core *child; |
| 1046 | int ret = 0; |
| 1047 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1048 | hlist_for_each_entry(child, &core->children, child_node) { |
| 1049 | ret = clk_core_save_context(child); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1050 | if (ret < 0) |
| 1051 | return ret; |
| 1052 | } |
| 1053 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1054 | if (core->ops && core->ops->save_context) |
| 1055 | ret = core->ops->save_context(core->hw); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1056 | |
| 1057 | return ret; |
| 1058 | } |
| 1059 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1060 | static void clk_core_restore_context(struct clk_core *core) |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1061 | { |
| 1062 | struct clk_core *child; |
| 1063 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1064 | if (core->ops && core->ops->restore_context) |
| 1065 | core->ops->restore_context(core->hw); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1066 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1067 | hlist_for_each_entry(child, &core->children, child_node) |
| 1068 | clk_core_restore_context(child); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1069 | } |
| 1070 | |
| 1071 | /** |
| 1072 | * clk_save_context - save clock context for poweroff |
| 1073 | * |
| 1074 | * Saves the context of the clock register for powerstates in which the |
| 1075 | * contents of the registers will be lost. Occurs deep within the suspend |
| 1076 | * code. Returns 0 on success. |
| 1077 | */ |
| 1078 | int clk_save_context(void) |
| 1079 | { |
| 1080 | struct clk_core *clk; |
| 1081 | int ret; |
| 1082 | |
| 1083 | hlist_for_each_entry(clk, &clk_root_list, child_node) { |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1084 | ret = clk_core_save_context(clk); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1085 | if (ret < 0) |
| 1086 | return ret; |
| 1087 | } |
| 1088 | |
| 1089 | hlist_for_each_entry(clk, &clk_orphan_list, child_node) { |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1090 | ret = clk_core_save_context(clk); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1091 | if (ret < 0) |
| 1092 | return ret; |
| 1093 | } |
| 1094 | |
| 1095 | return 0; |
| 1096 | } |
| 1097 | EXPORT_SYMBOL_GPL(clk_save_context); |
| 1098 | |
| 1099 | /** |
| 1100 | * clk_restore_context - restore clock context after poweroff |
| 1101 | * |
| 1102 | * Restore the saved clock context upon resume. |
| 1103 | * |
| 1104 | */ |
| 1105 | void clk_restore_context(void) |
| 1106 | { |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1107 | struct clk_core *core; |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1108 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1109 | hlist_for_each_entry(core, &clk_root_list, child_node) |
| 1110 | clk_core_restore_context(core); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1111 | |
Stephen Boyd | 9be7662 | 2018-10-11 09:28:13 -0700 | [diff] [blame] | 1112 | hlist_for_each_entry(core, &clk_orphan_list, child_node) |
| 1113 | clk_core_restore_context(core); |
Russ Dill | 8b95d1c | 2018-09-04 12:19:35 +0530 | [diff] [blame] | 1114 | } |
| 1115 | EXPORT_SYMBOL_GPL(clk_restore_context); |
| 1116 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1117 | /** |
| 1118 | * clk_enable - ungate a clock |
| 1119 | * @clk: the clk being ungated |
| 1120 | * |
| 1121 | * clk_enable must not sleep, which differentiates it from clk_prepare. In a |
| 1122 | * simple case, clk_enable can be used instead of clk_prepare to ungate a clk |
| 1123 | * if the operation will never sleep. One example is a SoC-internal clk which |
| 1124 | * is controlled via simple register writes. In the complex case a clk ungate |
| 1125 | * operation may require a fast and a slow part. It is this reason that |
| 1126 | * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare |
| 1127 | * must be called before clk_enable. Returns 0 on success, -EERROR |
| 1128 | * otherwise. |
| 1129 | */ |
| 1130 | int clk_enable(struct clk *clk) |
| 1131 | { |
Dong Aisheng | 864e160 | 2015-04-30 14:02:19 -0700 | [diff] [blame] | 1132 | if (!clk) |
| 1133 | return 0; |
| 1134 | |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 1135 | return clk_core_enable_lock(clk->core); |
| 1136 | } |
| 1137 | EXPORT_SYMBOL_GPL(clk_enable); |
| 1138 | |
| 1139 | static int clk_core_prepare_enable(struct clk_core *core) |
| 1140 | { |
| 1141 | int ret; |
| 1142 | |
| 1143 | ret = clk_core_prepare_lock(core); |
| 1144 | if (ret) |
| 1145 | return ret; |
| 1146 | |
| 1147 | ret = clk_core_enable_lock(core); |
| 1148 | if (ret) |
| 1149 | clk_core_unprepare_lock(core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1150 | |
| 1151 | return ret; |
| 1152 | } |
Dong Aisheng | a6adc30 | 2016-06-30 17:31:11 +0800 | [diff] [blame] | 1153 | |
| 1154 | static void clk_core_disable_unprepare(struct clk_core *core) |
| 1155 | { |
| 1156 | clk_core_disable_lock(core); |
| 1157 | clk_core_unprepare_lock(core); |
| 1158 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1159 | |
Dong Aisheng | 7ec986e | 2016-06-30 17:31:12 +0800 | [diff] [blame] | 1160 | static void clk_unprepare_unused_subtree(struct clk_core *core) |
| 1161 | { |
| 1162 | struct clk_core *child; |
| 1163 | |
| 1164 | lockdep_assert_held(&prepare_lock); |
| 1165 | |
| 1166 | hlist_for_each_entry(child, &core->children, child_node) |
| 1167 | clk_unprepare_unused_subtree(child); |
| 1168 | |
| 1169 | if (core->prepare_count) |
| 1170 | return; |
| 1171 | |
| 1172 | if (core->flags & CLK_IGNORE_UNUSED) |
| 1173 | return; |
| 1174 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 1175 | if (clk_pm_runtime_get(core)) |
| 1176 | return; |
| 1177 | |
Dong Aisheng | 7ec986e | 2016-06-30 17:31:12 +0800 | [diff] [blame] | 1178 | if (clk_core_is_prepared(core)) { |
| 1179 | trace_clk_unprepare(core); |
| 1180 | if (core->ops->unprepare_unused) |
| 1181 | core->ops->unprepare_unused(core->hw); |
| 1182 | else if (core->ops->unprepare) |
| 1183 | core->ops->unprepare(core->hw); |
| 1184 | trace_clk_unprepare_complete(core); |
| 1185 | } |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 1186 | |
| 1187 | clk_pm_runtime_put(core); |
Dong Aisheng | 7ec986e | 2016-06-30 17:31:12 +0800 | [diff] [blame] | 1188 | } |
| 1189 | |
| 1190 | static void clk_disable_unused_subtree(struct clk_core *core) |
| 1191 | { |
| 1192 | struct clk_core *child; |
| 1193 | unsigned long flags; |
| 1194 | |
| 1195 | lockdep_assert_held(&prepare_lock); |
| 1196 | |
| 1197 | hlist_for_each_entry(child, &core->children, child_node) |
| 1198 | clk_disable_unused_subtree(child); |
| 1199 | |
Dong Aisheng | a4b3518 | 2016-06-30 17:31:13 +0800 | [diff] [blame] | 1200 | if (core->flags & CLK_OPS_PARENT_ENABLE) |
| 1201 | clk_core_prepare_enable(core->parent); |
| 1202 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 1203 | if (clk_pm_runtime_get(core)) |
| 1204 | goto unprepare_out; |
| 1205 | |
Dong Aisheng | 7ec986e | 2016-06-30 17:31:12 +0800 | [diff] [blame] | 1206 | flags = clk_enable_lock(); |
| 1207 | |
| 1208 | if (core->enable_count) |
| 1209 | goto unlock_out; |
| 1210 | |
| 1211 | if (core->flags & CLK_IGNORE_UNUSED) |
| 1212 | goto unlock_out; |
| 1213 | |
| 1214 | /* |
| 1215 | * some gate clocks have special needs during the disable-unused |
| 1216 | * sequence. call .disable_unused if available, otherwise fall |
| 1217 | * back to .disable |
| 1218 | */ |
| 1219 | if (clk_core_is_enabled(core)) { |
| 1220 | trace_clk_disable(core); |
| 1221 | if (core->ops->disable_unused) |
| 1222 | core->ops->disable_unused(core->hw); |
| 1223 | else if (core->ops->disable) |
| 1224 | core->ops->disable(core->hw); |
| 1225 | trace_clk_disable_complete(core); |
| 1226 | } |
| 1227 | |
| 1228 | unlock_out: |
| 1229 | clk_enable_unlock(flags); |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 1230 | clk_pm_runtime_put(core); |
| 1231 | unprepare_out: |
Dong Aisheng | a4b3518 | 2016-06-30 17:31:13 +0800 | [diff] [blame] | 1232 | if (core->flags & CLK_OPS_PARENT_ENABLE) |
| 1233 | clk_core_disable_unprepare(core->parent); |
Dong Aisheng | 7ec986e | 2016-06-30 17:31:12 +0800 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | static bool clk_ignore_unused; |
| 1237 | static int __init clk_ignore_unused_setup(char *__unused) |
| 1238 | { |
| 1239 | clk_ignore_unused = true; |
| 1240 | return 1; |
| 1241 | } |
| 1242 | __setup("clk_ignore_unused", clk_ignore_unused_setup); |
| 1243 | |
| 1244 | static int clk_disable_unused(void) |
| 1245 | { |
| 1246 | struct clk_core *core; |
| 1247 | |
| 1248 | if (clk_ignore_unused) { |
| 1249 | pr_warn("clk: Not disabling unused clocks\n"); |
| 1250 | return 0; |
| 1251 | } |
| 1252 | |
| 1253 | clk_prepare_lock(); |
| 1254 | |
| 1255 | hlist_for_each_entry(core, &clk_root_list, child_node) |
| 1256 | clk_disable_unused_subtree(core); |
| 1257 | |
| 1258 | hlist_for_each_entry(core, &clk_orphan_list, child_node) |
| 1259 | clk_disable_unused_subtree(core); |
| 1260 | |
| 1261 | hlist_for_each_entry(core, &clk_root_list, child_node) |
| 1262 | clk_unprepare_unused_subtree(core); |
| 1263 | |
| 1264 | hlist_for_each_entry(core, &clk_orphan_list, child_node) |
| 1265 | clk_unprepare_unused_subtree(core); |
| 1266 | |
| 1267 | clk_prepare_unlock(); |
| 1268 | |
| 1269 | return 0; |
| 1270 | } |
| 1271 | late_initcall_sync(clk_disable_unused); |
| 1272 | |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1273 | static int clk_core_determine_round_nolock(struct clk_core *core, |
| 1274 | struct clk_rate_request *req) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1275 | { |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1276 | long rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1277 | |
Krzysztof Kozlowski | 496eadf | 2015-01-09 09:28:10 +0100 | [diff] [blame] | 1278 | lockdep_assert_held(&prepare_lock); |
| 1279 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1280 | if (!core) |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 1281 | return 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1282 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 1283 | /* |
| 1284 | * At this point, core protection will be disabled if |
| 1285 | * - if the provider is not protected at all |
| 1286 | * - if the calling consumer is the only one which has exclusivity |
| 1287 | * over the provider |
| 1288 | */ |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 1289 | if (clk_core_rate_is_protected(core)) { |
| 1290 | req->rate = core->rate; |
| 1291 | } else if (core->ops->determine_rate) { |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1292 | return core->ops->determine_rate(core->hw, req); |
| 1293 | } else if (core->ops->round_rate) { |
| 1294 | rate = core->ops->round_rate(core->hw, req->rate, |
| 1295 | &req->best_parent_rate); |
| 1296 | if (rate < 0) |
| 1297 | return rate; |
| 1298 | |
| 1299 | req->rate = rate; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1300 | } else { |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1301 | return -EINVAL; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1302 | } |
| 1303 | |
| 1304 | return 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1305 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1306 | |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1307 | static void clk_core_init_rate_req(struct clk_core * const core, |
| 1308 | struct clk_rate_request *req) |
| 1309 | { |
| 1310 | struct clk_core *parent; |
| 1311 | |
| 1312 | if (WARN_ON(!core || !req)) |
| 1313 | return; |
| 1314 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1315 | parent = core->parent; |
| 1316 | if (parent) { |
| 1317 | req->best_parent_hw = parent->hw; |
| 1318 | req->best_parent_rate = parent->rate; |
| 1319 | } else { |
| 1320 | req->best_parent_hw = NULL; |
| 1321 | req->best_parent_rate = 0; |
| 1322 | } |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1323 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1324 | |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1325 | static bool clk_core_can_round(struct clk_core * const core) |
| 1326 | { |
Geert Uytterhoeven | eef1f1b | 2019-06-17 14:02:48 +0200 | [diff] [blame] | 1327 | return core->ops->determine_rate || core->ops->round_rate; |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1328 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1329 | |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1330 | static int clk_core_round_rate_nolock(struct clk_core *core, |
| 1331 | struct clk_rate_request *req) |
| 1332 | { |
| 1333 | lockdep_assert_held(&prepare_lock); |
| 1334 | |
Jerome Brunet | 04bf9ab | 2018-02-14 14:43:35 +0100 | [diff] [blame] | 1335 | if (!core) { |
| 1336 | req->rate = 0; |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1337 | return 0; |
Jerome Brunet | 04bf9ab | 2018-02-14 14:43:35 +0100 | [diff] [blame] | 1338 | } |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1339 | |
| 1340 | clk_core_init_rate_req(core, req); |
| 1341 | |
| 1342 | if (clk_core_can_round(core)) |
| 1343 | return clk_core_determine_round_nolock(core, req); |
| 1344 | else if (core->flags & CLK_SET_RATE_PARENT) |
| 1345 | return clk_core_round_rate_nolock(core->parent, req); |
| 1346 | |
| 1347 | req->rate = core->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1348 | return 0; |
| 1349 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1350 | |
| 1351 | /** |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1352 | * __clk_determine_rate - get the closest rate actually supported by a clock |
| 1353 | * @hw: determine the rate of this clock |
Peng Fan | 2d5b520 | 2016-06-13 19:34:21 +0800 | [diff] [blame] | 1354 | * @req: target rate request |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1355 | * |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 1356 | * Useful for clk_ops such as .set_rate and .determine_rate. |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1357 | */ |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1358 | int __clk_determine_rate(struct clk_hw *hw, struct clk_rate_request *req) |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1359 | { |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1360 | if (!hw) { |
| 1361 | req->rate = 0; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1362 | return 0; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1363 | } |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1364 | |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1365 | return clk_core_round_rate_nolock(hw->core, req); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1366 | } |
| 1367 | EXPORT_SYMBOL_GPL(__clk_determine_rate); |
| 1368 | |
Stephen Boyd | 1a9c069 | 2015-06-25 15:55:14 -0700 | [diff] [blame] | 1369 | unsigned long clk_hw_round_rate(struct clk_hw *hw, unsigned long rate) |
| 1370 | { |
| 1371 | int ret; |
| 1372 | struct clk_rate_request req; |
| 1373 | |
| 1374 | clk_core_get_boundaries(hw->core, &req.min_rate, &req.max_rate); |
| 1375 | req.rate = rate; |
| 1376 | |
| 1377 | ret = clk_core_round_rate_nolock(hw->core, &req); |
| 1378 | if (ret) |
| 1379 | return 0; |
| 1380 | |
| 1381 | return req.rate; |
| 1382 | } |
| 1383 | EXPORT_SYMBOL_GPL(clk_hw_round_rate); |
| 1384 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1385 | /** |
| 1386 | * clk_round_rate - round the given rate for a clk |
| 1387 | * @clk: the clk for which we are rounding a rate |
| 1388 | * @rate: the rate which is to be rounded |
| 1389 | * |
| 1390 | * Takes in a rate as input and rounds it to a rate that the clk can actually |
| 1391 | * use which is then returned. If clk doesn't support round_rate operation |
| 1392 | * then the parent rate is returned. |
| 1393 | */ |
| 1394 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 1395 | { |
Stephen Boyd | fc4a05d | 2015-06-25 17:24:15 -0700 | [diff] [blame] | 1396 | struct clk_rate_request req; |
| 1397 | int ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1398 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1399 | if (!clk) |
| 1400 | return 0; |
| 1401 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1402 | clk_prepare_lock(); |
Stephen Boyd | fc4a05d | 2015-06-25 17:24:15 -0700 | [diff] [blame] | 1403 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 1404 | if (clk->exclusive_count) |
| 1405 | clk_core_rate_unprotect(clk->core); |
| 1406 | |
Stephen Boyd | fc4a05d | 2015-06-25 17:24:15 -0700 | [diff] [blame] | 1407 | clk_core_get_boundaries(clk->core, &req.min_rate, &req.max_rate); |
| 1408 | req.rate = rate; |
| 1409 | |
| 1410 | ret = clk_core_round_rate_nolock(clk->core, &req); |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 1411 | |
| 1412 | if (clk->exclusive_count) |
| 1413 | clk_core_rate_protect(clk->core); |
| 1414 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1415 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1416 | |
Stephen Boyd | fc4a05d | 2015-06-25 17:24:15 -0700 | [diff] [blame] | 1417 | if (ret) |
| 1418 | return ret; |
| 1419 | |
| 1420 | return req.rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1421 | } |
| 1422 | EXPORT_SYMBOL_GPL(clk_round_rate); |
| 1423 | |
| 1424 | /** |
| 1425 | * __clk_notify - call clk notifier chain |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1426 | * @core: clk that is changing rate |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1427 | * @msg: clk notifier type (see include/linux/clk.h) |
| 1428 | * @old_rate: old clk rate |
| 1429 | * @new_rate: new clk rate |
| 1430 | * |
| 1431 | * Triggers a notifier call chain on the clk rate-change notification |
| 1432 | * for 'clk'. Passes a pointer to the struct clk and the previous |
| 1433 | * and current rates to the notifier callback. Intended to be called by |
| 1434 | * internal clock code only. Returns NOTIFY_DONE from the last driver |
| 1435 | * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if |
| 1436 | * a driver returns that. |
| 1437 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1438 | static int __clk_notify(struct clk_core *core, unsigned long msg, |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1439 | unsigned long old_rate, unsigned long new_rate) |
| 1440 | { |
| 1441 | struct clk_notifier *cn; |
| 1442 | struct clk_notifier_data cnd; |
| 1443 | int ret = NOTIFY_DONE; |
| 1444 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1445 | cnd.old_rate = old_rate; |
| 1446 | cnd.new_rate = new_rate; |
| 1447 | |
| 1448 | list_for_each_entry(cn, &clk_notifier_list, node) { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1449 | if (cn->clk->core == core) { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1450 | cnd.clk = cn->clk; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1451 | ret = srcu_notifier_call_chain(&cn->notifier_head, msg, |
| 1452 | &cnd); |
Peter De Schrijver | 17c34c5 | 2017-03-21 12:16:26 +0200 | [diff] [blame] | 1453 | if (ret & NOTIFY_STOP_MASK) |
| 1454 | return ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1455 | } |
| 1456 | } |
| 1457 | |
| 1458 | return ret; |
| 1459 | } |
| 1460 | |
| 1461 | /** |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1462 | * __clk_recalc_accuracies |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1463 | * @core: first clk in the subtree |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1464 | * |
| 1465 | * Walks the subtree of clks starting with clk and recalculates accuracies as |
| 1466 | * it goes. Note that if a clk does not implement the .recalc_accuracy |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 1467 | * callback then it is assumed that the clock will take on the accuracy of its |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1468 | * parent. |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1469 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1470 | static void __clk_recalc_accuracies(struct clk_core *core) |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1471 | { |
| 1472 | unsigned long parent_accuracy = 0; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1473 | struct clk_core *child; |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1474 | |
Krzysztof Kozlowski | 496eadf | 2015-01-09 09:28:10 +0100 | [diff] [blame] | 1475 | lockdep_assert_held(&prepare_lock); |
| 1476 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1477 | if (core->parent) |
| 1478 | parent_accuracy = core->parent->accuracy; |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1479 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1480 | if (core->ops->recalc_accuracy) |
| 1481 | core->accuracy = core->ops->recalc_accuracy(core->hw, |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1482 | parent_accuracy); |
| 1483 | else |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1484 | core->accuracy = parent_accuracy; |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1485 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1486 | hlist_for_each_entry(child, &core->children, child_node) |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1487 | __clk_recalc_accuracies(child); |
| 1488 | } |
| 1489 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1490 | static long clk_core_get_accuracy(struct clk_core *core) |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1491 | { |
| 1492 | unsigned long accuracy; |
| 1493 | |
| 1494 | clk_prepare_lock(); |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1495 | if (core && (core->flags & CLK_GET_ACCURACY_NOCACHE)) |
| 1496 | __clk_recalc_accuracies(core); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1497 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1498 | accuracy = __clk_get_accuracy(core); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1499 | clk_prepare_unlock(); |
| 1500 | |
| 1501 | return accuracy; |
| 1502 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1503 | |
| 1504 | /** |
| 1505 | * clk_get_accuracy - return the accuracy of clk |
| 1506 | * @clk: the clk whose accuracy is being returned |
| 1507 | * |
| 1508 | * Simply returns the cached accuracy of the clk, unless |
| 1509 | * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be |
| 1510 | * issued. |
| 1511 | * If clk is NULL then returns 0. |
| 1512 | */ |
| 1513 | long clk_get_accuracy(struct clk *clk) |
| 1514 | { |
| 1515 | if (!clk) |
| 1516 | return 0; |
| 1517 | |
| 1518 | return clk_core_get_accuracy(clk->core); |
| 1519 | } |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1520 | EXPORT_SYMBOL_GPL(clk_get_accuracy); |
| 1521 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1522 | static unsigned long clk_recalc(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1523 | unsigned long parent_rate) |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1524 | { |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 1525 | unsigned long rate = parent_rate; |
| 1526 | |
| 1527 | if (core->ops->recalc_rate && !clk_pm_runtime_get(core)) { |
| 1528 | rate = core->ops->recalc_rate(core->hw, parent_rate); |
| 1529 | clk_pm_runtime_put(core); |
| 1530 | } |
| 1531 | return rate; |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1532 | } |
| 1533 | |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1534 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1535 | * __clk_recalc_rates |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1536 | * @core: first clk in the subtree |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1537 | * @msg: notification type (see include/linux/clk.h) |
| 1538 | * |
| 1539 | * Walks the subtree of clks starting with clk and recalculates rates as it |
| 1540 | * goes. Note that if a clk does not implement the .recalc_rate callback then |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 1541 | * it is assumed that the clock will take on the rate of its parent. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1542 | * |
| 1543 | * clk_recalc_rates also propagates the POST_RATE_CHANGE notification, |
| 1544 | * if necessary. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1545 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1546 | static void __clk_recalc_rates(struct clk_core *core, unsigned long msg) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1547 | { |
| 1548 | unsigned long old_rate; |
| 1549 | unsigned long parent_rate = 0; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1550 | struct clk_core *child; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1551 | |
Krzysztof Kozlowski | 496eadf | 2015-01-09 09:28:10 +0100 | [diff] [blame] | 1552 | lockdep_assert_held(&prepare_lock); |
| 1553 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1554 | old_rate = core->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1555 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1556 | if (core->parent) |
| 1557 | parent_rate = core->parent->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1558 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1559 | core->rate = clk_recalc(core, parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1560 | |
| 1561 | /* |
| 1562 | * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE |
| 1563 | * & ABORT_RATE_CHANGE notifiers |
| 1564 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1565 | if (core->notifier_count && msg) |
| 1566 | __clk_notify(core, msg, old_rate, core->rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1567 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1568 | hlist_for_each_entry(child, &core->children, child_node) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1569 | __clk_recalc_rates(child, msg); |
| 1570 | } |
| 1571 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1572 | static unsigned long clk_core_get_rate(struct clk_core *core) |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1573 | { |
| 1574 | unsigned long rate; |
| 1575 | |
| 1576 | clk_prepare_lock(); |
| 1577 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1578 | if (core && (core->flags & CLK_GET_RATE_NOCACHE)) |
| 1579 | __clk_recalc_rates(core, 0); |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1580 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1581 | rate = clk_core_get_rate_nolock(core); |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1582 | clk_prepare_unlock(); |
| 1583 | |
| 1584 | return rate; |
| 1585 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1586 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1587 | /** |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1588 | * clk_get_rate - return the rate of clk |
| 1589 | * @clk: the clk whose rate is being returned |
| 1590 | * |
| 1591 | * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag |
| 1592 | * is set, which means a recalc_rate will be issued. |
| 1593 | * If clk is NULL then returns 0. |
| 1594 | */ |
| 1595 | unsigned long clk_get_rate(struct clk *clk) |
| 1596 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1597 | if (!clk) |
| 1598 | return 0; |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1599 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1600 | return clk_core_get_rate(clk->core); |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1601 | } |
| 1602 | EXPORT_SYMBOL_GPL(clk_get_rate); |
| 1603 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1604 | static int clk_fetch_parent_index(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1605 | struct clk_core *parent) |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1606 | { |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1607 | int i; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1608 | |
Masahiro Yamada | 508f884 | 2015-12-28 19:23:08 +0900 | [diff] [blame] | 1609 | if (!parent) |
| 1610 | return -EINVAL; |
| 1611 | |
Derek Basehore | ede7785 | 2018-12-20 16:31:00 -0800 | [diff] [blame] | 1612 | for (i = 0; i < core->num_parents; i++) { |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 1613 | /* Found it first try! */ |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 1614 | if (core->parents[i].core == parent) |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1615 | return i; |
Tomasz Figa | da0f0b2 | 2013-09-29 02:37:16 +0200 | [diff] [blame] | 1616 | |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 1617 | /* Something else is here, so keep looking */ |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 1618 | if (core->parents[i].core) |
Derek Basehore | ede7785 | 2018-12-20 16:31:00 -0800 | [diff] [blame] | 1619 | continue; |
| 1620 | |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 1621 | /* Maybe core hasn't been cached but the hw is all we know? */ |
| 1622 | if (core->parents[i].hw) { |
| 1623 | if (core->parents[i].hw == parent->hw) |
| 1624 | break; |
| 1625 | |
| 1626 | /* Didn't match, but we're expecting a clk_hw */ |
| 1627 | continue; |
Derek Basehore | ede7785 | 2018-12-20 16:31:00 -0800 | [diff] [blame] | 1628 | } |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 1629 | |
| 1630 | /* Maybe it hasn't been cached (clk_set_parent() path) */ |
| 1631 | if (parent == clk_core_get(core, i)) |
| 1632 | break; |
| 1633 | |
| 1634 | /* Fallback to comparing globally unique names */ |
| 1635 | if (!strcmp(parent->name, core->parents[i].name)) |
| 1636 | break; |
Derek Basehore | ede7785 | 2018-12-20 16:31:00 -0800 | [diff] [blame] | 1637 | } |
| 1638 | |
Stephen Boyd | 1a07956 | 2019-04-30 10:22:30 -0700 | [diff] [blame] | 1639 | if (i == core->num_parents) |
| 1640 | return -EINVAL; |
| 1641 | |
| 1642 | core->parents[i].core = parent; |
| 1643 | return i; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1644 | } |
| 1645 | |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 1646 | /* |
| 1647 | * Update the orphan status of @core and all its children. |
| 1648 | */ |
| 1649 | static void clk_core_update_orphan_status(struct clk_core *core, bool is_orphan) |
| 1650 | { |
| 1651 | struct clk_core *child; |
| 1652 | |
| 1653 | core->orphan = is_orphan; |
| 1654 | |
| 1655 | hlist_for_each_entry(child, &core->children, child_node) |
| 1656 | clk_core_update_orphan_status(child, is_orphan); |
| 1657 | } |
| 1658 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1659 | static void clk_reparent(struct clk_core *core, struct clk_core *new_parent) |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1660 | { |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 1661 | bool was_orphan = core->orphan; |
| 1662 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1663 | hlist_del(&core->child_node); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1664 | |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1665 | if (new_parent) { |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 1666 | bool becomes_orphan = new_parent->orphan; |
| 1667 | |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1668 | /* avoid duplicate POST_RATE_CHANGE notifications */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1669 | if (new_parent->new_child == core) |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1670 | new_parent->new_child = NULL; |
| 1671 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1672 | hlist_add_head(&core->child_node, &new_parent->children); |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 1673 | |
| 1674 | if (was_orphan != becomes_orphan) |
| 1675 | clk_core_update_orphan_status(core, becomes_orphan); |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1676 | } else { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1677 | hlist_add_head(&core->child_node, &clk_orphan_list); |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 1678 | if (!was_orphan) |
| 1679 | clk_core_update_orphan_status(core, true); |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1680 | } |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1681 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1682 | core->parent = new_parent; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1683 | } |
| 1684 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1685 | static struct clk_core *__clk_set_parent_before(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1686 | struct clk_core *parent) |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1687 | { |
| 1688 | unsigned long flags; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1689 | struct clk_core *old_parent = core->parent; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1690 | |
| 1691 | /* |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1692 | * 1. enable parents for CLK_OPS_PARENT_ENABLE clock |
| 1693 | * |
| 1694 | * 2. Migrate prepare state between parents and prevent race with |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1695 | * clk_enable(). |
| 1696 | * |
| 1697 | * If the clock is not prepared, then a race with |
| 1698 | * clk_enable/disable() is impossible since we already have the |
| 1699 | * prepare lock (future calls to clk_enable() need to be preceded by |
| 1700 | * a clk_prepare()). |
| 1701 | * |
| 1702 | * If the clock is prepared, migrate the prepared state to the new |
| 1703 | * parent and also protect against a race with clk_enable() by |
| 1704 | * forcing the clock and the new parent on. This ensures that all |
| 1705 | * future calls to clk_enable() are practically NOPs with respect to |
| 1706 | * hardware and software states. |
| 1707 | * |
| 1708 | * See also: Comment for clk_set_parent() below. |
| 1709 | */ |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1710 | |
| 1711 | /* enable old_parent & parent if CLK_OPS_PARENT_ENABLE is set */ |
| 1712 | if (core->flags & CLK_OPS_PARENT_ENABLE) { |
| 1713 | clk_core_prepare_enable(old_parent); |
| 1714 | clk_core_prepare_enable(parent); |
| 1715 | } |
| 1716 | |
| 1717 | /* migrate prepare count if > 0 */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1718 | if (core->prepare_count) { |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1719 | clk_core_prepare_enable(parent); |
| 1720 | clk_core_enable_lock(core); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1721 | } |
| 1722 | |
| 1723 | /* update the clk tree topology */ |
| 1724 | flags = clk_enable_lock(); |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1725 | clk_reparent(core, parent); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1726 | clk_enable_unlock(flags); |
| 1727 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1728 | return old_parent; |
| 1729 | } |
| 1730 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1731 | static void __clk_set_parent_after(struct clk_core *core, |
| 1732 | struct clk_core *parent, |
| 1733 | struct clk_core *old_parent) |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1734 | { |
| 1735 | /* |
| 1736 | * Finish the migration of prepare state and undo the changes done |
| 1737 | * for preventing a race with clk_enable(). |
| 1738 | */ |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1739 | if (core->prepare_count) { |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1740 | clk_core_disable_lock(core); |
| 1741 | clk_core_disable_unprepare(old_parent); |
| 1742 | } |
| 1743 | |
| 1744 | /* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */ |
| 1745 | if (core->flags & CLK_OPS_PARENT_ENABLE) { |
| 1746 | clk_core_disable_unprepare(parent); |
| 1747 | clk_core_disable_unprepare(old_parent); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1748 | } |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1749 | } |
| 1750 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1751 | static int __clk_set_parent(struct clk_core *core, struct clk_core *parent, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1752 | u8 p_index) |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1753 | { |
| 1754 | unsigned long flags; |
| 1755 | int ret = 0; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1756 | struct clk_core *old_parent; |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1757 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1758 | old_parent = __clk_set_parent_before(core, parent); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1759 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1760 | trace_clk_set_parent(core, parent); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 1761 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1762 | /* change clock input source */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1763 | if (parent && core->ops->set_parent) |
| 1764 | ret = core->ops->set_parent(core->hw, p_index); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1765 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1766 | trace_clk_set_parent_complete(core, parent); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 1767 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1768 | if (ret) { |
| 1769 | flags = clk_enable_lock(); |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1770 | clk_reparent(core, old_parent); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1771 | clk_enable_unlock(flags); |
Dong Aisheng | c660b2eb | 2015-07-28 21:19:41 +0800 | [diff] [blame] | 1772 | __clk_set_parent_after(core, old_parent, parent); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1773 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1774 | return ret; |
| 1775 | } |
| 1776 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1777 | __clk_set_parent_after(core, parent, old_parent); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1778 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1779 | return 0; |
| 1780 | } |
| 1781 | |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1782 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1783 | * __clk_speculate_rates |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1784 | * @core: first clk in the subtree |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1785 | * @parent_rate: the "future" rate of clk's parent |
| 1786 | * |
| 1787 | * Walks the subtree of clks starting with clk, speculating rates as it |
| 1788 | * goes and firing off PRE_RATE_CHANGE notifications as necessary. |
| 1789 | * |
| 1790 | * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending |
| 1791 | * pre-rate change notifications and returns early if no clks in the |
| 1792 | * subtree have subscribed to the notifications. Note that if a clk does not |
| 1793 | * implement the .recalc_rate callback then it is assumed that the clock will |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 1794 | * take on the rate of its parent. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1795 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1796 | static int __clk_speculate_rates(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1797 | unsigned long parent_rate) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1798 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1799 | struct clk_core *child; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1800 | unsigned long new_rate; |
| 1801 | int ret = NOTIFY_DONE; |
| 1802 | |
Krzysztof Kozlowski | 496eadf | 2015-01-09 09:28:10 +0100 | [diff] [blame] | 1803 | lockdep_assert_held(&prepare_lock); |
| 1804 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1805 | new_rate = clk_recalc(core, parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1806 | |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1807 | /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1808 | if (core->notifier_count) |
| 1809 | ret = __clk_notify(core, PRE_RATE_CHANGE, core->rate, new_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1810 | |
Mike Turquette | 86bcfa2 | 2014-02-24 16:08:41 -0800 | [diff] [blame] | 1811 | if (ret & NOTIFY_STOP_MASK) { |
| 1812 | pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n", |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1813 | __func__, core->name, ret); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1814 | goto out; |
Mike Turquette | 86bcfa2 | 2014-02-24 16:08:41 -0800 | [diff] [blame] | 1815 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1816 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1817 | hlist_for_each_entry(child, &core->children, child_node) { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1818 | ret = __clk_speculate_rates(child, new_rate); |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1819 | if (ret & NOTIFY_STOP_MASK) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1820 | break; |
| 1821 | } |
| 1822 | |
| 1823 | out: |
| 1824 | return ret; |
| 1825 | } |
| 1826 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1827 | static void clk_calc_subtree(struct clk_core *core, unsigned long new_rate, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1828 | struct clk_core *new_parent, u8 p_index) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1829 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1830 | struct clk_core *child; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1831 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1832 | core->new_rate = new_rate; |
| 1833 | core->new_parent = new_parent; |
| 1834 | core->new_parent_index = p_index; |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1835 | /* include clk in new parent's PRE_RATE_CHANGE notifications */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1836 | core->new_child = NULL; |
| 1837 | if (new_parent && new_parent != core->parent) |
| 1838 | new_parent->new_child = core; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1839 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1840 | hlist_for_each_entry(child, &core->children, child_node) { |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1841 | child->new_rate = clk_recalc(child, new_rate); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1842 | clk_calc_subtree(child, child->new_rate, NULL, 0); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1843 | } |
| 1844 | } |
| 1845 | |
| 1846 | /* |
| 1847 | * calculate the new rates returning the topmost clock that has to be |
| 1848 | * changed. |
| 1849 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1850 | static struct clk_core *clk_calc_new_rates(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1851 | unsigned long rate) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1852 | { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1853 | struct clk_core *top = core; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1854 | struct clk_core *old_parent, *parent; |
Shawn Guo | 81536e0 | 2012-04-12 20:50:17 +0800 | [diff] [blame] | 1855 | unsigned long best_parent_rate = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1856 | unsigned long new_rate; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1857 | unsigned long min_rate; |
| 1858 | unsigned long max_rate; |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1859 | int p_index = 0; |
Boris Brezillon | 03bc10a | 2015-03-29 03:48:48 +0200 | [diff] [blame] | 1860 | long ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1861 | |
Mike Turquette | 7452b21 | 2012-03-26 14:45:36 -0700 | [diff] [blame] | 1862 | /* sanity */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1863 | if (IS_ERR_OR_NULL(core)) |
Mike Turquette | 7452b21 | 2012-03-26 14:45:36 -0700 | [diff] [blame] | 1864 | return NULL; |
| 1865 | |
Mike Turquette | 63f5c3b | 2012-05-02 16:23:43 -0700 | [diff] [blame] | 1866 | /* save parent rate, if it exists */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1867 | parent = old_parent = core->parent; |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1868 | if (parent) |
| 1869 | best_parent_rate = parent->rate; |
Mike Turquette | 63f5c3b | 2012-05-02 16:23:43 -0700 | [diff] [blame] | 1870 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1871 | clk_core_get_boundaries(core, &min_rate, &max_rate); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1872 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1873 | /* find the closest rate and parent clk/rate */ |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1874 | if (clk_core_can_round(core)) { |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1875 | struct clk_rate_request req; |
| 1876 | |
| 1877 | req.rate = rate; |
| 1878 | req.min_rate = min_rate; |
| 1879 | req.max_rate = max_rate; |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1880 | |
Jerome Brunet | 0f6cc2b | 2017-12-01 22:51:54 +0100 | [diff] [blame] | 1881 | clk_core_init_rate_req(core, &req); |
| 1882 | |
| 1883 | ret = clk_core_determine_round_nolock(core, &req); |
Boris Brezillon | 03bc10a | 2015-03-29 03:48:48 +0200 | [diff] [blame] | 1884 | if (ret < 0) |
| 1885 | return NULL; |
| 1886 | |
Boris Brezillon | 0817b62 | 2015-07-07 20:48:08 +0200 | [diff] [blame] | 1887 | best_parent_rate = req.best_parent_rate; |
| 1888 | new_rate = req.rate; |
| 1889 | parent = req.best_parent_hw ? req.best_parent_hw->core : NULL; |
Boris Brezillon | 03bc10a | 2015-03-29 03:48:48 +0200 | [diff] [blame] | 1890 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 1891 | if (new_rate < min_rate || new_rate > max_rate) |
| 1892 | return NULL; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1893 | } else if (!parent || !(core->flags & CLK_SET_RATE_PARENT)) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1894 | /* pass-through clock without adjustable parent */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1895 | core->new_rate = core->rate; |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1896 | return NULL; |
| 1897 | } else { |
| 1898 | /* pass-through clock with adjustable parent */ |
| 1899 | top = clk_calc_new_rates(parent, rate); |
| 1900 | new_rate = parent->new_rate; |
Mike Turquette | 63f5c3b | 2012-05-02 16:23:43 -0700 | [diff] [blame] | 1901 | goto out; |
Mike Turquette | 7452b21 | 2012-03-26 14:45:36 -0700 | [diff] [blame] | 1902 | } |
| 1903 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1904 | /* some clocks must be gated to change parent */ |
| 1905 | if (parent != old_parent && |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1906 | (core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1907 | pr_debug("%s: %s not gated but wants to reparent\n", |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1908 | __func__, core->name); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1909 | return NULL; |
| 1910 | } |
| 1911 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1912 | /* try finding the new parent index */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1913 | if (parent && core->num_parents > 1) { |
| 1914 | p_index = clk_fetch_parent_index(core, parent); |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1915 | if (p_index < 0) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1916 | pr_debug("%s: clk %s can not be parent of clk %s\n", |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1917 | __func__, parent->name, core->name); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1918 | return NULL; |
| 1919 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1920 | } |
| 1921 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1922 | if ((core->flags & CLK_SET_RATE_PARENT) && parent && |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1923 | best_parent_rate != parent->rate) |
| 1924 | top = clk_calc_new_rates(parent, best_parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1925 | |
| 1926 | out: |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1927 | clk_calc_subtree(core, new_rate, parent, p_index); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1928 | |
| 1929 | return top; |
| 1930 | } |
| 1931 | |
| 1932 | /* |
| 1933 | * Notify about rate changes in a subtree. Always walk down the whole tree |
| 1934 | * so that in case of an error we can walk down the whole tree again and |
| 1935 | * abort the change. |
| 1936 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1937 | static struct clk_core *clk_propagate_rate_change(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1938 | unsigned long event) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1939 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1940 | struct clk_core *child, *tmp_clk, *fail_clk = NULL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1941 | int ret = NOTIFY_DONE; |
| 1942 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1943 | if (core->rate == core->new_rate) |
Sachin Kamat | 5fda685 | 2013-03-13 15:17:49 +0530 | [diff] [blame] | 1944 | return NULL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1945 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1946 | if (core->notifier_count) { |
| 1947 | ret = __clk_notify(core, event, core->rate, core->new_rate); |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1948 | if (ret & NOTIFY_STOP_MASK) |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1949 | fail_clk = core; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1950 | } |
| 1951 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1952 | hlist_for_each_entry(child, &core->children, child_node) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1953 | /* Skip children who will be reparented to another clock */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1954 | if (child->new_parent && child->new_parent != core) |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1955 | continue; |
| 1956 | tmp_clk = clk_propagate_rate_change(child, event); |
| 1957 | if (tmp_clk) |
| 1958 | fail_clk = tmp_clk; |
| 1959 | } |
| 1960 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1961 | /* handle the new child who might not be in core->children yet */ |
| 1962 | if (core->new_child) { |
| 1963 | tmp_clk = clk_propagate_rate_change(core->new_child, event); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1964 | if (tmp_clk) |
| 1965 | fail_clk = tmp_clk; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1966 | } |
| 1967 | |
| 1968 | return fail_clk; |
| 1969 | } |
| 1970 | |
| 1971 | /* |
| 1972 | * walk down a subtree and set the new rates notifying the rate |
| 1973 | * change on the way |
| 1974 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1975 | static void clk_change_rate(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1976 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1977 | struct clk_core *child; |
Tero Kristo | 067bb17 | 2014-08-21 16:47:45 +0300 | [diff] [blame] | 1978 | struct hlist_node *tmp; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1979 | unsigned long old_rate; |
Pawel Moll | bf47b4f | 2012-06-08 14:04:06 +0100 | [diff] [blame] | 1980 | unsigned long best_parent_rate = 0; |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1981 | bool skip_set_rate = false; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 1982 | struct clk_core *old_parent; |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1983 | struct clk_core *parent = NULL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1984 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1985 | old_rate = core->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1986 | |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1987 | if (core->new_parent) { |
| 1988 | parent = core->new_parent; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1989 | best_parent_rate = core->new_parent->rate; |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1990 | } else if (core->parent) { |
| 1991 | parent = core->parent; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 1992 | best_parent_rate = core->parent->rate; |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 1993 | } |
Pawel Moll | bf47b4f | 2012-06-08 14:04:06 +0100 | [diff] [blame] | 1994 | |
Marek Szyprowski | 588fb54 | 2017-11-30 13:14:51 +0100 | [diff] [blame] | 1995 | if (clk_pm_runtime_get(core)) |
| 1996 | return; |
| 1997 | |
Heiko Stuebner | 2eb8c71 | 2015-12-22 22:27:58 +0100 | [diff] [blame] | 1998 | if (core->flags & CLK_SET_RATE_UNGATE) { |
| 1999 | unsigned long flags; |
| 2000 | |
| 2001 | clk_core_prepare(core); |
| 2002 | flags = clk_enable_lock(); |
| 2003 | clk_core_enable(core); |
| 2004 | clk_enable_unlock(flags); |
| 2005 | } |
| 2006 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2007 | if (core->new_parent && core->new_parent != core->parent) { |
| 2008 | old_parent = __clk_set_parent_before(core, core->new_parent); |
| 2009 | trace_clk_set_parent(core, core->new_parent); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 2010 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2011 | if (core->ops->set_rate_and_parent) { |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 2012 | skip_set_rate = true; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2013 | core->ops->set_rate_and_parent(core->hw, core->new_rate, |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 2014 | best_parent_rate, |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2015 | core->new_parent_index); |
| 2016 | } else if (core->ops->set_parent) { |
| 2017 | core->ops->set_parent(core->hw, core->new_parent_index); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 2018 | } |
| 2019 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2020 | trace_clk_set_parent_complete(core, core->new_parent); |
| 2021 | __clk_set_parent_after(core, core->new_parent, old_parent); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 2022 | } |
| 2023 | |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 2024 | if (core->flags & CLK_OPS_PARENT_ENABLE) |
| 2025 | clk_core_prepare_enable(parent); |
| 2026 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2027 | trace_clk_set_rate(core, core->new_rate); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 2028 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2029 | if (!skip_set_rate && core->ops->set_rate) |
| 2030 | core->ops->set_rate(core->hw, core->new_rate, best_parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2031 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2032 | trace_clk_set_rate_complete(core, core->new_rate); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 2033 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2034 | core->rate = clk_recalc(core, best_parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2035 | |
Heiko Stuebner | 2eb8c71 | 2015-12-22 22:27:58 +0100 | [diff] [blame] | 2036 | if (core->flags & CLK_SET_RATE_UNGATE) { |
| 2037 | unsigned long flags; |
| 2038 | |
| 2039 | flags = clk_enable_lock(); |
| 2040 | clk_core_disable(core); |
| 2041 | clk_enable_unlock(flags); |
| 2042 | clk_core_unprepare(core); |
| 2043 | } |
| 2044 | |
Dong Aisheng | fc8726a | 2016-06-30 17:31:14 +0800 | [diff] [blame] | 2045 | if (core->flags & CLK_OPS_PARENT_ENABLE) |
| 2046 | clk_core_disable_unprepare(parent); |
| 2047 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2048 | if (core->notifier_count && old_rate != core->rate) |
| 2049 | __clk_notify(core, POST_RATE_CHANGE, old_rate, core->rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2050 | |
Michael Turquette | 85e88fa | 2015-06-20 12:18:03 -0700 | [diff] [blame] | 2051 | if (core->flags & CLK_RECALC_NEW_RATES) |
| 2052 | (void)clk_calc_new_rates(core, core->new_rate); |
Bartlomiej Zolnierkiewicz | d8d9198 | 2015-04-03 18:43:44 +0200 | [diff] [blame] | 2053 | |
Tero Kristo | 067bb17 | 2014-08-21 16:47:45 +0300 | [diff] [blame] | 2054 | /* |
| 2055 | * Use safe iteration, as change_rate can actually swap parents |
| 2056 | * for certain clock types. |
| 2057 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2058 | hlist_for_each_entry_safe(child, tmp, &core->children, child_node) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 2059 | /* Skip children who will be reparented to another clock */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2060 | if (child->new_parent && child->new_parent != core) |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 2061 | continue; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2062 | clk_change_rate(child); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 2063 | } |
| 2064 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2065 | /* handle the new child who might not be in core->children yet */ |
| 2066 | if (core->new_child) |
| 2067 | clk_change_rate(core->new_child); |
Marek Szyprowski | 588fb54 | 2017-11-30 13:14:51 +0100 | [diff] [blame] | 2068 | |
| 2069 | clk_pm_runtime_put(core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2070 | } |
| 2071 | |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2072 | static unsigned long clk_core_req_round_rate_nolock(struct clk_core *core, |
| 2073 | unsigned long req_rate) |
| 2074 | { |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2075 | int ret, cnt; |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2076 | struct clk_rate_request req; |
| 2077 | |
| 2078 | lockdep_assert_held(&prepare_lock); |
| 2079 | |
| 2080 | if (!core) |
| 2081 | return 0; |
| 2082 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2083 | /* simulate what the rate would be if it could be freely set */ |
| 2084 | cnt = clk_core_rate_nuke_protect(core); |
| 2085 | if (cnt < 0) |
| 2086 | return cnt; |
| 2087 | |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2088 | clk_core_get_boundaries(core, &req.min_rate, &req.max_rate); |
| 2089 | req.rate = req_rate; |
| 2090 | |
| 2091 | ret = clk_core_round_rate_nolock(core, &req); |
| 2092 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2093 | /* restore the protection */ |
| 2094 | clk_core_rate_restore_protect(core, cnt); |
| 2095 | |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2096 | return ret ? 0 : req.rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2097 | } |
| 2098 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2099 | static int clk_core_set_rate_nolock(struct clk_core *core, |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2100 | unsigned long req_rate) |
| 2101 | { |
| 2102 | struct clk_core *top, *fail_clk; |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2103 | unsigned long rate; |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2104 | int ret = 0; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2105 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2106 | if (!core) |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2107 | return 0; |
| 2108 | |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2109 | rate = clk_core_req_round_rate_nolock(core, req_rate); |
| 2110 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2111 | /* bail early if nothing to do */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2112 | if (rate == clk_core_get_rate_nolock(core)) |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2113 | return 0; |
| 2114 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2115 | /* fail on a direct rate set of a protected provider */ |
| 2116 | if (clk_core_rate_is_protected(core)) |
| 2117 | return -EBUSY; |
| 2118 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2119 | /* calculate new rates and get the topmost changed clock */ |
Jerome Brunet | ca5e089 | 2017-12-01 22:51:55 +0100 | [diff] [blame] | 2120 | top = clk_calc_new_rates(core, req_rate); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2121 | if (!top) |
| 2122 | return -EINVAL; |
| 2123 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2124 | ret = clk_pm_runtime_get(core); |
| 2125 | if (ret) |
| 2126 | return ret; |
| 2127 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2128 | /* notify that we are about to change rates */ |
| 2129 | fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE); |
| 2130 | if (fail_clk) { |
| 2131 | pr_debug("%s: failed to set %s rate\n", __func__, |
| 2132 | fail_clk->name); |
| 2133 | clk_propagate_rate_change(top, ABORT_RATE_CHANGE); |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2134 | ret = -EBUSY; |
| 2135 | goto err; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2136 | } |
| 2137 | |
| 2138 | /* change the rates */ |
| 2139 | clk_change_rate(top); |
| 2140 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2141 | core->req_rate = req_rate; |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2142 | err: |
| 2143 | clk_pm_runtime_put(core); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2144 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2145 | return ret; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2146 | } |
| 2147 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2148 | /** |
| 2149 | * clk_set_rate - specify a new rate for clk |
| 2150 | * @clk: the clk whose rate is being changed |
| 2151 | * @rate: the new rate for clk |
| 2152 | * |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 2153 | * In the simplest case clk_set_rate will only adjust the rate of clk. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2154 | * |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 2155 | * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to |
| 2156 | * propagate up to clk's parent; whether or not this happens depends on the |
| 2157 | * outcome of clk's .round_rate implementation. If *parent_rate is unchanged |
| 2158 | * after calling .round_rate then upstream parent propagation is ignored. If |
| 2159 | * *parent_rate comes back with a new rate for clk's parent then we propagate |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 2160 | * up to clk's parent and set its rate. Upward propagation will continue |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 2161 | * until either a clk does not support the CLK_SET_RATE_PARENT flag or |
| 2162 | * .round_rate stops requesting changes to clk's parent_rate. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2163 | * |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 2164 | * Rate changes are accomplished via tree traversal that also recalculates the |
| 2165 | * rates for the clocks and fires off POST_RATE_CHANGE notifiers. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2166 | * |
| 2167 | * Returns 0 on success, -EERROR otherwise. |
| 2168 | */ |
| 2169 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 2170 | { |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2171 | int ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2172 | |
Mike Turquette | 89ac8d7 | 2013-08-21 23:58:09 -0700 | [diff] [blame] | 2173 | if (!clk) |
| 2174 | return 0; |
| 2175 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2176 | /* prevent racing with updates to the clock topology */ |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2177 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2178 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2179 | if (clk->exclusive_count) |
| 2180 | clk_core_rate_unprotect(clk->core); |
| 2181 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2182 | ret = clk_core_set_rate_nolock(clk->core, rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2183 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2184 | if (clk->exclusive_count) |
| 2185 | clk_core_rate_protect(clk->core); |
| 2186 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2187 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2188 | |
| 2189 | return ret; |
| 2190 | } |
| 2191 | EXPORT_SYMBOL_GPL(clk_set_rate); |
| 2192 | |
| 2193 | /** |
Geert Uytterhoeven | 65e2218 | 2019-06-17 15:56:02 +0200 | [diff] [blame] | 2194 | * clk_set_rate_exclusive - specify a new rate and get exclusive control |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2195 | * @clk: the clk whose rate is being changed |
| 2196 | * @rate: the new rate for clk |
| 2197 | * |
| 2198 | * This is a combination of clk_set_rate() and clk_rate_exclusive_get() |
| 2199 | * within a critical section |
| 2200 | * |
| 2201 | * This can be used initially to ensure that at least 1 consumer is |
Geert Uytterhoeven | 65e2218 | 2019-06-17 15:56:02 +0200 | [diff] [blame] | 2202 | * satisfied when several consumers are competing for exclusivity over the |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2203 | * same clock provider. |
| 2204 | * |
| 2205 | * The exclusivity is not applied if setting the rate failed. |
| 2206 | * |
| 2207 | * Calls to clk_rate_exclusive_get() should be balanced with calls to |
| 2208 | * clk_rate_exclusive_put(). |
| 2209 | * |
| 2210 | * Returns 0 on success, -EERROR otherwise. |
| 2211 | */ |
| 2212 | int clk_set_rate_exclusive(struct clk *clk, unsigned long rate) |
| 2213 | { |
| 2214 | int ret; |
| 2215 | |
| 2216 | if (!clk) |
| 2217 | return 0; |
| 2218 | |
| 2219 | /* prevent racing with updates to the clock topology */ |
| 2220 | clk_prepare_lock(); |
| 2221 | |
| 2222 | /* |
| 2223 | * The temporary protection removal is not here, on purpose |
| 2224 | * This function is meant to be used instead of clk_rate_protect, |
| 2225 | * so before the consumer code path protect the clock provider |
| 2226 | */ |
| 2227 | |
| 2228 | ret = clk_core_set_rate_nolock(clk->core, rate); |
| 2229 | if (!ret) { |
| 2230 | clk_core_rate_protect(clk->core); |
| 2231 | clk->exclusive_count++; |
| 2232 | } |
| 2233 | |
| 2234 | clk_prepare_unlock(); |
| 2235 | |
| 2236 | return ret; |
| 2237 | } |
| 2238 | EXPORT_SYMBOL_GPL(clk_set_rate_exclusive); |
| 2239 | |
| 2240 | /** |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2241 | * clk_set_rate_range - set a rate range for a clock source |
| 2242 | * @clk: clock source |
| 2243 | * @min: desired minimum clock rate in Hz, inclusive |
| 2244 | * @max: desired maximum clock rate in Hz, inclusive |
| 2245 | * |
| 2246 | * Returns success (0) or negative errno. |
| 2247 | */ |
| 2248 | int clk_set_rate_range(struct clk *clk, unsigned long min, unsigned long max) |
| 2249 | { |
| 2250 | int ret = 0; |
Jerome Brunet | 6562fbc | 2017-12-01 22:52:00 +0100 | [diff] [blame] | 2251 | unsigned long old_min, old_max, rate; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2252 | |
| 2253 | if (!clk) |
| 2254 | return 0; |
| 2255 | |
| 2256 | if (min > max) { |
| 2257 | pr_err("%s: clk %s dev %s con %s: invalid range [%lu, %lu]\n", |
| 2258 | __func__, clk->core->name, clk->dev_id, clk->con_id, |
| 2259 | min, max); |
| 2260 | return -EINVAL; |
| 2261 | } |
| 2262 | |
| 2263 | clk_prepare_lock(); |
| 2264 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2265 | if (clk->exclusive_count) |
| 2266 | clk_core_rate_unprotect(clk->core); |
| 2267 | |
Jerome Brunet | 6562fbc | 2017-12-01 22:52:00 +0100 | [diff] [blame] | 2268 | /* Save the current values in case we need to rollback the change */ |
| 2269 | old_min = clk->min_rate; |
| 2270 | old_max = clk->max_rate; |
| 2271 | clk->min_rate = min; |
| 2272 | clk->max_rate = max; |
| 2273 | |
| 2274 | rate = clk_core_get_rate_nolock(clk->core); |
| 2275 | if (rate < min || rate > max) { |
| 2276 | /* |
| 2277 | * FIXME: |
| 2278 | * We are in bit of trouble here, current rate is outside the |
| 2279 | * the requested range. We are going try to request appropriate |
| 2280 | * range boundary but there is a catch. It may fail for the |
| 2281 | * usual reason (clock broken, clock protected, etc) but also |
| 2282 | * because: |
| 2283 | * - round_rate() was not favorable and fell on the wrong |
| 2284 | * side of the boundary |
| 2285 | * - the determine_rate() callback does not really check for |
| 2286 | * this corner case when determining the rate |
| 2287 | */ |
| 2288 | |
| 2289 | if (rate < min) |
| 2290 | rate = min; |
| 2291 | else |
| 2292 | rate = max; |
| 2293 | |
| 2294 | ret = clk_core_set_rate_nolock(clk->core, rate); |
| 2295 | if (ret) { |
| 2296 | /* rollback the changes */ |
| 2297 | clk->min_rate = old_min; |
| 2298 | clk->max_rate = old_max; |
| 2299 | } |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2300 | } |
| 2301 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2302 | if (clk->exclusive_count) |
| 2303 | clk_core_rate_protect(clk->core); |
| 2304 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 2305 | clk_prepare_unlock(); |
| 2306 | |
| 2307 | return ret; |
| 2308 | } |
| 2309 | EXPORT_SYMBOL_GPL(clk_set_rate_range); |
| 2310 | |
| 2311 | /** |
| 2312 | * clk_set_min_rate - set a minimum clock rate for a clock source |
| 2313 | * @clk: clock source |
| 2314 | * @rate: desired minimum clock rate in Hz, inclusive |
| 2315 | * |
| 2316 | * Returns success (0) or negative errno. |
| 2317 | */ |
| 2318 | int clk_set_min_rate(struct clk *clk, unsigned long rate) |
| 2319 | { |
| 2320 | if (!clk) |
| 2321 | return 0; |
| 2322 | |
| 2323 | return clk_set_rate_range(clk, rate, clk->max_rate); |
| 2324 | } |
| 2325 | EXPORT_SYMBOL_GPL(clk_set_min_rate); |
| 2326 | |
| 2327 | /** |
| 2328 | * clk_set_max_rate - set a maximum clock rate for a clock source |
| 2329 | * @clk: clock source |
| 2330 | * @rate: desired maximum clock rate in Hz, inclusive |
| 2331 | * |
| 2332 | * Returns success (0) or negative errno. |
| 2333 | */ |
| 2334 | int clk_set_max_rate(struct clk *clk, unsigned long rate) |
| 2335 | { |
| 2336 | if (!clk) |
| 2337 | return 0; |
| 2338 | |
| 2339 | return clk_set_rate_range(clk, clk->min_rate, rate); |
| 2340 | } |
| 2341 | EXPORT_SYMBOL_GPL(clk_set_max_rate); |
| 2342 | |
| 2343 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2344 | * clk_get_parent - return the parent of a clk |
| 2345 | * @clk: the clk whose parent gets returned |
| 2346 | * |
| 2347 | * Simply returns clk->parent. Returns NULL if clk is NULL. |
| 2348 | */ |
| 2349 | struct clk *clk_get_parent(struct clk *clk) |
| 2350 | { |
| 2351 | struct clk *parent; |
| 2352 | |
Stephen Boyd | fc4a05d | 2015-06-25 17:24:15 -0700 | [diff] [blame] | 2353 | if (!clk) |
| 2354 | return NULL; |
| 2355 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2356 | clk_prepare_lock(); |
Stephen Boyd | fc4a05d | 2015-06-25 17:24:15 -0700 | [diff] [blame] | 2357 | /* TODO: Create a per-user clk and change callers to call clk_put */ |
| 2358 | parent = !clk->core->parent ? NULL : clk->core->parent->hw->clk; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2359 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2360 | |
| 2361 | return parent; |
| 2362 | } |
| 2363 | EXPORT_SYMBOL_GPL(clk_get_parent); |
| 2364 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2365 | static struct clk_core *__clk_init_parent(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2366 | { |
Masahiro Yamada | 5146e0b | 2015-12-28 19:23:04 +0900 | [diff] [blame] | 2367 | u8 index = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2368 | |
Masahiro Yamada | 2430a94 | 2016-02-09 20:19:14 +0900 | [diff] [blame] | 2369 | if (core->num_parents > 1 && core->ops->get_parent) |
Masahiro Yamada | 5146e0b | 2015-12-28 19:23:04 +0900 | [diff] [blame] | 2370 | index = core->ops->get_parent(core->hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2371 | |
Masahiro Yamada | 5146e0b | 2015-12-28 19:23:04 +0900 | [diff] [blame] | 2372 | return clk_core_get_parent_by_index(core, index); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2373 | } |
| 2374 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2375 | static void clk_core_reparent(struct clk_core *core, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2376 | struct clk_core *new_parent) |
Ulf Hansson | b33d212 | 2013-04-02 23:09:37 +0200 | [diff] [blame] | 2377 | { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2378 | clk_reparent(core, new_parent); |
| 2379 | __clk_recalc_accuracies(core); |
| 2380 | __clk_recalc_rates(core, POST_RATE_CHANGE); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2381 | } |
| 2382 | |
Tomeu Vizoso | 42c8654 | 2015-03-11 11:34:25 +0100 | [diff] [blame] | 2383 | void clk_hw_reparent(struct clk_hw *hw, struct clk_hw *new_parent) |
| 2384 | { |
| 2385 | if (!hw) |
| 2386 | return; |
| 2387 | |
| 2388 | clk_core_reparent(hw->core, !new_parent ? NULL : new_parent->core); |
| 2389 | } |
| 2390 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2391 | /** |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2392 | * clk_has_parent - check if a clock is a possible parent for another |
| 2393 | * @clk: clock source |
| 2394 | * @parent: parent clock source |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2395 | * |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2396 | * This function can be used in drivers that need to check that a clock can be |
| 2397 | * the parent of another without actually changing the parent. |
Saravana Kannan | f8aa0bd | 2013-05-15 21:07:24 -0700 | [diff] [blame] | 2398 | * |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2399 | * Returns true if @parent is a possible parent for @clk, false otherwise. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2400 | */ |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2401 | bool clk_has_parent(struct clk *clk, struct clk *parent) |
| 2402 | { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2403 | struct clk_core *core, *parent_core; |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 2404 | int i; |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2405 | |
| 2406 | /* NULL clocks should be nops, so return success if either is NULL. */ |
| 2407 | if (!clk || !parent) |
| 2408 | return true; |
| 2409 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2410 | core = clk->core; |
| 2411 | parent_core = parent->core; |
| 2412 | |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2413 | /* Optimize for the case where the parent is already the parent. */ |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2414 | if (core->parent == parent_core) |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2415 | return true; |
| 2416 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 2417 | for (i = 0; i < core->num_parents; i++) |
| 2418 | if (!strcmp(core->parents[i].name, parent_core->name)) |
| 2419 | return true; |
| 2420 | |
| 2421 | return false; |
Thierry Reding | 4e88f3d | 2015-01-21 17:13:00 +0100 | [diff] [blame] | 2422 | } |
| 2423 | EXPORT_SYMBOL_GPL(clk_has_parent); |
| 2424 | |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2425 | static int clk_core_set_parent_nolock(struct clk_core *core, |
| 2426 | struct clk_core *parent) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2427 | { |
| 2428 | int ret = 0; |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 2429 | int p_index = 0; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2430 | unsigned long p_rate = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2431 | |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2432 | lockdep_assert_held(&prepare_lock); |
| 2433 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2434 | if (!core) |
Mike Turquette | 89ac8d7 | 2013-08-21 23:58:09 -0700 | [diff] [blame] | 2435 | return 0; |
| 2436 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2437 | if (core->parent == parent) |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2438 | return 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2439 | |
Stephen Boyd | b61c43c | 2015-02-02 14:11:25 -0800 | [diff] [blame] | 2440 | /* verify ops for for multi-parent clks */ |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2441 | if (core->num_parents > 1 && !core->ops->set_parent) |
| 2442 | return -EPERM; |
Stephen Boyd | b61c43c | 2015-02-02 14:11:25 -0800 | [diff] [blame] | 2443 | |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2444 | /* check that we are allowed to re-parent if the clock is in use */ |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2445 | if ((core->flags & CLK_SET_PARENT_GATE) && core->prepare_count) |
| 2446 | return -EBUSY; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2447 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2448 | if (clk_core_rate_is_protected(core)) |
| 2449 | return -EBUSY; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2450 | |
| 2451 | /* try finding the new parent index */ |
| 2452 | if (parent) { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2453 | p_index = clk_fetch_parent_index(core, parent); |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 2454 | if (p_index < 0) { |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2455 | pr_debug("%s: clk %s can not be parent of clk %s\n", |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2456 | __func__, parent->name, core->name); |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2457 | return p_index; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2458 | } |
Masahiro Yamada | e8f0e68 | 2015-12-28 19:23:10 +0900 | [diff] [blame] | 2459 | p_rate = parent->rate; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2460 | } |
| 2461 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2462 | ret = clk_pm_runtime_get(core); |
| 2463 | if (ret) |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2464 | return ret; |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2465 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2466 | /* propagate PRE_RATE_CHANGE notifications */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2467 | ret = __clk_speculate_rates(core, p_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2468 | |
| 2469 | /* abort if a driver objects */ |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 2470 | if (ret & NOTIFY_STOP_MASK) |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2471 | goto runtime_put; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2472 | |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 2473 | /* do the re-parent */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2474 | ret = __clk_set_parent(core, parent, p_index); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2475 | |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 2476 | /* propagate rate an accuracy recalculation accordingly */ |
| 2477 | if (ret) { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2478 | __clk_recalc_rates(core, ABORT_RATE_CHANGE); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 2479 | } else { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2480 | __clk_recalc_rates(core, POST_RATE_CHANGE); |
| 2481 | __clk_recalc_accuracies(core); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 2482 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2483 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 2484 | runtime_put: |
| 2485 | clk_pm_runtime_put(core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2486 | |
| 2487 | return ret; |
| 2488 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2489 | |
| 2490 | /** |
| 2491 | * clk_set_parent - switch the parent of a mux clk |
| 2492 | * @clk: the mux clk whose input we are switching |
| 2493 | * @parent: the new input to clk |
| 2494 | * |
| 2495 | * Re-parent clk to use parent as its new input source. If clk is in |
| 2496 | * prepared state, the clk will get enabled for the duration of this call. If |
| 2497 | * that's not acceptable for a specific clk (Eg: the consumer can't handle |
| 2498 | * that, the reparenting is glitchy in hardware, etc), use the |
| 2499 | * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared. |
| 2500 | * |
| 2501 | * After successfully changing clk's parent clk_set_parent will update the |
| 2502 | * clk topology, sysfs topology and propagate rate recalculation via |
| 2503 | * __clk_recalc_rates. |
| 2504 | * |
| 2505 | * Returns 0 on success, -EERROR otherwise. |
| 2506 | */ |
| 2507 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 2508 | { |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2509 | int ret; |
| 2510 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2511 | if (!clk) |
| 2512 | return 0; |
| 2513 | |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2514 | clk_prepare_lock(); |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2515 | |
| 2516 | if (clk->exclusive_count) |
| 2517 | clk_core_rate_unprotect(clk->core); |
| 2518 | |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2519 | ret = clk_core_set_parent_nolock(clk->core, |
| 2520 | parent ? parent->core : NULL); |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2521 | |
| 2522 | if (clk->exclusive_count) |
| 2523 | clk_core_rate_protect(clk->core); |
| 2524 | |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 2525 | clk_prepare_unlock(); |
| 2526 | |
| 2527 | return ret; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2528 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2529 | EXPORT_SYMBOL_GPL(clk_set_parent); |
| 2530 | |
Jerome Brunet | 9e4d04a | 2017-12-01 22:51:53 +0100 | [diff] [blame] | 2531 | static int clk_core_set_phase_nolock(struct clk_core *core, int degrees) |
| 2532 | { |
| 2533 | int ret = -EINVAL; |
| 2534 | |
| 2535 | lockdep_assert_held(&prepare_lock); |
| 2536 | |
| 2537 | if (!core) |
| 2538 | return 0; |
| 2539 | |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2540 | if (clk_core_rate_is_protected(core)) |
| 2541 | return -EBUSY; |
| 2542 | |
Jerome Brunet | 9e4d04a | 2017-12-01 22:51:53 +0100 | [diff] [blame] | 2543 | trace_clk_set_phase(core, degrees); |
| 2544 | |
Shawn Lin | 7f95bee | 2018-03-08 14:49:41 +0800 | [diff] [blame] | 2545 | if (core->ops->set_phase) { |
Jerome Brunet | 9e4d04a | 2017-12-01 22:51:53 +0100 | [diff] [blame] | 2546 | ret = core->ops->set_phase(core->hw, degrees); |
Shawn Lin | 7f95bee | 2018-03-08 14:49:41 +0800 | [diff] [blame] | 2547 | if (!ret) |
| 2548 | core->phase = degrees; |
| 2549 | } |
Jerome Brunet | 9e4d04a | 2017-12-01 22:51:53 +0100 | [diff] [blame] | 2550 | |
| 2551 | trace_clk_set_phase_complete(core, degrees); |
| 2552 | |
| 2553 | return ret; |
| 2554 | } |
| 2555 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2556 | /** |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2557 | * clk_set_phase - adjust the phase shift of a clock signal |
| 2558 | * @clk: clock signal source |
| 2559 | * @degrees: number of degrees the signal is shifted |
| 2560 | * |
| 2561 | * Shifts the phase of a clock signal by the specified |
| 2562 | * degrees. Returns 0 on success, -EERROR otherwise. |
| 2563 | * |
| 2564 | * This function makes no distinction about the input or reference |
| 2565 | * signal that we adjust the clock signal phase against. For example |
| 2566 | * phase locked-loop clock signal generators we may shift phase with |
| 2567 | * respect to feedback clock signal input, but for other cases the |
| 2568 | * clock phase may be shifted with respect to some other, unspecified |
| 2569 | * signal. |
| 2570 | * |
| 2571 | * Additionally the concept of phase shift does not propagate through |
| 2572 | * the clock tree hierarchy, which sets it apart from clock rates and |
| 2573 | * clock accuracy. A parent clock phase attribute does not have an |
| 2574 | * impact on the phase attribute of a child clock. |
| 2575 | */ |
| 2576 | int clk_set_phase(struct clk *clk, int degrees) |
| 2577 | { |
Jerome Brunet | 9e4d04a | 2017-12-01 22:51:53 +0100 | [diff] [blame] | 2578 | int ret; |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2579 | |
| 2580 | if (!clk) |
Stephen Boyd | 08b9575 | 2015-02-02 14:09:43 -0800 | [diff] [blame] | 2581 | return 0; |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2582 | |
| 2583 | /* sanity check degrees */ |
| 2584 | degrees %= 360; |
| 2585 | if (degrees < 0) |
| 2586 | degrees += 360; |
| 2587 | |
| 2588 | clk_prepare_lock(); |
| 2589 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2590 | if (clk->exclusive_count) |
| 2591 | clk_core_rate_unprotect(clk->core); |
Stephen Boyd | dfc202e | 2015-02-02 14:37:41 -0800 | [diff] [blame] | 2592 | |
Jerome Brunet | 9e4d04a | 2017-12-01 22:51:53 +0100 | [diff] [blame] | 2593 | ret = clk_core_set_phase_nolock(clk->core, degrees); |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2594 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 2595 | if (clk->exclusive_count) |
| 2596 | clk_core_rate_protect(clk->core); |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2597 | |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2598 | clk_prepare_unlock(); |
| 2599 | |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2600 | return ret; |
| 2601 | } |
Maxime Ripard | 9767b04f | 2015-01-20 22:23:43 +0100 | [diff] [blame] | 2602 | EXPORT_SYMBOL_GPL(clk_set_phase); |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2603 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2604 | static int clk_core_get_phase(struct clk_core *core) |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2605 | { |
Stephen Boyd | 1f3e198 | 2015-04-30 14:21:56 -0700 | [diff] [blame] | 2606 | int ret; |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2607 | |
| 2608 | clk_prepare_lock(); |
Shawn Lin | 1f9c63e | 2018-03-14 08:28:31 +0800 | [diff] [blame] | 2609 | /* Always try to update cached phase if possible */ |
| 2610 | if (core->ops->get_phase) |
| 2611 | core->phase = core->ops->get_phase(core->hw); |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 2612 | ret = core->phase; |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2613 | clk_prepare_unlock(); |
| 2614 | |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 2615 | return ret; |
| 2616 | } |
| 2617 | |
| 2618 | /** |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 2619 | * clk_get_phase - return the phase shift of a clock signal |
| 2620 | * @clk: clock signal source |
| 2621 | * |
| 2622 | * Returns the phase shift of a clock node in degrees, otherwise returns |
| 2623 | * -EERROR. |
| 2624 | */ |
| 2625 | int clk_get_phase(struct clk *clk) |
| 2626 | { |
| 2627 | if (!clk) |
| 2628 | return 0; |
| 2629 | |
| 2630 | return clk_core_get_phase(clk->core); |
| 2631 | } |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2632 | EXPORT_SYMBOL_GPL(clk_get_phase); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2633 | |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 2634 | static void clk_core_reset_duty_cycle_nolock(struct clk_core *core) |
| 2635 | { |
| 2636 | /* Assume a default value of 50% */ |
| 2637 | core->duty.num = 1; |
| 2638 | core->duty.den = 2; |
| 2639 | } |
| 2640 | |
| 2641 | static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core); |
| 2642 | |
| 2643 | static int clk_core_update_duty_cycle_nolock(struct clk_core *core) |
| 2644 | { |
| 2645 | struct clk_duty *duty = &core->duty; |
| 2646 | int ret = 0; |
| 2647 | |
| 2648 | if (!core->ops->get_duty_cycle) |
| 2649 | return clk_core_update_duty_cycle_parent_nolock(core); |
| 2650 | |
| 2651 | ret = core->ops->get_duty_cycle(core->hw, duty); |
| 2652 | if (ret) |
| 2653 | goto reset; |
| 2654 | |
| 2655 | /* Don't trust the clock provider too much */ |
| 2656 | if (duty->den == 0 || duty->num > duty->den) { |
| 2657 | ret = -EINVAL; |
| 2658 | goto reset; |
| 2659 | } |
| 2660 | |
| 2661 | return 0; |
| 2662 | |
| 2663 | reset: |
| 2664 | clk_core_reset_duty_cycle_nolock(core); |
| 2665 | return ret; |
| 2666 | } |
| 2667 | |
| 2668 | static int clk_core_update_duty_cycle_parent_nolock(struct clk_core *core) |
| 2669 | { |
| 2670 | int ret = 0; |
| 2671 | |
| 2672 | if (core->parent && |
| 2673 | core->flags & CLK_DUTY_CYCLE_PARENT) { |
| 2674 | ret = clk_core_update_duty_cycle_nolock(core->parent); |
| 2675 | memcpy(&core->duty, &core->parent->duty, sizeof(core->duty)); |
| 2676 | } else { |
| 2677 | clk_core_reset_duty_cycle_nolock(core); |
| 2678 | } |
| 2679 | |
| 2680 | return ret; |
| 2681 | } |
| 2682 | |
| 2683 | static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core, |
| 2684 | struct clk_duty *duty); |
| 2685 | |
| 2686 | static int clk_core_set_duty_cycle_nolock(struct clk_core *core, |
| 2687 | struct clk_duty *duty) |
| 2688 | { |
| 2689 | int ret; |
| 2690 | |
| 2691 | lockdep_assert_held(&prepare_lock); |
| 2692 | |
| 2693 | if (clk_core_rate_is_protected(core)) |
| 2694 | return -EBUSY; |
| 2695 | |
| 2696 | trace_clk_set_duty_cycle(core, duty); |
| 2697 | |
| 2698 | if (!core->ops->set_duty_cycle) |
| 2699 | return clk_core_set_duty_cycle_parent_nolock(core, duty); |
| 2700 | |
| 2701 | ret = core->ops->set_duty_cycle(core->hw, duty); |
| 2702 | if (!ret) |
| 2703 | memcpy(&core->duty, duty, sizeof(*duty)); |
| 2704 | |
| 2705 | trace_clk_set_duty_cycle_complete(core, duty); |
| 2706 | |
| 2707 | return ret; |
| 2708 | } |
| 2709 | |
| 2710 | static int clk_core_set_duty_cycle_parent_nolock(struct clk_core *core, |
| 2711 | struct clk_duty *duty) |
| 2712 | { |
| 2713 | int ret = 0; |
| 2714 | |
| 2715 | if (core->parent && |
| 2716 | core->flags & (CLK_DUTY_CYCLE_PARENT | CLK_SET_RATE_PARENT)) { |
| 2717 | ret = clk_core_set_duty_cycle_nolock(core->parent, duty); |
| 2718 | memcpy(&core->duty, &core->parent->duty, sizeof(core->duty)); |
| 2719 | } |
| 2720 | |
| 2721 | return ret; |
| 2722 | } |
| 2723 | |
| 2724 | /** |
| 2725 | * clk_set_duty_cycle - adjust the duty cycle ratio of a clock signal |
| 2726 | * @clk: clock signal source |
| 2727 | * @num: numerator of the duty cycle ratio to be applied |
| 2728 | * @den: denominator of the duty cycle ratio to be applied |
| 2729 | * |
| 2730 | * Apply the duty cycle ratio if the ratio is valid and the clock can |
| 2731 | * perform this operation |
| 2732 | * |
| 2733 | * Returns (0) on success, a negative errno otherwise. |
| 2734 | */ |
| 2735 | int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den) |
| 2736 | { |
| 2737 | int ret; |
| 2738 | struct clk_duty duty; |
| 2739 | |
| 2740 | if (!clk) |
| 2741 | return 0; |
| 2742 | |
| 2743 | /* sanity check the ratio */ |
| 2744 | if (den == 0 || num > den) |
| 2745 | return -EINVAL; |
| 2746 | |
| 2747 | duty.num = num; |
| 2748 | duty.den = den; |
| 2749 | |
| 2750 | clk_prepare_lock(); |
| 2751 | |
| 2752 | if (clk->exclusive_count) |
| 2753 | clk_core_rate_unprotect(clk->core); |
| 2754 | |
| 2755 | ret = clk_core_set_duty_cycle_nolock(clk->core, &duty); |
| 2756 | |
| 2757 | if (clk->exclusive_count) |
| 2758 | clk_core_rate_protect(clk->core); |
| 2759 | |
| 2760 | clk_prepare_unlock(); |
| 2761 | |
| 2762 | return ret; |
| 2763 | } |
| 2764 | EXPORT_SYMBOL_GPL(clk_set_duty_cycle); |
| 2765 | |
| 2766 | static int clk_core_get_scaled_duty_cycle(struct clk_core *core, |
| 2767 | unsigned int scale) |
| 2768 | { |
| 2769 | struct clk_duty *duty = &core->duty; |
| 2770 | int ret; |
| 2771 | |
| 2772 | clk_prepare_lock(); |
| 2773 | |
| 2774 | ret = clk_core_update_duty_cycle_nolock(core); |
| 2775 | if (!ret) |
| 2776 | ret = mult_frac(scale, duty->num, duty->den); |
| 2777 | |
| 2778 | clk_prepare_unlock(); |
| 2779 | |
| 2780 | return ret; |
| 2781 | } |
| 2782 | |
| 2783 | /** |
| 2784 | * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal |
| 2785 | * @clk: clock signal source |
| 2786 | * @scale: scaling factor to be applied to represent the ratio as an integer |
| 2787 | * |
| 2788 | * Returns the duty cycle ratio of a clock node multiplied by the provided |
| 2789 | * scaling factor, or negative errno on error. |
| 2790 | */ |
| 2791 | int clk_get_scaled_duty_cycle(struct clk *clk, unsigned int scale) |
| 2792 | { |
| 2793 | if (!clk) |
| 2794 | return 0; |
| 2795 | |
| 2796 | return clk_core_get_scaled_duty_cycle(clk->core, scale); |
| 2797 | } |
| 2798 | EXPORT_SYMBOL_GPL(clk_get_scaled_duty_cycle); |
| 2799 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2800 | /** |
Michael Turquette | 3d3801e | 2015-02-25 09:11:01 -0800 | [diff] [blame] | 2801 | * clk_is_match - check if two clk's point to the same hardware clock |
| 2802 | * @p: clk compared against q |
| 2803 | * @q: clk compared against p |
| 2804 | * |
| 2805 | * Returns true if the two struct clk pointers both point to the same hardware |
| 2806 | * clock node. Put differently, returns true if struct clk *p and struct clk *q |
| 2807 | * share the same struct clk_core object. |
| 2808 | * |
| 2809 | * Returns false otherwise. Note that two NULL clks are treated as matching. |
| 2810 | */ |
| 2811 | bool clk_is_match(const struct clk *p, const struct clk *q) |
| 2812 | { |
| 2813 | /* trivial case: identical struct clk's or both NULL */ |
| 2814 | if (p == q) |
| 2815 | return true; |
| 2816 | |
Geert Uytterhoeven | 3fe003f | 2015-10-29 20:55:00 +0100 | [diff] [blame] | 2817 | /* true if clk->core pointers match. Avoid dereferencing garbage */ |
Michael Turquette | 3d3801e | 2015-02-25 09:11:01 -0800 | [diff] [blame] | 2818 | if (!IS_ERR_OR_NULL(p) && !IS_ERR_OR_NULL(q)) |
| 2819 | if (p->core == q->core) |
| 2820 | return true; |
| 2821 | |
| 2822 | return false; |
| 2823 | } |
| 2824 | EXPORT_SYMBOL_GPL(clk_is_match); |
| 2825 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2826 | /*** debugfs support ***/ |
| 2827 | |
| 2828 | #ifdef CONFIG_DEBUG_FS |
| 2829 | #include <linux/debugfs.h> |
| 2830 | |
| 2831 | static struct dentry *rootdir; |
| 2832 | static int inited = 0; |
| 2833 | static DEFINE_MUTEX(clk_debug_lock); |
| 2834 | static HLIST_HEAD(clk_debug_list); |
| 2835 | |
| 2836 | static struct hlist_head *all_lists[] = { |
| 2837 | &clk_root_list, |
| 2838 | &clk_orphan_list, |
| 2839 | NULL, |
| 2840 | }; |
| 2841 | |
| 2842 | static struct hlist_head *orphan_list[] = { |
| 2843 | &clk_orphan_list, |
| 2844 | NULL, |
| 2845 | }; |
| 2846 | |
| 2847 | static void clk_summary_show_one(struct seq_file *s, struct clk_core *c, |
| 2848 | int level) |
| 2849 | { |
| 2850 | if (!c) |
| 2851 | return; |
| 2852 | |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 2853 | seq_printf(s, "%*s%-*s %7d %8d %8d %11lu %10lu %5d %6d\n", |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2854 | level * 3 + 1, "", |
| 2855 | 30 - level * 3, c->name, |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2856 | c->enable_count, c->prepare_count, c->protect_count, |
| 2857 | clk_core_get_rate(c), clk_core_get_accuracy(c), |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 2858 | clk_core_get_phase(c), |
| 2859 | clk_core_get_scaled_duty_cycle(c, 100000)); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2860 | } |
| 2861 | |
| 2862 | static void clk_summary_show_subtree(struct seq_file *s, struct clk_core *c, |
| 2863 | int level) |
| 2864 | { |
| 2865 | struct clk_core *child; |
| 2866 | |
| 2867 | if (!c) |
| 2868 | return; |
| 2869 | |
| 2870 | clk_summary_show_one(s, c, level); |
| 2871 | |
| 2872 | hlist_for_each_entry(child, &c->children, child_node) |
| 2873 | clk_summary_show_subtree(s, child, level + 1); |
| 2874 | } |
| 2875 | |
| 2876 | static int clk_summary_show(struct seq_file *s, void *data) |
| 2877 | { |
| 2878 | struct clk_core *c; |
| 2879 | struct hlist_head **lists = (struct hlist_head **)s->private; |
| 2880 | |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 2881 | seq_puts(s, " enable prepare protect duty\n"); |
| 2882 | seq_puts(s, " clock count count count rate accuracy phase cycle\n"); |
| 2883 | seq_puts(s, "---------------------------------------------------------------------------------------------\n"); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2884 | |
| 2885 | clk_prepare_lock(); |
| 2886 | |
| 2887 | for (; *lists; lists++) |
| 2888 | hlist_for_each_entry(c, *lists, child_node) |
| 2889 | clk_summary_show_subtree(s, c, 0); |
| 2890 | |
| 2891 | clk_prepare_unlock(); |
| 2892 | |
| 2893 | return 0; |
| 2894 | } |
Andy Shevchenko | fec0ef3 | 2018-02-14 17:48:00 +0200 | [diff] [blame] | 2895 | DEFINE_SHOW_ATTRIBUTE(clk_summary); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2896 | |
| 2897 | static void clk_dump_one(struct seq_file *s, struct clk_core *c, int level) |
| 2898 | { |
Leonard Crestez | 1bd37a4 | 2019-07-02 16:27:09 +0300 | [diff] [blame^] | 2899 | unsigned long min_rate, max_rate; |
| 2900 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2901 | if (!c) |
| 2902 | return; |
| 2903 | |
Leonard Crestez | 1bd37a4 | 2019-07-02 16:27:09 +0300 | [diff] [blame^] | 2904 | clk_core_get_boundaries(c, &min_rate, &max_rate); |
| 2905 | |
Stefan Wahren | 7cb8113 | 2015-04-29 16:36:43 +0000 | [diff] [blame] | 2906 | /* This should be JSON format, i.e. elements separated with a comma */ |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2907 | seq_printf(s, "\"%s\": { ", c->name); |
| 2908 | seq_printf(s, "\"enable_count\": %d,", c->enable_count); |
| 2909 | seq_printf(s, "\"prepare_count\": %d,", c->prepare_count); |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 2910 | seq_printf(s, "\"protect_count\": %d,", c->protect_count); |
Stefan Wahren | 7cb8113 | 2015-04-29 16:36:43 +0000 | [diff] [blame] | 2911 | seq_printf(s, "\"rate\": %lu,", clk_core_get_rate(c)); |
Leonard Crestez | 1bd37a4 | 2019-07-02 16:27:09 +0300 | [diff] [blame^] | 2912 | seq_printf(s, "\"min_rate\": %lu,", min_rate); |
| 2913 | seq_printf(s, "\"max_rate\": %lu,", max_rate); |
Stefan Wahren | 7cb8113 | 2015-04-29 16:36:43 +0000 | [diff] [blame] | 2914 | seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy(c)); |
Lubomir Rintel | c6e9099 | 2019-01-04 23:05:49 +0100 | [diff] [blame] | 2915 | seq_printf(s, "\"phase\": %d,", clk_core_get_phase(c)); |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 2916 | seq_printf(s, "\"duty_cycle\": %u", |
| 2917 | clk_core_get_scaled_duty_cycle(c, 100000)); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2918 | } |
| 2919 | |
| 2920 | static void clk_dump_subtree(struct seq_file *s, struct clk_core *c, int level) |
| 2921 | { |
| 2922 | struct clk_core *child; |
| 2923 | |
| 2924 | if (!c) |
| 2925 | return; |
| 2926 | |
| 2927 | clk_dump_one(s, c, level); |
| 2928 | |
| 2929 | hlist_for_each_entry(child, &c->children, child_node) { |
Markus Elfring | 4d32758 | 2017-04-20 08:45:43 +0200 | [diff] [blame] | 2930 | seq_putc(s, ','); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2931 | clk_dump_subtree(s, child, level + 1); |
| 2932 | } |
| 2933 | |
Markus Elfring | 4d32758 | 2017-04-20 08:45:43 +0200 | [diff] [blame] | 2934 | seq_putc(s, '}'); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2935 | } |
| 2936 | |
Andy Shevchenko | fec0ef3 | 2018-02-14 17:48:00 +0200 | [diff] [blame] | 2937 | static int clk_dump_show(struct seq_file *s, void *data) |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2938 | { |
| 2939 | struct clk_core *c; |
| 2940 | bool first_node = true; |
| 2941 | struct hlist_head **lists = (struct hlist_head **)s->private; |
| 2942 | |
Markus Elfring | 4d32758 | 2017-04-20 08:45:43 +0200 | [diff] [blame] | 2943 | seq_putc(s, '{'); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2944 | clk_prepare_lock(); |
| 2945 | |
| 2946 | for (; *lists; lists++) { |
| 2947 | hlist_for_each_entry(c, *lists, child_node) { |
| 2948 | if (!first_node) |
Markus Elfring | 4d32758 | 2017-04-20 08:45:43 +0200 | [diff] [blame] | 2949 | seq_putc(s, ','); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2950 | first_node = false; |
| 2951 | clk_dump_subtree(s, c, 0); |
| 2952 | } |
| 2953 | } |
| 2954 | |
| 2955 | clk_prepare_unlock(); |
| 2956 | |
Felipe Balbi | 70e9f4d | 2015-05-01 09:48:37 -0500 | [diff] [blame] | 2957 | seq_puts(s, "}\n"); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2958 | return 0; |
| 2959 | } |
Andy Shevchenko | fec0ef3 | 2018-02-14 17:48:00 +0200 | [diff] [blame] | 2960 | DEFINE_SHOW_ATTRIBUTE(clk_dump); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 2961 | |
Geert Uytterhoeven | a6059ab | 2018-01-03 12:06:16 +0100 | [diff] [blame] | 2962 | static const struct { |
| 2963 | unsigned long flag; |
| 2964 | const char *name; |
| 2965 | } clk_flags[] = { |
Geert Uytterhoeven | 40dd71c | 2018-07-06 17:16:54 +0200 | [diff] [blame] | 2966 | #define ENTRY(f) { f, #f } |
Geert Uytterhoeven | a6059ab | 2018-01-03 12:06:16 +0100 | [diff] [blame] | 2967 | ENTRY(CLK_SET_RATE_GATE), |
| 2968 | ENTRY(CLK_SET_PARENT_GATE), |
| 2969 | ENTRY(CLK_SET_RATE_PARENT), |
| 2970 | ENTRY(CLK_IGNORE_UNUSED), |
Geert Uytterhoeven | a6059ab | 2018-01-03 12:06:16 +0100 | [diff] [blame] | 2971 | ENTRY(CLK_GET_RATE_NOCACHE), |
| 2972 | ENTRY(CLK_SET_RATE_NO_REPARENT), |
| 2973 | ENTRY(CLK_GET_ACCURACY_NOCACHE), |
| 2974 | ENTRY(CLK_RECALC_NEW_RATES), |
| 2975 | ENTRY(CLK_SET_RATE_UNGATE), |
| 2976 | ENTRY(CLK_IS_CRITICAL), |
| 2977 | ENTRY(CLK_OPS_PARENT_ENABLE), |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 2978 | ENTRY(CLK_DUTY_CYCLE_PARENT), |
Geert Uytterhoeven | a6059ab | 2018-01-03 12:06:16 +0100 | [diff] [blame] | 2979 | #undef ENTRY |
| 2980 | }; |
| 2981 | |
Andy Shevchenko | fec0ef3 | 2018-02-14 17:48:00 +0200 | [diff] [blame] | 2982 | static int clk_flags_show(struct seq_file *s, void *data) |
Geert Uytterhoeven | a6059ab | 2018-01-03 12:06:16 +0100 | [diff] [blame] | 2983 | { |
| 2984 | struct clk_core *core = s->private; |
| 2985 | unsigned long flags = core->flags; |
| 2986 | unsigned int i; |
| 2987 | |
| 2988 | for (i = 0; flags && i < ARRAY_SIZE(clk_flags); i++) { |
| 2989 | if (flags & clk_flags[i].flag) { |
| 2990 | seq_printf(s, "%s\n", clk_flags[i].name); |
| 2991 | flags &= ~clk_flags[i].flag; |
| 2992 | } |
| 2993 | } |
| 2994 | if (flags) { |
| 2995 | /* Unknown flags */ |
| 2996 | seq_printf(s, "0x%lx\n", flags); |
| 2997 | } |
| 2998 | |
| 2999 | return 0; |
| 3000 | } |
Andy Shevchenko | fec0ef3 | 2018-02-14 17:48:00 +0200 | [diff] [blame] | 3001 | DEFINE_SHOW_ATTRIBUTE(clk_flags); |
Geert Uytterhoeven | a6059ab | 2018-01-03 12:06:16 +0100 | [diff] [blame] | 3002 | |
Stephen Boyd | 11f6c23 | 2019-06-24 20:01:55 -0700 | [diff] [blame] | 3003 | static void possible_parent_show(struct seq_file *s, struct clk_core *core, |
| 3004 | unsigned int i, char terminator) |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3005 | { |
Chen-Yu Tsai | 2d156b7 | 2019-05-03 11:15:09 +0800 | [diff] [blame] | 3006 | struct clk_core *parent; |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3007 | |
Chen-Yu Tsai | 2d156b7 | 2019-05-03 11:15:09 +0800 | [diff] [blame] | 3008 | /* |
| 3009 | * Go through the following options to fetch a parent's name. |
| 3010 | * |
| 3011 | * 1. Fetch the registered parent clock and use its name |
| 3012 | * 2. Use the global (fallback) name if specified |
| 3013 | * 3. Use the local fw_name if provided |
| 3014 | * 4. Fetch parent clock's clock-output-name if DT index was set |
| 3015 | * |
| 3016 | * This may still fail in some cases, such as when the parent is |
| 3017 | * specified directly via a struct clk_hw pointer, but it isn't |
| 3018 | * registered (yet). |
| 3019 | */ |
Chen-Yu Tsai | 2d156b7 | 2019-05-03 11:15:09 +0800 | [diff] [blame] | 3020 | parent = clk_core_get_parent_by_index(core, i); |
| 3021 | if (parent) |
| 3022 | seq_printf(s, "%s", parent->name); |
| 3023 | else if (core->parents[i].name) |
| 3024 | seq_printf(s, "%s", core->parents[i].name); |
| 3025 | else if (core->parents[i].fw_name) |
| 3026 | seq_printf(s, "<%s>(fw)", core->parents[i].fw_name); |
| 3027 | else if (core->parents[i].index >= 0) |
| 3028 | seq_printf(s, "%s", |
| 3029 | of_clk_get_parent_name(core->of_node, |
| 3030 | core->parents[i].index)); |
| 3031 | else |
| 3032 | seq_puts(s, "(missing)"); |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3033 | |
Stephen Boyd | 11f6c23 | 2019-06-24 20:01:55 -0700 | [diff] [blame] | 3034 | seq_putc(s, terminator); |
| 3035 | } |
| 3036 | |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3037 | static int possible_parents_show(struct seq_file *s, void *data) |
| 3038 | { |
| 3039 | struct clk_core *core = s->private; |
| 3040 | int i; |
| 3041 | |
| 3042 | for (i = 0; i < core->num_parents - 1; i++) |
Stephen Boyd | 11f6c23 | 2019-06-24 20:01:55 -0700 | [diff] [blame] | 3043 | possible_parent_show(s, core, i, ' '); |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3044 | |
Stephen Boyd | 11f6c23 | 2019-06-24 20:01:55 -0700 | [diff] [blame] | 3045 | possible_parent_show(s, core, i, '\n'); |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3046 | |
| 3047 | return 0; |
| 3048 | } |
Andy Shevchenko | fec0ef3 | 2018-02-14 17:48:00 +0200 | [diff] [blame] | 3049 | DEFINE_SHOW_ATTRIBUTE(possible_parents); |
Peter De Schrijver | 9203157 | 2017-03-21 15:20:31 +0200 | [diff] [blame] | 3050 | |
Leonard Crestez | e5e8924 | 2019-06-10 14:06:38 +0300 | [diff] [blame] | 3051 | static int current_parent_show(struct seq_file *s, void *data) |
| 3052 | { |
| 3053 | struct clk_core *core = s->private; |
| 3054 | |
| 3055 | if (core->parent) |
| 3056 | seq_printf(s, "%s\n", core->parent->name); |
| 3057 | |
| 3058 | return 0; |
| 3059 | } |
| 3060 | DEFINE_SHOW_ATTRIBUTE(current_parent); |
| 3061 | |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 3062 | static int clk_duty_cycle_show(struct seq_file *s, void *data) |
| 3063 | { |
| 3064 | struct clk_core *core = s->private; |
| 3065 | struct clk_duty *duty = &core->duty; |
| 3066 | |
| 3067 | seq_printf(s, "%u/%u\n", duty->num, duty->den); |
| 3068 | |
| 3069 | return 0; |
| 3070 | } |
| 3071 | DEFINE_SHOW_ATTRIBUTE(clk_duty_cycle); |
| 3072 | |
Leonard Crestez | 1bd37a4 | 2019-07-02 16:27:09 +0300 | [diff] [blame^] | 3073 | static int clk_min_rate_show(struct seq_file *s, void *data) |
| 3074 | { |
| 3075 | struct clk_core *core = s->private; |
| 3076 | unsigned long min_rate, max_rate; |
| 3077 | |
| 3078 | clk_prepare_lock(); |
| 3079 | clk_core_get_boundaries(core, &min_rate, &max_rate); |
| 3080 | clk_prepare_unlock(); |
| 3081 | seq_printf(s, "%lu\n", min_rate); |
| 3082 | |
| 3083 | return 0; |
| 3084 | } |
| 3085 | DEFINE_SHOW_ATTRIBUTE(clk_min_rate); |
| 3086 | |
| 3087 | static int clk_max_rate_show(struct seq_file *s, void *data) |
| 3088 | { |
| 3089 | struct clk_core *core = s->private; |
| 3090 | unsigned long min_rate, max_rate; |
| 3091 | |
| 3092 | clk_prepare_lock(); |
| 3093 | clk_core_get_boundaries(core, &min_rate, &max_rate); |
| 3094 | clk_prepare_unlock(); |
| 3095 | seq_printf(s, "%lu\n", max_rate); |
| 3096 | |
| 3097 | return 0; |
| 3098 | } |
| 3099 | DEFINE_SHOW_ATTRIBUTE(clk_max_rate); |
| 3100 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3101 | static void clk_debug_create_one(struct clk_core *core, struct dentry *pdentry) |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3102 | { |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3103 | struct dentry *root; |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3104 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3105 | if (!core || !pdentry) |
| 3106 | return; |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3107 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3108 | root = debugfs_create_dir(core->name, pdentry); |
| 3109 | core->dentry = root; |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3110 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3111 | debugfs_create_ulong("clk_rate", 0444, root, &core->rate); |
Leonard Crestez | 1bd37a4 | 2019-07-02 16:27:09 +0300 | [diff] [blame^] | 3112 | debugfs_create_file("clk_min_rate", 0444, root, core, &clk_min_rate_fops); |
| 3113 | debugfs_create_file("clk_max_rate", 0444, root, core, &clk_max_rate_fops); |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3114 | debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy); |
| 3115 | debugfs_create_u32("clk_phase", 0444, root, &core->phase); |
| 3116 | debugfs_create_file("clk_flags", 0444, root, core, &clk_flags_fops); |
| 3117 | debugfs_create_u32("clk_prepare_count", 0444, root, &core->prepare_count); |
| 3118 | debugfs_create_u32("clk_enable_count", 0444, root, &core->enable_count); |
| 3119 | debugfs_create_u32("clk_protect_count", 0444, root, &core->protect_count); |
| 3120 | debugfs_create_u32("clk_notifier_count", 0444, root, &core->notifier_count); |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 3121 | debugfs_create_file("clk_duty_cycle", 0444, root, core, |
| 3122 | &clk_duty_cycle_fops); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3123 | |
Leonard Crestez | e5e8924 | 2019-06-10 14:06:38 +0300 | [diff] [blame] | 3124 | if (core->num_parents > 0) |
| 3125 | debugfs_create_file("clk_parent", 0444, root, core, |
| 3126 | ¤t_parent_fops); |
| 3127 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3128 | if (core->num_parents > 1) |
| 3129 | debugfs_create_file("clk_possible_parents", 0444, root, core, |
| 3130 | &possible_parents_fops); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3131 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3132 | if (core->ops->debug_init) |
| 3133 | core->ops->debug_init(core->hw, core->dentry); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3134 | } |
| 3135 | |
| 3136 | /** |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3137 | * clk_debug_register - add a clk node to the debugfs clk directory |
| 3138 | * @core: the clk being added to the debugfs clk directory |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3139 | * |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3140 | * Dynamically adds a clk to the debugfs clk directory if debugfs has been |
| 3141 | * initialized. Otherwise it bails out early since the debugfs clk directory |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3142 | * will be created lazily by clk_debug_init as part of a late_initcall. |
| 3143 | */ |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3144 | static void clk_debug_register(struct clk_core *core) |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3145 | { |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3146 | mutex_lock(&clk_debug_lock); |
| 3147 | hlist_add_head(&core->debug_node, &clk_debug_list); |
Stephen Boyd | db3188fa | 2018-01-03 16:44:37 -0800 | [diff] [blame] | 3148 | if (inited) |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3149 | clk_debug_create_one(core, rootdir); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3150 | mutex_unlock(&clk_debug_lock); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3151 | } |
| 3152 | |
| 3153 | /** |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3154 | * clk_debug_unregister - remove a clk node from the debugfs clk directory |
| 3155 | * @core: the clk being removed from the debugfs clk directory |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3156 | * |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3157 | * Dynamically removes a clk and all its child nodes from the |
| 3158 | * debugfs clk directory if clk->dentry points to debugfs created by |
Stephen Boyd | 706d5c7 | 2016-02-22 15:43:41 -0800 | [diff] [blame] | 3159 | * clk_debug_register in __clk_core_init. |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3160 | */ |
| 3161 | static void clk_debug_unregister(struct clk_core *core) |
| 3162 | { |
| 3163 | mutex_lock(&clk_debug_lock); |
| 3164 | hlist_del_init(&core->debug_node); |
| 3165 | debugfs_remove_recursive(core->dentry); |
| 3166 | core->dentry = NULL; |
| 3167 | mutex_unlock(&clk_debug_lock); |
| 3168 | } |
| 3169 | |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3170 | /** |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3171 | * clk_debug_init - lazily populate the debugfs clk directory |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3172 | * |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3173 | * clks are often initialized very early during boot before memory can be |
| 3174 | * dynamically allocated and well before debugfs is setup. This function |
| 3175 | * populates the debugfs clk directory once at boot-time when we know that |
| 3176 | * debugfs is setup. It should only be called once at boot-time, all other clks |
| 3177 | * added dynamically will be done so with clk_debug_register. |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3178 | */ |
| 3179 | static int __init clk_debug_init(void) |
| 3180 | { |
| 3181 | struct clk_core *core; |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3182 | |
| 3183 | rootdir = debugfs_create_dir("clk", NULL); |
| 3184 | |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3185 | debugfs_create_file("clk_summary", 0444, rootdir, &all_lists, |
| 3186 | &clk_summary_fops); |
| 3187 | debugfs_create_file("clk_dump", 0444, rootdir, &all_lists, |
| 3188 | &clk_dump_fops); |
| 3189 | debugfs_create_file("clk_orphan_summary", 0444, rootdir, &orphan_list, |
| 3190 | &clk_summary_fops); |
| 3191 | debugfs_create_file("clk_orphan_dump", 0444, rootdir, &orphan_list, |
| 3192 | &clk_dump_fops); |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3193 | |
| 3194 | mutex_lock(&clk_debug_lock); |
| 3195 | hlist_for_each_entry(core, &clk_debug_list, debug_node) |
| 3196 | clk_debug_create_one(core, rootdir); |
| 3197 | |
| 3198 | inited = 1; |
| 3199 | mutex_unlock(&clk_debug_lock); |
| 3200 | |
| 3201 | return 0; |
| 3202 | } |
| 3203 | late_initcall(clk_debug_init); |
| 3204 | #else |
Greg Kroah-Hartman | 8a26bbb | 2018-05-29 18:08:00 +0200 | [diff] [blame] | 3205 | static inline void clk_debug_register(struct clk_core *core) { } |
Stephen Boyd | 4dff95d | 2015-04-30 14:43:22 -0700 | [diff] [blame] | 3206 | static inline void clk_debug_reparent(struct clk_core *core, |
| 3207 | struct clk_core *new_parent) |
| 3208 | { |
| 3209 | } |
| 3210 | static inline void clk_debug_unregister(struct clk_core *core) |
| 3211 | { |
| 3212 | } |
| 3213 | #endif |
| 3214 | |
Michael Turquette | 3d3801e | 2015-02-25 09:11:01 -0800 | [diff] [blame] | 3215 | /** |
Masahiro Yamada | be45ebf | 2015-12-28 19:22:57 +0900 | [diff] [blame] | 3216 | * __clk_core_init - initialize the data structures in a struct clk_core |
Masahiro Yamada | d35c80c | 2015-12-28 19:22:56 +0900 | [diff] [blame] | 3217 | * @core: clk_core being initialized |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3218 | * |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3219 | * Initializes the lists in struct clk_core, queries the hardware for the |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3220 | * parent and rate and sets them both. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3221 | */ |
Masahiro Yamada | be45ebf | 2015-12-28 19:22:57 +0900 | [diff] [blame] | 3222 | static int __clk_core_init(struct clk_core *core) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3223 | { |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3224 | int ret; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3225 | struct clk_core *orphan; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 3226 | struct hlist_node *tmp2; |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3227 | unsigned long rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3228 | |
Masahiro Yamada | d35c80c | 2015-12-28 19:22:56 +0900 | [diff] [blame] | 3229 | if (!core) |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3230 | return -EINVAL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3231 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 3232 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3233 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 3234 | ret = clk_pm_runtime_get(core); |
| 3235 | if (ret) |
| 3236 | goto unlock; |
| 3237 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3238 | /* check to see if a clock with this name is already registered */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3239 | if (clk_core_lookup(core->name)) { |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3240 | pr_debug("%s: clk %s already initialized\n", |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3241 | __func__, core->name); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3242 | ret = -EEXIST; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3243 | goto out; |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3244 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3245 | |
Mauro Carvalho Chehab | 5fb94e9 | 2018-05-08 15:14:57 -0300 | [diff] [blame] | 3246 | /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3247 | if (core->ops->set_rate && |
| 3248 | !((core->ops->round_rate || core->ops->determine_rate) && |
| 3249 | core->ops->recalc_rate)) { |
Masahiro Yamada | c44fccb | 2015-12-28 19:23:03 +0900 | [diff] [blame] | 3250 | pr_err("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n", |
| 3251 | __func__, core->name); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3252 | ret = -EINVAL; |
Mike Turquette | d4d7e3d | 2012-03-26 16:15:52 -0700 | [diff] [blame] | 3253 | goto out; |
| 3254 | } |
| 3255 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3256 | if (core->ops->set_parent && !core->ops->get_parent) { |
Masahiro Yamada | c44fccb | 2015-12-28 19:23:03 +0900 | [diff] [blame] | 3257 | pr_err("%s: %s must implement .get_parent & .set_parent\n", |
| 3258 | __func__, core->name); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3259 | ret = -EINVAL; |
Mike Turquette | d4d7e3d | 2012-03-26 16:15:52 -0700 | [diff] [blame] | 3260 | goto out; |
| 3261 | } |
| 3262 | |
Masahiro Yamada | 3c8e77d | 2015-12-28 19:23:04 +0900 | [diff] [blame] | 3263 | if (core->num_parents > 1 && !core->ops->get_parent) { |
| 3264 | pr_err("%s: %s must implement .get_parent as it has multi parents\n", |
| 3265 | __func__, core->name); |
| 3266 | ret = -EINVAL; |
| 3267 | goto out; |
| 3268 | } |
| 3269 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3270 | if (core->ops->set_rate_and_parent && |
| 3271 | !(core->ops->set_parent && core->ops->set_rate)) { |
Masahiro Yamada | c44fccb | 2015-12-28 19:23:03 +0900 | [diff] [blame] | 3272 | pr_err("%s: %s must implement .set_parent & .set_rate\n", |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3273 | __func__, core->name); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 3274 | ret = -EINVAL; |
| 3275 | goto out; |
| 3276 | } |
| 3277 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3278 | core->parent = __clk_init_parent(core); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3279 | |
| 3280 | /* |
Stephen Boyd | 706d5c7 | 2016-02-22 15:43:41 -0800 | [diff] [blame] | 3281 | * Populate core->parent if parent has already been clk_core_init'd. If |
| 3282 | * parent has not yet been clk_core_init'd then place clk in the orphan |
Stephen Boyd | 47b0eeb | 2016-02-02 17:24:56 -0800 | [diff] [blame] | 3283 | * list. If clk doesn't have any parents then place it in the root |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3284 | * clk list. |
| 3285 | * |
| 3286 | * Every time a new clk is clk_init'd then we walk the list of orphan |
| 3287 | * clocks and re-parent any that are children of the clock currently |
| 3288 | * being clk_init'd. |
| 3289 | */ |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 3290 | if (core->parent) { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3291 | hlist_add_head(&core->child_node, |
| 3292 | &core->parent->children); |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 3293 | core->orphan = core->parent->orphan; |
Stephen Boyd | 47b0eeb | 2016-02-02 17:24:56 -0800 | [diff] [blame] | 3294 | } else if (!core->num_parents) { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3295 | hlist_add_head(&core->child_node, &clk_root_list); |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 3296 | core->orphan = false; |
| 3297 | } else { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3298 | hlist_add_head(&core->child_node, &clk_orphan_list); |
Heiko Stuebner | e650034 | 2015-04-22 22:53:05 +0200 | [diff] [blame] | 3299 | core->orphan = true; |
| 3300 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3301 | |
| 3302 | /* |
Jerome Brunet | 541deba | 2018-02-14 14:43:37 +0100 | [diff] [blame] | 3303 | * optional platform-specific magic |
| 3304 | * |
| 3305 | * The .init callback is not used by any of the basic clock types, but |
| 3306 | * exists for weird hardware that must perform initialization magic. |
| 3307 | * Please consider other ways of solving initialization problems before |
| 3308 | * using this callback, as its use is discouraged. |
| 3309 | */ |
| 3310 | if (core->ops->init) |
| 3311 | core->ops->init(core->hw); |
| 3312 | |
| 3313 | /* |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 3314 | * Set clk's accuracy. The preferred method is to use |
| 3315 | * .recalc_accuracy. For simple clocks and lazy developers the default |
| 3316 | * fallback is to use the parent's accuracy. If a clock doesn't have a |
| 3317 | * parent (or is orphaned) then accuracy is set to zero (perfect |
| 3318 | * clock). |
| 3319 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3320 | if (core->ops->recalc_accuracy) |
| 3321 | core->accuracy = core->ops->recalc_accuracy(core->hw, |
| 3322 | __clk_get_accuracy(core->parent)); |
| 3323 | else if (core->parent) |
| 3324 | core->accuracy = core->parent->accuracy; |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 3325 | else |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3326 | core->accuracy = 0; |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 3327 | |
| 3328 | /* |
Maxime Ripard | 9824cf7 | 2014-07-14 13:53:27 +0200 | [diff] [blame] | 3329 | * Set clk's phase. |
| 3330 | * Since a phase is by definition relative to its parent, just |
| 3331 | * query the current clock phase, or just assume it's in phase. |
| 3332 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3333 | if (core->ops->get_phase) |
| 3334 | core->phase = core->ops->get_phase(core->hw); |
Maxime Ripard | 9824cf7 | 2014-07-14 13:53:27 +0200 | [diff] [blame] | 3335 | else |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3336 | core->phase = 0; |
Maxime Ripard | 9824cf7 | 2014-07-14 13:53:27 +0200 | [diff] [blame] | 3337 | |
| 3338 | /* |
Jerome Brunet | 9fba738 | 2018-06-19 16:41:41 +0200 | [diff] [blame] | 3339 | * Set clk's duty cycle. |
| 3340 | */ |
| 3341 | clk_core_update_duty_cycle_nolock(core); |
| 3342 | |
| 3343 | /* |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3344 | * Set clk's rate. The preferred method is to use .recalc_rate. For |
| 3345 | * simple clocks and lazy developers the default fallback is to use the |
| 3346 | * parent's rate. If a clock doesn't have a parent (or is orphaned) |
| 3347 | * then rate is set to zero. |
| 3348 | */ |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3349 | if (core->ops->recalc_rate) |
| 3350 | rate = core->ops->recalc_rate(core->hw, |
| 3351 | clk_core_get_rate_nolock(core->parent)); |
| 3352 | else if (core->parent) |
| 3353 | rate = core->parent->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3354 | else |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3355 | rate = 0; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3356 | core->rate = core->req_rate = rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3357 | |
| 3358 | /* |
Jerome Brunet | 99652a4 | 2018-02-14 14:43:36 +0100 | [diff] [blame] | 3359 | * Enable CLK_IS_CRITICAL clocks so newly added critical clocks |
| 3360 | * don't get accidentally disabled when walking the orphan tree and |
| 3361 | * reparenting clocks |
| 3362 | */ |
| 3363 | if (core->flags & CLK_IS_CRITICAL) { |
| 3364 | unsigned long flags; |
| 3365 | |
| 3366 | clk_core_prepare(core); |
| 3367 | |
| 3368 | flags = clk_enable_lock(); |
| 3369 | clk_core_enable(core); |
| 3370 | clk_enable_unlock(flags); |
| 3371 | } |
| 3372 | |
| 3373 | /* |
Masahiro Yamada | 0e8f6e4 | 2015-12-28 19:23:07 +0900 | [diff] [blame] | 3374 | * walk the list of orphan clocks and reparent any that newly finds a |
| 3375 | * parent. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3376 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 3377 | hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) { |
Masahiro Yamada | 0e8f6e4 | 2015-12-28 19:23:07 +0900 | [diff] [blame] | 3378 | struct clk_core *parent = __clk_init_parent(orphan); |
Martin Fuzzey | 1f61e5f | 2012-11-22 20:15:05 +0100 | [diff] [blame] | 3379 | |
Michael Turquette | 904e6ea | 2016-07-08 16:32:10 -0700 | [diff] [blame] | 3380 | /* |
Jerome Brunet | 99652a4 | 2018-02-14 14:43:36 +0100 | [diff] [blame] | 3381 | * We need to use __clk_set_parent_before() and _after() to |
| 3382 | * to properly migrate any prepare/enable count of the orphan |
| 3383 | * clock. This is important for CLK_IS_CRITICAL clocks, which |
| 3384 | * are enabled during init but might not have a parent yet. |
Michael Turquette | 904e6ea | 2016-07-08 16:32:10 -0700 | [diff] [blame] | 3385 | */ |
| 3386 | if (parent) { |
Stephen Boyd | f8f8f1d | 2017-11-02 00:36:09 -0700 | [diff] [blame] | 3387 | /* update the clk tree topology */ |
Jerome Brunet | 99652a4 | 2018-02-14 14:43:36 +0100 | [diff] [blame] | 3388 | __clk_set_parent_before(orphan, parent); |
| 3389 | __clk_set_parent_after(orphan, parent, NULL); |
Michael Turquette | 904e6ea | 2016-07-08 16:32:10 -0700 | [diff] [blame] | 3390 | __clk_recalc_accuracies(orphan); |
| 3391 | __clk_recalc_rates(orphan, 0); |
| 3392 | } |
Masahiro Yamada | 0e8f6e4 | 2015-12-28 19:23:07 +0900 | [diff] [blame] | 3393 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3394 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3395 | kref_init(&core->ref); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3396 | out: |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 3397 | clk_pm_runtime_put(core); |
| 3398 | unlock: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 3399 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3400 | |
Stephen Boyd | 89f7e9d | 2014-12-12 15:04:16 -0800 | [diff] [blame] | 3401 | if (!ret) |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3402 | clk_debug_register(core); |
Stephen Boyd | 89f7e9d | 2014-12-12 15:04:16 -0800 | [diff] [blame] | 3403 | |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3404 | return ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3405 | } |
| 3406 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3407 | /** |
| 3408 | * clk_core_link_consumer - Add a clk consumer to the list of consumers in a clk_core |
| 3409 | * @core: clk to add consumer to |
| 3410 | * @clk: consumer to link to a clk |
| 3411 | */ |
| 3412 | static void clk_core_link_consumer(struct clk_core *core, struct clk *clk) |
| 3413 | { |
| 3414 | clk_prepare_lock(); |
| 3415 | hlist_add_head(&clk->clks_node, &core->clks); |
| 3416 | clk_prepare_unlock(); |
| 3417 | } |
| 3418 | |
| 3419 | /** |
| 3420 | * clk_core_unlink_consumer - Remove a clk consumer from the list of consumers in a clk_core |
| 3421 | * @clk: consumer to unlink |
| 3422 | */ |
| 3423 | static void clk_core_unlink_consumer(struct clk *clk) |
| 3424 | { |
| 3425 | lockdep_assert_held(&prepare_lock); |
| 3426 | hlist_del(&clk->clks_node); |
| 3427 | } |
| 3428 | |
| 3429 | /** |
| 3430 | * alloc_clk - Allocate a clk consumer, but leave it unlinked to the clk_core |
| 3431 | * @core: clk to allocate a consumer for |
| 3432 | * @dev_id: string describing device name |
| 3433 | * @con_id: connection ID string on device |
| 3434 | * |
| 3435 | * Returns: clk consumer left unlinked from the consumer list |
| 3436 | */ |
| 3437 | static struct clk *alloc_clk(struct clk_core *core, const char *dev_id, |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3438 | const char *con_id) |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 3439 | { |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 3440 | struct clk *clk; |
| 3441 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3442 | clk = kzalloc(sizeof(*clk), GFP_KERNEL); |
| 3443 | if (!clk) |
| 3444 | return ERR_PTR(-ENOMEM); |
| 3445 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3446 | clk->core = core; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3447 | clk->dev_id = dev_id; |
Leonard Crestez | 253160a | 2017-02-20 15:20:56 +0200 | [diff] [blame] | 3448 | clk->con_id = kstrdup_const(con_id, GFP_KERNEL); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3449 | clk->max_rate = ULONG_MAX; |
| 3450 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 3451 | return clk; |
| 3452 | } |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3453 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3454 | /** |
| 3455 | * free_clk - Free a clk consumer |
| 3456 | * @clk: clk consumer to free |
| 3457 | * |
| 3458 | * Note, this assumes the clk has been unlinked from the clk_core consumer |
| 3459 | * list. |
| 3460 | */ |
| 3461 | static void free_clk(struct clk *clk) |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3462 | { |
Leonard Crestez | 253160a | 2017-02-20 15:20:56 +0200 | [diff] [blame] | 3463 | kfree_const(clk->con_id); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3464 | kfree(clk); |
| 3465 | } |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 3466 | |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3467 | /** |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3468 | * clk_hw_create_clk: Allocate and link a clk consumer to a clk_core given |
| 3469 | * a clk_hw |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 3470 | * @dev: clk consumer device |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3471 | * @hw: clk_hw associated with the clk being consumed |
| 3472 | * @dev_id: string describing device name |
| 3473 | * @con_id: connection ID string on device |
| 3474 | * |
| 3475 | * This is the main function used to create a clk pointer for use by clk |
| 3476 | * consumers. It connects a consumer to the clk_core and clk_hw structures |
| 3477 | * used by the framework and clk provider respectively. |
| 3478 | */ |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 3479 | struct clk *clk_hw_create_clk(struct device *dev, struct clk_hw *hw, |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3480 | const char *dev_id, const char *con_id) |
| 3481 | { |
| 3482 | struct clk *clk; |
| 3483 | struct clk_core *core; |
| 3484 | |
| 3485 | /* This is to allow this function to be chained to others */ |
| 3486 | if (IS_ERR_OR_NULL(hw)) |
| 3487 | return ERR_CAST(hw); |
| 3488 | |
| 3489 | core = hw->core; |
| 3490 | clk = alloc_clk(core, dev_id, con_id); |
| 3491 | if (IS_ERR(clk)) |
| 3492 | return clk; |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 3493 | clk->dev = dev; |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3494 | |
| 3495 | if (!try_module_get(core->owner)) { |
| 3496 | free_clk(clk); |
| 3497 | return ERR_PTR(-ENOENT); |
| 3498 | } |
| 3499 | |
| 3500 | kref_get(&core->ref); |
| 3501 | clk_core_link_consumer(core, clk); |
| 3502 | |
| 3503 | return clk; |
| 3504 | } |
| 3505 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3506 | static int clk_cpy_name(const char **dst_p, const char *src, bool must_exist) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3507 | { |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3508 | const char *dst; |
| 3509 | |
| 3510 | if (!src) { |
| 3511 | if (must_exist) |
| 3512 | return -EINVAL; |
| 3513 | return 0; |
| 3514 | } |
| 3515 | |
| 3516 | *dst_p = dst = kstrdup_const(src, GFP_KERNEL); |
| 3517 | if (!dst) |
| 3518 | return -ENOMEM; |
| 3519 | |
| 3520 | return 0; |
| 3521 | } |
| 3522 | |
| 3523 | static int clk_core_populate_parent_map(struct clk_core *core) |
| 3524 | { |
| 3525 | const struct clk_init_data *init = core->hw->init; |
| 3526 | u8 num_parents = init->num_parents; |
| 3527 | const char * const *parent_names = init->parent_names; |
| 3528 | const struct clk_hw **parent_hws = init->parent_hws; |
| 3529 | const struct clk_parent_data *parent_data = init->parent_data; |
| 3530 | int i, ret = 0; |
| 3531 | struct clk_parent_map *parents, *parent; |
| 3532 | |
| 3533 | if (!num_parents) |
| 3534 | return 0; |
| 3535 | |
| 3536 | /* |
| 3537 | * Avoid unnecessary string look-ups of clk_core's possible parents by |
| 3538 | * having a cache of names/clk_hw pointers to clk_core pointers. |
| 3539 | */ |
| 3540 | parents = kcalloc(num_parents, sizeof(*parents), GFP_KERNEL); |
| 3541 | core->parents = parents; |
| 3542 | if (!parents) |
| 3543 | return -ENOMEM; |
| 3544 | |
| 3545 | /* Copy everything over because it might be __initdata */ |
| 3546 | for (i = 0, parent = parents; i < num_parents; i++, parent++) { |
Stephen Boyd | 601b6e9 | 2019-04-12 11:31:49 -0700 | [diff] [blame] | 3547 | parent->index = -1; |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3548 | if (parent_names) { |
| 3549 | /* throw a WARN if any entries are NULL */ |
| 3550 | WARN(!parent_names[i], |
| 3551 | "%s: invalid NULL in %s's .parent_names\n", |
| 3552 | __func__, core->name); |
| 3553 | ret = clk_cpy_name(&parent->name, parent_names[i], |
| 3554 | true); |
| 3555 | } else if (parent_data) { |
| 3556 | parent->hw = parent_data[i].hw; |
Stephen Boyd | 601b6e9 | 2019-04-12 11:31:49 -0700 | [diff] [blame] | 3557 | parent->index = parent_data[i].index; |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3558 | ret = clk_cpy_name(&parent->fw_name, |
| 3559 | parent_data[i].fw_name, false); |
| 3560 | if (!ret) |
| 3561 | ret = clk_cpy_name(&parent->name, |
| 3562 | parent_data[i].name, |
| 3563 | false); |
| 3564 | } else if (parent_hws) { |
| 3565 | parent->hw = parent_hws[i]; |
| 3566 | } else { |
| 3567 | ret = -EINVAL; |
| 3568 | WARN(1, "Must specify parents if num_parents > 0\n"); |
| 3569 | } |
| 3570 | |
| 3571 | if (ret) { |
| 3572 | do { |
| 3573 | kfree_const(parents[i].name); |
| 3574 | kfree_const(parents[i].fw_name); |
| 3575 | } while (--i >= 0); |
| 3576 | kfree(parents); |
| 3577 | |
| 3578 | return ret; |
| 3579 | } |
| 3580 | } |
| 3581 | |
| 3582 | return 0; |
| 3583 | } |
| 3584 | |
| 3585 | static void clk_core_free_parent_map(struct clk_core *core) |
| 3586 | { |
| 3587 | int i = core->num_parents; |
| 3588 | |
| 3589 | if (!core->num_parents) |
| 3590 | return; |
| 3591 | |
| 3592 | while (--i >= 0) { |
| 3593 | kfree_const(core->parents[i].name); |
| 3594 | kfree_const(core->parents[i].fw_name); |
| 3595 | } |
| 3596 | |
| 3597 | kfree(core->parents); |
| 3598 | } |
| 3599 | |
Stephen Boyd | 89a5ddcc | 2019-04-12 11:31:46 -0700 | [diff] [blame] | 3600 | static struct clk * |
| 3601 | __clk_register(struct device *dev, struct device_node *np, struct clk_hw *hw) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3602 | { |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3603 | int ret; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3604 | struct clk_core *core; |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3605 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3606 | core = kzalloc(sizeof(*core), GFP_KERNEL); |
| 3607 | if (!core) { |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3608 | ret = -ENOMEM; |
| 3609 | goto fail_out; |
| 3610 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3611 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3612 | core->name = kstrdup_const(hw->init->name, GFP_KERNEL); |
| 3613 | if (!core->name) { |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 3614 | ret = -ENOMEM; |
| 3615 | goto fail_name; |
| 3616 | } |
Jerome Brunet | 29fd2a3 | 2017-12-19 09:33:29 +0100 | [diff] [blame] | 3617 | |
| 3618 | if (WARN_ON(!hw->init->ops)) { |
| 3619 | ret = -EINVAL; |
| 3620 | goto fail_ops; |
| 3621 | } |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3622 | core->ops = hw->init->ops; |
Jerome Brunet | 29fd2a3 | 2017-12-19 09:33:29 +0100 | [diff] [blame] | 3623 | |
Marek Szyprowski | 9a34b45 | 2017-08-21 10:04:59 +0200 | [diff] [blame] | 3624 | if (dev && pm_runtime_enabled(dev)) |
Miquel Raynal | 2447883 | 2018-12-04 20:24:37 +0100 | [diff] [blame] | 3625 | core->rpm_enabled = true; |
| 3626 | core->dev = dev; |
Stephen Boyd | 89a5ddcc | 2019-04-12 11:31:46 -0700 | [diff] [blame] | 3627 | core->of_node = np; |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 3628 | if (dev && dev->driver) |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3629 | core->owner = dev->driver->owner; |
| 3630 | core->hw = hw; |
| 3631 | core->flags = hw->init->flags; |
| 3632 | core->num_parents = hw->init->num_parents; |
Stephen Boyd | 9783c0d | 2015-07-16 12:50:27 -0700 | [diff] [blame] | 3633 | core->min_rate = 0; |
| 3634 | core->max_rate = ULONG_MAX; |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3635 | hw->core = core; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3636 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3637 | ret = clk_core_populate_parent_map(core); |
| 3638 | if (ret) |
Masahiro Yamada | 176d116 | 2015-12-28 19:23:00 +0900 | [diff] [blame] | 3639 | goto fail_parents; |
Masahiro Yamada | 176d116 | 2015-12-28 19:23:00 +0900 | [diff] [blame] | 3640 | |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3641 | INIT_HLIST_HEAD(&core->clks); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3642 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3643 | /* |
| 3644 | * Don't call clk_hw_create_clk() here because that would pin the |
| 3645 | * provider module to itself and prevent it from ever being removed. |
| 3646 | */ |
| 3647 | hw->clk = alloc_clk(core, NULL, NULL); |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3648 | if (IS_ERR(hw->clk)) { |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3649 | ret = PTR_ERR(hw->clk); |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3650 | goto fail_create_clk; |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3651 | } |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3652 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3653 | clk_core_link_consumer(hw->core, hw->clk); |
| 3654 | |
Masahiro Yamada | be45ebf | 2015-12-28 19:22:57 +0900 | [diff] [blame] | 3655 | ret = __clk_core_init(core); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3656 | if (!ret) |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3657 | return hw->clk; |
| 3658 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3659 | clk_prepare_lock(); |
| 3660 | clk_core_unlink_consumer(hw->clk); |
| 3661 | clk_prepare_unlock(); |
| 3662 | |
| 3663 | free_clk(hw->clk); |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3664 | hw->clk = NULL; |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3665 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3666 | fail_create_clk: |
| 3667 | clk_core_free_parent_map(core); |
Masahiro Yamada | 176d116 | 2015-12-28 19:23:00 +0900 | [diff] [blame] | 3668 | fail_parents: |
Jerome Brunet | 29fd2a3 | 2017-12-19 09:33:29 +0100 | [diff] [blame] | 3669 | fail_ops: |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3670 | kfree_const(core->name); |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 3671 | fail_name: |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3672 | kfree(core); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 3673 | fail_out: |
| 3674 | return ERR_PTR(ret); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3675 | } |
Stephen Boyd | fceaa7d | 2019-04-12 11:31:44 -0700 | [diff] [blame] | 3676 | |
| 3677 | /** |
| 3678 | * clk_register - allocate a new clock, register it and return an opaque cookie |
| 3679 | * @dev: device that is registering this clock |
| 3680 | * @hw: link to hardware-specific clock data |
| 3681 | * |
Stephen Boyd | c1157f6 | 2019-05-07 11:46:13 -0700 | [diff] [blame] | 3682 | * clk_register is the *deprecated* interface for populating the clock tree with |
| 3683 | * new clock nodes. Use clk_hw_register() instead. |
| 3684 | * |
| 3685 | * Returns: a pointer to the newly allocated struct clk which |
Stephen Boyd | fceaa7d | 2019-04-12 11:31:44 -0700 | [diff] [blame] | 3686 | * cannot be dereferenced by driver code but may be used in conjunction with the |
| 3687 | * rest of the clock API. In the event of an error clk_register will return an |
| 3688 | * error code; drivers must test for an error code after calling clk_register. |
| 3689 | */ |
| 3690 | struct clk *clk_register(struct device *dev, struct clk_hw *hw) |
| 3691 | { |
Stephen Boyd | 89a5ddcc | 2019-04-12 11:31:46 -0700 | [diff] [blame] | 3692 | return __clk_register(dev, dev_of_node(dev), hw); |
Stephen Boyd | fceaa7d | 2019-04-12 11:31:44 -0700 | [diff] [blame] | 3693 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3694 | EXPORT_SYMBOL_GPL(clk_register); |
| 3695 | |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3696 | /** |
| 3697 | * clk_hw_register - register a clk_hw and return an error code |
| 3698 | * @dev: device that is registering this clock |
| 3699 | * @hw: link to hardware-specific clock data |
| 3700 | * |
| 3701 | * clk_hw_register is the primary interface for populating the clock tree with |
| 3702 | * new clock nodes. It returns an integer equal to zero indicating success or |
| 3703 | * less than zero indicating failure. Drivers must test for an error code after |
| 3704 | * calling clk_hw_register(). |
| 3705 | */ |
| 3706 | int clk_hw_register(struct device *dev, struct clk_hw *hw) |
| 3707 | { |
Stephen Boyd | 89a5ddcc | 2019-04-12 11:31:46 -0700 | [diff] [blame] | 3708 | return PTR_ERR_OR_ZERO(__clk_register(dev, dev_of_node(dev), hw)); |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3709 | } |
| 3710 | EXPORT_SYMBOL_GPL(clk_hw_register); |
| 3711 | |
Stephen Boyd | 89a5ddcc | 2019-04-12 11:31:46 -0700 | [diff] [blame] | 3712 | /* |
| 3713 | * of_clk_hw_register - register a clk_hw and return an error code |
| 3714 | * @node: device_node of device that is registering this clock |
| 3715 | * @hw: link to hardware-specific clock data |
| 3716 | * |
| 3717 | * of_clk_hw_register() is the primary interface for populating the clock tree |
| 3718 | * with new clock nodes when a struct device is not available, but a struct |
| 3719 | * device_node is. It returns an integer equal to zero indicating success or |
| 3720 | * less than zero indicating failure. Drivers must test for an error code after |
| 3721 | * calling of_clk_hw_register(). |
| 3722 | */ |
| 3723 | int of_clk_hw_register(struct device_node *node, struct clk_hw *hw) |
| 3724 | { |
| 3725 | return PTR_ERR_OR_ZERO(__clk_register(NULL, node, hw)); |
| 3726 | } |
| 3727 | EXPORT_SYMBOL_GPL(of_clk_hw_register); |
| 3728 | |
Stephen Boyd | 6e5ab41 | 2015-04-30 15:11:31 -0700 | [diff] [blame] | 3729 | /* Free memory allocated for a clock. */ |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3730 | static void __clk_release(struct kref *ref) |
| 3731 | { |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3732 | struct clk_core *core = container_of(ref, struct clk_core, ref); |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3733 | |
Krzysztof Kozlowski | 496eadf | 2015-01-09 09:28:10 +0100 | [diff] [blame] | 3734 | lockdep_assert_held(&prepare_lock); |
| 3735 | |
Stephen Boyd | fc0c209 | 2019-04-12 11:31:47 -0700 | [diff] [blame] | 3736 | clk_core_free_parent_map(core); |
Stephen Boyd | d6968fc | 2015-04-30 13:54:13 -0700 | [diff] [blame] | 3737 | kfree_const(core->name); |
| 3738 | kfree(core); |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3739 | } |
| 3740 | |
| 3741 | /* |
| 3742 | * Empty clk_ops for unregistered clocks. These are used temporarily |
| 3743 | * after clk_unregister() was called on a clock and until last clock |
| 3744 | * consumer calls clk_put() and the struct clk object is freed. |
| 3745 | */ |
| 3746 | static int clk_nodrv_prepare_enable(struct clk_hw *hw) |
| 3747 | { |
| 3748 | return -ENXIO; |
| 3749 | } |
| 3750 | |
| 3751 | static void clk_nodrv_disable_unprepare(struct clk_hw *hw) |
| 3752 | { |
| 3753 | WARN_ON_ONCE(1); |
| 3754 | } |
| 3755 | |
| 3756 | static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate, |
| 3757 | unsigned long parent_rate) |
| 3758 | { |
| 3759 | return -ENXIO; |
| 3760 | } |
| 3761 | |
| 3762 | static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index) |
| 3763 | { |
| 3764 | return -ENXIO; |
| 3765 | } |
| 3766 | |
| 3767 | static const struct clk_ops clk_nodrv_ops = { |
| 3768 | .enable = clk_nodrv_prepare_enable, |
| 3769 | .disable = clk_nodrv_disable_unprepare, |
| 3770 | .prepare = clk_nodrv_prepare_enable, |
| 3771 | .unprepare = clk_nodrv_disable_unprepare, |
| 3772 | .set_rate = clk_nodrv_set_rate, |
| 3773 | .set_parent = clk_nodrv_set_parent, |
| 3774 | }; |
| 3775 | |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 3776 | /** |
| 3777 | * clk_unregister - unregister a currently registered clock |
| 3778 | * @clk: clock to unregister |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 3779 | */ |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3780 | void clk_unregister(struct clk *clk) |
| 3781 | { |
| 3782 | unsigned long flags; |
| 3783 | |
Stephen Boyd | 6314b67 | 2014-09-04 23:37:49 -0700 | [diff] [blame] | 3784 | if (!clk || WARN_ON_ONCE(IS_ERR(clk))) |
| 3785 | return; |
| 3786 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3787 | clk_debug_unregister(clk->core); |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3788 | |
| 3789 | clk_prepare_lock(); |
| 3790 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3791 | if (clk->core->ops == &clk_nodrv_ops) { |
| 3792 | pr_err("%s: unregistered clock: %s\n", __func__, |
| 3793 | clk->core->name); |
Insu Yun | 4106a3d | 2016-01-30 10:12:04 -0500 | [diff] [blame] | 3794 | goto unlock; |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3795 | } |
| 3796 | /* |
| 3797 | * Assign empty clock ops for consumers that might still hold |
| 3798 | * a reference to this clock. |
| 3799 | */ |
| 3800 | flags = clk_enable_lock(); |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3801 | clk->core->ops = &clk_nodrv_ops; |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3802 | clk_enable_unlock(flags); |
| 3803 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3804 | if (!hlist_empty(&clk->core->children)) { |
| 3805 | struct clk_core *child; |
Stephen Boyd | 874f224 | 2014-04-18 16:29:43 -0700 | [diff] [blame] | 3806 | struct hlist_node *t; |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3807 | |
| 3808 | /* Reparent all children to the orphan list. */ |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3809 | hlist_for_each_entry_safe(child, t, &clk->core->children, |
| 3810 | child_node) |
Jerome Brunet | 91baa9f | 2017-12-01 22:51:52 +0100 | [diff] [blame] | 3811 | clk_core_set_parent_nolock(child, NULL); |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3812 | } |
| 3813 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3814 | hlist_del_init(&clk->core->child_node); |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3815 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3816 | if (clk->core->prepare_count) |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3817 | pr_warn("%s: unregistering prepared clock: %s\n", |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3818 | __func__, clk->core->name); |
Jerome Brunet | e55a839 | 2017-12-01 22:51:56 +0100 | [diff] [blame] | 3819 | |
| 3820 | if (clk->core->protect_count) |
| 3821 | pr_warn("%s: unregistering protected clock: %s\n", |
| 3822 | __func__, clk->core->name); |
| 3823 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3824 | kref_put(&clk->core->ref, __clk_release); |
Insu Yun | 4106a3d | 2016-01-30 10:12:04 -0500 | [diff] [blame] | 3825 | unlock: |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3826 | clk_prepare_unlock(); |
| 3827 | } |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 3828 | EXPORT_SYMBOL_GPL(clk_unregister); |
| 3829 | |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3830 | /** |
| 3831 | * clk_hw_unregister - unregister a currently registered clk_hw |
| 3832 | * @hw: hardware-specific clock data to unregister |
| 3833 | */ |
| 3834 | void clk_hw_unregister(struct clk_hw *hw) |
| 3835 | { |
| 3836 | clk_unregister(hw->clk); |
| 3837 | } |
| 3838 | EXPORT_SYMBOL_GPL(clk_hw_unregister); |
| 3839 | |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3840 | static void devm_clk_release(struct device *dev, void *res) |
| 3841 | { |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3842 | clk_unregister(*(struct clk **)res); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3843 | } |
| 3844 | |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3845 | static void devm_clk_hw_release(struct device *dev, void *res) |
| 3846 | { |
| 3847 | clk_hw_unregister(*(struct clk_hw **)res); |
| 3848 | } |
| 3849 | |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3850 | /** |
| 3851 | * devm_clk_register - resource managed clk_register() |
| 3852 | * @dev: device that is registering this clock |
| 3853 | * @hw: link to hardware-specific clock data |
| 3854 | * |
Stephen Boyd | 9fe9b7a | 2018-12-11 10:49:40 -0800 | [diff] [blame] | 3855 | * Managed clk_register(). This function is *deprecated*, use devm_clk_hw_register() instead. |
| 3856 | * |
| 3857 | * Clocks returned from this function are automatically clk_unregister()ed on |
| 3858 | * driver detach. See clk_register() for more information. |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3859 | */ |
| 3860 | struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw) |
| 3861 | { |
| 3862 | struct clk *clk; |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3863 | struct clk **clkp; |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3864 | |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3865 | clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL); |
| 3866 | if (!clkp) |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3867 | return ERR_PTR(-ENOMEM); |
| 3868 | |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3869 | clk = clk_register(dev, hw); |
| 3870 | if (!IS_ERR(clk)) { |
| 3871 | *clkp = clk; |
| 3872 | devres_add(dev, clkp); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3873 | } else { |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 3874 | devres_free(clkp); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3875 | } |
| 3876 | |
| 3877 | return clk; |
| 3878 | } |
| 3879 | EXPORT_SYMBOL_GPL(devm_clk_register); |
| 3880 | |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3881 | /** |
| 3882 | * devm_clk_hw_register - resource managed clk_hw_register() |
| 3883 | * @dev: device that is registering this clock |
| 3884 | * @hw: link to hardware-specific clock data |
| 3885 | * |
Masahiro Yamada | c47265a | 2016-05-01 19:56:08 +0900 | [diff] [blame] | 3886 | * Managed clk_hw_register(). Clocks registered by this function are |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3887 | * automatically clk_hw_unregister()ed on driver detach. See clk_hw_register() |
| 3888 | * for more information. |
| 3889 | */ |
| 3890 | int devm_clk_hw_register(struct device *dev, struct clk_hw *hw) |
| 3891 | { |
| 3892 | struct clk_hw **hwp; |
| 3893 | int ret; |
| 3894 | |
| 3895 | hwp = devres_alloc(devm_clk_hw_release, sizeof(*hwp), GFP_KERNEL); |
| 3896 | if (!hwp) |
| 3897 | return -ENOMEM; |
| 3898 | |
| 3899 | ret = clk_hw_register(dev, hw); |
| 3900 | if (!ret) { |
| 3901 | *hwp = hw; |
| 3902 | devres_add(dev, hwp); |
| 3903 | } else { |
| 3904 | devres_free(hwp); |
| 3905 | } |
| 3906 | |
| 3907 | return ret; |
| 3908 | } |
| 3909 | EXPORT_SYMBOL_GPL(devm_clk_hw_register); |
| 3910 | |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3911 | static int devm_clk_match(struct device *dev, void *res, void *data) |
| 3912 | { |
| 3913 | struct clk *c = res; |
| 3914 | if (WARN_ON(!c)) |
| 3915 | return 0; |
| 3916 | return c == data; |
| 3917 | } |
| 3918 | |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3919 | static int devm_clk_hw_match(struct device *dev, void *res, void *data) |
| 3920 | { |
| 3921 | struct clk_hw *hw = res; |
| 3922 | |
| 3923 | if (WARN_ON(!hw)) |
| 3924 | return 0; |
| 3925 | return hw == data; |
| 3926 | } |
| 3927 | |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 3928 | /** |
| 3929 | * devm_clk_unregister - resource managed clk_unregister() |
| 3930 | * @clk: clock to unregister |
| 3931 | * |
| 3932 | * Deallocate a clock allocated with devm_clk_register(). Normally |
| 3933 | * this function will not need to be called and the resource management |
| 3934 | * code will ensure that the resource is freed. |
| 3935 | */ |
| 3936 | void devm_clk_unregister(struct device *dev, struct clk *clk) |
| 3937 | { |
| 3938 | WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk)); |
| 3939 | } |
| 3940 | EXPORT_SYMBOL_GPL(devm_clk_unregister); |
| 3941 | |
Stephen Boyd | 4143804 | 2016-02-05 17:02:52 -0800 | [diff] [blame] | 3942 | /** |
| 3943 | * devm_clk_hw_unregister - resource managed clk_hw_unregister() |
| 3944 | * @dev: device that is unregistering the hardware-specific clock data |
| 3945 | * @hw: link to hardware-specific clock data |
| 3946 | * |
| 3947 | * Unregister a clk_hw registered with devm_clk_hw_register(). Normally |
| 3948 | * this function will not need to be called and the resource management |
| 3949 | * code will ensure that the resource is freed. |
| 3950 | */ |
| 3951 | void devm_clk_hw_unregister(struct device *dev, struct clk_hw *hw) |
| 3952 | { |
| 3953 | WARN_ON(devres_release(dev, devm_clk_hw_release, devm_clk_hw_match, |
| 3954 | hw)); |
| 3955 | } |
| 3956 | EXPORT_SYMBOL_GPL(devm_clk_hw_unregister); |
| 3957 | |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 3958 | /* |
| 3959 | * clkdev helpers |
| 3960 | */ |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 3961 | |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 3962 | void __clk_put(struct clk *clk) |
| 3963 | { |
Tomeu Vizoso | 10cdfe5 | 2014-12-02 08:54:19 +0100 | [diff] [blame] | 3964 | struct module *owner; |
| 3965 | |
Sylwester Nawrocki | 00efcb1 | 2014-01-07 13:03:43 +0100 | [diff] [blame] | 3966 | if (!clk || WARN_ON_ONCE(IS_ERR(clk))) |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 3967 | return; |
| 3968 | |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3969 | clk_prepare_lock(); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3970 | |
Jerome Brunet | 55e9b8b | 2017-12-01 22:51:59 +0100 | [diff] [blame] | 3971 | /* |
| 3972 | * Before calling clk_put, all calls to clk_rate_exclusive_get() from a |
| 3973 | * given user should be balanced with calls to clk_rate_exclusive_put() |
| 3974 | * and by that same consumer |
| 3975 | */ |
| 3976 | if (WARN_ON(clk->exclusive_count)) { |
| 3977 | /* We voiced our concern, let's sanitize the situation */ |
| 3978 | clk->core->protect_count -= (clk->exclusive_count - 1); |
| 3979 | clk_core_rate_unprotect(clk->core); |
| 3980 | clk->exclusive_count = 0; |
| 3981 | } |
| 3982 | |
Stephen Boyd | 50595f8 | 2015-02-06 11:42:44 -0800 | [diff] [blame] | 3983 | hlist_del(&clk->clks_node); |
Tomeu Vizoso | ec02ace | 2015-02-06 15:13:01 +0100 | [diff] [blame] | 3984 | if (clk->min_rate > clk->core->req_rate || |
| 3985 | clk->max_rate < clk->core->req_rate) |
| 3986 | clk_core_set_rate_nolock(clk->core, clk->core->req_rate); |
| 3987 | |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3988 | owner = clk->core->owner; |
| 3989 | kref_put(&clk->core->ref, __clk_release); |
| 3990 | |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 3991 | clk_prepare_unlock(); |
| 3992 | |
Tomeu Vizoso | 10cdfe5 | 2014-12-02 08:54:19 +0100 | [diff] [blame] | 3993 | module_put(owner); |
Tomeu Vizoso | 1c8e600 | 2015-01-23 12:03:31 +0100 | [diff] [blame] | 3994 | |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 3995 | free_clk(clk); |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 3996 | } |
| 3997 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 3998 | /*** clk rate change notifiers ***/ |
| 3999 | |
| 4000 | /** |
| 4001 | * clk_notifier_register - add a clk rate change notifier |
| 4002 | * @clk: struct clk * to watch |
| 4003 | * @nb: struct notifier_block * with callback info |
| 4004 | * |
| 4005 | * Request notification when clk's rate changes. This uses an SRCU |
| 4006 | * notifier because we want it to block and notifier unregistrations are |
| 4007 | * uncommon. The callbacks associated with the notifier must not |
| 4008 | * re-enter into the clk framework by calling any top-level clk APIs; |
| 4009 | * this will cause a nested prepare_lock mutex. |
| 4010 | * |
Masahiro Yamada | 198bb59 | 2015-11-30 16:40:51 +0900 | [diff] [blame] | 4011 | * In all notification cases (pre, post and abort rate change) the original |
| 4012 | * clock rate is passed to the callback via struct clk_notifier_data.old_rate |
| 4013 | * and the new frequency is passed via struct clk_notifier_data.new_rate. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4014 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4015 | * clk_notifier_register() must be called from non-atomic context. |
| 4016 | * Returns -EINVAL if called with null arguments, -ENOMEM upon |
| 4017 | * allocation failure; otherwise, passes along the return value of |
| 4018 | * srcu_notifier_chain_register(). |
| 4019 | */ |
| 4020 | int clk_notifier_register(struct clk *clk, struct notifier_block *nb) |
| 4021 | { |
| 4022 | struct clk_notifier *cn; |
| 4023 | int ret = -ENOMEM; |
| 4024 | |
| 4025 | if (!clk || !nb) |
| 4026 | return -EINVAL; |
| 4027 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 4028 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4029 | |
| 4030 | /* search the list of notifiers for this clk */ |
| 4031 | list_for_each_entry(cn, &clk_notifier_list, node) |
| 4032 | if (cn->clk == clk) |
| 4033 | break; |
| 4034 | |
| 4035 | /* if clk wasn't in the notifier list, allocate new clk_notifier */ |
| 4036 | if (cn->clk != clk) { |
Markus Elfring | 1808a32 | 2017-04-20 09:30:52 +0200 | [diff] [blame] | 4037 | cn = kzalloc(sizeof(*cn), GFP_KERNEL); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4038 | if (!cn) |
| 4039 | goto out; |
| 4040 | |
| 4041 | cn->clk = clk; |
| 4042 | srcu_init_notifier_head(&cn->notifier_head); |
| 4043 | |
| 4044 | list_add(&cn->node, &clk_notifier_list); |
| 4045 | } |
| 4046 | |
| 4047 | ret = srcu_notifier_chain_register(&cn->notifier_head, nb); |
| 4048 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 4049 | clk->core->notifier_count++; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4050 | |
| 4051 | out: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 4052 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4053 | |
| 4054 | return ret; |
| 4055 | } |
| 4056 | EXPORT_SYMBOL_GPL(clk_notifier_register); |
| 4057 | |
| 4058 | /** |
| 4059 | * clk_notifier_unregister - remove a clk rate change notifier |
| 4060 | * @clk: struct clk * |
| 4061 | * @nb: struct notifier_block * with callback info |
| 4062 | * |
| 4063 | * Request no further notification for changes to 'clk' and frees memory |
| 4064 | * allocated in clk_notifier_register. |
| 4065 | * |
| 4066 | * Returns -EINVAL if called with null arguments; otherwise, passes |
| 4067 | * along the return value of srcu_notifier_chain_unregister(). |
| 4068 | */ |
| 4069 | int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb) |
| 4070 | { |
| 4071 | struct clk_notifier *cn = NULL; |
| 4072 | int ret = -EINVAL; |
| 4073 | |
| 4074 | if (!clk || !nb) |
| 4075 | return -EINVAL; |
| 4076 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 4077 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4078 | |
| 4079 | list_for_each_entry(cn, &clk_notifier_list, node) |
| 4080 | if (cn->clk == clk) |
| 4081 | break; |
| 4082 | |
| 4083 | if (cn->clk == clk) { |
| 4084 | ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb); |
| 4085 | |
Tomeu Vizoso | 035a61c | 2015-01-23 12:03:30 +0100 | [diff] [blame] | 4086 | clk->core->notifier_count--; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4087 | |
| 4088 | /* XXX the notifier code should handle this better */ |
| 4089 | if (!cn->notifier_head.head) { |
| 4090 | srcu_cleanup_notifier_head(&cn->notifier_head); |
Lai Jiangshan | 72b5322 | 2013-06-03 17:17:15 +0800 | [diff] [blame] | 4091 | list_del(&cn->node); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4092 | kfree(cn); |
| 4093 | } |
| 4094 | |
| 4095 | } else { |
| 4096 | ret = -ENOENT; |
| 4097 | } |
| 4098 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 4099 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 4100 | |
| 4101 | return ret; |
| 4102 | } |
| 4103 | EXPORT_SYMBOL_GPL(clk_notifier_unregister); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4104 | |
| 4105 | #ifdef CONFIG_OF |
| 4106 | /** |
| 4107 | * struct of_clk_provider - Clock provider registration structure |
| 4108 | * @link: Entry in global list of clock providers |
| 4109 | * @node: Pointer to device tree node of clock provider |
| 4110 | * @get: Get clock callback. Returns NULL or a struct clk for the |
| 4111 | * given clock specifier |
| 4112 | * @data: context pointer to be passed into @get callback |
| 4113 | */ |
| 4114 | struct of_clk_provider { |
| 4115 | struct list_head link; |
| 4116 | |
| 4117 | struct device_node *node; |
| 4118 | struct clk *(*get)(struct of_phandle_args *clkspec, void *data); |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4119 | struct clk_hw *(*get_hw)(struct of_phandle_args *clkspec, void *data); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4120 | void *data; |
| 4121 | }; |
| 4122 | |
Stephen Boyd | 30d5a94 | 2019-05-23 17:11:57 -0700 | [diff] [blame] | 4123 | extern struct of_device_id __clk_of_table; |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 4124 | static const struct of_device_id __clk_of_table_sentinel |
| 4125 | __used __section(__clk_of_table_end); |
| 4126 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4127 | static LIST_HEAD(of_clk_providers); |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4128 | static DEFINE_MUTEX(of_clk_mutex); |
| 4129 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4130 | struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec, |
| 4131 | void *data) |
| 4132 | { |
| 4133 | return data; |
| 4134 | } |
| 4135 | EXPORT_SYMBOL_GPL(of_clk_src_simple_get); |
| 4136 | |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4137 | struct clk_hw *of_clk_hw_simple_get(struct of_phandle_args *clkspec, void *data) |
| 4138 | { |
| 4139 | return data; |
| 4140 | } |
| 4141 | EXPORT_SYMBOL_GPL(of_clk_hw_simple_get); |
| 4142 | |
Shawn Guo | 494bfec | 2012-08-22 21:36:27 +0800 | [diff] [blame] | 4143 | struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data) |
| 4144 | { |
| 4145 | struct clk_onecell_data *clk_data = data; |
| 4146 | unsigned int idx = clkspec->args[0]; |
| 4147 | |
| 4148 | if (idx >= clk_data->clk_num) { |
Geert Uytterhoeven | 7e96353 | 2015-10-16 17:12:32 +0200 | [diff] [blame] | 4149 | pr_err("%s: invalid clock index %u\n", __func__, idx); |
Shawn Guo | 494bfec | 2012-08-22 21:36:27 +0800 | [diff] [blame] | 4150 | return ERR_PTR(-EINVAL); |
| 4151 | } |
| 4152 | |
| 4153 | return clk_data->clks[idx]; |
| 4154 | } |
| 4155 | EXPORT_SYMBOL_GPL(of_clk_src_onecell_get); |
| 4156 | |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4157 | struct clk_hw * |
| 4158 | of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data) |
| 4159 | { |
| 4160 | struct clk_hw_onecell_data *hw_data = data; |
| 4161 | unsigned int idx = clkspec->args[0]; |
| 4162 | |
| 4163 | if (idx >= hw_data->num) { |
| 4164 | pr_err("%s: invalid index %u\n", __func__, idx); |
| 4165 | return ERR_PTR(-EINVAL); |
| 4166 | } |
| 4167 | |
| 4168 | return hw_data->hws[idx]; |
| 4169 | } |
| 4170 | EXPORT_SYMBOL_GPL(of_clk_hw_onecell_get); |
| 4171 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4172 | /** |
| 4173 | * of_clk_add_provider() - Register a clock provider for a node |
| 4174 | * @np: Device node pointer associated with clock provider |
| 4175 | * @clk_src_get: callback for decoding clock |
| 4176 | * @data: context pointer for @clk_src_get callback. |
Stephen Boyd | 9fe9b7a | 2018-12-11 10:49:40 -0800 | [diff] [blame] | 4177 | * |
| 4178 | * This function is *deprecated*. Use of_clk_add_hw_provider() instead. |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4179 | */ |
| 4180 | int of_clk_add_provider(struct device_node *np, |
| 4181 | struct clk *(*clk_src_get)(struct of_phandle_args *clkspec, |
| 4182 | void *data), |
| 4183 | void *data) |
| 4184 | { |
| 4185 | struct of_clk_provider *cp; |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 4186 | int ret; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4187 | |
Markus Elfring | 1808a32 | 2017-04-20 09:30:52 +0200 | [diff] [blame] | 4188 | cp = kzalloc(sizeof(*cp), GFP_KERNEL); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4189 | if (!cp) |
| 4190 | return -ENOMEM; |
| 4191 | |
| 4192 | cp->node = of_node_get(np); |
| 4193 | cp->data = data; |
| 4194 | cp->get = clk_src_get; |
| 4195 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4196 | mutex_lock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4197 | list_add(&cp->link, &of_clk_providers); |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4198 | mutex_unlock(&of_clk_mutex); |
Rob Herring | 1667393 | 2017-07-18 16:42:52 -0500 | [diff] [blame] | 4199 | pr_debug("Added clock from %pOF\n", np); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4200 | |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 4201 | ret = of_clk_set_defaults(np, true); |
| 4202 | if (ret < 0) |
| 4203 | of_clk_del_provider(np); |
| 4204 | |
| 4205 | return ret; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4206 | } |
| 4207 | EXPORT_SYMBOL_GPL(of_clk_add_provider); |
| 4208 | |
| 4209 | /** |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4210 | * of_clk_add_hw_provider() - Register a clock provider for a node |
| 4211 | * @np: Device node pointer associated with clock provider |
| 4212 | * @get: callback for decoding clk_hw |
| 4213 | * @data: context pointer for @get callback. |
| 4214 | */ |
| 4215 | int of_clk_add_hw_provider(struct device_node *np, |
| 4216 | struct clk_hw *(*get)(struct of_phandle_args *clkspec, |
| 4217 | void *data), |
| 4218 | void *data) |
| 4219 | { |
| 4220 | struct of_clk_provider *cp; |
| 4221 | int ret; |
| 4222 | |
| 4223 | cp = kzalloc(sizeof(*cp), GFP_KERNEL); |
| 4224 | if (!cp) |
| 4225 | return -ENOMEM; |
| 4226 | |
| 4227 | cp->node = of_node_get(np); |
| 4228 | cp->data = data; |
| 4229 | cp->get_hw = get; |
| 4230 | |
| 4231 | mutex_lock(&of_clk_mutex); |
| 4232 | list_add(&cp->link, &of_clk_providers); |
| 4233 | mutex_unlock(&of_clk_mutex); |
Rob Herring | 1667393 | 2017-07-18 16:42:52 -0500 | [diff] [blame] | 4234 | pr_debug("Added clk_hw provider from %pOF\n", np); |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4235 | |
| 4236 | ret = of_clk_set_defaults(np, true); |
| 4237 | if (ret < 0) |
| 4238 | of_clk_del_provider(np); |
| 4239 | |
| 4240 | return ret; |
| 4241 | } |
| 4242 | EXPORT_SYMBOL_GPL(of_clk_add_hw_provider); |
| 4243 | |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4244 | static void devm_of_clk_release_provider(struct device *dev, void *res) |
| 4245 | { |
| 4246 | of_clk_del_provider(*(struct device_node **)res); |
| 4247 | } |
| 4248 | |
Matti Vaittinen | 05502bf9 | 2018-12-04 13:34:53 +0200 | [diff] [blame] | 4249 | /* |
| 4250 | * We allow a child device to use its parent device as the clock provider node |
| 4251 | * for cases like MFD sub-devices where the child device driver wants to use |
| 4252 | * devm_*() APIs but not list the device in DT as a sub-node. |
| 4253 | */ |
| 4254 | static struct device_node *get_clk_provider_node(struct device *dev) |
| 4255 | { |
| 4256 | struct device_node *np, *parent_np; |
| 4257 | |
| 4258 | np = dev->of_node; |
| 4259 | parent_np = dev->parent ? dev->parent->of_node : NULL; |
| 4260 | |
| 4261 | if (!of_find_property(np, "#clock-cells", NULL)) |
| 4262 | if (of_find_property(parent_np, "#clock-cells", NULL)) |
| 4263 | np = parent_np; |
| 4264 | |
| 4265 | return np; |
| 4266 | } |
| 4267 | |
Matti Vaittinen | e45838b | 2018-12-04 13:33:48 +0200 | [diff] [blame] | 4268 | /** |
| 4269 | * devm_of_clk_add_hw_provider() - Managed clk provider node registration |
| 4270 | * @dev: Device acting as the clock provider (used for DT node and lifetime) |
| 4271 | * @get: callback for decoding clk_hw |
| 4272 | * @data: context pointer for @get callback |
| 4273 | * |
Matti Vaittinen | 05502bf9 | 2018-12-04 13:34:53 +0200 | [diff] [blame] | 4274 | * Registers clock provider for given device's node. If the device has no DT |
| 4275 | * node or if the device node lacks of clock provider information (#clock-cells) |
| 4276 | * then the parent device's node is scanned for this information. If parent node |
| 4277 | * has the #clock-cells then it is used in registration. Provider is |
| 4278 | * automatically released at device exit. |
Matti Vaittinen | e45838b | 2018-12-04 13:33:48 +0200 | [diff] [blame] | 4279 | * |
| 4280 | * Return: 0 on success or an errno on failure. |
| 4281 | */ |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4282 | int devm_of_clk_add_hw_provider(struct device *dev, |
| 4283 | struct clk_hw *(*get)(struct of_phandle_args *clkspec, |
| 4284 | void *data), |
| 4285 | void *data) |
| 4286 | { |
| 4287 | struct device_node **ptr, *np; |
| 4288 | int ret; |
| 4289 | |
| 4290 | ptr = devres_alloc(devm_of_clk_release_provider, sizeof(*ptr), |
| 4291 | GFP_KERNEL); |
| 4292 | if (!ptr) |
| 4293 | return -ENOMEM; |
| 4294 | |
Matti Vaittinen | 05502bf9 | 2018-12-04 13:34:53 +0200 | [diff] [blame] | 4295 | np = get_clk_provider_node(dev); |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4296 | ret = of_clk_add_hw_provider(np, get, data); |
| 4297 | if (!ret) { |
| 4298 | *ptr = np; |
| 4299 | devres_add(dev, ptr); |
| 4300 | } else { |
| 4301 | devres_free(ptr); |
| 4302 | } |
| 4303 | |
| 4304 | return ret; |
| 4305 | } |
| 4306 | EXPORT_SYMBOL_GPL(devm_of_clk_add_hw_provider); |
| 4307 | |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4308 | /** |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4309 | * of_clk_del_provider() - Remove a previously registered clock provider |
| 4310 | * @np: Device node pointer associated with clock provider |
| 4311 | */ |
| 4312 | void of_clk_del_provider(struct device_node *np) |
| 4313 | { |
| 4314 | struct of_clk_provider *cp; |
| 4315 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4316 | mutex_lock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4317 | list_for_each_entry(cp, &of_clk_providers, link) { |
| 4318 | if (cp->node == np) { |
| 4319 | list_del(&cp->link); |
| 4320 | of_node_put(cp->node); |
| 4321 | kfree(cp); |
| 4322 | break; |
| 4323 | } |
| 4324 | } |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4325 | mutex_unlock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4326 | } |
| 4327 | EXPORT_SYMBOL_GPL(of_clk_del_provider); |
| 4328 | |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4329 | static int devm_clk_provider_match(struct device *dev, void *res, void *data) |
| 4330 | { |
| 4331 | struct device_node **np = res; |
| 4332 | |
| 4333 | if (WARN_ON(!np || !*np)) |
| 4334 | return 0; |
| 4335 | |
| 4336 | return *np == data; |
| 4337 | } |
| 4338 | |
Matti Vaittinen | e45838b | 2018-12-04 13:33:48 +0200 | [diff] [blame] | 4339 | /** |
| 4340 | * devm_of_clk_del_provider() - Remove clock provider registered using devm |
| 4341 | * @dev: Device to whose lifetime the clock provider was bound |
| 4342 | */ |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4343 | void devm_of_clk_del_provider(struct device *dev) |
| 4344 | { |
| 4345 | int ret; |
Matti Vaittinen | 05502bf9 | 2018-12-04 13:34:53 +0200 | [diff] [blame] | 4346 | struct device_node *np = get_clk_provider_node(dev); |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4347 | |
| 4348 | ret = devres_release(dev, devm_of_clk_release_provider, |
Matti Vaittinen | 05502bf9 | 2018-12-04 13:34:53 +0200 | [diff] [blame] | 4349 | devm_clk_provider_match, np); |
Stephen Boyd | aa795c4 | 2017-09-01 16:16:40 -0700 | [diff] [blame] | 4350 | |
| 4351 | WARN_ON(ret); |
| 4352 | } |
| 4353 | EXPORT_SYMBOL(devm_of_clk_del_provider); |
| 4354 | |
Stephen Boyd | 5dc7e84 | 2019-03-08 10:35:01 -0800 | [diff] [blame] | 4355 | /* |
| 4356 | * Beware the return values when np is valid, but no clock provider is found. |
| 4357 | * If name == NULL, the function returns -ENOENT. |
| 4358 | * If name != NULL, the function returns -EINVAL. This is because |
| 4359 | * of_parse_phandle_with_args() is called even if of_property_match_string() |
| 4360 | * returns an error. |
| 4361 | */ |
Stephen Boyd | cf13f28 | 2018-12-19 15:09:14 -0800 | [diff] [blame] | 4362 | static int of_parse_clkspec(const struct device_node *np, int index, |
| 4363 | const char *name, struct of_phandle_args *out_args) |
Stephen Boyd | 4472287 | 2018-12-19 10:59:55 -0800 | [diff] [blame] | 4364 | { |
| 4365 | int ret = -ENOENT; |
| 4366 | |
| 4367 | /* Walk up the tree of devices looking for a clock property that matches */ |
| 4368 | while (np) { |
| 4369 | /* |
| 4370 | * For named clocks, first look up the name in the |
| 4371 | * "clock-names" property. If it cannot be found, then index |
| 4372 | * will be an error code and of_parse_phandle_with_args() will |
| 4373 | * return -EINVAL. |
| 4374 | */ |
| 4375 | if (name) |
| 4376 | index = of_property_match_string(np, "clock-names", name); |
| 4377 | ret = of_parse_phandle_with_args(np, "clocks", "#clock-cells", |
| 4378 | index, out_args); |
| 4379 | if (!ret) |
| 4380 | break; |
| 4381 | if (name && index >= 0) |
| 4382 | break; |
| 4383 | |
| 4384 | /* |
| 4385 | * No matching clock found on this node. If the parent node |
| 4386 | * has a "clock-ranges" property, then we can try one of its |
| 4387 | * clocks. |
| 4388 | */ |
| 4389 | np = np->parent; |
| 4390 | if (np && !of_get_property(np, "clock-ranges", NULL)) |
| 4391 | break; |
| 4392 | index = 0; |
| 4393 | } |
| 4394 | |
| 4395 | return ret; |
| 4396 | } |
| 4397 | |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4398 | static struct clk_hw * |
| 4399 | __of_clk_get_hw_from_provider(struct of_clk_provider *provider, |
| 4400 | struct of_phandle_args *clkspec) |
| 4401 | { |
| 4402 | struct clk *clk; |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4403 | |
Stephen Boyd | 74002fc | 2016-08-25 13:35:36 -0700 | [diff] [blame] | 4404 | if (provider->get_hw) |
| 4405 | return provider->get_hw(clkspec, provider->data); |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4406 | |
Stephen Boyd | 74002fc | 2016-08-25 13:35:36 -0700 | [diff] [blame] | 4407 | clk = provider->get(clkspec, provider->data); |
| 4408 | if (IS_ERR(clk)) |
| 4409 | return ERR_CAST(clk); |
| 4410 | return __clk_get_hw(clk); |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4411 | } |
| 4412 | |
Stephen Boyd | cf13f28 | 2018-12-19 15:09:14 -0800 | [diff] [blame] | 4413 | static struct clk_hw * |
| 4414 | of_clk_get_hw_from_clkspec(struct of_phandle_args *clkspec) |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4415 | { |
| 4416 | struct of_clk_provider *provider; |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 4417 | struct clk_hw *hw = ERR_PTR(-EPROBE_DEFER); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4418 | |
Stephen Boyd | 306c342 | 2015-02-05 15:39:11 -0800 | [diff] [blame] | 4419 | if (!clkspec) |
| 4420 | return ERR_PTR(-EINVAL); |
| 4421 | |
Stephen Boyd | 306c342 | 2015-02-05 15:39:11 -0800 | [diff] [blame] | 4422 | mutex_lock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4423 | list_for_each_entry(provider, &of_clk_providers, link) { |
Stephen Boyd | f155d15 | 2016-08-15 14:32:23 -0700 | [diff] [blame] | 4424 | if (provider->node == clkspec->np) { |
Stephen Boyd | 0861e5b | 2016-02-05 17:38:26 -0800 | [diff] [blame] | 4425 | hw = __of_clk_get_hw_from_provider(provider, clkspec); |
Stephen Boyd | 1df4046 | 2018-12-11 08:32:04 -0800 | [diff] [blame] | 4426 | if (!IS_ERR(hw)) |
| 4427 | break; |
Stephen Boyd | 73e0e49 | 2015-02-06 11:42:43 -0800 | [diff] [blame] | 4428 | } |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4429 | } |
Stephen Boyd | 306c342 | 2015-02-05 15:39:11 -0800 | [diff] [blame] | 4430 | mutex_unlock(&of_clk_mutex); |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4431 | |
Stephen Boyd | 4472287 | 2018-12-19 10:59:55 -0800 | [diff] [blame] | 4432 | return hw; |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4433 | } |
| 4434 | |
Stephen Boyd | 306c342 | 2015-02-05 15:39:11 -0800 | [diff] [blame] | 4435 | /** |
| 4436 | * of_clk_get_from_provider() - Lookup a clock from a clock provider |
| 4437 | * @clkspec: pointer to a clock specifier data structure |
| 4438 | * |
| 4439 | * This function looks up a struct clk from the registered list of clock |
| 4440 | * providers, an input is a clock specifier data structure as returned |
| 4441 | * from the of_parse_phandle_with_args() function call. |
| 4442 | */ |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 4443 | struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec) |
| 4444 | { |
Stephen Boyd | 4472287 | 2018-12-19 10:59:55 -0800 | [diff] [blame] | 4445 | struct clk_hw *hw = of_clk_get_hw_from_clkspec(clkspec); |
| 4446 | |
Stephen Boyd | efa8504 | 2018-12-11 08:34:16 -0800 | [diff] [blame] | 4447 | return clk_hw_create_clk(NULL, hw, NULL, __func__); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4448 | } |
Andrew F. Davis | fb4dd22 | 2016-02-12 12:50:16 -0600 | [diff] [blame] | 4449 | EXPORT_SYMBOL_GPL(of_clk_get_from_provider); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4450 | |
Stephen Boyd | cf13f28 | 2018-12-19 15:09:14 -0800 | [diff] [blame] | 4451 | struct clk_hw *of_clk_get_hw(struct device_node *np, int index, |
| 4452 | const char *con_id) |
| 4453 | { |
| 4454 | int ret; |
| 4455 | struct clk_hw *hw; |
| 4456 | struct of_phandle_args clkspec; |
| 4457 | |
| 4458 | ret = of_parse_clkspec(np, index, con_id, &clkspec); |
| 4459 | if (ret) |
| 4460 | return ERR_PTR(ret); |
| 4461 | |
| 4462 | hw = of_clk_get_hw_from_clkspec(&clkspec); |
| 4463 | of_node_put(clkspec.np); |
| 4464 | |
| 4465 | return hw; |
| 4466 | } |
| 4467 | |
| 4468 | static struct clk *__of_clk_get(struct device_node *np, |
| 4469 | int index, const char *dev_id, |
| 4470 | const char *con_id) |
| 4471 | { |
| 4472 | struct clk_hw *hw = of_clk_get_hw(np, index, con_id); |
| 4473 | |
| 4474 | return clk_hw_create_clk(NULL, hw, dev_id, con_id); |
| 4475 | } |
| 4476 | |
| 4477 | struct clk *of_clk_get(struct device_node *np, int index) |
| 4478 | { |
| 4479 | return __of_clk_get(np, index, np->full_name, NULL); |
| 4480 | } |
| 4481 | EXPORT_SYMBOL(of_clk_get); |
| 4482 | |
| 4483 | /** |
| 4484 | * of_clk_get_by_name() - Parse and lookup a clock referenced by a device node |
| 4485 | * @np: pointer to clock consumer node |
| 4486 | * @name: name of consumer's clock input, or NULL for the first clock reference |
| 4487 | * |
| 4488 | * This function parses the clocks and clock-names properties, |
| 4489 | * and uses them to look up the struct clk from the registered list of clock |
| 4490 | * providers. |
| 4491 | */ |
| 4492 | struct clk *of_clk_get_by_name(struct device_node *np, const char *name) |
| 4493 | { |
| 4494 | if (!np) |
| 4495 | return ERR_PTR(-ENOENT); |
| 4496 | |
Kuninori Morimoto | 65cf20a | 2019-03-06 16:18:28 +0900 | [diff] [blame] | 4497 | return __of_clk_get(np, 0, np->full_name, name); |
Stephen Boyd | cf13f28 | 2018-12-19 15:09:14 -0800 | [diff] [blame] | 4498 | } |
| 4499 | EXPORT_SYMBOL(of_clk_get_by_name); |
| 4500 | |
Stephen Boyd | 929e7f3 | 2016-02-19 15:52:32 -0800 | [diff] [blame] | 4501 | /** |
| 4502 | * of_clk_get_parent_count() - Count the number of clocks a device node has |
| 4503 | * @np: device node to count |
| 4504 | * |
| 4505 | * Returns: The number of clocks that are possible parents of this node |
| 4506 | */ |
| 4507 | unsigned int of_clk_get_parent_count(struct device_node *np) |
Mike Turquette | f610274 | 2013-10-07 23:12:13 -0700 | [diff] [blame] | 4508 | { |
Stephen Boyd | 929e7f3 | 2016-02-19 15:52:32 -0800 | [diff] [blame] | 4509 | int count; |
| 4510 | |
| 4511 | count = of_count_phandle_with_args(np, "clocks", "#clock-cells"); |
| 4512 | if (count < 0) |
| 4513 | return 0; |
| 4514 | |
| 4515 | return count; |
Mike Turquette | f610274 | 2013-10-07 23:12:13 -0700 | [diff] [blame] | 4516 | } |
| 4517 | EXPORT_SYMBOL_GPL(of_clk_get_parent_count); |
| 4518 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4519 | const char *of_clk_get_parent_name(struct device_node *np, int index) |
| 4520 | { |
| 4521 | struct of_phandle_args clkspec; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 4522 | struct property *prop; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4523 | const char *clk_name; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 4524 | const __be32 *vp; |
| 4525 | u32 pv; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4526 | int rc; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 4527 | int count; |
Stephen Boyd | 0a4807c | 2015-10-14 14:03:07 -0700 | [diff] [blame] | 4528 | struct clk *clk; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4529 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4530 | rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index, |
| 4531 | &clkspec); |
| 4532 | if (rc) |
| 4533 | return NULL; |
| 4534 | |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 4535 | index = clkspec.args_count ? clkspec.args[0] : 0; |
| 4536 | count = 0; |
| 4537 | |
| 4538 | /* if there is an indices property, use it to transfer the index |
| 4539 | * specified into an array offset for the clock-output-names property. |
| 4540 | */ |
| 4541 | of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) { |
| 4542 | if (index == pv) { |
| 4543 | index = count; |
| 4544 | break; |
| 4545 | } |
| 4546 | count++; |
| 4547 | } |
Masahiro Yamada | 8da411c | 2015-12-03 11:20:35 +0900 | [diff] [blame] | 4548 | /* We went off the end of 'clock-indices' without finding it */ |
| 4549 | if (prop && !vp) |
| 4550 | return NULL; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 4551 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4552 | if (of_property_read_string_index(clkspec.np, "clock-output-names", |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 4553 | index, |
Stephen Boyd | 0a4807c | 2015-10-14 14:03:07 -0700 | [diff] [blame] | 4554 | &clk_name) < 0) { |
| 4555 | /* |
| 4556 | * Best effort to get the name if the clock has been |
| 4557 | * registered with the framework. If the clock isn't |
| 4558 | * registered, we return the node name as the name of |
| 4559 | * the clock as long as #clock-cells = 0. |
| 4560 | */ |
| 4561 | clk = of_clk_get_from_provider(&clkspec); |
| 4562 | if (IS_ERR(clk)) { |
| 4563 | if (clkspec.args_count == 0) |
| 4564 | clk_name = clkspec.np->name; |
| 4565 | else |
| 4566 | clk_name = NULL; |
| 4567 | } else { |
| 4568 | clk_name = __clk_get_name(clk); |
| 4569 | clk_put(clk); |
| 4570 | } |
| 4571 | } |
| 4572 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4573 | |
| 4574 | of_node_put(clkspec.np); |
| 4575 | return clk_name; |
| 4576 | } |
| 4577 | EXPORT_SYMBOL_GPL(of_clk_get_parent_name); |
| 4578 | |
Dinh Nguyen | 2e61dfb | 2015-06-05 11:26:13 -0500 | [diff] [blame] | 4579 | /** |
| 4580 | * of_clk_parent_fill() - Fill @parents with names of @np's parents and return |
| 4581 | * number of parents |
| 4582 | * @np: Device node pointer associated with clock provider |
| 4583 | * @parents: pointer to char array that hold the parents' names |
| 4584 | * @size: size of the @parents array |
| 4585 | * |
| 4586 | * Return: number of parents for the clock node. |
| 4587 | */ |
| 4588 | int of_clk_parent_fill(struct device_node *np, const char **parents, |
| 4589 | unsigned int size) |
| 4590 | { |
| 4591 | unsigned int i = 0; |
| 4592 | |
| 4593 | while (i < size && (parents[i] = of_clk_get_parent_name(np, i)) != NULL) |
| 4594 | i++; |
| 4595 | |
| 4596 | return i; |
| 4597 | } |
| 4598 | EXPORT_SYMBOL_GPL(of_clk_parent_fill); |
| 4599 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4600 | struct clock_provider { |
Geert Uytterhoeven | a5970433 | 2018-04-10 15:06:05 +0200 | [diff] [blame] | 4601 | void (*clk_init_cb)(struct device_node *); |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4602 | struct device_node *np; |
| 4603 | struct list_head node; |
| 4604 | }; |
| 4605 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4606 | /* |
| 4607 | * This function looks for a parent clock. If there is one, then it |
| 4608 | * checks that the provider for this parent clock was initialized, in |
| 4609 | * this case the parent clock will be ready. |
| 4610 | */ |
| 4611 | static int parent_ready(struct device_node *np) |
| 4612 | { |
| 4613 | int i = 0; |
| 4614 | |
| 4615 | while (true) { |
| 4616 | struct clk *clk = of_clk_get(np, i); |
| 4617 | |
| 4618 | /* this parent is ready we can check the next one */ |
| 4619 | if (!IS_ERR(clk)) { |
| 4620 | clk_put(clk); |
| 4621 | i++; |
| 4622 | continue; |
| 4623 | } |
| 4624 | |
| 4625 | /* at least one parent is not ready, we exit now */ |
| 4626 | if (PTR_ERR(clk) == -EPROBE_DEFER) |
| 4627 | return 0; |
| 4628 | |
| 4629 | /* |
| 4630 | * Here we make assumption that the device tree is |
| 4631 | * written correctly. So an error means that there is |
| 4632 | * no more parent. As we didn't exit yet, then the |
| 4633 | * previous parent are ready. If there is no clock |
| 4634 | * parent, no need to wait for them, then we can |
| 4635 | * consider their absence as being ready |
| 4636 | */ |
| 4637 | return 1; |
| 4638 | } |
| 4639 | } |
| 4640 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4641 | /** |
Lee Jones | d56f899 | 2016-02-11 13:19:11 -0800 | [diff] [blame] | 4642 | * of_clk_detect_critical() - set CLK_IS_CRITICAL flag from Device Tree |
| 4643 | * @np: Device node pointer associated with clock provider |
| 4644 | * @index: clock index |
Geert Uytterhoeven | f7ae750 | 2018-01-03 12:06:14 +0100 | [diff] [blame] | 4645 | * @flags: pointer to top-level framework flags |
Lee Jones | d56f899 | 2016-02-11 13:19:11 -0800 | [diff] [blame] | 4646 | * |
| 4647 | * Detects if the clock-critical property exists and, if so, sets the |
| 4648 | * corresponding CLK_IS_CRITICAL flag. |
| 4649 | * |
| 4650 | * Do not use this function. It exists only for legacy Device Tree |
| 4651 | * bindings, such as the one-clock-per-node style that are outdated. |
| 4652 | * Those bindings typically put all clock data into .dts and the Linux |
| 4653 | * driver has no clock data, thus making it impossible to set this flag |
| 4654 | * correctly from the driver. Only those drivers may call |
| 4655 | * of_clk_detect_critical from their setup functions. |
| 4656 | * |
| 4657 | * Return: error code or zero on success |
| 4658 | */ |
| 4659 | int of_clk_detect_critical(struct device_node *np, |
| 4660 | int index, unsigned long *flags) |
| 4661 | { |
| 4662 | struct property *prop; |
| 4663 | const __be32 *cur; |
| 4664 | uint32_t idx; |
| 4665 | |
| 4666 | if (!np || !flags) |
| 4667 | return -EINVAL; |
| 4668 | |
| 4669 | of_property_for_each_u32(np, "clock-critical", prop, cur, idx) |
| 4670 | if (index == idx) |
| 4671 | *flags |= CLK_IS_CRITICAL; |
| 4672 | |
| 4673 | return 0; |
| 4674 | } |
| 4675 | |
| 4676 | /** |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4677 | * of_clk_init() - Scan and init clock providers from the DT |
| 4678 | * @matches: array of compatible values and init functions for providers. |
| 4679 | * |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4680 | * This function scans the device tree for matching clock providers |
Sylwester Nawrocki | e5ca8fb4 | 2014-03-27 12:08:36 +0100 | [diff] [blame] | 4681 | * and calls their initialization functions. It also does it by trying |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4682 | * to follow the dependencies. |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4683 | */ |
| 4684 | void __init of_clk_init(const struct of_device_id *matches) |
| 4685 | { |
Alex Elder | 7f7ed58 | 2013-08-22 11:31:31 -0500 | [diff] [blame] | 4686 | const struct of_device_id *match; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4687 | struct device_node *np; |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4688 | struct clock_provider *clk_provider, *next; |
| 4689 | bool is_init_done; |
| 4690 | bool force = false; |
Stephen Boyd | 2573a02 | 2015-07-06 16:50:00 -0700 | [diff] [blame] | 4691 | LIST_HEAD(clk_provider_list); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4692 | |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 4693 | if (!matches) |
Tero Kristo | 819b486 | 2013-10-22 11:39:36 +0300 | [diff] [blame] | 4694 | matches = &__clk_of_table; |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 4695 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4696 | /* First prepare the list of the clocks providers */ |
Alex Elder | 7f7ed58 | 2013-08-22 11:31:31 -0500 | [diff] [blame] | 4697 | for_each_matching_node_and_match(np, matches, &match) { |
Stephen Boyd | 2e3b19f | 2015-07-06 16:48:19 -0700 | [diff] [blame] | 4698 | struct clock_provider *parent; |
| 4699 | |
Geert Uytterhoeven | 3e5dd6f | 2016-02-26 16:54:31 +0100 | [diff] [blame] | 4700 | if (!of_device_is_available(np)) |
| 4701 | continue; |
| 4702 | |
Stephen Boyd | 2e3b19f | 2015-07-06 16:48:19 -0700 | [diff] [blame] | 4703 | parent = kzalloc(sizeof(*parent), GFP_KERNEL); |
| 4704 | if (!parent) { |
| 4705 | list_for_each_entry_safe(clk_provider, next, |
| 4706 | &clk_provider_list, node) { |
| 4707 | list_del(&clk_provider->node); |
Julia Lawall | 6bc9d9d | 2015-10-21 22:41:36 +0200 | [diff] [blame] | 4708 | of_node_put(clk_provider->np); |
Stephen Boyd | 2e3b19f | 2015-07-06 16:48:19 -0700 | [diff] [blame] | 4709 | kfree(clk_provider); |
| 4710 | } |
Julia Lawall | 6bc9d9d | 2015-10-21 22:41:36 +0200 | [diff] [blame] | 4711 | of_node_put(np); |
Stephen Boyd | 2e3b19f | 2015-07-06 16:48:19 -0700 | [diff] [blame] | 4712 | return; |
| 4713 | } |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4714 | |
| 4715 | parent->clk_init_cb = match->data; |
Julia Lawall | 6bc9d9d | 2015-10-21 22:41:36 +0200 | [diff] [blame] | 4716 | parent->np = of_node_get(np); |
Sylwester Nawrocki | 3f6d439 | 2014-03-27 11:43:32 +0100 | [diff] [blame] | 4717 | list_add_tail(&parent->node, &clk_provider_list); |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4718 | } |
| 4719 | |
| 4720 | while (!list_empty(&clk_provider_list)) { |
| 4721 | is_init_done = false; |
| 4722 | list_for_each_entry_safe(clk_provider, next, |
| 4723 | &clk_provider_list, node) { |
| 4724 | if (force || parent_ready(clk_provider->np)) { |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 4725 | |
Ricardo Ribalda Delgado | 989eafd | 2016-07-05 18:23:32 +0200 | [diff] [blame] | 4726 | /* Don't populate platform devices */ |
| 4727 | of_node_set_flag(clk_provider->np, |
| 4728 | OF_POPULATED); |
| 4729 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4730 | clk_provider->clk_init_cb(clk_provider->np); |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 4731 | of_clk_set_defaults(clk_provider->np, true); |
| 4732 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4733 | list_del(&clk_provider->node); |
Julia Lawall | 6bc9d9d | 2015-10-21 22:41:36 +0200 | [diff] [blame] | 4734 | of_node_put(clk_provider->np); |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4735 | kfree(clk_provider); |
| 4736 | is_init_done = true; |
| 4737 | } |
| 4738 | } |
| 4739 | |
| 4740 | /* |
Sylwester Nawrocki | e5ca8fb4 | 2014-03-27 12:08:36 +0100 | [diff] [blame] | 4741 | * We didn't manage to initialize any of the |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 4742 | * remaining providers during the last loop, so now we |
| 4743 | * initialize all the remaining ones unconditionally |
| 4744 | * in case the clock parent was not mandatory |
| 4745 | */ |
| 4746 | if (!is_init_done) |
| 4747 | force = true; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 4748 | } |
| 4749 | } |
| 4750 | #endif |