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> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * Standard functionality for the common clock API. See Documentation/clk.txt |
| 10 | */ |
| 11 | |
| 12 | #include <linux/clk-private.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/mutex.h> |
| 15 | #include <linux/spinlock.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <linux/list.h> |
| 18 | #include <linux/slab.h> |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 19 | #include <linux/of.h> |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 20 | #include <linux/device.h> |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 21 | #include <linux/init.h> |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 22 | #include <linux/sched.h> |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 23 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 24 | #include "clk.h" |
| 25 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 26 | static DEFINE_SPINLOCK(enable_lock); |
| 27 | static DEFINE_MUTEX(prepare_lock); |
| 28 | |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 29 | static struct task_struct *prepare_owner; |
| 30 | static struct task_struct *enable_owner; |
| 31 | |
| 32 | static int prepare_refcnt; |
| 33 | static int enable_refcnt; |
| 34 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 35 | static HLIST_HEAD(clk_root_list); |
| 36 | static HLIST_HEAD(clk_orphan_list); |
| 37 | static LIST_HEAD(clk_notifier_list); |
| 38 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 39 | /*** locking ***/ |
| 40 | static void clk_prepare_lock(void) |
| 41 | { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 42 | if (!mutex_trylock(&prepare_lock)) { |
| 43 | if (prepare_owner == current) { |
| 44 | prepare_refcnt++; |
| 45 | return; |
| 46 | } |
| 47 | mutex_lock(&prepare_lock); |
| 48 | } |
| 49 | WARN_ON_ONCE(prepare_owner != NULL); |
| 50 | WARN_ON_ONCE(prepare_refcnt != 0); |
| 51 | prepare_owner = current; |
| 52 | prepare_refcnt = 1; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | static void clk_prepare_unlock(void) |
| 56 | { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 57 | WARN_ON_ONCE(prepare_owner != current); |
| 58 | WARN_ON_ONCE(prepare_refcnt == 0); |
| 59 | |
| 60 | if (--prepare_refcnt) |
| 61 | return; |
| 62 | prepare_owner = NULL; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 63 | mutex_unlock(&prepare_lock); |
| 64 | } |
| 65 | |
| 66 | static unsigned long clk_enable_lock(void) |
| 67 | { |
| 68 | unsigned long flags; |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 69 | |
| 70 | if (!spin_trylock_irqsave(&enable_lock, flags)) { |
| 71 | if (enable_owner == current) { |
| 72 | enable_refcnt++; |
| 73 | return flags; |
| 74 | } |
| 75 | spin_lock_irqsave(&enable_lock, flags); |
| 76 | } |
| 77 | WARN_ON_ONCE(enable_owner != NULL); |
| 78 | WARN_ON_ONCE(enable_refcnt != 0); |
| 79 | enable_owner = current; |
| 80 | enable_refcnt = 1; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 81 | return flags; |
| 82 | } |
| 83 | |
| 84 | static void clk_enable_unlock(unsigned long flags) |
| 85 | { |
Mike Turquette | 533ddeb | 2013-03-28 13:59:02 -0700 | [diff] [blame] | 86 | WARN_ON_ONCE(enable_owner != current); |
| 87 | WARN_ON_ONCE(enable_refcnt == 0); |
| 88 | |
| 89 | if (--enable_refcnt) |
| 90 | return; |
| 91 | enable_owner = NULL; |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 92 | spin_unlock_irqrestore(&enable_lock, flags); |
| 93 | } |
| 94 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 95 | /*** debugfs support ***/ |
| 96 | |
Mike Turquette | ea72dc2 | 2013-12-18 21:38:52 -0800 | [diff] [blame] | 97 | #ifdef CONFIG_DEBUG_FS |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 98 | #include <linux/debugfs.h> |
| 99 | |
| 100 | static struct dentry *rootdir; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 101 | static int inited = 0; |
| 102 | |
Sachin Kamat | 6b44c854 | 2014-07-01 11:56:34 +0530 | [diff] [blame] | 103 | static struct hlist_head *all_lists[] = { |
| 104 | &clk_root_list, |
| 105 | &clk_orphan_list, |
| 106 | NULL, |
| 107 | }; |
| 108 | |
| 109 | static struct hlist_head *orphan_list[] = { |
| 110 | &clk_orphan_list, |
| 111 | NULL, |
| 112 | }; |
| 113 | |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 114 | static void clk_summary_show_one(struct seq_file *s, struct clk *c, int level) |
| 115 | { |
| 116 | if (!c) |
| 117 | return; |
| 118 | |
Geert Uytterhoeven | fb8abb7 | 2014-03-25 12:16:24 +0100 | [diff] [blame] | 119 | seq_printf(s, "%*s%-*s %11d %12d %11lu %10lu\n", |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 120 | level * 3 + 1, "", |
| 121 | 30 - level * 3, c->name, |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 122 | c->enable_count, c->prepare_count, clk_get_rate(c), |
| 123 | clk_get_accuracy(c)); |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | static void clk_summary_show_subtree(struct seq_file *s, struct clk *c, |
| 127 | int level) |
| 128 | { |
| 129 | struct clk *child; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 130 | |
| 131 | if (!c) |
| 132 | return; |
| 133 | |
| 134 | clk_summary_show_one(s, c, level); |
| 135 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 136 | hlist_for_each_entry(child, &c->children, child_node) |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 137 | clk_summary_show_subtree(s, child, level + 1); |
| 138 | } |
| 139 | |
| 140 | static int clk_summary_show(struct seq_file *s, void *data) |
| 141 | { |
| 142 | struct clk *c; |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 143 | struct hlist_head **lists = (struct hlist_head **)s->private; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 144 | |
Geert Uytterhoeven | fb8abb7 | 2014-03-25 12:16:24 +0100 | [diff] [blame] | 145 | seq_puts(s, " clock enable_cnt prepare_cnt rate accuracy\n"); |
| 146 | seq_puts(s, "--------------------------------------------------------------------------------\n"); |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 147 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 148 | clk_prepare_lock(); |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 149 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 150 | for (; *lists; lists++) |
| 151 | hlist_for_each_entry(c, *lists, child_node) |
| 152 | clk_summary_show_subtree(s, c, 0); |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 153 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 154 | clk_prepare_unlock(); |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 155 | |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | |
| 160 | static int clk_summary_open(struct inode *inode, struct file *file) |
| 161 | { |
| 162 | return single_open(file, clk_summary_show, inode->i_private); |
| 163 | } |
| 164 | |
| 165 | static const struct file_operations clk_summary_fops = { |
| 166 | .open = clk_summary_open, |
| 167 | .read = seq_read, |
| 168 | .llseek = seq_lseek, |
| 169 | .release = single_release, |
| 170 | }; |
| 171 | |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 172 | static void clk_dump_one(struct seq_file *s, struct clk *c, int level) |
| 173 | { |
| 174 | if (!c) |
| 175 | return; |
| 176 | |
| 177 | seq_printf(s, "\"%s\": { ", c->name); |
| 178 | seq_printf(s, "\"enable_count\": %d,", c->enable_count); |
| 179 | seq_printf(s, "\"prepare_count\": %d,", c->prepare_count); |
Peter De Schrijver | 670decd | 2013-06-05 18:06:35 +0300 | [diff] [blame] | 180 | seq_printf(s, "\"rate\": %lu", clk_get_rate(c)); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 181 | seq_printf(s, "\"accuracy\": %lu", clk_get_accuracy(c)); |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | static void clk_dump_subtree(struct seq_file *s, struct clk *c, int level) |
| 185 | { |
| 186 | struct clk *child; |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 187 | |
| 188 | if (!c) |
| 189 | return; |
| 190 | |
| 191 | clk_dump_one(s, c, level); |
| 192 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 193 | hlist_for_each_entry(child, &c->children, child_node) { |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 194 | seq_printf(s, ","); |
| 195 | clk_dump_subtree(s, child, level + 1); |
| 196 | } |
| 197 | |
| 198 | seq_printf(s, "}"); |
| 199 | } |
| 200 | |
| 201 | static int clk_dump(struct seq_file *s, void *data) |
| 202 | { |
| 203 | struct clk *c; |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 204 | bool first_node = true; |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 205 | struct hlist_head **lists = (struct hlist_head **)s->private; |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 206 | |
| 207 | seq_printf(s, "{"); |
| 208 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 209 | clk_prepare_lock(); |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 210 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 211 | for (; *lists; lists++) { |
| 212 | hlist_for_each_entry(c, *lists, child_node) { |
| 213 | if (!first_node) |
| 214 | seq_puts(s, ","); |
| 215 | first_node = false; |
| 216 | clk_dump_subtree(s, c, 0); |
| 217 | } |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 218 | } |
| 219 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 220 | clk_prepare_unlock(); |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 221 | |
| 222 | seq_printf(s, "}"); |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | |
| 227 | static int clk_dump_open(struct inode *inode, struct file *file) |
| 228 | { |
| 229 | return single_open(file, clk_dump, inode->i_private); |
| 230 | } |
| 231 | |
| 232 | static const struct file_operations clk_dump_fops = { |
| 233 | .open = clk_dump_open, |
| 234 | .read = seq_read, |
| 235 | .llseek = seq_lseek, |
| 236 | .release = single_release, |
| 237 | }; |
| 238 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 239 | /* caller must hold prepare_lock */ |
| 240 | static int clk_debug_create_one(struct clk *clk, struct dentry *pdentry) |
| 241 | { |
| 242 | struct dentry *d; |
| 243 | int ret = -ENOMEM; |
| 244 | |
| 245 | if (!clk || !pdentry) { |
| 246 | ret = -EINVAL; |
| 247 | goto out; |
| 248 | } |
| 249 | |
| 250 | d = debugfs_create_dir(clk->name, pdentry); |
| 251 | if (!d) |
| 252 | goto out; |
| 253 | |
| 254 | clk->dentry = d; |
| 255 | |
| 256 | d = debugfs_create_u32("clk_rate", S_IRUGO, clk->dentry, |
| 257 | (u32 *)&clk->rate); |
| 258 | if (!d) |
| 259 | goto err_out; |
| 260 | |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 261 | d = debugfs_create_u32("clk_accuracy", S_IRUGO, clk->dentry, |
| 262 | (u32 *)&clk->accuracy); |
| 263 | if (!d) |
| 264 | goto err_out; |
| 265 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 266 | d = debugfs_create_x32("clk_flags", S_IRUGO, clk->dentry, |
| 267 | (u32 *)&clk->flags); |
| 268 | if (!d) |
| 269 | goto err_out; |
| 270 | |
| 271 | d = debugfs_create_u32("clk_prepare_count", S_IRUGO, clk->dentry, |
| 272 | (u32 *)&clk->prepare_count); |
| 273 | if (!d) |
| 274 | goto err_out; |
| 275 | |
| 276 | d = debugfs_create_u32("clk_enable_count", S_IRUGO, clk->dentry, |
| 277 | (u32 *)&clk->enable_count); |
| 278 | if (!d) |
| 279 | goto err_out; |
| 280 | |
| 281 | d = debugfs_create_u32("clk_notifier_count", S_IRUGO, clk->dentry, |
| 282 | (u32 *)&clk->notifier_count); |
| 283 | if (!d) |
| 284 | goto err_out; |
| 285 | |
Alex Elder | c646cbf | 2014-03-21 06:43:56 -0500 | [diff] [blame] | 286 | if (clk->ops->debug_init) |
| 287 | if (clk->ops->debug_init(clk->hw, clk->dentry)) |
| 288 | goto err_out; |
| 289 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 290 | ret = 0; |
| 291 | goto out; |
| 292 | |
| 293 | err_out: |
Alex Elder | b5f98e6 | 2013-11-27 09:39:49 -0600 | [diff] [blame] | 294 | debugfs_remove_recursive(clk->dentry); |
| 295 | clk->dentry = NULL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 296 | out: |
| 297 | return ret; |
| 298 | } |
| 299 | |
| 300 | /* caller must hold prepare_lock */ |
| 301 | static int clk_debug_create_subtree(struct clk *clk, struct dentry *pdentry) |
| 302 | { |
| 303 | struct clk *child; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 304 | int ret = -EINVAL;; |
| 305 | |
| 306 | if (!clk || !pdentry) |
| 307 | goto out; |
| 308 | |
| 309 | ret = clk_debug_create_one(clk, pdentry); |
| 310 | |
| 311 | if (ret) |
| 312 | goto out; |
| 313 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 314 | hlist_for_each_entry(child, &clk->children, child_node) |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 315 | clk_debug_create_subtree(child, pdentry); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 316 | |
| 317 | ret = 0; |
| 318 | out: |
| 319 | return ret; |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * clk_debug_register - add a clk node to the debugfs clk tree |
| 324 | * @clk: the clk being added to the debugfs clk tree |
| 325 | * |
| 326 | * Dynamically adds a clk to the debugfs clk tree if debugfs has been |
| 327 | * initialized. Otherwise it bails out early since the debugfs clk tree |
| 328 | * will be created lazily by clk_debug_init as part of a late_initcall. |
| 329 | * |
| 330 | * Caller must hold prepare_lock. Only clk_init calls this function (so |
| 331 | * far) so this is taken care. |
| 332 | */ |
| 333 | static int clk_debug_register(struct clk *clk) |
| 334 | { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 335 | int ret = 0; |
| 336 | |
| 337 | if (!inited) |
| 338 | goto out; |
| 339 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 340 | ret = clk_debug_create_subtree(clk, rootdir); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 341 | |
| 342 | out: |
| 343 | return ret; |
| 344 | } |
| 345 | |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 346 | /** |
| 347 | * clk_debug_unregister - remove a clk node from the debugfs clk tree |
| 348 | * @clk: the clk being removed from the debugfs clk tree |
| 349 | * |
| 350 | * Dynamically removes a clk and all it's children clk nodes from the |
| 351 | * debugfs clk tree if clk->dentry points to debugfs created by |
| 352 | * clk_debug_register in __clk_init. |
| 353 | * |
| 354 | * Caller must hold prepare_lock. |
| 355 | */ |
| 356 | static void clk_debug_unregister(struct clk *clk) |
| 357 | { |
| 358 | debugfs_remove_recursive(clk->dentry); |
| 359 | } |
| 360 | |
Peter De Schrijver | fb2b3c9 | 2014-06-26 18:00:53 +0300 | [diff] [blame^] | 361 | struct dentry *clk_debugfs_add_file(struct clk *clk, char *name, umode_t mode, |
| 362 | void *data, const struct file_operations *fops) |
| 363 | { |
| 364 | struct dentry *d = NULL; |
| 365 | |
| 366 | if (clk->dentry) |
| 367 | d = debugfs_create_file(name, mode, clk->dentry, data, fops); |
| 368 | |
| 369 | return d; |
| 370 | } |
| 371 | EXPORT_SYMBOL_GPL(clk_debugfs_add_file); |
| 372 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 373 | /** |
| 374 | * clk_debug_init - lazily create the debugfs clk tree visualization |
| 375 | * |
| 376 | * clks are often initialized very early during boot before memory can |
| 377 | * be dynamically allocated and well before debugfs is setup. |
| 378 | * clk_debug_init walks the clk tree hierarchy while holding |
| 379 | * prepare_lock and creates the topology as part of a late_initcall, |
| 380 | * thus insuring that clks initialized very early will still be |
| 381 | * represented in the debugfs clk tree. This function should only be |
| 382 | * called once at boot-time, and all other clks added dynamically will |
| 383 | * be done so with clk_debug_register. |
| 384 | */ |
| 385 | static int __init clk_debug_init(void) |
| 386 | { |
| 387 | struct clk *clk; |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 388 | struct dentry *d; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 389 | |
| 390 | rootdir = debugfs_create_dir("clk", NULL); |
| 391 | |
| 392 | if (!rootdir) |
| 393 | return -ENOMEM; |
| 394 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 395 | d = debugfs_create_file("clk_summary", S_IRUGO, rootdir, &all_lists, |
Prashant Gaikwad | 1af599d | 2012-12-26 19:16:22 +0530 | [diff] [blame] | 396 | &clk_summary_fops); |
| 397 | if (!d) |
| 398 | return -ENOMEM; |
| 399 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 400 | d = debugfs_create_file("clk_dump", S_IRUGO, rootdir, &all_lists, |
Prashant Gaikwad | bddca89 | 2012-12-26 19:16:23 +0530 | [diff] [blame] | 401 | &clk_dump_fops); |
| 402 | if (!d) |
| 403 | return -ENOMEM; |
| 404 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 405 | d = debugfs_create_file("clk_orphan_summary", S_IRUGO, rootdir, |
| 406 | &orphan_list, &clk_summary_fops); |
| 407 | if (!d) |
| 408 | return -ENOMEM; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 409 | |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 410 | d = debugfs_create_file("clk_orphan_dump", S_IRUGO, rootdir, |
| 411 | &orphan_list, &clk_dump_fops); |
| 412 | if (!d) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 413 | return -ENOMEM; |
| 414 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 415 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 416 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 417 | hlist_for_each_entry(clk, &clk_root_list, child_node) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 418 | clk_debug_create_subtree(clk, rootdir); |
| 419 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 420 | hlist_for_each_entry(clk, &clk_orphan_list, child_node) |
Peter De Schrijver | 27b8d5f | 2014-05-30 18:03:57 +0300 | [diff] [blame] | 421 | clk_debug_create_subtree(clk, rootdir); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 422 | |
| 423 | inited = 1; |
| 424 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 425 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 426 | |
| 427 | return 0; |
| 428 | } |
| 429 | late_initcall(clk_debug_init); |
| 430 | #else |
| 431 | static inline int clk_debug_register(struct clk *clk) { return 0; } |
Ulf Hansson | b33d212 | 2013-04-02 23:09:37 +0200 | [diff] [blame] | 432 | static inline void clk_debug_reparent(struct clk *clk, struct clk *new_parent) |
| 433 | { |
| 434 | } |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 435 | static inline void clk_debug_unregister(struct clk *clk) |
| 436 | { |
| 437 | } |
Mike Turquette | 70d347e | 2012-03-26 11:53:47 -0700 | [diff] [blame] | 438 | #endif |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 439 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 440 | /* caller must hold prepare_lock */ |
Ulf Hansson | 1c155b3 | 2013-03-12 20:26:03 +0100 | [diff] [blame] | 441 | static void clk_unprepare_unused_subtree(struct clk *clk) |
| 442 | { |
| 443 | struct clk *child; |
| 444 | |
| 445 | if (!clk) |
| 446 | return; |
| 447 | |
| 448 | hlist_for_each_entry(child, &clk->children, child_node) |
| 449 | clk_unprepare_unused_subtree(child); |
| 450 | |
| 451 | if (clk->prepare_count) |
| 452 | return; |
| 453 | |
| 454 | if (clk->flags & CLK_IGNORE_UNUSED) |
| 455 | return; |
| 456 | |
Ulf Hansson | 3cc8247 | 2013-03-12 20:26:04 +0100 | [diff] [blame] | 457 | if (__clk_is_prepared(clk)) { |
| 458 | if (clk->ops->unprepare_unused) |
| 459 | clk->ops->unprepare_unused(clk->hw); |
| 460 | else if (clk->ops->unprepare) |
Ulf Hansson | 1c155b3 | 2013-03-12 20:26:03 +0100 | [diff] [blame] | 461 | clk->ops->unprepare(clk->hw); |
Ulf Hansson | 3cc8247 | 2013-03-12 20:26:04 +0100 | [diff] [blame] | 462 | } |
Ulf Hansson | 1c155b3 | 2013-03-12 20:26:03 +0100 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | /* caller must hold prepare_lock */ |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 466 | static void clk_disable_unused_subtree(struct clk *clk) |
| 467 | { |
| 468 | struct clk *child; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 469 | unsigned long flags; |
| 470 | |
| 471 | if (!clk) |
| 472 | goto out; |
| 473 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 474 | hlist_for_each_entry(child, &clk->children, child_node) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 475 | clk_disable_unused_subtree(child); |
| 476 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 477 | flags = clk_enable_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 478 | |
| 479 | if (clk->enable_count) |
| 480 | goto unlock_out; |
| 481 | |
| 482 | if (clk->flags & CLK_IGNORE_UNUSED) |
| 483 | goto unlock_out; |
| 484 | |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 485 | /* |
| 486 | * some gate clocks have special needs during the disable-unused |
| 487 | * sequence. call .disable_unused if available, otherwise fall |
| 488 | * back to .disable |
| 489 | */ |
| 490 | if (__clk_is_enabled(clk)) { |
| 491 | if (clk->ops->disable_unused) |
| 492 | clk->ops->disable_unused(clk->hw); |
| 493 | else if (clk->ops->disable) |
| 494 | clk->ops->disable(clk->hw); |
| 495 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 496 | |
| 497 | unlock_out: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 498 | clk_enable_unlock(flags); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 499 | |
| 500 | out: |
| 501 | return; |
| 502 | } |
| 503 | |
Olof Johansson | 1e43525 | 2013-04-27 14:10:18 -0700 | [diff] [blame] | 504 | static bool clk_ignore_unused; |
| 505 | static int __init clk_ignore_unused_setup(char *__unused) |
| 506 | { |
| 507 | clk_ignore_unused = true; |
| 508 | return 1; |
| 509 | } |
| 510 | __setup("clk_ignore_unused", clk_ignore_unused_setup); |
| 511 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 512 | static int clk_disable_unused(void) |
| 513 | { |
| 514 | struct clk *clk; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 515 | |
Olof Johansson | 1e43525 | 2013-04-27 14:10:18 -0700 | [diff] [blame] | 516 | if (clk_ignore_unused) { |
| 517 | pr_warn("clk: Not disabling unused clocks\n"); |
| 518 | return 0; |
| 519 | } |
| 520 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 521 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 522 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 523 | hlist_for_each_entry(clk, &clk_root_list, child_node) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 524 | clk_disable_unused_subtree(clk); |
| 525 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 526 | hlist_for_each_entry(clk, &clk_orphan_list, child_node) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 527 | clk_disable_unused_subtree(clk); |
| 528 | |
Ulf Hansson | 1c155b3 | 2013-03-12 20:26:03 +0100 | [diff] [blame] | 529 | hlist_for_each_entry(clk, &clk_root_list, child_node) |
| 530 | clk_unprepare_unused_subtree(clk); |
| 531 | |
| 532 | hlist_for_each_entry(clk, &clk_orphan_list, child_node) |
| 533 | clk_unprepare_unused_subtree(clk); |
| 534 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 535 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 536 | |
| 537 | return 0; |
| 538 | } |
Saravana Kannan | d41d580 | 2013-05-09 11:35:01 -0700 | [diff] [blame] | 539 | late_initcall_sync(clk_disable_unused); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 540 | |
| 541 | /*** helper functions ***/ |
| 542 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 543 | const char *__clk_get_name(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 544 | { |
| 545 | return !clk ? NULL : clk->name; |
| 546 | } |
Niels de Vos | 4895084 | 2012-12-13 13:12:25 +0100 | [diff] [blame] | 547 | EXPORT_SYMBOL_GPL(__clk_get_name); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 548 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 549 | struct clk_hw *__clk_get_hw(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 550 | { |
| 551 | return !clk ? NULL : clk->hw; |
| 552 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 553 | EXPORT_SYMBOL_GPL(__clk_get_hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 554 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 555 | u8 __clk_get_num_parents(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 556 | { |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 557 | return !clk ? 0 : clk->num_parents; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 558 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 559 | EXPORT_SYMBOL_GPL(__clk_get_num_parents); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 560 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 561 | struct clk *__clk_get_parent(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 562 | { |
| 563 | return !clk ? NULL : clk->parent; |
| 564 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 565 | EXPORT_SYMBOL_GPL(__clk_get_parent); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 566 | |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 567 | struct clk *clk_get_parent_by_index(struct clk *clk, u8 index) |
| 568 | { |
| 569 | if (!clk || index >= clk->num_parents) |
| 570 | return NULL; |
| 571 | else if (!clk->parents) |
| 572 | return __clk_lookup(clk->parent_names[index]); |
| 573 | else if (!clk->parents[index]) |
| 574 | return clk->parents[index] = |
| 575 | __clk_lookup(clk->parent_names[index]); |
| 576 | else |
| 577 | return clk->parents[index]; |
| 578 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 579 | EXPORT_SYMBOL_GPL(clk_get_parent_by_index); |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 580 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 581 | unsigned int __clk_get_enable_count(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 582 | { |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 583 | return !clk ? 0 : clk->enable_count; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 584 | } |
| 585 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 586 | unsigned int __clk_get_prepare_count(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 587 | { |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 588 | return !clk ? 0 : clk->prepare_count; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | unsigned long __clk_get_rate(struct clk *clk) |
| 592 | { |
| 593 | unsigned long ret; |
| 594 | |
| 595 | if (!clk) { |
Rajendra Nayak | 34e44fe | 2012-03-26 19:01:48 +0530 | [diff] [blame] | 596 | ret = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 597 | goto out; |
| 598 | } |
| 599 | |
| 600 | ret = clk->rate; |
| 601 | |
| 602 | if (clk->flags & CLK_IS_ROOT) |
| 603 | goto out; |
| 604 | |
| 605 | if (!clk->parent) |
Rajendra Nayak | 34e44fe | 2012-03-26 19:01:48 +0530 | [diff] [blame] | 606 | ret = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 607 | |
| 608 | out: |
| 609 | return ret; |
| 610 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 611 | EXPORT_SYMBOL_GPL(__clk_get_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 612 | |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 613 | unsigned long __clk_get_accuracy(struct clk *clk) |
| 614 | { |
| 615 | if (!clk) |
| 616 | return 0; |
| 617 | |
| 618 | return clk->accuracy; |
| 619 | } |
| 620 | |
Russ Dill | 65800b2 | 2012-11-26 11:20:09 -0800 | [diff] [blame] | 621 | unsigned long __clk_get_flags(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 622 | { |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 623 | return !clk ? 0 : clk->flags; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 624 | } |
Thierry Reding | b05c683 | 2013-09-03 09:43:51 +0200 | [diff] [blame] | 625 | EXPORT_SYMBOL_GPL(__clk_get_flags); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 626 | |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 627 | bool __clk_is_prepared(struct clk *clk) |
| 628 | { |
| 629 | int ret; |
| 630 | |
| 631 | if (!clk) |
| 632 | return false; |
| 633 | |
| 634 | /* |
| 635 | * .is_prepared is optional for clocks that can prepare |
| 636 | * fall back to software usage counter if it is missing |
| 637 | */ |
| 638 | if (!clk->ops->is_prepared) { |
| 639 | ret = clk->prepare_count ? 1 : 0; |
| 640 | goto out; |
| 641 | } |
| 642 | |
| 643 | ret = clk->ops->is_prepared(clk->hw); |
| 644 | out: |
| 645 | return !!ret; |
| 646 | } |
| 647 | |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 648 | bool __clk_is_enabled(struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 649 | { |
| 650 | int ret; |
| 651 | |
| 652 | if (!clk) |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 653 | return false; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 654 | |
| 655 | /* |
| 656 | * .is_enabled is only mandatory for clocks that gate |
| 657 | * fall back to software usage counter if .is_enabled is missing |
| 658 | */ |
| 659 | if (!clk->ops->is_enabled) { |
| 660 | ret = clk->enable_count ? 1 : 0; |
| 661 | goto out; |
| 662 | } |
| 663 | |
| 664 | ret = clk->ops->is_enabled(clk->hw); |
| 665 | out: |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 666 | return !!ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 667 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 668 | EXPORT_SYMBOL_GPL(__clk_is_enabled); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 669 | |
| 670 | static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk) |
| 671 | { |
| 672 | struct clk *child; |
| 673 | struct clk *ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 674 | |
| 675 | if (!strcmp(clk->name, name)) |
| 676 | return clk; |
| 677 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 678 | hlist_for_each_entry(child, &clk->children, child_node) { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 679 | ret = __clk_lookup_subtree(name, child); |
| 680 | if (ret) |
| 681 | return ret; |
| 682 | } |
| 683 | |
| 684 | return NULL; |
| 685 | } |
| 686 | |
| 687 | struct clk *__clk_lookup(const char *name) |
| 688 | { |
| 689 | struct clk *root_clk; |
| 690 | struct clk *ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 691 | |
| 692 | if (!name) |
| 693 | return NULL; |
| 694 | |
| 695 | /* search the 'proper' clk tree first */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 696 | hlist_for_each_entry(root_clk, &clk_root_list, child_node) { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 697 | ret = __clk_lookup_subtree(name, root_clk); |
| 698 | if (ret) |
| 699 | return ret; |
| 700 | } |
| 701 | |
| 702 | /* if not found, then search the orphan tree */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 703 | hlist_for_each_entry(root_clk, &clk_orphan_list, child_node) { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 704 | ret = __clk_lookup_subtree(name, root_clk); |
| 705 | if (ret) |
| 706 | return ret; |
| 707 | } |
| 708 | |
| 709 | return NULL; |
| 710 | } |
| 711 | |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 712 | /* |
| 713 | * Helper for finding best parent to provide a given frequency. This can be used |
| 714 | * directly as a determine_rate callback (e.g. for a mux), or from a more |
| 715 | * complex clock that may combine a mux with other operations. |
| 716 | */ |
| 717 | long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate, |
| 718 | unsigned long *best_parent_rate, |
| 719 | struct clk **best_parent_p) |
| 720 | { |
| 721 | struct clk *clk = hw->clk, *parent, *best_parent = NULL; |
| 722 | int i, num_parents; |
| 723 | unsigned long parent_rate, best = 0; |
| 724 | |
| 725 | /* if NO_REPARENT flag set, pass through to current parent */ |
| 726 | if (clk->flags & CLK_SET_RATE_NO_REPARENT) { |
| 727 | parent = clk->parent; |
| 728 | if (clk->flags & CLK_SET_RATE_PARENT) |
| 729 | best = __clk_round_rate(parent, rate); |
| 730 | else if (parent) |
| 731 | best = __clk_get_rate(parent); |
| 732 | else |
| 733 | best = __clk_get_rate(clk); |
| 734 | goto out; |
| 735 | } |
| 736 | |
| 737 | /* find the parent that can provide the fastest rate <= rate */ |
| 738 | num_parents = clk->num_parents; |
| 739 | for (i = 0; i < num_parents; i++) { |
| 740 | parent = clk_get_parent_by_index(clk, i); |
| 741 | if (!parent) |
| 742 | continue; |
| 743 | if (clk->flags & CLK_SET_RATE_PARENT) |
| 744 | parent_rate = __clk_round_rate(parent, rate); |
| 745 | else |
| 746 | parent_rate = __clk_get_rate(parent); |
| 747 | if (parent_rate <= rate && parent_rate > best) { |
| 748 | best_parent = parent; |
| 749 | best = parent_rate; |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | out: |
| 754 | if (best_parent) |
| 755 | *best_parent_p = best_parent; |
| 756 | *best_parent_rate = best; |
| 757 | |
| 758 | return best; |
| 759 | } |
Stephen Boyd | 0b7f04b | 2014-01-17 19:47:17 -0800 | [diff] [blame] | 760 | EXPORT_SYMBOL_GPL(__clk_mux_determine_rate); |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 761 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 762 | /*** clk api ***/ |
| 763 | |
| 764 | void __clk_unprepare(struct clk *clk) |
| 765 | { |
| 766 | if (!clk) |
| 767 | return; |
| 768 | |
| 769 | if (WARN_ON(clk->prepare_count == 0)) |
| 770 | return; |
| 771 | |
| 772 | if (--clk->prepare_count > 0) |
| 773 | return; |
| 774 | |
| 775 | WARN_ON(clk->enable_count > 0); |
| 776 | |
| 777 | if (clk->ops->unprepare) |
| 778 | clk->ops->unprepare(clk->hw); |
| 779 | |
| 780 | __clk_unprepare(clk->parent); |
| 781 | } |
| 782 | |
| 783 | /** |
| 784 | * clk_unprepare - undo preparation of a clock source |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 785 | * @clk: the clk being unprepared |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 786 | * |
| 787 | * clk_unprepare may sleep, which differentiates it from clk_disable. In a |
| 788 | * simple case, clk_unprepare can be used instead of clk_disable to gate a clk |
| 789 | * if the operation may sleep. One example is a clk which is accessed over |
| 790 | * I2c. In the complex case a clk gate operation may require a fast and a slow |
| 791 | * part. It is this reason that clk_unprepare and clk_disable are not mutually |
| 792 | * exclusive. In fact clk_disable must be called before clk_unprepare. |
| 793 | */ |
| 794 | void clk_unprepare(struct clk *clk) |
| 795 | { |
Stephen Boyd | 63589e9 | 2014-03-26 16:06:37 -0700 | [diff] [blame] | 796 | if (IS_ERR_OR_NULL(clk)) |
| 797 | return; |
| 798 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 799 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 800 | __clk_unprepare(clk); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 801 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 802 | } |
| 803 | EXPORT_SYMBOL_GPL(clk_unprepare); |
| 804 | |
| 805 | int __clk_prepare(struct clk *clk) |
| 806 | { |
| 807 | int ret = 0; |
| 808 | |
| 809 | if (!clk) |
| 810 | return 0; |
| 811 | |
| 812 | if (clk->prepare_count == 0) { |
| 813 | ret = __clk_prepare(clk->parent); |
| 814 | if (ret) |
| 815 | return ret; |
| 816 | |
| 817 | if (clk->ops->prepare) { |
| 818 | ret = clk->ops->prepare(clk->hw); |
| 819 | if (ret) { |
| 820 | __clk_unprepare(clk->parent); |
| 821 | return ret; |
| 822 | } |
| 823 | } |
| 824 | } |
| 825 | |
| 826 | clk->prepare_count++; |
| 827 | |
| 828 | return 0; |
| 829 | } |
| 830 | |
| 831 | /** |
| 832 | * clk_prepare - prepare a clock source |
| 833 | * @clk: the clk being prepared |
| 834 | * |
| 835 | * clk_prepare may sleep, which differentiates it from clk_enable. In a simple |
| 836 | * case, clk_prepare can be used instead of clk_enable to ungate a clk if the |
| 837 | * operation may sleep. One example is a clk which is accessed over I2c. In |
| 838 | * the complex case a clk ungate operation may require a fast and a slow part. |
| 839 | * It is this reason that clk_prepare and clk_enable are not mutually |
| 840 | * exclusive. In fact clk_prepare must be called before clk_enable. |
| 841 | * Returns 0 on success, -EERROR otherwise. |
| 842 | */ |
| 843 | int clk_prepare(struct clk *clk) |
| 844 | { |
| 845 | int ret; |
| 846 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 847 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 848 | ret = __clk_prepare(clk); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 849 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 850 | |
| 851 | return ret; |
| 852 | } |
| 853 | EXPORT_SYMBOL_GPL(clk_prepare); |
| 854 | |
| 855 | static void __clk_disable(struct clk *clk) |
| 856 | { |
| 857 | if (!clk) |
| 858 | return; |
| 859 | |
| 860 | if (WARN_ON(clk->enable_count == 0)) |
| 861 | return; |
| 862 | |
| 863 | if (--clk->enable_count > 0) |
| 864 | return; |
| 865 | |
| 866 | if (clk->ops->disable) |
| 867 | clk->ops->disable(clk->hw); |
| 868 | |
| 869 | __clk_disable(clk->parent); |
| 870 | } |
| 871 | |
| 872 | /** |
| 873 | * clk_disable - gate a clock |
| 874 | * @clk: the clk being gated |
| 875 | * |
| 876 | * clk_disable must not sleep, which differentiates it from clk_unprepare. In |
| 877 | * a simple case, clk_disable can be used instead of clk_unprepare to gate a |
| 878 | * clk if the operation is fast and will never sleep. One example is a |
| 879 | * SoC-internal clk which is controlled via simple register writes. In the |
| 880 | * complex case a clk gate operation may require a fast and a slow part. It is |
| 881 | * this reason that clk_unprepare and clk_disable are not mutually exclusive. |
| 882 | * In fact clk_disable must be called before clk_unprepare. |
| 883 | */ |
| 884 | void clk_disable(struct clk *clk) |
| 885 | { |
| 886 | unsigned long flags; |
| 887 | |
Stephen Boyd | 63589e9 | 2014-03-26 16:06:37 -0700 | [diff] [blame] | 888 | if (IS_ERR_OR_NULL(clk)) |
| 889 | return; |
| 890 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 891 | flags = clk_enable_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 892 | __clk_disable(clk); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 893 | clk_enable_unlock(flags); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 894 | } |
| 895 | EXPORT_SYMBOL_GPL(clk_disable); |
| 896 | |
| 897 | static int __clk_enable(struct clk *clk) |
| 898 | { |
| 899 | int ret = 0; |
| 900 | |
| 901 | if (!clk) |
| 902 | return 0; |
| 903 | |
| 904 | if (WARN_ON(clk->prepare_count == 0)) |
| 905 | return -ESHUTDOWN; |
| 906 | |
| 907 | if (clk->enable_count == 0) { |
| 908 | ret = __clk_enable(clk->parent); |
| 909 | |
| 910 | if (ret) |
| 911 | return ret; |
| 912 | |
| 913 | if (clk->ops->enable) { |
| 914 | ret = clk->ops->enable(clk->hw); |
| 915 | if (ret) { |
| 916 | __clk_disable(clk->parent); |
| 917 | return ret; |
| 918 | } |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | clk->enable_count++; |
| 923 | return 0; |
| 924 | } |
| 925 | |
| 926 | /** |
| 927 | * clk_enable - ungate a clock |
| 928 | * @clk: the clk being ungated |
| 929 | * |
| 930 | * clk_enable must not sleep, which differentiates it from clk_prepare. In a |
| 931 | * simple case, clk_enable can be used instead of clk_prepare to ungate a clk |
| 932 | * if the operation will never sleep. One example is a SoC-internal clk which |
| 933 | * is controlled via simple register writes. In the complex case a clk ungate |
| 934 | * operation may require a fast and a slow part. It is this reason that |
| 935 | * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare |
| 936 | * must be called before clk_enable. Returns 0 on success, -EERROR |
| 937 | * otherwise. |
| 938 | */ |
| 939 | int clk_enable(struct clk *clk) |
| 940 | { |
| 941 | unsigned long flags; |
| 942 | int ret; |
| 943 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 944 | flags = clk_enable_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 945 | ret = __clk_enable(clk); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 946 | clk_enable_unlock(flags); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 947 | |
| 948 | return ret; |
| 949 | } |
| 950 | EXPORT_SYMBOL_GPL(clk_enable); |
| 951 | |
| 952 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 953 | * __clk_round_rate - round the given rate for a clk |
| 954 | * @clk: round the rate of this clock |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 955 | * @rate: the rate which is to be rounded |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 956 | * |
| 957 | * Caller must hold prepare_lock. Useful for clk_ops such as .set_rate |
| 958 | */ |
| 959 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate) |
| 960 | { |
Shawn Guo | 81536e0 | 2012-04-12 20:50:17 +0800 | [diff] [blame] | 961 | unsigned long parent_rate = 0; |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 962 | struct clk *parent; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 963 | |
| 964 | if (!clk) |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 965 | return 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 966 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 967 | parent = clk->parent; |
| 968 | if (parent) |
| 969 | parent_rate = parent->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 970 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 971 | if (clk->ops->determine_rate) |
| 972 | return clk->ops->determine_rate(clk->hw, rate, &parent_rate, |
| 973 | &parent); |
| 974 | else if (clk->ops->round_rate) |
| 975 | return clk->ops->round_rate(clk->hw, rate, &parent_rate); |
| 976 | else if (clk->flags & CLK_SET_RATE_PARENT) |
| 977 | return __clk_round_rate(clk->parent, rate); |
| 978 | else |
| 979 | return clk->rate; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 980 | } |
Arnd Bergmann | 1cdf8ee | 2014-06-03 11:40:14 +0200 | [diff] [blame] | 981 | EXPORT_SYMBOL_GPL(__clk_round_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 982 | |
| 983 | /** |
| 984 | * clk_round_rate - round the given rate for a clk |
| 985 | * @clk: the clk for which we are rounding a rate |
| 986 | * @rate: the rate which is to be rounded |
| 987 | * |
| 988 | * Takes in a rate as input and rounds it to a rate that the clk can actually |
| 989 | * use which is then returned. If clk doesn't support round_rate operation |
| 990 | * then the parent rate is returned. |
| 991 | */ |
| 992 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 993 | { |
| 994 | unsigned long ret; |
| 995 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 996 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 997 | ret = __clk_round_rate(clk, rate); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 998 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 999 | |
| 1000 | return ret; |
| 1001 | } |
| 1002 | EXPORT_SYMBOL_GPL(clk_round_rate); |
| 1003 | |
| 1004 | /** |
| 1005 | * __clk_notify - call clk notifier chain |
| 1006 | * @clk: struct clk * that is changing rate |
| 1007 | * @msg: clk notifier type (see include/linux/clk.h) |
| 1008 | * @old_rate: old clk rate |
| 1009 | * @new_rate: new clk rate |
| 1010 | * |
| 1011 | * Triggers a notifier call chain on the clk rate-change notification |
| 1012 | * for 'clk'. Passes a pointer to the struct clk and the previous |
| 1013 | * and current rates to the notifier callback. Intended to be called by |
| 1014 | * internal clock code only. Returns NOTIFY_DONE from the last driver |
| 1015 | * called if all went well, or NOTIFY_STOP or NOTIFY_BAD immediately if |
| 1016 | * a driver returns that. |
| 1017 | */ |
| 1018 | static int __clk_notify(struct clk *clk, unsigned long msg, |
| 1019 | unsigned long old_rate, unsigned long new_rate) |
| 1020 | { |
| 1021 | struct clk_notifier *cn; |
| 1022 | struct clk_notifier_data cnd; |
| 1023 | int ret = NOTIFY_DONE; |
| 1024 | |
| 1025 | cnd.clk = clk; |
| 1026 | cnd.old_rate = old_rate; |
| 1027 | cnd.new_rate = new_rate; |
| 1028 | |
| 1029 | list_for_each_entry(cn, &clk_notifier_list, node) { |
| 1030 | if (cn->clk == clk) { |
| 1031 | ret = srcu_notifier_call_chain(&cn->notifier_head, msg, |
| 1032 | &cnd); |
| 1033 | break; |
| 1034 | } |
| 1035 | } |
| 1036 | |
| 1037 | return ret; |
| 1038 | } |
| 1039 | |
| 1040 | /** |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1041 | * __clk_recalc_accuracies |
| 1042 | * @clk: first clk in the subtree |
| 1043 | * |
| 1044 | * Walks the subtree of clks starting with clk and recalculates accuracies as |
| 1045 | * it goes. Note that if a clk does not implement the .recalc_accuracy |
| 1046 | * callback then it is assumed that the clock will take on the accuracy of it's |
| 1047 | * parent. |
| 1048 | * |
| 1049 | * Caller must hold prepare_lock. |
| 1050 | */ |
| 1051 | static void __clk_recalc_accuracies(struct clk *clk) |
| 1052 | { |
| 1053 | unsigned long parent_accuracy = 0; |
| 1054 | struct clk *child; |
| 1055 | |
| 1056 | if (clk->parent) |
| 1057 | parent_accuracy = clk->parent->accuracy; |
| 1058 | |
| 1059 | if (clk->ops->recalc_accuracy) |
| 1060 | clk->accuracy = clk->ops->recalc_accuracy(clk->hw, |
| 1061 | parent_accuracy); |
| 1062 | else |
| 1063 | clk->accuracy = parent_accuracy; |
| 1064 | |
| 1065 | hlist_for_each_entry(child, &clk->children, child_node) |
| 1066 | __clk_recalc_accuracies(child); |
| 1067 | } |
| 1068 | |
| 1069 | /** |
| 1070 | * clk_get_accuracy - return the accuracy of clk |
| 1071 | * @clk: the clk whose accuracy is being returned |
| 1072 | * |
| 1073 | * Simply returns the cached accuracy of the clk, unless |
| 1074 | * CLK_GET_ACCURACY_NOCACHE flag is set, which means a recalc_rate will be |
| 1075 | * issued. |
| 1076 | * If clk is NULL then returns 0. |
| 1077 | */ |
| 1078 | long clk_get_accuracy(struct clk *clk) |
| 1079 | { |
| 1080 | unsigned long accuracy; |
| 1081 | |
| 1082 | clk_prepare_lock(); |
| 1083 | if (clk && (clk->flags & CLK_GET_ACCURACY_NOCACHE)) |
| 1084 | __clk_recalc_accuracies(clk); |
| 1085 | |
| 1086 | accuracy = __clk_get_accuracy(clk); |
| 1087 | clk_prepare_unlock(); |
| 1088 | |
| 1089 | return accuracy; |
| 1090 | } |
| 1091 | EXPORT_SYMBOL_GPL(clk_get_accuracy); |
| 1092 | |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1093 | static unsigned long clk_recalc(struct clk *clk, unsigned long parent_rate) |
| 1094 | { |
| 1095 | if (clk->ops->recalc_rate) |
| 1096 | return clk->ops->recalc_rate(clk->hw, parent_rate); |
| 1097 | return parent_rate; |
| 1098 | } |
| 1099 | |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1100 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1101 | * __clk_recalc_rates |
| 1102 | * @clk: first clk in the subtree |
| 1103 | * @msg: notification type (see include/linux/clk.h) |
| 1104 | * |
| 1105 | * Walks the subtree of clks starting with clk and recalculates rates as it |
| 1106 | * 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] | 1107 | * 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] | 1108 | * |
| 1109 | * clk_recalc_rates also propagates the POST_RATE_CHANGE notification, |
| 1110 | * if necessary. |
| 1111 | * |
| 1112 | * Caller must hold prepare_lock. |
| 1113 | */ |
| 1114 | static void __clk_recalc_rates(struct clk *clk, unsigned long msg) |
| 1115 | { |
| 1116 | unsigned long old_rate; |
| 1117 | unsigned long parent_rate = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1118 | struct clk *child; |
| 1119 | |
| 1120 | old_rate = clk->rate; |
| 1121 | |
| 1122 | if (clk->parent) |
| 1123 | parent_rate = clk->parent->rate; |
| 1124 | |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1125 | clk->rate = clk_recalc(clk, parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1126 | |
| 1127 | /* |
| 1128 | * ignore NOTIFY_STOP and NOTIFY_BAD return values for POST_RATE_CHANGE |
| 1129 | * & ABORT_RATE_CHANGE notifiers |
| 1130 | */ |
| 1131 | if (clk->notifier_count && msg) |
| 1132 | __clk_notify(clk, msg, old_rate, clk->rate); |
| 1133 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1134 | hlist_for_each_entry(child, &clk->children, child_node) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1135 | __clk_recalc_rates(child, msg); |
| 1136 | } |
| 1137 | |
| 1138 | /** |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1139 | * clk_get_rate - return the rate of clk |
| 1140 | * @clk: the clk whose rate is being returned |
| 1141 | * |
| 1142 | * Simply returns the cached rate of the clk, unless CLK_GET_RATE_NOCACHE flag |
| 1143 | * is set, which means a recalc_rate will be issued. |
| 1144 | * If clk is NULL then returns 0. |
| 1145 | */ |
| 1146 | unsigned long clk_get_rate(struct clk *clk) |
| 1147 | { |
| 1148 | unsigned long rate; |
| 1149 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1150 | clk_prepare_lock(); |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1151 | |
| 1152 | if (clk && (clk->flags & CLK_GET_RATE_NOCACHE)) |
| 1153 | __clk_recalc_rates(clk, 0); |
| 1154 | |
| 1155 | rate = __clk_get_rate(clk); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1156 | clk_prepare_unlock(); |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1157 | |
| 1158 | return rate; |
| 1159 | } |
| 1160 | EXPORT_SYMBOL_GPL(clk_get_rate); |
| 1161 | |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1162 | static int clk_fetch_parent_index(struct clk *clk, struct clk *parent) |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1163 | { |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1164 | int i; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1165 | |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1166 | if (!clk->parents) { |
Tomasz Figa | 96a7ed9 | 2013-09-29 02:37:15 +0200 | [diff] [blame] | 1167 | clk->parents = kcalloc(clk->num_parents, |
| 1168 | sizeof(struct clk *), GFP_KERNEL); |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1169 | if (!clk->parents) |
| 1170 | return -ENOMEM; |
| 1171 | } |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1172 | |
| 1173 | /* |
| 1174 | * find index of new parent clock using cached parent ptrs, |
| 1175 | * or if not yet cached, use string name comparison and cache |
| 1176 | * them now to avoid future calls to __clk_lookup. |
| 1177 | */ |
| 1178 | for (i = 0; i < clk->num_parents; i++) { |
Tomasz Figa | da0f0b2 | 2013-09-29 02:37:16 +0200 | [diff] [blame] | 1179 | if (clk->parents[i] == parent) |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1180 | return i; |
Tomasz Figa | da0f0b2 | 2013-09-29 02:37:16 +0200 | [diff] [blame] | 1181 | |
| 1182 | if (clk->parents[i]) |
| 1183 | continue; |
| 1184 | |
| 1185 | if (!strcmp(clk->parent_names[i], parent->name)) { |
| 1186 | clk->parents[i] = __clk_lookup(parent->name); |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1187 | return i; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1188 | } |
| 1189 | } |
| 1190 | |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1191 | return -EINVAL; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | static void clk_reparent(struct clk *clk, struct clk *new_parent) |
| 1195 | { |
| 1196 | hlist_del(&clk->child_node); |
| 1197 | |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1198 | if (new_parent) { |
| 1199 | /* avoid duplicate POST_RATE_CHANGE notifications */ |
| 1200 | if (new_parent->new_child == clk) |
| 1201 | new_parent->new_child = NULL; |
| 1202 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1203 | hlist_add_head(&clk->child_node, &new_parent->children); |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1204 | } else { |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1205 | hlist_add_head(&clk->child_node, &clk_orphan_list); |
James Hogan | 903efc5 | 2013-08-29 12:10:51 +0100 | [diff] [blame] | 1206 | } |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1207 | |
| 1208 | clk->parent = new_parent; |
| 1209 | } |
| 1210 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1211 | static struct clk *__clk_set_parent_before(struct clk *clk, struct clk *parent) |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1212 | { |
| 1213 | unsigned long flags; |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1214 | struct clk *old_parent = clk->parent; |
| 1215 | |
| 1216 | /* |
| 1217 | * Migrate prepare state between parents and prevent race with |
| 1218 | * clk_enable(). |
| 1219 | * |
| 1220 | * If the clock is not prepared, then a race with |
| 1221 | * clk_enable/disable() is impossible since we already have the |
| 1222 | * prepare lock (future calls to clk_enable() need to be preceded by |
| 1223 | * a clk_prepare()). |
| 1224 | * |
| 1225 | * If the clock is prepared, migrate the prepared state to the new |
| 1226 | * parent and also protect against a race with clk_enable() by |
| 1227 | * forcing the clock and the new parent on. This ensures that all |
| 1228 | * future calls to clk_enable() are practically NOPs with respect to |
| 1229 | * hardware and software states. |
| 1230 | * |
| 1231 | * See also: Comment for clk_set_parent() below. |
| 1232 | */ |
| 1233 | if (clk->prepare_count) { |
| 1234 | __clk_prepare(parent); |
| 1235 | clk_enable(parent); |
| 1236 | clk_enable(clk); |
| 1237 | } |
| 1238 | |
| 1239 | /* update the clk tree topology */ |
| 1240 | flags = clk_enable_lock(); |
| 1241 | clk_reparent(clk, parent); |
| 1242 | clk_enable_unlock(flags); |
| 1243 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1244 | return old_parent; |
| 1245 | } |
| 1246 | |
| 1247 | static void __clk_set_parent_after(struct clk *clk, struct clk *parent, |
| 1248 | struct clk *old_parent) |
| 1249 | { |
| 1250 | /* |
| 1251 | * Finish the migration of prepare state and undo the changes done |
| 1252 | * for preventing a race with clk_enable(). |
| 1253 | */ |
| 1254 | if (clk->prepare_count) { |
| 1255 | clk_disable(clk); |
| 1256 | clk_disable(old_parent); |
| 1257 | __clk_unprepare(old_parent); |
| 1258 | } |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1259 | } |
| 1260 | |
| 1261 | static int __clk_set_parent(struct clk *clk, struct clk *parent, u8 p_index) |
| 1262 | { |
| 1263 | unsigned long flags; |
| 1264 | int ret = 0; |
| 1265 | struct clk *old_parent; |
| 1266 | |
| 1267 | old_parent = __clk_set_parent_before(clk, parent); |
| 1268 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1269 | /* change clock input source */ |
| 1270 | if (parent && clk->ops->set_parent) |
| 1271 | ret = clk->ops->set_parent(clk->hw, p_index); |
| 1272 | |
| 1273 | if (ret) { |
| 1274 | flags = clk_enable_lock(); |
| 1275 | clk_reparent(clk, old_parent); |
| 1276 | clk_enable_unlock(flags); |
| 1277 | |
| 1278 | if (clk->prepare_count) { |
| 1279 | clk_disable(clk); |
| 1280 | clk_disable(parent); |
| 1281 | __clk_unprepare(parent); |
| 1282 | } |
| 1283 | return ret; |
| 1284 | } |
| 1285 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1286 | __clk_set_parent_after(clk, parent, old_parent); |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1287 | |
James Hogan | 4935b22 | 2013-07-29 12:24:59 +0100 | [diff] [blame] | 1288 | return 0; |
| 1289 | } |
| 1290 | |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 1291 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1292 | * __clk_speculate_rates |
| 1293 | * @clk: first clk in the subtree |
| 1294 | * @parent_rate: the "future" rate of clk's parent |
| 1295 | * |
| 1296 | * Walks the subtree of clks starting with clk, speculating rates as it |
| 1297 | * goes and firing off PRE_RATE_CHANGE notifications as necessary. |
| 1298 | * |
| 1299 | * Unlike clk_recalc_rates, clk_speculate_rates exists only for sending |
| 1300 | * pre-rate change notifications and returns early if no clks in the |
| 1301 | * subtree have subscribed to the notifications. Note that if a clk does not |
| 1302 | * 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] | 1303 | * take on the rate of its parent. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1304 | * |
| 1305 | * Caller must hold prepare_lock. |
| 1306 | */ |
| 1307 | static int __clk_speculate_rates(struct clk *clk, unsigned long parent_rate) |
| 1308 | { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1309 | struct clk *child; |
| 1310 | unsigned long new_rate; |
| 1311 | int ret = NOTIFY_DONE; |
| 1312 | |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1313 | new_rate = clk_recalc(clk, parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1314 | |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1315 | /* abort rate change if a driver returns NOTIFY_BAD or NOTIFY_STOP */ |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1316 | if (clk->notifier_count) |
| 1317 | ret = __clk_notify(clk, PRE_RATE_CHANGE, clk->rate, new_rate); |
| 1318 | |
Mike Turquette | 86bcfa2 | 2014-02-24 16:08:41 -0800 | [diff] [blame] | 1319 | if (ret & NOTIFY_STOP_MASK) { |
| 1320 | pr_debug("%s: clk notifier callback for clock %s aborted with error %d\n", |
| 1321 | __func__, clk->name, ret); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1322 | goto out; |
Mike Turquette | 86bcfa2 | 2014-02-24 16:08:41 -0800 | [diff] [blame] | 1323 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1324 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1325 | hlist_for_each_entry(child, &clk->children, child_node) { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1326 | ret = __clk_speculate_rates(child, new_rate); |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1327 | if (ret & NOTIFY_STOP_MASK) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1328 | break; |
| 1329 | } |
| 1330 | |
| 1331 | out: |
| 1332 | return ret; |
| 1333 | } |
| 1334 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1335 | static void clk_calc_subtree(struct clk *clk, unsigned long new_rate, |
| 1336 | struct clk *new_parent, u8 p_index) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1337 | { |
| 1338 | struct clk *child; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1339 | |
| 1340 | clk->new_rate = new_rate; |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1341 | clk->new_parent = new_parent; |
| 1342 | clk->new_parent_index = p_index; |
| 1343 | /* include clk in new parent's PRE_RATE_CHANGE notifications */ |
| 1344 | clk->new_child = NULL; |
| 1345 | if (new_parent && new_parent != clk->parent) |
| 1346 | new_parent->new_child = clk; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1347 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1348 | hlist_for_each_entry(child, &clk->children, child_node) { |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1349 | child->new_rate = clk_recalc(child, new_rate); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1350 | clk_calc_subtree(child, child->new_rate, NULL, 0); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1351 | } |
| 1352 | } |
| 1353 | |
| 1354 | /* |
| 1355 | * calculate the new rates returning the topmost clock that has to be |
| 1356 | * changed. |
| 1357 | */ |
| 1358 | static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate) |
| 1359 | { |
| 1360 | struct clk *top = clk; |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1361 | struct clk *old_parent, *parent; |
Shawn Guo | 81536e0 | 2012-04-12 20:50:17 +0800 | [diff] [blame] | 1362 | unsigned long best_parent_rate = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1363 | unsigned long new_rate; |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1364 | int p_index = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1365 | |
Mike Turquette | 7452b21 | 2012-03-26 14:45:36 -0700 | [diff] [blame] | 1366 | /* sanity */ |
| 1367 | if (IS_ERR_OR_NULL(clk)) |
| 1368 | return NULL; |
| 1369 | |
Mike Turquette | 63f5c3b | 2012-05-02 16:23:43 -0700 | [diff] [blame] | 1370 | /* save parent rate, if it exists */ |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1371 | parent = old_parent = clk->parent; |
| 1372 | if (parent) |
| 1373 | best_parent_rate = parent->rate; |
Mike Turquette | 63f5c3b | 2012-05-02 16:23:43 -0700 | [diff] [blame] | 1374 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1375 | /* find the closest rate and parent clk/rate */ |
| 1376 | if (clk->ops->determine_rate) { |
| 1377 | new_rate = clk->ops->determine_rate(clk->hw, rate, |
| 1378 | &best_parent_rate, |
| 1379 | &parent); |
| 1380 | } else if (clk->ops->round_rate) { |
| 1381 | new_rate = clk->ops->round_rate(clk->hw, rate, |
| 1382 | &best_parent_rate); |
| 1383 | } else if (!parent || !(clk->flags & CLK_SET_RATE_PARENT)) { |
| 1384 | /* pass-through clock without adjustable parent */ |
| 1385 | clk->new_rate = clk->rate; |
| 1386 | return NULL; |
| 1387 | } else { |
| 1388 | /* pass-through clock with adjustable parent */ |
| 1389 | top = clk_calc_new_rates(parent, rate); |
| 1390 | new_rate = parent->new_rate; |
Mike Turquette | 63f5c3b | 2012-05-02 16:23:43 -0700 | [diff] [blame] | 1391 | goto out; |
Mike Turquette | 7452b21 | 2012-03-26 14:45:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1394 | /* some clocks must be gated to change parent */ |
| 1395 | if (parent != old_parent && |
| 1396 | (clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) { |
| 1397 | pr_debug("%s: %s not gated but wants to reparent\n", |
| 1398 | __func__, clk->name); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1399 | return NULL; |
| 1400 | } |
| 1401 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1402 | /* try finding the new parent index */ |
| 1403 | if (parent) { |
| 1404 | p_index = clk_fetch_parent_index(clk, parent); |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1405 | if (p_index < 0) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1406 | pr_debug("%s: clk %s can not be parent of clk %s\n", |
| 1407 | __func__, parent->name, clk->name); |
| 1408 | return NULL; |
| 1409 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1410 | } |
| 1411 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1412 | if ((clk->flags & CLK_SET_RATE_PARENT) && parent && |
| 1413 | best_parent_rate != parent->rate) |
| 1414 | top = clk_calc_new_rates(parent, best_parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1415 | |
| 1416 | out: |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1417 | clk_calc_subtree(clk, new_rate, parent, p_index); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1418 | |
| 1419 | return top; |
| 1420 | } |
| 1421 | |
| 1422 | /* |
| 1423 | * Notify about rate changes in a subtree. Always walk down the whole tree |
| 1424 | * so that in case of an error we can walk down the whole tree again and |
| 1425 | * abort the change. |
| 1426 | */ |
| 1427 | static struct clk *clk_propagate_rate_change(struct clk *clk, unsigned long event) |
| 1428 | { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1429 | struct clk *child, *tmp_clk, *fail_clk = NULL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1430 | int ret = NOTIFY_DONE; |
| 1431 | |
| 1432 | if (clk->rate == clk->new_rate) |
Sachin Kamat | 5fda685 | 2013-03-13 15:17:49 +0530 | [diff] [blame] | 1433 | return NULL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1434 | |
| 1435 | if (clk->notifier_count) { |
| 1436 | ret = __clk_notify(clk, event, clk->rate, clk->new_rate); |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1437 | if (ret & NOTIFY_STOP_MASK) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1438 | fail_clk = clk; |
| 1439 | } |
| 1440 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1441 | hlist_for_each_entry(child, &clk->children, child_node) { |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1442 | /* Skip children who will be reparented to another clock */ |
| 1443 | if (child->new_parent && child->new_parent != clk) |
| 1444 | continue; |
| 1445 | tmp_clk = clk_propagate_rate_change(child, event); |
| 1446 | if (tmp_clk) |
| 1447 | fail_clk = tmp_clk; |
| 1448 | } |
| 1449 | |
| 1450 | /* handle the new child who might not be in clk->children yet */ |
| 1451 | if (clk->new_child) { |
| 1452 | tmp_clk = clk_propagate_rate_change(clk->new_child, event); |
| 1453 | if (tmp_clk) |
| 1454 | fail_clk = tmp_clk; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | return fail_clk; |
| 1458 | } |
| 1459 | |
| 1460 | /* |
| 1461 | * walk down a subtree and set the new rates notifying the rate |
| 1462 | * change on the way |
| 1463 | */ |
| 1464 | static void clk_change_rate(struct clk *clk) |
| 1465 | { |
| 1466 | struct clk *child; |
| 1467 | unsigned long old_rate; |
Pawel Moll | bf47b4f | 2012-06-08 14:04:06 +0100 | [diff] [blame] | 1468 | unsigned long best_parent_rate = 0; |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1469 | bool skip_set_rate = false; |
| 1470 | struct clk *old_parent; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1471 | |
| 1472 | old_rate = clk->rate; |
| 1473 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1474 | if (clk->new_parent) |
| 1475 | best_parent_rate = clk->new_parent->rate; |
| 1476 | else if (clk->parent) |
Pawel Moll | bf47b4f | 2012-06-08 14:04:06 +0100 | [diff] [blame] | 1477 | best_parent_rate = clk->parent->rate; |
| 1478 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1479 | if (clk->new_parent && clk->new_parent != clk->parent) { |
| 1480 | old_parent = __clk_set_parent_before(clk, clk->new_parent); |
| 1481 | |
| 1482 | if (clk->ops->set_rate_and_parent) { |
| 1483 | skip_set_rate = true; |
| 1484 | clk->ops->set_rate_and_parent(clk->hw, clk->new_rate, |
| 1485 | best_parent_rate, |
| 1486 | clk->new_parent_index); |
| 1487 | } else if (clk->ops->set_parent) { |
| 1488 | clk->ops->set_parent(clk->hw, clk->new_parent_index); |
| 1489 | } |
| 1490 | |
| 1491 | __clk_set_parent_after(clk, clk->new_parent, old_parent); |
| 1492 | } |
| 1493 | |
| 1494 | if (!skip_set_rate && clk->ops->set_rate) |
Pawel Moll | bf47b4f | 2012-06-08 14:04:06 +0100 | [diff] [blame] | 1495 | clk->ops->set_rate(clk->hw, clk->new_rate, best_parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1496 | |
Stephen Boyd | 8f2c2db | 2014-03-26 16:06:36 -0700 | [diff] [blame] | 1497 | clk->rate = clk_recalc(clk, best_parent_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1498 | |
| 1499 | if (clk->notifier_count && old_rate != clk->rate) |
| 1500 | __clk_notify(clk, POST_RATE_CHANGE, old_rate, clk->rate); |
| 1501 | |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1502 | hlist_for_each_entry(child, &clk->children, child_node) { |
| 1503 | /* Skip children who will be reparented to another clock */ |
| 1504 | if (child->new_parent && child->new_parent != clk) |
| 1505 | continue; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1506 | clk_change_rate(child); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | /* handle the new child who might not be in clk->children yet */ |
| 1510 | if (clk->new_child) |
| 1511 | clk_change_rate(clk->new_child); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1512 | } |
| 1513 | |
| 1514 | /** |
| 1515 | * clk_set_rate - specify a new rate for clk |
| 1516 | * @clk: the clk whose rate is being changed |
| 1517 | * @rate: the new rate for clk |
| 1518 | * |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 1519 | * 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] | 1520 | * |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 1521 | * Setting the CLK_SET_RATE_PARENT flag allows the rate change operation to |
| 1522 | * propagate up to clk's parent; whether or not this happens depends on the |
| 1523 | * outcome of clk's .round_rate implementation. If *parent_rate is unchanged |
| 1524 | * after calling .round_rate then upstream parent propagation is ignored. If |
| 1525 | * *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] | 1526 | * 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] | 1527 | * until either a clk does not support the CLK_SET_RATE_PARENT flag or |
| 1528 | * .round_rate stops requesting changes to clk's parent_rate. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1529 | * |
Mike Turquette | 5654dc9 | 2012-03-26 11:51:34 -0700 | [diff] [blame] | 1530 | * Rate changes are accomplished via tree traversal that also recalculates the |
| 1531 | * rates for the clocks and fires off POST_RATE_CHANGE notifiers. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1532 | * |
| 1533 | * Returns 0 on success, -EERROR otherwise. |
| 1534 | */ |
| 1535 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 1536 | { |
| 1537 | struct clk *top, *fail_clk; |
| 1538 | int ret = 0; |
| 1539 | |
Mike Turquette | 89ac8d7 | 2013-08-21 23:58:09 -0700 | [diff] [blame] | 1540 | if (!clk) |
| 1541 | return 0; |
| 1542 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1543 | /* prevent racing with updates to the clock topology */ |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1544 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1545 | |
| 1546 | /* bail early if nothing to do */ |
Peter De Schrijver | 34e452a | 2013-06-05 18:06:36 +0300 | [diff] [blame] | 1547 | if (rate == clk_get_rate(clk)) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1548 | goto out; |
| 1549 | |
Saravana Kannan | 7e0fa1b | 2012-05-15 13:43:42 -0700 | [diff] [blame] | 1550 | if ((clk->flags & CLK_SET_RATE_GATE) && clk->prepare_count) { |
Viresh Kumar | 0e1c030 | 2012-04-11 16:03:42 +0530 | [diff] [blame] | 1551 | ret = -EBUSY; |
| 1552 | goto out; |
| 1553 | } |
| 1554 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1555 | /* calculate new rates and get the topmost changed clock */ |
| 1556 | top = clk_calc_new_rates(clk, rate); |
| 1557 | if (!top) { |
| 1558 | ret = -EINVAL; |
| 1559 | goto out; |
| 1560 | } |
| 1561 | |
| 1562 | /* notify that we are about to change rates */ |
| 1563 | fail_clk = clk_propagate_rate_change(top, PRE_RATE_CHANGE); |
| 1564 | if (fail_clk) { |
Sascha Hauer | f736386 | 2014-01-16 16:12:55 +0100 | [diff] [blame] | 1565 | pr_debug("%s: failed to set %s rate\n", __func__, |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1566 | fail_clk->name); |
| 1567 | clk_propagate_rate_change(top, ABORT_RATE_CHANGE); |
| 1568 | ret = -EBUSY; |
| 1569 | goto out; |
| 1570 | } |
| 1571 | |
| 1572 | /* change the rates */ |
| 1573 | clk_change_rate(top); |
| 1574 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1575 | out: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1576 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1577 | |
| 1578 | return ret; |
| 1579 | } |
| 1580 | EXPORT_SYMBOL_GPL(clk_set_rate); |
| 1581 | |
| 1582 | /** |
| 1583 | * clk_get_parent - return the parent of a clk |
| 1584 | * @clk: the clk whose parent gets returned |
| 1585 | * |
| 1586 | * Simply returns clk->parent. Returns NULL if clk is NULL. |
| 1587 | */ |
| 1588 | struct clk *clk_get_parent(struct clk *clk) |
| 1589 | { |
| 1590 | struct clk *parent; |
| 1591 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1592 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1593 | parent = __clk_get_parent(clk); |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1594 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1595 | |
| 1596 | return parent; |
| 1597 | } |
| 1598 | EXPORT_SYMBOL_GPL(clk_get_parent); |
| 1599 | |
| 1600 | /* |
| 1601 | * .get_parent is mandatory for clocks with multiple possible parents. It is |
| 1602 | * optional for single-parent clocks. Always call .get_parent if it is |
| 1603 | * available and WARN if it is missing for multi-parent clocks. |
| 1604 | * |
| 1605 | * For single-parent clocks without .get_parent, first check to see if the |
| 1606 | * .parents array exists, and if so use it to avoid an expensive tree |
| 1607 | * traversal. If .parents does not exist then walk the tree with __clk_lookup. |
| 1608 | */ |
| 1609 | static struct clk *__clk_init_parent(struct clk *clk) |
| 1610 | { |
| 1611 | struct clk *ret = NULL; |
| 1612 | u8 index; |
| 1613 | |
| 1614 | /* handle the trivial cases */ |
| 1615 | |
| 1616 | if (!clk->num_parents) |
| 1617 | goto out; |
| 1618 | |
| 1619 | if (clk->num_parents == 1) { |
| 1620 | if (IS_ERR_OR_NULL(clk->parent)) |
| 1621 | ret = clk->parent = __clk_lookup(clk->parent_names[0]); |
| 1622 | ret = clk->parent; |
| 1623 | goto out; |
| 1624 | } |
| 1625 | |
| 1626 | if (!clk->ops->get_parent) { |
| 1627 | WARN(!clk->ops->get_parent, |
| 1628 | "%s: multi-parent clocks must implement .get_parent\n", |
| 1629 | __func__); |
| 1630 | goto out; |
| 1631 | }; |
| 1632 | |
| 1633 | /* |
| 1634 | * Do our best to cache parent clocks in clk->parents. This prevents |
| 1635 | * unnecessary and expensive calls to __clk_lookup. We don't set |
| 1636 | * clk->parent here; that is done by the calling function |
| 1637 | */ |
| 1638 | |
| 1639 | index = clk->ops->get_parent(clk->hw); |
| 1640 | |
| 1641 | if (!clk->parents) |
| 1642 | clk->parents = |
Tomasz Figa | 96a7ed9 | 2013-09-29 02:37:15 +0200 | [diff] [blame] | 1643 | kcalloc(clk->num_parents, sizeof(struct clk *), |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1644 | GFP_KERNEL); |
| 1645 | |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 1646 | ret = clk_get_parent_by_index(clk, index); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1647 | |
| 1648 | out: |
| 1649 | return ret; |
| 1650 | } |
| 1651 | |
Ulf Hansson | b33d212 | 2013-04-02 23:09:37 +0200 | [diff] [blame] | 1652 | void __clk_reparent(struct clk *clk, struct clk *new_parent) |
| 1653 | { |
| 1654 | clk_reparent(clk, new_parent); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1655 | __clk_recalc_accuracies(clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1656 | __clk_recalc_rates(clk, POST_RATE_CHANGE); |
| 1657 | } |
| 1658 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1659 | /** |
| 1660 | * clk_set_parent - switch the parent of a mux clk |
| 1661 | * @clk: the mux clk whose input we are switching |
| 1662 | * @parent: the new input to clk |
| 1663 | * |
Saravana Kannan | f8aa0bd | 2013-05-15 21:07:24 -0700 | [diff] [blame] | 1664 | * Re-parent clk to use parent as its new input source. If clk is in |
| 1665 | * prepared state, the clk will get enabled for the duration of this call. If |
| 1666 | * that's not acceptable for a specific clk (Eg: the consumer can't handle |
| 1667 | * that, the reparenting is glitchy in hardware, etc), use the |
| 1668 | * CLK_SET_PARENT_GATE flag to allow reparenting only when clk is unprepared. |
| 1669 | * |
| 1670 | * After successfully changing clk's parent clk_set_parent will update the |
| 1671 | * clk topology, sysfs topology and propagate rate recalculation via |
| 1672 | * __clk_recalc_rates. |
| 1673 | * |
| 1674 | * Returns 0 on success, -EERROR otherwise. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1675 | */ |
| 1676 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 1677 | { |
| 1678 | int ret = 0; |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1679 | int p_index = 0; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 1680 | unsigned long p_rate = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1681 | |
Mike Turquette | 89ac8d7 | 2013-08-21 23:58:09 -0700 | [diff] [blame] | 1682 | if (!clk) |
| 1683 | return 0; |
| 1684 | |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 1685 | /* verify ops for for multi-parent clks */ |
| 1686 | if ((clk->num_parents > 1) && (!clk->ops->set_parent)) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1687 | return -ENOSYS; |
| 1688 | |
| 1689 | /* prevent racing with updates to the clock topology */ |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1690 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1691 | |
| 1692 | if (clk->parent == parent) |
| 1693 | goto out; |
| 1694 | |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 1695 | /* check that we are allowed to re-parent if the clock is in use */ |
| 1696 | if ((clk->flags & CLK_SET_PARENT_GATE) && clk->prepare_count) { |
| 1697 | ret = -EBUSY; |
| 1698 | goto out; |
| 1699 | } |
| 1700 | |
| 1701 | /* try finding the new parent index */ |
| 1702 | if (parent) { |
| 1703 | p_index = clk_fetch_parent_index(clk, parent); |
| 1704 | p_rate = parent->rate; |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1705 | if (p_index < 0) { |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 1706 | pr_debug("%s: clk %s can not be parent of clk %s\n", |
| 1707 | __func__, parent->name, clk->name); |
Tomasz Figa | f1c8b2e | 2013-09-29 02:37:14 +0200 | [diff] [blame] | 1708 | ret = p_index; |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 1709 | goto out; |
| 1710 | } |
| 1711 | } |
| 1712 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1713 | /* propagate PRE_RATE_CHANGE notifications */ |
Soren Brinkmann | f3aab5d | 2013-04-16 10:06:50 -0700 | [diff] [blame] | 1714 | ret = __clk_speculate_rates(clk, p_rate); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1715 | |
| 1716 | /* abort if a driver objects */ |
Soren Brinkmann | fb72a05 | 2013-04-03 12:17:12 -0700 | [diff] [blame] | 1717 | if (ret & NOTIFY_STOP_MASK) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1718 | goto out; |
| 1719 | |
Ulf Hansson | 031dcc9 | 2013-04-02 23:09:38 +0200 | [diff] [blame] | 1720 | /* do the re-parent */ |
| 1721 | ret = __clk_set_parent(clk, parent, p_index); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1722 | |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1723 | /* propagate rate an accuracy recalculation accordingly */ |
| 1724 | if (ret) { |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1725 | __clk_recalc_rates(clk, ABORT_RATE_CHANGE); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1726 | } else { |
Ulf Hansson | a68de8e | 2013-04-02 23:09:39 +0200 | [diff] [blame] | 1727 | __clk_recalc_rates(clk, POST_RATE_CHANGE); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1728 | __clk_recalc_accuracies(clk); |
| 1729 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1730 | |
| 1731 | out: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1732 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1733 | |
| 1734 | return ret; |
| 1735 | } |
| 1736 | EXPORT_SYMBOL_GPL(clk_set_parent); |
| 1737 | |
| 1738 | /** |
| 1739 | * __clk_init - initialize the data structures in a struct clk |
| 1740 | * @dev: device initializing this clk, placeholder for now |
| 1741 | * @clk: clk being initialized |
| 1742 | * |
| 1743 | * Initializes the lists in struct clk, queries the hardware for the |
| 1744 | * parent and rate and sets them both. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1745 | */ |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1746 | int __clk_init(struct device *dev, struct clk *clk) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1747 | { |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1748 | int i, ret = 0; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1749 | struct clk *orphan; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1750 | struct hlist_node *tmp2; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1751 | |
| 1752 | if (!clk) |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1753 | return -EINVAL; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1754 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1755 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1756 | |
| 1757 | /* check to see if a clock with this name is already registered */ |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1758 | if (__clk_lookup(clk->name)) { |
| 1759 | pr_debug("%s: clk %s already initialized\n", |
| 1760 | __func__, clk->name); |
| 1761 | ret = -EEXIST; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1762 | goto out; |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1763 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1764 | |
Mike Turquette | d4d7e3d | 2012-03-26 16:15:52 -0700 | [diff] [blame] | 1765 | /* check that clk_ops are sane. See Documentation/clk.txt */ |
| 1766 | if (clk->ops->set_rate && |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 1767 | !((clk->ops->round_rate || clk->ops->determine_rate) && |
| 1768 | clk->ops->recalc_rate)) { |
| 1769 | pr_warning("%s: %s must implement .round_rate or .determine_rate in addition to .recalc_rate\n", |
Mike Turquette | d4d7e3d | 2012-03-26 16:15:52 -0700 | [diff] [blame] | 1770 | __func__, clk->name); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1771 | ret = -EINVAL; |
Mike Turquette | d4d7e3d | 2012-03-26 16:15:52 -0700 | [diff] [blame] | 1772 | goto out; |
| 1773 | } |
| 1774 | |
| 1775 | if (clk->ops->set_parent && !clk->ops->get_parent) { |
| 1776 | pr_warning("%s: %s must implement .get_parent & .set_parent\n", |
| 1777 | __func__, clk->name); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1778 | ret = -EINVAL; |
Mike Turquette | d4d7e3d | 2012-03-26 16:15:52 -0700 | [diff] [blame] | 1779 | goto out; |
| 1780 | } |
| 1781 | |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 1782 | if (clk->ops->set_rate_and_parent && |
| 1783 | !(clk->ops->set_parent && clk->ops->set_rate)) { |
| 1784 | pr_warn("%s: %s must implement .set_parent & .set_rate\n", |
| 1785 | __func__, clk->name); |
| 1786 | ret = -EINVAL; |
| 1787 | goto out; |
| 1788 | } |
| 1789 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1790 | /* throw a WARN if any entries in parent_names are NULL */ |
| 1791 | for (i = 0; i < clk->num_parents; i++) |
| 1792 | WARN(!clk->parent_names[i], |
| 1793 | "%s: invalid NULL in %s's .parent_names\n", |
| 1794 | __func__, clk->name); |
| 1795 | |
| 1796 | /* |
| 1797 | * Allocate an array of struct clk *'s to avoid unnecessary string |
| 1798 | * look-ups of clk's possible parents. This can fail for clocks passed |
| 1799 | * in to clk_init during early boot; thus any access to clk->parents[] |
| 1800 | * must always check for a NULL pointer and try to populate it if |
| 1801 | * necessary. |
| 1802 | * |
| 1803 | * If clk->parents is not NULL we skip this entire block. This allows |
| 1804 | * for clock drivers to statically initialize clk->parents. |
| 1805 | */ |
Rajendra Nayak | 9ca1c5a | 2012-06-06 14:41:30 +0530 | [diff] [blame] | 1806 | if (clk->num_parents > 1 && !clk->parents) { |
Tomasz Figa | 96a7ed9 | 2013-09-29 02:37:15 +0200 | [diff] [blame] | 1807 | clk->parents = kcalloc(clk->num_parents, sizeof(struct clk *), |
| 1808 | GFP_KERNEL); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1809 | /* |
| 1810 | * __clk_lookup returns NULL for parents that have not been |
| 1811 | * clk_init'd; thus any access to clk->parents[] must check |
| 1812 | * for a NULL pointer. We can always perform lazy lookups for |
| 1813 | * missing parents later on. |
| 1814 | */ |
| 1815 | if (clk->parents) |
| 1816 | for (i = 0; i < clk->num_parents; i++) |
| 1817 | clk->parents[i] = |
| 1818 | __clk_lookup(clk->parent_names[i]); |
| 1819 | } |
| 1820 | |
| 1821 | clk->parent = __clk_init_parent(clk); |
| 1822 | |
| 1823 | /* |
| 1824 | * Populate clk->parent if parent has already been __clk_init'd. If |
| 1825 | * parent has not yet been __clk_init'd then place clk in the orphan |
| 1826 | * list. If clk has set the CLK_IS_ROOT flag then place it in the root |
| 1827 | * clk list. |
| 1828 | * |
| 1829 | * Every time a new clk is clk_init'd then we walk the list of orphan |
| 1830 | * clocks and re-parent any that are children of the clock currently |
| 1831 | * being clk_init'd. |
| 1832 | */ |
| 1833 | if (clk->parent) |
| 1834 | hlist_add_head(&clk->child_node, |
| 1835 | &clk->parent->children); |
| 1836 | else if (clk->flags & CLK_IS_ROOT) |
| 1837 | hlist_add_head(&clk->child_node, &clk_root_list); |
| 1838 | else |
| 1839 | hlist_add_head(&clk->child_node, &clk_orphan_list); |
| 1840 | |
| 1841 | /* |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 1842 | * Set clk's accuracy. The preferred method is to use |
| 1843 | * .recalc_accuracy. For simple clocks and lazy developers the default |
| 1844 | * fallback is to use the parent's accuracy. If a clock doesn't have a |
| 1845 | * parent (or is orphaned) then accuracy is set to zero (perfect |
| 1846 | * clock). |
| 1847 | */ |
| 1848 | if (clk->ops->recalc_accuracy) |
| 1849 | clk->accuracy = clk->ops->recalc_accuracy(clk->hw, |
| 1850 | __clk_get_accuracy(clk->parent)); |
| 1851 | else if (clk->parent) |
| 1852 | clk->accuracy = clk->parent->accuracy; |
| 1853 | else |
| 1854 | clk->accuracy = 0; |
| 1855 | |
| 1856 | /* |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1857 | * Set clk's rate. The preferred method is to use .recalc_rate. For |
| 1858 | * simple clocks and lazy developers the default fallback is to use the |
| 1859 | * parent's rate. If a clock doesn't have a parent (or is orphaned) |
| 1860 | * then rate is set to zero. |
| 1861 | */ |
| 1862 | if (clk->ops->recalc_rate) |
| 1863 | clk->rate = clk->ops->recalc_rate(clk->hw, |
| 1864 | __clk_get_rate(clk->parent)); |
| 1865 | else if (clk->parent) |
| 1866 | clk->rate = clk->parent->rate; |
| 1867 | else |
| 1868 | clk->rate = 0; |
| 1869 | |
Stephen Boyd | 3a5aec2 | 2013-10-16 00:40:03 -0700 | [diff] [blame] | 1870 | clk_debug_register(clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1871 | /* |
| 1872 | * walk the list of orphan clocks and reparent any that are children of |
| 1873 | * this clock |
| 1874 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 1875 | hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) { |
Alex Elder | 12d29886 | 2013-09-05 08:33:24 -0500 | [diff] [blame] | 1876 | if (orphan->num_parents && orphan->ops->get_parent) { |
Martin Fuzzey | 1f61e5f | 2012-11-22 20:15:05 +0100 | [diff] [blame] | 1877 | i = orphan->ops->get_parent(orphan->hw); |
| 1878 | if (!strcmp(clk->name, orphan->parent_names[i])) |
| 1879 | __clk_reparent(orphan, clk); |
| 1880 | continue; |
| 1881 | } |
| 1882 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1883 | for (i = 0; i < orphan->num_parents; i++) |
| 1884 | if (!strcmp(clk->name, orphan->parent_names[i])) { |
| 1885 | __clk_reparent(orphan, clk); |
| 1886 | break; |
| 1887 | } |
Martin Fuzzey | 1f61e5f | 2012-11-22 20:15:05 +0100 | [diff] [blame] | 1888 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1889 | |
| 1890 | /* |
| 1891 | * optional platform-specific magic |
| 1892 | * |
| 1893 | * The .init callback is not used by any of the basic clock types, but |
| 1894 | * exists for weird hardware that must perform initialization magic. |
| 1895 | * Please consider other ways of solving initialization problems before |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 1896 | * using this callback, as its use is discouraged. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1897 | */ |
| 1898 | if (clk->ops->init) |
| 1899 | clk->ops->init(clk->hw); |
| 1900 | |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 1901 | kref_init(&clk->ref); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1902 | out: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 1903 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1904 | |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1905 | return ret; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1906 | } |
| 1907 | |
| 1908 | /** |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 1909 | * __clk_register - register a clock and return a cookie. |
| 1910 | * |
| 1911 | * Same as clk_register, except that the .clk field inside hw shall point to a |
| 1912 | * preallocated (generally statically allocated) struct clk. None of the fields |
| 1913 | * of the struct clk need to be initialized. |
| 1914 | * |
| 1915 | * The data pointed to by .init and .clk field shall NOT be marked as init |
| 1916 | * data. |
| 1917 | * |
| 1918 | * __clk_register is only exposed via clk-private.h and is intended for use with |
| 1919 | * very large numbers of clocks that need to be statically initialized. It is |
| 1920 | * a layering violation to include clk-private.h from any code which implements |
| 1921 | * a clock's .ops; as such any statically initialized clock data MUST be in a |
Peter Meerwald | 24ee1a0 | 2013-06-29 15:14:19 +0200 | [diff] [blame] | 1922 | * separate C file from the logic that implements its operations. Returns 0 |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 1923 | * on success, otherwise an error code. |
| 1924 | */ |
| 1925 | struct clk *__clk_register(struct device *dev, struct clk_hw *hw) |
| 1926 | { |
| 1927 | int ret; |
| 1928 | struct clk *clk; |
| 1929 | |
| 1930 | clk = hw->clk; |
| 1931 | clk->name = hw->init->name; |
| 1932 | clk->ops = hw->init->ops; |
| 1933 | clk->hw = hw; |
| 1934 | clk->flags = hw->init->flags; |
| 1935 | clk->parent_names = hw->init->parent_names; |
| 1936 | clk->num_parents = hw->init->num_parents; |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 1937 | if (dev && dev->driver) |
| 1938 | clk->owner = dev->driver->owner; |
| 1939 | else |
| 1940 | clk->owner = NULL; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 1941 | |
| 1942 | ret = __clk_init(dev, clk); |
| 1943 | if (ret) |
| 1944 | return ERR_PTR(ret); |
| 1945 | |
| 1946 | return clk; |
| 1947 | } |
| 1948 | EXPORT_SYMBOL_GPL(__clk_register); |
| 1949 | |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 1950 | /** |
| 1951 | * clk_register - allocate a new clock, register it and return an opaque cookie |
| 1952 | * @dev: device that is registering this clock |
| 1953 | * @hw: link to hardware-specific clock data |
| 1954 | * |
| 1955 | * clk_register is the primary interface for populating the clock tree with new |
| 1956 | * clock nodes. It returns a pointer to the newly allocated struct clk which |
| 1957 | * cannot be dereferenced by driver code but may be used in conjuction with the |
| 1958 | * rest of the clock API. In the event of an error clk_register will return an |
| 1959 | * error code; drivers must test for an error code after calling clk_register. |
| 1960 | */ |
| 1961 | struct clk *clk_register(struct device *dev, struct clk_hw *hw) |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1962 | { |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1963 | int i, ret; |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 1964 | struct clk *clk; |
| 1965 | |
| 1966 | clk = kzalloc(sizeof(*clk), GFP_KERNEL); |
| 1967 | if (!clk) { |
| 1968 | pr_err("%s: could not allocate clk\n", __func__); |
| 1969 | ret = -ENOMEM; |
| 1970 | goto fail_out; |
| 1971 | } |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1972 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 1973 | clk->name = kstrdup(hw->init->name, GFP_KERNEL); |
| 1974 | if (!clk->name) { |
| 1975 | pr_err("%s: could not allocate clk->name\n", __func__); |
| 1976 | ret = -ENOMEM; |
| 1977 | goto fail_name; |
| 1978 | } |
| 1979 | clk->ops = hw->init->ops; |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 1980 | if (dev && dev->driver) |
| 1981 | clk->owner = dev->driver->owner; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1982 | clk->hw = hw; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 1983 | clk->flags = hw->init->flags; |
| 1984 | clk->num_parents = hw->init->num_parents; |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1985 | hw->clk = clk; |
| 1986 | |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1987 | /* allocate local copy in case parent_names is __initdata */ |
Tomasz Figa | 96a7ed9 | 2013-09-29 02:37:15 +0200 | [diff] [blame] | 1988 | clk->parent_names = kcalloc(clk->num_parents, sizeof(char *), |
| 1989 | GFP_KERNEL); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1990 | |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 1991 | if (!clk->parent_names) { |
| 1992 | pr_err("%s: could not allocate clk->parent_names\n", __func__); |
| 1993 | ret = -ENOMEM; |
| 1994 | goto fail_parent_names; |
| 1995 | } |
| 1996 | |
| 1997 | |
| 1998 | /* copy each string name in case parent_names is __initdata */ |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 1999 | for (i = 0; i < clk->num_parents; i++) { |
| 2000 | clk->parent_names[i] = kstrdup(hw->init->parent_names[i], |
| 2001 | GFP_KERNEL); |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 2002 | if (!clk->parent_names[i]) { |
| 2003 | pr_err("%s: could not copy parent_names\n", __func__); |
| 2004 | ret = -ENOMEM; |
| 2005 | goto fail_parent_names_copy; |
| 2006 | } |
| 2007 | } |
| 2008 | |
| 2009 | ret = __clk_init(dev, clk); |
| 2010 | if (!ret) |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 2011 | return clk; |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 2012 | |
| 2013 | fail_parent_names_copy: |
| 2014 | while (--i >= 0) |
| 2015 | kfree(clk->parent_names[i]); |
| 2016 | kfree(clk->parent_names); |
| 2017 | fail_parent_names: |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 2018 | kfree(clk->name); |
| 2019 | fail_name: |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 2020 | kfree(clk); |
| 2021 | fail_out: |
| 2022 | return ERR_PTR(ret); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2023 | } |
| 2024 | EXPORT_SYMBOL_GPL(clk_register); |
| 2025 | |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 2026 | /* |
| 2027 | * Free memory allocated for a clock. |
| 2028 | * Caller must hold prepare_lock. |
| 2029 | */ |
| 2030 | static void __clk_release(struct kref *ref) |
| 2031 | { |
| 2032 | struct clk *clk = container_of(ref, struct clk, ref); |
| 2033 | int i = clk->num_parents; |
| 2034 | |
| 2035 | kfree(clk->parents); |
| 2036 | while (--i >= 0) |
| 2037 | kfree(clk->parent_names[i]); |
| 2038 | |
| 2039 | kfree(clk->parent_names); |
| 2040 | kfree(clk->name); |
| 2041 | kfree(clk); |
| 2042 | } |
| 2043 | |
| 2044 | /* |
| 2045 | * Empty clk_ops for unregistered clocks. These are used temporarily |
| 2046 | * after clk_unregister() was called on a clock and until last clock |
| 2047 | * consumer calls clk_put() and the struct clk object is freed. |
| 2048 | */ |
| 2049 | static int clk_nodrv_prepare_enable(struct clk_hw *hw) |
| 2050 | { |
| 2051 | return -ENXIO; |
| 2052 | } |
| 2053 | |
| 2054 | static void clk_nodrv_disable_unprepare(struct clk_hw *hw) |
| 2055 | { |
| 2056 | WARN_ON_ONCE(1); |
| 2057 | } |
| 2058 | |
| 2059 | static int clk_nodrv_set_rate(struct clk_hw *hw, unsigned long rate, |
| 2060 | unsigned long parent_rate) |
| 2061 | { |
| 2062 | return -ENXIO; |
| 2063 | } |
| 2064 | |
| 2065 | static int clk_nodrv_set_parent(struct clk_hw *hw, u8 index) |
| 2066 | { |
| 2067 | return -ENXIO; |
| 2068 | } |
| 2069 | |
| 2070 | static const struct clk_ops clk_nodrv_ops = { |
| 2071 | .enable = clk_nodrv_prepare_enable, |
| 2072 | .disable = clk_nodrv_disable_unprepare, |
| 2073 | .prepare = clk_nodrv_prepare_enable, |
| 2074 | .unprepare = clk_nodrv_disable_unprepare, |
| 2075 | .set_rate = clk_nodrv_set_rate, |
| 2076 | .set_parent = clk_nodrv_set_parent, |
| 2077 | }; |
| 2078 | |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 2079 | /** |
| 2080 | * clk_unregister - unregister a currently registered clock |
| 2081 | * @clk: clock to unregister |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 2082 | */ |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 2083 | void clk_unregister(struct clk *clk) |
| 2084 | { |
| 2085 | unsigned long flags; |
| 2086 | |
| 2087 | if (!clk || WARN_ON_ONCE(IS_ERR(clk))) |
| 2088 | return; |
| 2089 | |
| 2090 | clk_prepare_lock(); |
| 2091 | |
| 2092 | if (clk->ops == &clk_nodrv_ops) { |
| 2093 | pr_err("%s: unregistered clock: %s\n", __func__, clk->name); |
| 2094 | goto out; |
| 2095 | } |
| 2096 | /* |
| 2097 | * Assign empty clock ops for consumers that might still hold |
| 2098 | * a reference to this clock. |
| 2099 | */ |
| 2100 | flags = clk_enable_lock(); |
| 2101 | clk->ops = &clk_nodrv_ops; |
| 2102 | clk_enable_unlock(flags); |
| 2103 | |
| 2104 | if (!hlist_empty(&clk->children)) { |
| 2105 | struct clk *child; |
Stephen Boyd | 874f224 | 2014-04-18 16:29:43 -0700 | [diff] [blame] | 2106 | struct hlist_node *t; |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 2107 | |
| 2108 | /* Reparent all children to the orphan list. */ |
Stephen Boyd | 874f224 | 2014-04-18 16:29:43 -0700 | [diff] [blame] | 2109 | hlist_for_each_entry_safe(child, t, &clk->children, child_node) |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 2110 | clk_set_parent(child, NULL); |
| 2111 | } |
| 2112 | |
| 2113 | clk_debug_unregister(clk); |
| 2114 | |
| 2115 | hlist_del_init(&clk->child_node); |
| 2116 | |
| 2117 | if (clk->prepare_count) |
| 2118 | pr_warn("%s: unregistering prepared clock: %s\n", |
| 2119 | __func__, clk->name); |
| 2120 | |
| 2121 | kref_put(&clk->ref, __clk_release); |
| 2122 | out: |
| 2123 | clk_prepare_unlock(); |
| 2124 | } |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 2125 | EXPORT_SYMBOL_GPL(clk_unregister); |
| 2126 | |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 2127 | static void devm_clk_release(struct device *dev, void *res) |
| 2128 | { |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 2129 | clk_unregister(*(struct clk **)res); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 2130 | } |
| 2131 | |
| 2132 | /** |
| 2133 | * devm_clk_register - resource managed clk_register() |
| 2134 | * @dev: device that is registering this clock |
| 2135 | * @hw: link to hardware-specific clock data |
| 2136 | * |
| 2137 | * Managed clk_register(). Clocks returned from this function are |
| 2138 | * automatically clk_unregister()ed on driver detach. See clk_register() for |
| 2139 | * more information. |
| 2140 | */ |
| 2141 | struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw) |
| 2142 | { |
| 2143 | struct clk *clk; |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 2144 | struct clk **clkp; |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 2145 | |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 2146 | clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL); |
| 2147 | if (!clkp) |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 2148 | return ERR_PTR(-ENOMEM); |
| 2149 | |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 2150 | clk = clk_register(dev, hw); |
| 2151 | if (!IS_ERR(clk)) { |
| 2152 | *clkp = clk; |
| 2153 | devres_add(dev, clkp); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 2154 | } else { |
Stephen Boyd | 293ba3b | 2014-04-18 16:29:42 -0700 | [diff] [blame] | 2155 | devres_free(clkp); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 2156 | } |
| 2157 | |
| 2158 | return clk; |
| 2159 | } |
| 2160 | EXPORT_SYMBOL_GPL(devm_clk_register); |
| 2161 | |
| 2162 | static int devm_clk_match(struct device *dev, void *res, void *data) |
| 2163 | { |
| 2164 | struct clk *c = res; |
| 2165 | if (WARN_ON(!c)) |
| 2166 | return 0; |
| 2167 | return c == data; |
| 2168 | } |
| 2169 | |
| 2170 | /** |
| 2171 | * devm_clk_unregister - resource managed clk_unregister() |
| 2172 | * @clk: clock to unregister |
| 2173 | * |
| 2174 | * Deallocate a clock allocated with devm_clk_register(). Normally |
| 2175 | * this function will not need to be called and the resource management |
| 2176 | * code will ensure that the resource is freed. |
| 2177 | */ |
| 2178 | void devm_clk_unregister(struct device *dev, struct clk *clk) |
| 2179 | { |
| 2180 | WARN_ON(devres_release(dev, devm_clk_release, devm_clk_match, clk)); |
| 2181 | } |
| 2182 | EXPORT_SYMBOL_GPL(devm_clk_unregister); |
| 2183 | |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 2184 | /* |
| 2185 | * clkdev helpers |
| 2186 | */ |
| 2187 | int __clk_get(struct clk *clk) |
| 2188 | { |
Sylwester Nawrocki | 00efcb1 | 2014-01-07 13:03:43 +0100 | [diff] [blame] | 2189 | if (clk) { |
| 2190 | if (!try_module_get(clk->owner)) |
| 2191 | return 0; |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 2192 | |
Sylwester Nawrocki | 00efcb1 | 2014-01-07 13:03:43 +0100 | [diff] [blame] | 2193 | kref_get(&clk->ref); |
| 2194 | } |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 2195 | return 1; |
| 2196 | } |
| 2197 | |
| 2198 | void __clk_put(struct clk *clk) |
| 2199 | { |
Sylwester Nawrocki | 00efcb1 | 2014-01-07 13:03:43 +0100 | [diff] [blame] | 2200 | if (!clk || WARN_ON_ONCE(IS_ERR(clk))) |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 2201 | return; |
| 2202 | |
Sylwester Nawrocki | fcb0ee6 | 2013-08-24 15:00:10 +0200 | [diff] [blame] | 2203 | clk_prepare_lock(); |
| 2204 | kref_put(&clk->ref, __clk_release); |
| 2205 | clk_prepare_unlock(); |
| 2206 | |
Sylwester Nawrocki | 00efcb1 | 2014-01-07 13:03:43 +0100 | [diff] [blame] | 2207 | module_put(clk->owner); |
Sylwester Nawrocki | ac2df52 | 2013-08-24 20:10:41 +0200 | [diff] [blame] | 2208 | } |
| 2209 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2210 | /*** clk rate change notifiers ***/ |
| 2211 | |
| 2212 | /** |
| 2213 | * clk_notifier_register - add a clk rate change notifier |
| 2214 | * @clk: struct clk * to watch |
| 2215 | * @nb: struct notifier_block * with callback info |
| 2216 | * |
| 2217 | * Request notification when clk's rate changes. This uses an SRCU |
| 2218 | * notifier because we want it to block and notifier unregistrations are |
| 2219 | * uncommon. The callbacks associated with the notifier must not |
| 2220 | * re-enter into the clk framework by calling any top-level clk APIs; |
| 2221 | * this will cause a nested prepare_lock mutex. |
| 2222 | * |
Soren Brinkmann | 5324fda | 2014-01-22 11:48:37 -0800 | [diff] [blame] | 2223 | * In all notification cases cases (pre, post and abort rate change) the |
| 2224 | * original clock rate is passed to the callback via struct |
| 2225 | * clk_notifier_data.old_rate and the new frequency is passed via struct |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2226 | * clk_notifier_data.new_rate. |
| 2227 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2228 | * clk_notifier_register() must be called from non-atomic context. |
| 2229 | * Returns -EINVAL if called with null arguments, -ENOMEM upon |
| 2230 | * allocation failure; otherwise, passes along the return value of |
| 2231 | * srcu_notifier_chain_register(). |
| 2232 | */ |
| 2233 | int clk_notifier_register(struct clk *clk, struct notifier_block *nb) |
| 2234 | { |
| 2235 | struct clk_notifier *cn; |
| 2236 | int ret = -ENOMEM; |
| 2237 | |
| 2238 | if (!clk || !nb) |
| 2239 | return -EINVAL; |
| 2240 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2241 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2242 | |
| 2243 | /* search the list of notifiers for this clk */ |
| 2244 | list_for_each_entry(cn, &clk_notifier_list, node) |
| 2245 | if (cn->clk == clk) |
| 2246 | break; |
| 2247 | |
| 2248 | /* if clk wasn't in the notifier list, allocate new clk_notifier */ |
| 2249 | if (cn->clk != clk) { |
| 2250 | cn = kzalloc(sizeof(struct clk_notifier), GFP_KERNEL); |
| 2251 | if (!cn) |
| 2252 | goto out; |
| 2253 | |
| 2254 | cn->clk = clk; |
| 2255 | srcu_init_notifier_head(&cn->notifier_head); |
| 2256 | |
| 2257 | list_add(&cn->node, &clk_notifier_list); |
| 2258 | } |
| 2259 | |
| 2260 | ret = srcu_notifier_chain_register(&cn->notifier_head, nb); |
| 2261 | |
| 2262 | clk->notifier_count++; |
| 2263 | |
| 2264 | out: |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2265 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2266 | |
| 2267 | return ret; |
| 2268 | } |
| 2269 | EXPORT_SYMBOL_GPL(clk_notifier_register); |
| 2270 | |
| 2271 | /** |
| 2272 | * clk_notifier_unregister - remove a clk rate change notifier |
| 2273 | * @clk: struct clk * |
| 2274 | * @nb: struct notifier_block * with callback info |
| 2275 | * |
| 2276 | * Request no further notification for changes to 'clk' and frees memory |
| 2277 | * allocated in clk_notifier_register. |
| 2278 | * |
| 2279 | * Returns -EINVAL if called with null arguments; otherwise, passes |
| 2280 | * along the return value of srcu_notifier_chain_unregister(). |
| 2281 | */ |
| 2282 | int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb) |
| 2283 | { |
| 2284 | struct clk_notifier *cn = NULL; |
| 2285 | int ret = -EINVAL; |
| 2286 | |
| 2287 | if (!clk || !nb) |
| 2288 | return -EINVAL; |
| 2289 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2290 | clk_prepare_lock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2291 | |
| 2292 | list_for_each_entry(cn, &clk_notifier_list, node) |
| 2293 | if (cn->clk == clk) |
| 2294 | break; |
| 2295 | |
| 2296 | if (cn->clk == clk) { |
| 2297 | ret = srcu_notifier_chain_unregister(&cn->notifier_head, nb); |
| 2298 | |
| 2299 | clk->notifier_count--; |
| 2300 | |
| 2301 | /* XXX the notifier code should handle this better */ |
| 2302 | if (!cn->notifier_head.head) { |
| 2303 | srcu_cleanup_notifier_head(&cn->notifier_head); |
Lai Jiangshan | 72b5322 | 2013-06-03 17:17:15 +0800 | [diff] [blame] | 2304 | list_del(&cn->node); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2305 | kfree(cn); |
| 2306 | } |
| 2307 | |
| 2308 | } else { |
| 2309 | ret = -ENOENT; |
| 2310 | } |
| 2311 | |
Mike Turquette | eab89f6 | 2013-03-28 13:59:01 -0700 | [diff] [blame] | 2312 | clk_prepare_unlock(); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 2313 | |
| 2314 | return ret; |
| 2315 | } |
| 2316 | EXPORT_SYMBOL_GPL(clk_notifier_unregister); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2317 | |
| 2318 | #ifdef CONFIG_OF |
| 2319 | /** |
| 2320 | * struct of_clk_provider - Clock provider registration structure |
| 2321 | * @link: Entry in global list of clock providers |
| 2322 | * @node: Pointer to device tree node of clock provider |
| 2323 | * @get: Get clock callback. Returns NULL or a struct clk for the |
| 2324 | * given clock specifier |
| 2325 | * @data: context pointer to be passed into @get callback |
| 2326 | */ |
| 2327 | struct of_clk_provider { |
| 2328 | struct list_head link; |
| 2329 | |
| 2330 | struct device_node *node; |
| 2331 | struct clk *(*get)(struct of_phandle_args *clkspec, void *data); |
| 2332 | void *data; |
| 2333 | }; |
| 2334 | |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 2335 | static const struct of_device_id __clk_of_table_sentinel |
| 2336 | __used __section(__clk_of_table_end); |
| 2337 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2338 | static LIST_HEAD(of_clk_providers); |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2339 | static DEFINE_MUTEX(of_clk_mutex); |
| 2340 | |
| 2341 | /* of_clk_provider list locking helpers */ |
| 2342 | void of_clk_lock(void) |
| 2343 | { |
| 2344 | mutex_lock(&of_clk_mutex); |
| 2345 | } |
| 2346 | |
| 2347 | void of_clk_unlock(void) |
| 2348 | { |
| 2349 | mutex_unlock(&of_clk_mutex); |
| 2350 | } |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2351 | |
| 2352 | struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec, |
| 2353 | void *data) |
| 2354 | { |
| 2355 | return data; |
| 2356 | } |
| 2357 | EXPORT_SYMBOL_GPL(of_clk_src_simple_get); |
| 2358 | |
Shawn Guo | 494bfec | 2012-08-22 21:36:27 +0800 | [diff] [blame] | 2359 | struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data) |
| 2360 | { |
| 2361 | struct clk_onecell_data *clk_data = data; |
| 2362 | unsigned int idx = clkspec->args[0]; |
| 2363 | |
| 2364 | if (idx >= clk_data->clk_num) { |
| 2365 | pr_err("%s: invalid clock index %d\n", __func__, idx); |
| 2366 | return ERR_PTR(-EINVAL); |
| 2367 | } |
| 2368 | |
| 2369 | return clk_data->clks[idx]; |
| 2370 | } |
| 2371 | EXPORT_SYMBOL_GPL(of_clk_src_onecell_get); |
| 2372 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2373 | /** |
| 2374 | * of_clk_add_provider() - Register a clock provider for a node |
| 2375 | * @np: Device node pointer associated with clock provider |
| 2376 | * @clk_src_get: callback for decoding clock |
| 2377 | * @data: context pointer for @clk_src_get callback. |
| 2378 | */ |
| 2379 | int of_clk_add_provider(struct device_node *np, |
| 2380 | struct clk *(*clk_src_get)(struct of_phandle_args *clkspec, |
| 2381 | void *data), |
| 2382 | void *data) |
| 2383 | { |
| 2384 | struct of_clk_provider *cp; |
| 2385 | |
| 2386 | cp = kzalloc(sizeof(struct of_clk_provider), GFP_KERNEL); |
| 2387 | if (!cp) |
| 2388 | return -ENOMEM; |
| 2389 | |
| 2390 | cp->node = of_node_get(np); |
| 2391 | cp->data = data; |
| 2392 | cp->get = clk_src_get; |
| 2393 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2394 | mutex_lock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2395 | list_add(&cp->link, &of_clk_providers); |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2396 | mutex_unlock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2397 | pr_debug("Added clock from %s\n", np->full_name); |
| 2398 | |
| 2399 | return 0; |
| 2400 | } |
| 2401 | EXPORT_SYMBOL_GPL(of_clk_add_provider); |
| 2402 | |
| 2403 | /** |
| 2404 | * of_clk_del_provider() - Remove a previously registered clock provider |
| 2405 | * @np: Device node pointer associated with clock provider |
| 2406 | */ |
| 2407 | void of_clk_del_provider(struct device_node *np) |
| 2408 | { |
| 2409 | struct of_clk_provider *cp; |
| 2410 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2411 | mutex_lock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2412 | list_for_each_entry(cp, &of_clk_providers, link) { |
| 2413 | if (cp->node == np) { |
| 2414 | list_del(&cp->link); |
| 2415 | of_node_put(cp->node); |
| 2416 | kfree(cp); |
| 2417 | break; |
| 2418 | } |
| 2419 | } |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2420 | mutex_unlock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2421 | } |
| 2422 | EXPORT_SYMBOL_GPL(of_clk_del_provider); |
| 2423 | |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2424 | struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec) |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2425 | { |
| 2426 | struct of_clk_provider *provider; |
Jean-Francois Moine | a34cd46 | 2013-11-25 19:47:04 +0100 | [diff] [blame] | 2427 | struct clk *clk = ERR_PTR(-EPROBE_DEFER); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2428 | |
| 2429 | /* Check if we have such a provider in our array */ |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2430 | list_for_each_entry(provider, &of_clk_providers, link) { |
| 2431 | if (provider->node == clkspec->np) |
| 2432 | clk = provider->get(clkspec, provider->data); |
| 2433 | if (!IS_ERR(clk)) |
| 2434 | break; |
| 2435 | } |
Sylwester Nawrocki | d6782c2 | 2013-08-23 17:03:43 +0200 | [diff] [blame] | 2436 | |
| 2437 | return clk; |
| 2438 | } |
| 2439 | |
| 2440 | struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec) |
| 2441 | { |
| 2442 | struct clk *clk; |
| 2443 | |
| 2444 | mutex_lock(&of_clk_mutex); |
| 2445 | clk = __of_clk_get_from_provider(clkspec); |
| 2446 | mutex_unlock(&of_clk_mutex); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2447 | |
| 2448 | return clk; |
| 2449 | } |
| 2450 | |
Mike Turquette | f610274 | 2013-10-07 23:12:13 -0700 | [diff] [blame] | 2451 | int of_clk_get_parent_count(struct device_node *np) |
| 2452 | { |
| 2453 | return of_count_phandle_with_args(np, "clocks", "#clock-cells"); |
| 2454 | } |
| 2455 | EXPORT_SYMBOL_GPL(of_clk_get_parent_count); |
| 2456 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2457 | const char *of_clk_get_parent_name(struct device_node *np, int index) |
| 2458 | { |
| 2459 | struct of_phandle_args clkspec; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 2460 | struct property *prop; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2461 | const char *clk_name; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 2462 | const __be32 *vp; |
| 2463 | u32 pv; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2464 | int rc; |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 2465 | int count; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2466 | |
| 2467 | if (index < 0) |
| 2468 | return NULL; |
| 2469 | |
| 2470 | rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", index, |
| 2471 | &clkspec); |
| 2472 | if (rc) |
| 2473 | return NULL; |
| 2474 | |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 2475 | index = clkspec.args_count ? clkspec.args[0] : 0; |
| 2476 | count = 0; |
| 2477 | |
| 2478 | /* if there is an indices property, use it to transfer the index |
| 2479 | * specified into an array offset for the clock-output-names property. |
| 2480 | */ |
| 2481 | of_property_for_each_u32(clkspec.np, "clock-indices", prop, vp, pv) { |
| 2482 | if (index == pv) { |
| 2483 | index = count; |
| 2484 | break; |
| 2485 | } |
| 2486 | count++; |
| 2487 | } |
| 2488 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2489 | if (of_property_read_string_index(clkspec.np, "clock-output-names", |
Ben Dooks | 7a0fc1a | 2014-02-13 18:02:49 +0000 | [diff] [blame] | 2490 | index, |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2491 | &clk_name) < 0) |
| 2492 | clk_name = clkspec.np->name; |
| 2493 | |
| 2494 | of_node_put(clkspec.np); |
| 2495 | return clk_name; |
| 2496 | } |
| 2497 | EXPORT_SYMBOL_GPL(of_clk_get_parent_name); |
| 2498 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2499 | struct clock_provider { |
| 2500 | of_clk_init_cb_t clk_init_cb; |
| 2501 | struct device_node *np; |
| 2502 | struct list_head node; |
| 2503 | }; |
| 2504 | |
| 2505 | static LIST_HEAD(clk_provider_list); |
| 2506 | |
| 2507 | /* |
| 2508 | * This function looks for a parent clock. If there is one, then it |
| 2509 | * checks that the provider for this parent clock was initialized, in |
| 2510 | * this case the parent clock will be ready. |
| 2511 | */ |
| 2512 | static int parent_ready(struct device_node *np) |
| 2513 | { |
| 2514 | int i = 0; |
| 2515 | |
| 2516 | while (true) { |
| 2517 | struct clk *clk = of_clk_get(np, i); |
| 2518 | |
| 2519 | /* this parent is ready we can check the next one */ |
| 2520 | if (!IS_ERR(clk)) { |
| 2521 | clk_put(clk); |
| 2522 | i++; |
| 2523 | continue; |
| 2524 | } |
| 2525 | |
| 2526 | /* at least one parent is not ready, we exit now */ |
| 2527 | if (PTR_ERR(clk) == -EPROBE_DEFER) |
| 2528 | return 0; |
| 2529 | |
| 2530 | /* |
| 2531 | * Here we make assumption that the device tree is |
| 2532 | * written correctly. So an error means that there is |
| 2533 | * no more parent. As we didn't exit yet, then the |
| 2534 | * previous parent are ready. If there is no clock |
| 2535 | * parent, no need to wait for them, then we can |
| 2536 | * consider their absence as being ready |
| 2537 | */ |
| 2538 | return 1; |
| 2539 | } |
| 2540 | } |
| 2541 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2542 | /** |
| 2543 | * of_clk_init() - Scan and init clock providers from the DT |
| 2544 | * @matches: array of compatible values and init functions for providers. |
| 2545 | * |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2546 | * This function scans the device tree for matching clock providers |
Sylwester Nawrocki | e5ca8fb | 2014-03-27 12:08:36 +0100 | [diff] [blame] | 2547 | * and calls their initialization functions. It also does it by trying |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2548 | * to follow the dependencies. |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2549 | */ |
| 2550 | void __init of_clk_init(const struct of_device_id *matches) |
| 2551 | { |
Alex Elder | 7f7ed58 | 2013-08-22 11:31:31 -0500 | [diff] [blame] | 2552 | const struct of_device_id *match; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2553 | struct device_node *np; |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2554 | struct clock_provider *clk_provider, *next; |
| 2555 | bool is_init_done; |
| 2556 | bool force = false; |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2557 | |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 2558 | if (!matches) |
Tero Kristo | 819b486 | 2013-10-22 11:39:36 +0300 | [diff] [blame] | 2559 | matches = &__clk_of_table; |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 2560 | |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2561 | /* First prepare the list of the clocks providers */ |
Alex Elder | 7f7ed58 | 2013-08-22 11:31:31 -0500 | [diff] [blame] | 2562 | for_each_matching_node_and_match(np, matches, &match) { |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2563 | struct clock_provider *parent = |
| 2564 | kzalloc(sizeof(struct clock_provider), GFP_KERNEL); |
| 2565 | |
| 2566 | parent->clk_init_cb = match->data; |
| 2567 | parent->np = np; |
Sylwester Nawrocki | 3f6d439 | 2014-03-27 11:43:32 +0100 | [diff] [blame] | 2568 | list_add_tail(&parent->node, &clk_provider_list); |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2569 | } |
| 2570 | |
| 2571 | while (!list_empty(&clk_provider_list)) { |
| 2572 | is_init_done = false; |
| 2573 | list_for_each_entry_safe(clk_provider, next, |
| 2574 | &clk_provider_list, node) { |
| 2575 | if (force || parent_ready(clk_provider->np)) { |
| 2576 | clk_provider->clk_init_cb(clk_provider->np); |
| 2577 | list_del(&clk_provider->node); |
| 2578 | kfree(clk_provider); |
| 2579 | is_init_done = true; |
| 2580 | } |
| 2581 | } |
| 2582 | |
| 2583 | /* |
Sylwester Nawrocki | e5ca8fb | 2014-03-27 12:08:36 +0100 | [diff] [blame] | 2584 | * We didn't manage to initialize any of the |
Gregory CLEMENT | 1771b10 | 2014-02-24 19:10:13 +0100 | [diff] [blame] | 2585 | * remaining providers during the last loop, so now we |
| 2586 | * initialize all the remaining ones unconditionally |
| 2587 | * in case the clock parent was not mandatory |
| 2588 | */ |
| 2589 | if (!is_init_done) |
| 2590 | force = true; |
| 2591 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 2592 | } |
| 2593 | } |
| 2594 | #endif |