Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * arch/sh/kernel/cpu/clock.c - SuperH clock framework |
| 3 | * |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 4 | * Copyright (C) 2005, 2006 Paul Mundt |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 5 | * |
| 6 | * This clock framework is derived from the OMAP version by: |
| 7 | * |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 8 | * Copyright (C) 2004 - 2005 Nokia Corporation |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 9 | * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> |
| 10 | * |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 11 | * Modified for omap shared clock framework by Tony Lindgren <tony@atomide.com> |
| 12 | * |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 13 | * This file is subject to the terms and conditions of the GNU General Public |
| 14 | * License. See the file "COPYING" in the main directory of this archive |
| 15 | * for more details. |
| 16 | */ |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <linux/module.h> |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 20 | #include <linux/mutex.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 21 | #include <linux/list.h> |
| 22 | #include <linux/kref.h> |
| 23 | #include <linux/seq_file.h> |
| 24 | #include <linux/err.h> |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 25 | #include <linux/platform_device.h> |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 26 | #include <asm/clock.h> |
| 27 | #include <asm/timer.h> |
| 28 | |
| 29 | static LIST_HEAD(clock_list); |
| 30 | static DEFINE_SPINLOCK(clock_lock); |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 31 | static DEFINE_MUTEX(clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * Each subtype is expected to define the init routines for these clocks, |
| 35 | * as each subtype (or processor family) will have these clocks at the |
| 36 | * very least. These are all provided through the CPG, which even some of |
| 37 | * the more quirky parts (such as ST40, SH4-202, etc.) still have. |
| 38 | * |
| 39 | * The processor-specific code is expected to register any additional |
| 40 | * clock sources that are of interest. |
| 41 | */ |
| 42 | static struct clk master_clk = { |
| 43 | .name = "master_clk", |
| 44 | .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES, |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 45 | .rate = CONFIG_SH_PCLK_FREQ, |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | static struct clk module_clk = { |
| 49 | .name = "module_clk", |
| 50 | .parent = &master_clk, |
| 51 | .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES, |
| 52 | }; |
| 53 | |
| 54 | static struct clk bus_clk = { |
| 55 | .name = "bus_clk", |
| 56 | .parent = &master_clk, |
| 57 | .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES, |
| 58 | }; |
| 59 | |
| 60 | static struct clk cpu_clk = { |
| 61 | .name = "cpu_clk", |
| 62 | .parent = &master_clk, |
| 63 | .flags = CLK_ALWAYS_ENABLED, |
| 64 | }; |
| 65 | |
| 66 | /* |
| 67 | * The ordering of these clocks matters, do not change it. |
| 68 | */ |
| 69 | static struct clk *onchip_clocks[] = { |
| 70 | &master_clk, |
| 71 | &module_clk, |
| 72 | &bus_clk, |
| 73 | &cpu_clk, |
| 74 | }; |
| 75 | |
| 76 | static void propagate_rate(struct clk *clk) |
| 77 | { |
| 78 | struct clk *clkp; |
| 79 | |
| 80 | list_for_each_entry(clkp, &clock_list, node) { |
| 81 | if (likely(clkp->parent != clk)) |
| 82 | continue; |
| 83 | if (likely(clkp->ops && clkp->ops->recalc)) |
| 84 | clkp->ops->recalc(clkp); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | int __clk_enable(struct clk *clk) |
| 89 | { |
| 90 | /* |
| 91 | * See if this is the first time we're enabling the clock, some |
| 92 | * clocks that are always enabled still require "special" |
| 93 | * initialization. This is especially true if the clock mode |
| 94 | * changes and the clock needs to hunt for the proper set of |
| 95 | * divisors to use before it can effectively recalc. |
| 96 | */ |
| 97 | if (unlikely(atomic_read(&clk->kref.refcount) == 1)) |
| 98 | if (clk->ops && clk->ops->init) |
| 99 | clk->ops->init(clk); |
| 100 | |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 101 | kref_get(&clk->kref); |
| 102 | |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 103 | if (clk->flags & CLK_ALWAYS_ENABLED) |
| 104 | return 0; |
| 105 | |
| 106 | if (likely(clk->ops && clk->ops->enable)) |
| 107 | clk->ops->enable(clk); |
| 108 | |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | int clk_enable(struct clk *clk) |
| 113 | { |
| 114 | unsigned long flags; |
| 115 | int ret; |
| 116 | |
| 117 | spin_lock_irqsave(&clock_lock, flags); |
| 118 | ret = __clk_enable(clk); |
| 119 | spin_unlock_irqrestore(&clock_lock, flags); |
| 120 | |
| 121 | return ret; |
| 122 | } |
| 123 | |
| 124 | static void clk_kref_release(struct kref *kref) |
| 125 | { |
| 126 | /* Nothing to do */ |
| 127 | } |
| 128 | |
| 129 | void __clk_disable(struct clk *clk) |
| 130 | { |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 131 | int count = kref_put(&clk->kref, clk_kref_release); |
| 132 | |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 133 | if (clk->flags & CLK_ALWAYS_ENABLED) |
| 134 | return; |
| 135 | |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 136 | if (!count) { /* count reaches zero, disable the clock */ |
| 137 | if (likely(clk->ops && clk->ops->disable)) |
| 138 | clk->ops->disable(clk); |
| 139 | } |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | void clk_disable(struct clk *clk) |
| 143 | { |
| 144 | unsigned long flags; |
| 145 | |
| 146 | spin_lock_irqsave(&clock_lock, flags); |
| 147 | __clk_disable(clk); |
| 148 | spin_unlock_irqrestore(&clock_lock, flags); |
| 149 | } |
| 150 | |
| 151 | int clk_register(struct clk *clk) |
| 152 | { |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 153 | mutex_lock(&clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 154 | |
| 155 | list_add(&clk->node, &clock_list); |
| 156 | kref_init(&clk->kref); |
| 157 | |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 158 | mutex_unlock(&clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 159 | |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 160 | if (clk->flags & CLK_ALWAYS_ENABLED) { |
| 161 | pr_debug( "Clock '%s' is ALWAYS_ENABLED\n", clk->name); |
| 162 | if (clk->ops && clk->ops->init) |
| 163 | clk->ops->init(clk); |
| 164 | if (clk->ops && clk->ops->enable) |
| 165 | clk->ops->enable(clk); |
| 166 | pr_debug( "Enabled."); |
| 167 | } |
| 168 | |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | void clk_unregister(struct clk *clk) |
| 173 | { |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 174 | mutex_lock(&clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 175 | list_del(&clk->node); |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 176 | mutex_unlock(&clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | inline unsigned long clk_get_rate(struct clk *clk) |
| 180 | { |
| 181 | return clk->rate; |
| 182 | } |
| 183 | |
| 184 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 185 | { |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 186 | return clk_set_rate_ex(clk, rate, 0); |
| 187 | } |
| 188 | |
| 189 | int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id) |
| 190 | { |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 191 | int ret = -EOPNOTSUPP; |
| 192 | |
| 193 | if (likely(clk->ops && clk->ops->set_rate)) { |
| 194 | unsigned long flags; |
| 195 | |
| 196 | spin_lock_irqsave(&clock_lock, flags); |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 197 | ret = clk->ops->set_rate(clk, rate, algo_id); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 198 | spin_unlock_irqrestore(&clock_lock, flags); |
| 199 | } |
| 200 | |
| 201 | if (unlikely(clk->flags & CLK_RATE_PROPAGATES)) |
| 202 | propagate_rate(clk); |
| 203 | |
| 204 | return ret; |
| 205 | } |
| 206 | |
| 207 | void clk_recalc_rate(struct clk *clk) |
| 208 | { |
| 209 | if (likely(clk->ops && clk->ops->recalc)) { |
| 210 | unsigned long flags; |
| 211 | |
| 212 | spin_lock_irqsave(&clock_lock, flags); |
| 213 | clk->ops->recalc(clk); |
| 214 | spin_unlock_irqrestore(&clock_lock, flags); |
| 215 | } |
| 216 | |
| 217 | if (unlikely(clk->flags & CLK_RATE_PROPAGATES)) |
| 218 | propagate_rate(clk); |
| 219 | } |
| 220 | |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 221 | /* |
| 222 | * Returns a clock. Note that we first try to use device id on the bus |
| 223 | * and clock name. If this fails, we try to use clock name only. |
| 224 | */ |
| 225 | struct clk *clk_get(struct device *dev, const char *id) |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 226 | { |
| 227 | struct clk *p, *clk = ERR_PTR(-ENOENT); |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 228 | int idno; |
| 229 | |
| 230 | if (dev == NULL || dev->bus != &platform_bus_type) |
| 231 | idno = -1; |
| 232 | else |
| 233 | idno = to_platform_device(dev)->id; |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 234 | |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 235 | mutex_lock(&clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 236 | list_for_each_entry(p, &clock_list, node) { |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 237 | if (p->id == idno && |
| 238 | strcmp(id, p->name) == 0 && try_module_get(p->owner)) { |
| 239 | clk = p; |
| 240 | goto found; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | list_for_each_entry(p, &clock_list, node) { |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 245 | if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) { |
| 246 | clk = p; |
| 247 | break; |
| 248 | } |
| 249 | } |
Paul Mundt | 1d11856 | 2006-12-01 13:15:14 +0900 | [diff] [blame] | 250 | |
| 251 | found: |
Paul Mundt | 237b98f | 2006-09-27 17:28:20 +0900 | [diff] [blame] | 252 | mutex_unlock(&clock_list_sem); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 253 | |
| 254 | return clk; |
| 255 | } |
| 256 | |
| 257 | void clk_put(struct clk *clk) |
| 258 | { |
| 259 | if (clk && !IS_ERR(clk)) |
| 260 | module_put(clk->owner); |
| 261 | } |
| 262 | |
| 263 | void __init __attribute__ ((weak)) |
| 264 | arch_init_clk_ops(struct clk_ops **ops, int type) |
| 265 | { |
| 266 | } |
| 267 | |
| 268 | int __init clk_init(void) |
| 269 | { |
| 270 | int i, ret = 0; |
| 271 | |
Paul Mundt | e4c2cfe | 2006-09-27 12:31:01 +0900 | [diff] [blame] | 272 | BUG_ON(!master_clk.rate); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 273 | |
| 274 | for (i = 0; i < ARRAY_SIZE(onchip_clocks); i++) { |
| 275 | struct clk *clk = onchip_clocks[i]; |
| 276 | |
| 277 | arch_init_clk_ops(&clk->ops, i); |
| 278 | ret |= clk_register(clk); |
Paul Mundt | 36ddf31 | 2006-01-16 22:14:17 -0800 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /* Kick the child clocks.. */ |
| 282 | propagate_rate(&master_clk); |
| 283 | propagate_rate(&bus_clk); |
| 284 | |
| 285 | return ret; |
| 286 | } |
| 287 | |
| 288 | int show_clocks(struct seq_file *m) |
| 289 | { |
| 290 | struct clk *clk; |
| 291 | |
| 292 | list_for_each_entry_reverse(clk, &clock_list, node) { |
| 293 | unsigned long rate = clk_get_rate(clk); |
| 294 | |
| 295 | /* |
| 296 | * Don't bother listing dummy clocks with no ancestry |
| 297 | * that only support enable and disable ops. |
| 298 | */ |
| 299 | if (unlikely(!rate && !clk->parent)) |
| 300 | continue; |
| 301 | |
| 302 | seq_printf(m, "%-12s\t: %ld.%02ldMHz\n", clk->name, |
| 303 | rate / 1000000, (rate % 1000000) / 10000); |
| 304 | } |
| 305 | |
| 306 | return 0; |
| 307 | } |
| 308 | |
| 309 | EXPORT_SYMBOL_GPL(clk_register); |
| 310 | EXPORT_SYMBOL_GPL(clk_unregister); |
| 311 | EXPORT_SYMBOL_GPL(clk_get); |
| 312 | EXPORT_SYMBOL_GPL(clk_put); |
| 313 | EXPORT_SYMBOL_GPL(clk_enable); |
| 314 | EXPORT_SYMBOL_GPL(clk_disable); |
| 315 | EXPORT_SYMBOL_GPL(__clk_enable); |
| 316 | EXPORT_SYMBOL_GPL(__clk_disable); |
| 317 | EXPORT_SYMBOL_GPL(clk_get_rate); |
| 318 | EXPORT_SYMBOL_GPL(clk_set_rate); |
| 319 | EXPORT_SYMBOL_GPL(clk_recalc_rate); |
dmitry pervushin | 1929cb3 | 2007-04-24 13:39:09 +0900 | [diff] [blame^] | 320 | EXPORT_SYMBOL_GPL(clk_set_rate_ex); |