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