Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c24xx/clock.c |
| 2 | * |
| 3 | * Copyright (c) 2004-2005 Simtec Electronics |
| 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
| 6 | * S3C24XX Core clock control support |
| 7 | * |
| 8 | * Based on, and code from linux/arch/arm/mach-versatile/clock.c |
| 9 | ** |
| 10 | ** Copyright (C) 2004 ARM Limited. |
| 11 | ** Written by Deep Blue Solutions Limited. |
| 12 | * |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2 of the License, or |
| 17 | * (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 27 | */ |
| 28 | |
| 29 | #include <linux/init.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/errno.h> |
| 34 | #include <linux/err.h> |
| 35 | #include <linux/platform_device.h> |
| 36 | #include <linux/sysdev.h> |
| 37 | #include <linux/interrupt.h> |
| 38 | #include <linux/ioport.h> |
| 39 | #include <linux/clk.h> |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 40 | #include <linux/spinlock.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 41 | #include <linux/delay.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 42 | #include <linux/io.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 43 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 44 | #include <mach/hardware.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 45 | #include <asm/irq.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 46 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 47 | #include <mach/regs-clock.h> |
| 48 | #include <mach/regs-gpio.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 49 | |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame^] | 50 | #include <plat/cpu-freq.h> |
| 51 | |
Ben Dooks | d5120ae | 2008-10-07 23:09:51 +0100 | [diff] [blame] | 52 | #include <plat/clock.h> |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 53 | #include <plat/cpu.h> |
Ben Dooks | e24b864 | 2008-10-21 14:06:34 +0100 | [diff] [blame] | 54 | #include <plat/pll.h> |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 55 | |
| 56 | /* clock information */ |
| 57 | |
| 58 | static LIST_HEAD(clocks); |
| 59 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 60 | /* We originally used an mutex here, but some contexts (see resume) |
| 61 | * are calling functions such as clk_set_parent() with IRQs disabled |
| 62 | * causing an BUG to be triggered. |
| 63 | */ |
| 64 | DEFINE_SPINLOCK(clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 65 | |
| 66 | /* enable and disable calls for use with the clk struct */ |
| 67 | |
| 68 | static int clk_null_enable(struct clk *clk, int enable) |
| 69 | { |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | /* Clock API calls */ |
| 74 | |
| 75 | struct clk *clk_get(struct device *dev, const char *id) |
| 76 | { |
| 77 | struct clk *p; |
| 78 | struct clk *clk = ERR_PTR(-ENOENT); |
| 79 | int idno; |
| 80 | |
| 81 | if (dev == NULL || dev->bus != &platform_bus_type) |
| 82 | idno = -1; |
| 83 | else |
| 84 | idno = to_platform_device(dev)->id; |
| 85 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 86 | spin_lock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 87 | |
| 88 | list_for_each_entry(p, &clocks, list) { |
| 89 | if (p->id == idno && |
| 90 | strcmp(id, p->name) == 0 && |
| 91 | try_module_get(p->owner)) { |
| 92 | clk = p; |
| 93 | break; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /* check for the case where a device was supplied, but the |
| 98 | * clock that was being searched for is not device specific */ |
| 99 | |
| 100 | if (IS_ERR(clk)) { |
| 101 | list_for_each_entry(p, &clocks, list) { |
| 102 | if (p->id == -1 && strcmp(id, p->name) == 0 && |
| 103 | try_module_get(p->owner)) { |
| 104 | clk = p; |
| 105 | break; |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 110 | spin_unlock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 111 | return clk; |
| 112 | } |
| 113 | |
| 114 | void clk_put(struct clk *clk) |
| 115 | { |
| 116 | module_put(clk->owner); |
| 117 | } |
| 118 | |
| 119 | int clk_enable(struct clk *clk) |
| 120 | { |
| 121 | if (IS_ERR(clk) || clk == NULL) |
| 122 | return -EINVAL; |
| 123 | |
| 124 | clk_enable(clk->parent); |
| 125 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 126 | spin_lock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 127 | |
| 128 | if ((clk->usage++) == 0) |
| 129 | (clk->enable)(clk, 1); |
| 130 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 131 | spin_unlock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | void clk_disable(struct clk *clk) |
| 136 | { |
| 137 | if (IS_ERR(clk) || clk == NULL) |
| 138 | return; |
| 139 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 140 | spin_lock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 141 | |
| 142 | if ((--clk->usage) == 0) |
| 143 | (clk->enable)(clk, 0); |
| 144 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 145 | spin_unlock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 146 | clk_disable(clk->parent); |
| 147 | } |
| 148 | |
| 149 | |
| 150 | unsigned long clk_get_rate(struct clk *clk) |
| 151 | { |
| 152 | if (IS_ERR(clk)) |
| 153 | return 0; |
| 154 | |
| 155 | if (clk->rate != 0) |
| 156 | return clk->rate; |
| 157 | |
| 158 | if (clk->get_rate != NULL) |
| 159 | return (clk->get_rate)(clk); |
| 160 | |
| 161 | if (clk->parent != NULL) |
| 162 | return clk_get_rate(clk->parent); |
| 163 | |
| 164 | return clk->rate; |
| 165 | } |
| 166 | |
| 167 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 168 | { |
| 169 | if (!IS_ERR(clk) && clk->round_rate) |
| 170 | return (clk->round_rate)(clk, rate); |
| 171 | |
| 172 | return rate; |
| 173 | } |
| 174 | |
| 175 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 176 | { |
| 177 | int ret; |
| 178 | |
| 179 | if (IS_ERR(clk)) |
| 180 | return -EINVAL; |
| 181 | |
Ben Dooks | 57c1b0f | 2008-01-28 13:01:17 +0100 | [diff] [blame] | 182 | /* We do not default just do a clk->rate = rate as |
| 183 | * the clock may have been made this way by choice. |
| 184 | */ |
| 185 | |
| 186 | WARN_ON(clk->set_rate == NULL); |
| 187 | |
| 188 | if (clk->set_rate == NULL) |
| 189 | return -EINVAL; |
| 190 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 191 | spin_lock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 192 | ret = (clk->set_rate)(clk, rate); |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 193 | spin_unlock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 194 | |
| 195 | return ret; |
| 196 | } |
| 197 | |
| 198 | struct clk *clk_get_parent(struct clk *clk) |
| 199 | { |
| 200 | return clk->parent; |
| 201 | } |
| 202 | |
| 203 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 204 | { |
| 205 | int ret = 0; |
| 206 | |
| 207 | if (IS_ERR(clk)) |
| 208 | return -EINVAL; |
| 209 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 210 | spin_lock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 211 | |
| 212 | if (clk->set_parent) |
| 213 | ret = (clk->set_parent)(clk, parent); |
| 214 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 215 | spin_unlock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 216 | |
| 217 | return ret; |
| 218 | } |
| 219 | |
| 220 | EXPORT_SYMBOL(clk_get); |
| 221 | EXPORT_SYMBOL(clk_put); |
| 222 | EXPORT_SYMBOL(clk_enable); |
| 223 | EXPORT_SYMBOL(clk_disable); |
| 224 | EXPORT_SYMBOL(clk_get_rate); |
| 225 | EXPORT_SYMBOL(clk_round_rate); |
| 226 | EXPORT_SYMBOL(clk_set_rate); |
| 227 | EXPORT_SYMBOL(clk_get_parent); |
| 228 | EXPORT_SYMBOL(clk_set_parent); |
| 229 | |
| 230 | /* base clocks */ |
| 231 | |
Ben Dooks | 57c1b0f | 2008-01-28 13:01:17 +0100 | [diff] [blame] | 232 | static int clk_default_setrate(struct clk *clk, unsigned long rate) |
| 233 | { |
| 234 | clk->rate = rate; |
| 235 | return 0; |
| 236 | } |
| 237 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 238 | struct clk clk_xtal = { |
| 239 | .name = "xtal", |
| 240 | .id = -1, |
| 241 | .rate = 0, |
| 242 | .parent = NULL, |
| 243 | .ctrlbit = 0, |
| 244 | }; |
| 245 | |
| 246 | struct clk clk_mpll = { |
| 247 | .name = "mpll", |
| 248 | .id = -1, |
Ben Dooks | 57c1b0f | 2008-01-28 13:01:17 +0100 | [diff] [blame] | 249 | .set_rate = clk_default_setrate, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 250 | }; |
| 251 | |
| 252 | struct clk clk_upll = { |
| 253 | .name = "upll", |
| 254 | .id = -1, |
| 255 | .parent = NULL, |
| 256 | .ctrlbit = 0, |
| 257 | }; |
| 258 | |
| 259 | struct clk clk_f = { |
| 260 | .name = "fclk", |
| 261 | .id = -1, |
| 262 | .rate = 0, |
| 263 | .parent = &clk_mpll, |
| 264 | .ctrlbit = 0, |
Ben Dooks | 57c1b0f | 2008-01-28 13:01:17 +0100 | [diff] [blame] | 265 | .set_rate = clk_default_setrate, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | struct clk clk_h = { |
| 269 | .name = "hclk", |
| 270 | .id = -1, |
| 271 | .rate = 0, |
| 272 | .parent = NULL, |
| 273 | .ctrlbit = 0, |
Ben Dooks | 57c1b0f | 2008-01-28 13:01:17 +0100 | [diff] [blame] | 274 | .set_rate = clk_default_setrate, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 275 | }; |
| 276 | |
| 277 | struct clk clk_p = { |
| 278 | .name = "pclk", |
| 279 | .id = -1, |
| 280 | .rate = 0, |
| 281 | .parent = NULL, |
| 282 | .ctrlbit = 0, |
Ben Dooks | 57c1b0f | 2008-01-28 13:01:17 +0100 | [diff] [blame] | 283 | .set_rate = clk_default_setrate, |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 284 | }; |
| 285 | |
| 286 | struct clk clk_usb_bus = { |
| 287 | .name = "usb-bus", |
| 288 | .id = -1, |
| 289 | .rate = 0, |
| 290 | .parent = &clk_upll, |
| 291 | }; |
| 292 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 293 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 294 | |
| 295 | struct clk s3c24xx_uclk = { |
| 296 | .name = "uclk", |
| 297 | .id = -1, |
| 298 | }; |
| 299 | |
| 300 | /* initialise the clock system */ |
| 301 | |
| 302 | int s3c24xx_register_clock(struct clk *clk) |
| 303 | { |
| 304 | clk->owner = THIS_MODULE; |
| 305 | |
| 306 | if (clk->enable == NULL) |
| 307 | clk->enable = clk_null_enable; |
| 308 | |
| 309 | /* add to the list of available clocks */ |
| 310 | |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 311 | spin_lock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 312 | list_add(&clk->list, &clocks); |
Ben Dooks | c3391e3 | 2008-10-21 14:06:37 +0100 | [diff] [blame] | 313 | spin_unlock(&clocks_lock); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 314 | |
| 315 | return 0; |
| 316 | } |
| 317 | |
Ben Dooks | ce89c20 | 2007-04-20 11:15:27 +0100 | [diff] [blame] | 318 | int s3c24xx_register_clocks(struct clk **clks, int nr_clks) |
| 319 | { |
| 320 | int fails = 0; |
| 321 | |
| 322 | for (; nr_clks > 0; nr_clks--, clks++) { |
| 323 | if (s3c24xx_register_clock(*clks) < 0) |
| 324 | fails++; |
| 325 | } |
| 326 | |
| 327 | return fails; |
| 328 | } |
| 329 | |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 330 | /* initalise all the clocks */ |
| 331 | |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame^] | 332 | void __init_or_cpufreq s3c24xx_setup_clocks(unsigned long fclk, |
| 333 | unsigned long hclk, |
| 334 | unsigned long pclk) |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 335 | { |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame^] | 336 | clk_upll.rate = s3c24xx_get_pll(__raw_readl(S3C2410_UPLLCON), |
| 337 | clk_xtal.rate); |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 338 | |
| 339 | clk_mpll.rate = fclk; |
| 340 | clk_h.rate = hclk; |
| 341 | clk_p.rate = pclk; |
| 342 | clk_f.rate = fclk; |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame^] | 343 | } |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 344 | |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame^] | 345 | int __init s3c24xx_register_baseclocks(unsigned long xtal) |
| 346 | { |
| 347 | printk(KERN_INFO "S3C24XX Clocks, (c) 2004 Simtec Electronics\n"); |
| 348 | |
| 349 | clk_xtal.rate = xtal; |
Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 350 | |
| 351 | /* register our clocks */ |
| 352 | |
| 353 | if (s3c24xx_register_clock(&clk_xtal) < 0) |
| 354 | printk(KERN_ERR "failed to register master xtal\n"); |
| 355 | |
| 356 | if (s3c24xx_register_clock(&clk_mpll) < 0) |
| 357 | printk(KERN_ERR "failed to register mpll clock\n"); |
| 358 | |
| 359 | if (s3c24xx_register_clock(&clk_upll) < 0) |
| 360 | printk(KERN_ERR "failed to register upll clock\n"); |
| 361 | |
| 362 | if (s3c24xx_register_clock(&clk_f) < 0) |
| 363 | printk(KERN_ERR "failed to register cpu fclk\n"); |
| 364 | |
| 365 | if (s3c24xx_register_clock(&clk_h) < 0) |
| 366 | printk(KERN_ERR "failed to register cpu hclk\n"); |
| 367 | |
| 368 | if (s3c24xx_register_clock(&clk_p) < 0) |
| 369 | printk(KERN_ERR "failed to register cpu pclk\n"); |
| 370 | |
| 371 | return 0; |
| 372 | } |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame^] | 373 | |