Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c24xx/clock.c |
| 2 | * |
Ben Dooks | 50f430e | 2009-11-13 22:54:12 +0000 | [diff] [blame] | 3 | * Copyright 2004-2005 Simtec Electronics |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 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> |
| 40 | #include <linux/spinlock.h> |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 41 | #include <linux/io.h> |
| 42 | |
| 43 | #include <mach/hardware.h> |
| 44 | #include <asm/irq.h> |
| 45 | |
| 46 | #include <plat/cpu-freq.h> |
| 47 | |
| 48 | #include <plat/clock.h> |
| 49 | #include <plat/cpu.h> |
| 50 | |
Marek Szyprowski | 7cf4b48 | 2010-10-07 17:19:10 +0900 | [diff] [blame] | 51 | #include <linux/serial_core.h> |
| 52 | #include <plat/regs-serial.h> /* for s3c24xx_uart_devs */ |
| 53 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 54 | /* clock information */ |
| 55 | |
| 56 | static LIST_HEAD(clocks); |
| 57 | |
| 58 | /* We originally used an mutex here, but some contexts (see resume) |
| 59 | * are calling functions such as clk_set_parent() with IRQs disabled |
| 60 | * causing an BUG to be triggered. |
| 61 | */ |
| 62 | DEFINE_SPINLOCK(clocks_lock); |
| 63 | |
| 64 | /* enable and disable calls for use with the clk struct */ |
| 65 | |
| 66 | static int clk_null_enable(struct clk *clk, int enable) |
| 67 | { |
| 68 | return 0; |
| 69 | } |
| 70 | |
Marek Szyprowski | 7cf4b48 | 2010-10-07 17:19:10 +0900 | [diff] [blame] | 71 | static int dev_is_s3c_uart(struct device *dev) |
| 72 | { |
| 73 | struct platform_device **pdev = s3c24xx_uart_devs; |
| 74 | int i; |
| 75 | for (i = 0; i < ARRAY_SIZE(s3c24xx_uart_devs); i++, pdev++) |
| 76 | if (*pdev && dev == &(*pdev)->dev) |
| 77 | return 1; |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | /* |
| 82 | * Serial drivers call get_clock() very early, before platform bus |
| 83 | * has been set up, this requires a special check to let them get |
| 84 | * a proper clock |
| 85 | */ |
| 86 | |
| 87 | static int dev_is_platform_device(struct device *dev) |
| 88 | { |
| 89 | return dev->bus == &platform_bus_type || |
| 90 | (dev->bus == NULL && dev_is_s3c_uart(dev)); |
| 91 | } |
| 92 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 93 | /* Clock API calls */ |
| 94 | |
| 95 | struct clk *clk_get(struct device *dev, const char *id) |
| 96 | { |
| 97 | struct clk *p; |
| 98 | struct clk *clk = ERR_PTR(-ENOENT); |
| 99 | int idno; |
| 100 | |
Marek Szyprowski | 7cf4b48 | 2010-10-07 17:19:10 +0900 | [diff] [blame] | 101 | if (dev == NULL || !dev_is_platform_device(dev)) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 102 | idno = -1; |
| 103 | else |
| 104 | idno = to_platform_device(dev)->id; |
| 105 | |
| 106 | spin_lock(&clocks_lock); |
| 107 | |
| 108 | list_for_each_entry(p, &clocks, list) { |
| 109 | if (p->id == idno && |
| 110 | strcmp(id, p->name) == 0 && |
| 111 | try_module_get(p->owner)) { |
| 112 | clk = p; |
| 113 | break; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | /* check for the case where a device was supplied, but the |
| 118 | * clock that was being searched for is not device specific */ |
| 119 | |
| 120 | if (IS_ERR(clk)) { |
| 121 | list_for_each_entry(p, &clocks, list) { |
| 122 | if (p->id == -1 && strcmp(id, p->name) == 0 && |
| 123 | try_module_get(p->owner)) { |
| 124 | clk = p; |
| 125 | break; |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | spin_unlock(&clocks_lock); |
| 131 | return clk; |
| 132 | } |
| 133 | |
| 134 | void clk_put(struct clk *clk) |
| 135 | { |
| 136 | module_put(clk->owner); |
| 137 | } |
| 138 | |
| 139 | int clk_enable(struct clk *clk) |
| 140 | { |
| 141 | if (IS_ERR(clk) || clk == NULL) |
| 142 | return -EINVAL; |
| 143 | |
| 144 | clk_enable(clk->parent); |
| 145 | |
| 146 | spin_lock(&clocks_lock); |
| 147 | |
| 148 | if ((clk->usage++) == 0) |
| 149 | (clk->enable)(clk, 1); |
| 150 | |
| 151 | spin_unlock(&clocks_lock); |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | void clk_disable(struct clk *clk) |
| 156 | { |
| 157 | if (IS_ERR(clk) || clk == NULL) |
| 158 | return; |
| 159 | |
| 160 | spin_lock(&clocks_lock); |
| 161 | |
| 162 | if ((--clk->usage) == 0) |
| 163 | (clk->enable)(clk, 0); |
| 164 | |
| 165 | spin_unlock(&clocks_lock); |
| 166 | clk_disable(clk->parent); |
| 167 | } |
| 168 | |
| 169 | |
| 170 | unsigned long clk_get_rate(struct clk *clk) |
| 171 | { |
| 172 | if (IS_ERR(clk)) |
| 173 | return 0; |
| 174 | |
| 175 | if (clk->rate != 0) |
| 176 | return clk->rate; |
| 177 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 178 | if (clk->ops != NULL && clk->ops->get_rate != NULL) |
| 179 | return (clk->ops->get_rate)(clk); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 180 | |
| 181 | if (clk->parent != NULL) |
| 182 | return clk_get_rate(clk->parent); |
| 183 | |
| 184 | return clk->rate; |
| 185 | } |
| 186 | |
| 187 | long clk_round_rate(struct clk *clk, unsigned long rate) |
| 188 | { |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 189 | if (!IS_ERR(clk) && clk->ops && clk->ops->round_rate) |
| 190 | return (clk->ops->round_rate)(clk, rate); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 191 | |
| 192 | return rate; |
| 193 | } |
| 194 | |
| 195 | int clk_set_rate(struct clk *clk, unsigned long rate) |
| 196 | { |
| 197 | int ret; |
| 198 | |
| 199 | if (IS_ERR(clk)) |
| 200 | return -EINVAL; |
| 201 | |
| 202 | /* We do not default just do a clk->rate = rate as |
| 203 | * the clock may have been made this way by choice. |
| 204 | */ |
| 205 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 206 | WARN_ON(clk->ops == NULL); |
| 207 | WARN_ON(clk->ops && clk->ops->set_rate == NULL); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 208 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 209 | if (clk->ops == NULL || clk->ops->set_rate == NULL) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 210 | return -EINVAL; |
| 211 | |
| 212 | spin_lock(&clocks_lock); |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 213 | ret = (clk->ops->set_rate)(clk, rate); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 214 | spin_unlock(&clocks_lock); |
| 215 | |
| 216 | return ret; |
| 217 | } |
| 218 | |
| 219 | struct clk *clk_get_parent(struct clk *clk) |
| 220 | { |
| 221 | return clk->parent; |
| 222 | } |
| 223 | |
| 224 | int clk_set_parent(struct clk *clk, struct clk *parent) |
| 225 | { |
| 226 | int ret = 0; |
| 227 | |
| 228 | if (IS_ERR(clk)) |
| 229 | return -EINVAL; |
| 230 | |
| 231 | spin_lock(&clocks_lock); |
| 232 | |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 233 | if (clk->ops && clk->ops->set_parent) |
| 234 | ret = (clk->ops->set_parent)(clk, parent); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 235 | |
| 236 | spin_unlock(&clocks_lock); |
| 237 | |
| 238 | return ret; |
| 239 | } |
| 240 | |
| 241 | EXPORT_SYMBOL(clk_get); |
| 242 | EXPORT_SYMBOL(clk_put); |
| 243 | EXPORT_SYMBOL(clk_enable); |
| 244 | EXPORT_SYMBOL(clk_disable); |
| 245 | EXPORT_SYMBOL(clk_get_rate); |
| 246 | EXPORT_SYMBOL(clk_round_rate); |
| 247 | EXPORT_SYMBOL(clk_set_rate); |
| 248 | EXPORT_SYMBOL(clk_get_parent); |
| 249 | EXPORT_SYMBOL(clk_set_parent); |
| 250 | |
| 251 | /* base clocks */ |
| 252 | |
Kukjin Kim | ed27684 | 2010-01-14 12:50:23 +0900 | [diff] [blame] | 253 | int clk_default_setrate(struct clk *clk, unsigned long rate) |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 254 | { |
| 255 | clk->rate = rate; |
| 256 | return 0; |
| 257 | } |
| 258 | |
Kukjin Kim | ed27684 | 2010-01-14 12:50:23 +0900 | [diff] [blame] | 259 | struct clk_ops clk_ops_def_setrate = { |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 260 | .set_rate = clk_default_setrate, |
| 261 | }; |
| 262 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 263 | struct clk clk_xtal = { |
| 264 | .name = "xtal", |
| 265 | .id = -1, |
| 266 | .rate = 0, |
| 267 | .parent = NULL, |
| 268 | .ctrlbit = 0, |
| 269 | }; |
| 270 | |
Ben Dooks | 4b31d8b | 2008-10-21 14:07:00 +0100 | [diff] [blame] | 271 | struct clk clk_ext = { |
| 272 | .name = "ext", |
| 273 | .id = -1, |
| 274 | }; |
| 275 | |
| 276 | struct clk clk_epll = { |
| 277 | .name = "epll", |
| 278 | .id = -1, |
| 279 | }; |
| 280 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 281 | struct clk clk_mpll = { |
| 282 | .name = "mpll", |
| 283 | .id = -1, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 284 | .ops = &clk_ops_def_setrate, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 285 | }; |
| 286 | |
| 287 | struct clk clk_upll = { |
| 288 | .name = "upll", |
| 289 | .id = -1, |
| 290 | .parent = NULL, |
| 291 | .ctrlbit = 0, |
| 292 | }; |
| 293 | |
| 294 | struct clk clk_f = { |
| 295 | .name = "fclk", |
| 296 | .id = -1, |
| 297 | .rate = 0, |
| 298 | .parent = &clk_mpll, |
| 299 | .ctrlbit = 0, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | struct clk clk_h = { |
| 303 | .name = "hclk", |
| 304 | .id = -1, |
| 305 | .rate = 0, |
| 306 | .parent = NULL, |
| 307 | .ctrlbit = 0, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 308 | .ops = &clk_ops_def_setrate, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 309 | }; |
| 310 | |
| 311 | struct clk clk_p = { |
| 312 | .name = "pclk", |
| 313 | .id = -1, |
| 314 | .rate = 0, |
| 315 | .parent = NULL, |
| 316 | .ctrlbit = 0, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 317 | .ops = &clk_ops_def_setrate, |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 318 | }; |
| 319 | |
| 320 | struct clk clk_usb_bus = { |
| 321 | .name = "usb-bus", |
| 322 | .id = -1, |
| 323 | .rate = 0, |
| 324 | .parent = &clk_upll, |
| 325 | }; |
| 326 | |
| 327 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 328 | struct clk s3c24xx_uclk = { |
| 329 | .name = "uclk", |
| 330 | .id = -1, |
| 331 | }; |
| 332 | |
| 333 | /* initialise the clock system */ |
| 334 | |
Ben Dooks | 8428d47 | 2010-01-25 10:44:10 +0900 | [diff] [blame] | 335 | /** |
| 336 | * s3c24xx_register_clock() - register a clock |
| 337 | * @clk: The clock to register |
| 338 | * |
| 339 | * Add the specified clock to the list of clocks known by the system. |
| 340 | */ |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 341 | int s3c24xx_register_clock(struct clk *clk) |
| 342 | { |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 343 | if (clk->enable == NULL) |
| 344 | clk->enable = clk_null_enable; |
| 345 | |
| 346 | /* add to the list of available clocks */ |
| 347 | |
Ben Dooks | cec444b | 2008-10-21 14:07:10 +0100 | [diff] [blame] | 348 | /* Quick check to see if this clock has already been registered. */ |
| 349 | BUG_ON(clk->list.prev != clk->list.next); |
| 350 | |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 351 | spin_lock(&clocks_lock); |
| 352 | list_add(&clk->list, &clocks); |
| 353 | spin_unlock(&clocks_lock); |
| 354 | |
| 355 | return 0; |
| 356 | } |
| 357 | |
Ben Dooks | 8428d47 | 2010-01-25 10:44:10 +0900 | [diff] [blame] | 358 | /** |
| 359 | * s3c24xx_register_clocks() - register an array of clock pointers |
| 360 | * @clks: Pointer to an array of struct clk pointers |
| 361 | * @nr_clks: The number of clocks in the @clks array. |
| 362 | * |
| 363 | * Call s3c24xx_register_clock() for all the clock pointers contained |
| 364 | * in the @clks list. Returns the number of failures. |
| 365 | */ |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 366 | int s3c24xx_register_clocks(struct clk **clks, int nr_clks) |
| 367 | { |
| 368 | int fails = 0; |
| 369 | |
| 370 | for (; nr_clks > 0; nr_clks--, clks++) { |
Ben Dooks | 50ee2d3 | 2010-01-25 10:46:51 +0900 | [diff] [blame] | 371 | if (s3c24xx_register_clock(*clks) < 0) { |
| 372 | struct clk *clk = *clks; |
| 373 | printk(KERN_ERR "%s: failed to register %p: %s\n", |
| 374 | __func__, clk, clk->name); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 375 | fails++; |
Ben Dooks | 50ee2d3 | 2010-01-25 10:46:51 +0900 | [diff] [blame] | 376 | } |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | return fails; |
| 380 | } |
| 381 | |
Ben Dooks | 1d9f13c | 2010-01-06 01:21:38 +0900 | [diff] [blame] | 382 | /** |
| 383 | * s3c_register_clocks() - register an array of clocks |
| 384 | * @clkp: Pointer to the first clock in the array. |
| 385 | * @nr_clks: Number of clocks to register. |
| 386 | * |
| 387 | * Call s3c24xx_register_clock() on the @clkp array given, printing an |
| 388 | * error if it fails to register the clock (unlikely). |
| 389 | */ |
Ben Dooks | ab5d97d | 2010-01-25 10:39:23 +0900 | [diff] [blame] | 390 | void __init s3c_register_clocks(struct clk *clkp, int nr_clks) |
Ben Dooks | 1d9f13c | 2010-01-06 01:21:38 +0900 | [diff] [blame] | 391 | { |
| 392 | int ret; |
| 393 | |
| 394 | for (; nr_clks > 0; nr_clks--, clkp++) { |
| 395 | ret = s3c24xx_register_clock(clkp); |
| 396 | |
| 397 | if (ret < 0) { |
| 398 | printk(KERN_ERR "Failed to register clock %s (%d)\n", |
| 399 | clkp->name, ret); |
| 400 | } |
| 401 | } |
| 402 | } |
| 403 | |
Ben Dooks | 4e04691 | 2010-04-28 12:58:13 +0900 | [diff] [blame] | 404 | /** |
| 405 | * s3c_disable_clocks() - disable an array of clocks |
| 406 | * @clkp: Pointer to the first clock in the array. |
| 407 | * @nr_clks: Number of clocks to register. |
| 408 | * |
| 409 | * for internal use only at initialisation time. disable the clocks in the |
| 410 | * @clkp array. |
| 411 | */ |
| 412 | |
| 413 | void __init s3c_disable_clocks(struct clk *clkp, int nr_clks) |
| 414 | { |
| 415 | for (; nr_clks > 0; nr_clks--, clkp++) |
| 416 | (clkp->enable)(clkp, 0); |
| 417 | } |
| 418 | |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 419 | /* initialise all the clocks */ |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 420 | |
| 421 | int __init s3c24xx_register_baseclocks(unsigned long xtal) |
| 422 | { |
Ben Dooks | 50f430e | 2009-11-13 22:54:12 +0000 | [diff] [blame] | 423 | printk(KERN_INFO "S3C24XX Clocks, Copyright 2004 Simtec Electronics\n"); |
Ben Dooks | adbefaa | 2008-10-21 14:06:54 +0100 | [diff] [blame] | 424 | |
| 425 | clk_xtal.rate = xtal; |
| 426 | |
| 427 | /* register our clocks */ |
| 428 | |
| 429 | if (s3c24xx_register_clock(&clk_xtal) < 0) |
| 430 | printk(KERN_ERR "failed to register master xtal\n"); |
| 431 | |
| 432 | if (s3c24xx_register_clock(&clk_mpll) < 0) |
| 433 | printk(KERN_ERR "failed to register mpll clock\n"); |
| 434 | |
| 435 | if (s3c24xx_register_clock(&clk_upll) < 0) |
| 436 | printk(KERN_ERR "failed to register upll clock\n"); |
| 437 | |
| 438 | if (s3c24xx_register_clock(&clk_f) < 0) |
| 439 | printk(KERN_ERR "failed to register cpu fclk\n"); |
| 440 | |
| 441 | if (s3c24xx_register_clock(&clk_h) < 0) |
| 442 | printk(KERN_ERR "failed to register cpu hclk\n"); |
| 443 | |
| 444 | if (s3c24xx_register_clock(&clk_p) < 0) |
| 445 | printk(KERN_ERR "failed to register cpu pclk\n"); |
| 446 | |
| 447 | return 0; |
| 448 | } |
| 449 | |