blob: 80eacca4682a326d39e60da2e8fcca40155e269f [file] [log] [blame]
Ben Dooksadbefaa2008-10-21 14:06:54 +01001/* linux/arch/arm/plat-s3c24xx/clock.c
2 *
Ben Dooks50f430e2009-11-13 22:54:12 +00003 * Copyright 2004-2005 Simtec Electronics
Ben Dooksadbefaa2008-10-21 14:06:54 +01004 * 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>
Kay Sieversedbaa602011-12-21 16:26:03 -080036#include <linux/device.h>
Ben Dooksadbefaa2008-10-21 14:06:54 +010037#include <linux/interrupt.h>
38#include <linux/ioport.h>
39#include <linux/clk.h>
40#include <linux/spinlock.h>
Ben Dooksadbefaa2008-10-21 14:06:54 +010041#include <linux/io.h>
Amit Daniel Kachhap436c3872011-01-12 13:40:04 +090042#if defined(CONFIG_DEBUG_FS)
43#include <linux/debugfs.h>
44#endif
Ben Dooksadbefaa2008-10-21 14:06:54 +010045
46#include <mach/hardware.h>
47#include <asm/irq.h>
48
49#include <plat/cpu-freq.h>
50
51#include <plat/clock.h>
52#include <plat/cpu.h>
53
Marek Szyprowski7cf4b482010-10-07 17:19:10 +090054#include <linux/serial_core.h>
55#include <plat/regs-serial.h> /* for s3c24xx_uart_devs */
56
Ben Dooksadbefaa2008-10-21 14:06:54 +010057/* clock information */
58
59static LIST_HEAD(clocks);
60
61/* We originally used an mutex here, but some contexts (see resume)
62 * are calling functions such as clk_set_parent() with IRQs disabled
63 * causing an BUG to be triggered.
64 */
65DEFINE_SPINLOCK(clocks_lock);
66
Marek Szyprowskicaf27302011-09-05 20:10:06 +090067/* Global watchdog clock used by arch_wtd_reset() callback */
68struct clk *s3c2410_wdtclk;
69static int __init s3c_wdt_reset_init(void)
70{
71 s3c2410_wdtclk = clk_get(NULL, "watchdog");
72 if (IS_ERR(s3c2410_wdtclk))
73 printk(KERN_WARNING "%s: warning: cannot get watchdog clock\n", __func__);
74 return 0;
75}
76arch_initcall(s3c_wdt_reset_init);
77
Ben Dooksadbefaa2008-10-21 14:06:54 +010078/* enable and disable calls for use with the clk struct */
79
80static int clk_null_enable(struct clk *clk, int enable)
81{
82 return 0;
83}
84
Ben Dooksadbefaa2008-10-21 14:06:54 +010085int clk_enable(struct clk *clk)
86{
Minho Ban0cdf3af2012-01-20 11:03:07 +090087 unsigned long flags;
88
Ben Dooksadbefaa2008-10-21 14:06:54 +010089 if (IS_ERR(clk) || clk == NULL)
90 return -EINVAL;
91
92 clk_enable(clk->parent);
93
Minho Ban0cdf3af2012-01-20 11:03:07 +090094 spin_lock_irqsave(&clocks_lock, flags);
Ben Dooksadbefaa2008-10-21 14:06:54 +010095
96 if ((clk->usage++) == 0)
97 (clk->enable)(clk, 1);
98
Minho Ban0cdf3af2012-01-20 11:03:07 +090099 spin_unlock_irqrestore(&clocks_lock, flags);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100100 return 0;
101}
102
103void clk_disable(struct clk *clk)
104{
Minho Ban0cdf3af2012-01-20 11:03:07 +0900105 unsigned long flags;
106
Ben Dooksadbefaa2008-10-21 14:06:54 +0100107 if (IS_ERR(clk) || clk == NULL)
108 return;
109
Minho Ban0cdf3af2012-01-20 11:03:07 +0900110 spin_lock_irqsave(&clocks_lock, flags);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100111
112 if ((--clk->usage) == 0)
113 (clk->enable)(clk, 0);
114
Minho Ban0cdf3af2012-01-20 11:03:07 +0900115 spin_unlock_irqrestore(&clocks_lock, flags);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100116 clk_disable(clk->parent);
117}
118
119
120unsigned long clk_get_rate(struct clk *clk)
121{
122 if (IS_ERR(clk))
123 return 0;
124
125 if (clk->rate != 0)
126 return clk->rate;
127
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000128 if (clk->ops != NULL && clk->ops->get_rate != NULL)
129 return (clk->ops->get_rate)(clk);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100130
131 if (clk->parent != NULL)
132 return clk_get_rate(clk->parent);
133
134 return clk->rate;
135}
136
137long clk_round_rate(struct clk *clk, unsigned long rate)
138{
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000139 if (!IS_ERR(clk) && clk->ops && clk->ops->round_rate)
140 return (clk->ops->round_rate)(clk, rate);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100141
142 return rate;
143}
144
145int clk_set_rate(struct clk *clk, unsigned long rate)
146{
147 int ret;
148
149 if (IS_ERR(clk))
150 return -EINVAL;
151
152 /* We do not default just do a clk->rate = rate as
153 * the clock may have been made this way by choice.
154 */
155
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000156 WARN_ON(clk->ops == NULL);
157 WARN_ON(clk->ops && clk->ops->set_rate == NULL);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100158
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000159 if (clk->ops == NULL || clk->ops->set_rate == NULL)
Ben Dooksadbefaa2008-10-21 14:06:54 +0100160 return -EINVAL;
161
162 spin_lock(&clocks_lock);
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000163 ret = (clk->ops->set_rate)(clk, rate);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100164 spin_unlock(&clocks_lock);
165
166 return ret;
167}
168
169struct clk *clk_get_parent(struct clk *clk)
170{
171 return clk->parent;
172}
173
174int clk_set_parent(struct clk *clk, struct clk *parent)
175{
Mandeep Singh Bainesdbc5e1e2012-08-27 09:42:37 -0700176 unsigned long flags;
Ben Dooksadbefaa2008-10-21 14:06:54 +0100177 int ret = 0;
178
179 if (IS_ERR(clk))
180 return -EINVAL;
181
Mandeep Singh Bainesdbc5e1e2012-08-27 09:42:37 -0700182 spin_lock_irqsave(&clocks_lock, flags);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100183
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000184 if (clk->ops && clk->ops->set_parent)
185 ret = (clk->ops->set_parent)(clk, parent);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100186
Mandeep Singh Bainesdbc5e1e2012-08-27 09:42:37 -0700187 spin_unlock_irqrestore(&clocks_lock, flags);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100188
189 return ret;
190}
191
Ben Dooksadbefaa2008-10-21 14:06:54 +0100192EXPORT_SYMBOL(clk_enable);
193EXPORT_SYMBOL(clk_disable);
194EXPORT_SYMBOL(clk_get_rate);
195EXPORT_SYMBOL(clk_round_rate);
196EXPORT_SYMBOL(clk_set_rate);
197EXPORT_SYMBOL(clk_get_parent);
198EXPORT_SYMBOL(clk_set_parent);
199
200/* base clocks */
201
Kukjin Kimed276842010-01-14 12:50:23 +0900202int clk_default_setrate(struct clk *clk, unsigned long rate)
Ben Dooksadbefaa2008-10-21 14:06:54 +0100203{
204 clk->rate = rate;
205 return 0;
206}
207
Kukjin Kimed276842010-01-14 12:50:23 +0900208struct clk_ops clk_ops_def_setrate = {
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000209 .set_rate = clk_default_setrate,
210};
211
Ben Dooksadbefaa2008-10-21 14:06:54 +0100212struct clk clk_xtal = {
213 .name = "xtal",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100214 .rate = 0,
215 .parent = NULL,
216 .ctrlbit = 0,
217};
218
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100219struct clk clk_ext = {
220 .name = "ext",
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100221};
222
223struct clk clk_epll = {
224 .name = "epll",
Ben Dooks4b31d8b2008-10-21 14:07:00 +0100225};
226
Ben Dooksadbefaa2008-10-21 14:06:54 +0100227struct clk clk_mpll = {
228 .name = "mpll",
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000229 .ops = &clk_ops_def_setrate,
Ben Dooksadbefaa2008-10-21 14:06:54 +0100230};
231
232struct clk clk_upll = {
233 .name = "upll",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100234 .parent = NULL,
235 .ctrlbit = 0,
236};
237
238struct clk clk_f = {
239 .name = "fclk",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100240 .rate = 0,
241 .parent = &clk_mpll,
242 .ctrlbit = 0,
Ben Dooksadbefaa2008-10-21 14:06:54 +0100243};
244
245struct clk clk_h = {
246 .name = "hclk",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100247 .rate = 0,
248 .parent = NULL,
249 .ctrlbit = 0,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000250 .ops = &clk_ops_def_setrate,
Ben Dooksadbefaa2008-10-21 14:06:54 +0100251};
252
253struct clk clk_p = {
254 .name = "pclk",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100255 .rate = 0,
256 .parent = NULL,
257 .ctrlbit = 0,
Ben Dooksb3bf41b2009-12-01 01:24:37 +0000258 .ops = &clk_ops_def_setrate,
Ben Dooksadbefaa2008-10-21 14:06:54 +0100259};
260
261struct clk clk_usb_bus = {
262 .name = "usb-bus",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100263 .rate = 0,
264 .parent = &clk_upll,
265};
266
267
Ben Dooksadbefaa2008-10-21 14:06:54 +0100268struct clk s3c24xx_uclk = {
269 .name = "uclk",
Ben Dooksadbefaa2008-10-21 14:06:54 +0100270};
271
272/* initialise the clock system */
273
Ben Dooks8428d472010-01-25 10:44:10 +0900274/**
275 * s3c24xx_register_clock() - register a clock
276 * @clk: The clock to register
277 *
278 * Add the specified clock to the list of clocks known by the system.
279 */
Ben Dooksadbefaa2008-10-21 14:06:54 +0100280int s3c24xx_register_clock(struct clk *clk)
281{
Ben Dooksadbefaa2008-10-21 14:06:54 +0100282 if (clk->enable == NULL)
283 clk->enable = clk_null_enable;
284
Thomas Abrahamf86c6662011-06-14 19:12:26 +0900285 /* fill up the clk_lookup structure and register it*/
286 clk->lookup.dev_id = clk->devname;
287 clk->lookup.con_id = clk->name;
288 clk->lookup.clk = clk;
289 clkdev_add(&clk->lookup);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100290
291 return 0;
292}
293
Ben Dooks8428d472010-01-25 10:44:10 +0900294/**
295 * s3c24xx_register_clocks() - register an array of clock pointers
296 * @clks: Pointer to an array of struct clk pointers
297 * @nr_clks: The number of clocks in the @clks array.
298 *
299 * Call s3c24xx_register_clock() for all the clock pointers contained
300 * in the @clks list. Returns the number of failures.
301 */
Ben Dooksadbefaa2008-10-21 14:06:54 +0100302int s3c24xx_register_clocks(struct clk **clks, int nr_clks)
303{
304 int fails = 0;
305
306 for (; nr_clks > 0; nr_clks--, clks++) {
Ben Dooks50ee2d32010-01-25 10:46:51 +0900307 if (s3c24xx_register_clock(*clks) < 0) {
308 struct clk *clk = *clks;
309 printk(KERN_ERR "%s: failed to register %p: %s\n",
310 __func__, clk, clk->name);
Ben Dooksadbefaa2008-10-21 14:06:54 +0100311 fails++;
Ben Dooks50ee2d32010-01-25 10:46:51 +0900312 }
Ben Dooksadbefaa2008-10-21 14:06:54 +0100313 }
314
315 return fails;
316}
317
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900318/**
319 * s3c_register_clocks() - register an array of clocks
320 * @clkp: Pointer to the first clock in the array.
321 * @nr_clks: Number of clocks to register.
322 *
323 * Call s3c24xx_register_clock() on the @clkp array given, printing an
324 * error if it fails to register the clock (unlikely).
325 */
Ben Dooksab5d97d2010-01-25 10:39:23 +0900326void __init s3c_register_clocks(struct clk *clkp, int nr_clks)
Ben Dooks1d9f13c2010-01-06 01:21:38 +0900327{
328 int ret;
329
330 for (; nr_clks > 0; nr_clks--, clkp++) {
331 ret = s3c24xx_register_clock(clkp);
332
333 if (ret < 0) {
334 printk(KERN_ERR "Failed to register clock %s (%d)\n",
335 clkp->name, ret);
336 }
337 }
338}
339
Ben Dooks4e046912010-04-28 12:58:13 +0900340/**
341 * s3c_disable_clocks() - disable an array of clocks
342 * @clkp: Pointer to the first clock in the array.
343 * @nr_clks: Number of clocks to register.
344 *
345 * for internal use only at initialisation time. disable the clocks in the
346 * @clkp array.
347 */
348
349void __init s3c_disable_clocks(struct clk *clkp, int nr_clks)
350{
351 for (; nr_clks > 0; nr_clks--, clkp++)
352 (clkp->enable)(clkp, 0);
353}
354
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200355/* initialise all the clocks */
Ben Dooksadbefaa2008-10-21 14:06:54 +0100356
357int __init s3c24xx_register_baseclocks(unsigned long xtal)
358{
Ben Dooks50f430e2009-11-13 22:54:12 +0000359 printk(KERN_INFO "S3C24XX Clocks, Copyright 2004 Simtec Electronics\n");
Ben Dooksadbefaa2008-10-21 14:06:54 +0100360
361 clk_xtal.rate = xtal;
362
363 /* register our clocks */
364
365 if (s3c24xx_register_clock(&clk_xtal) < 0)
366 printk(KERN_ERR "failed to register master xtal\n");
367
368 if (s3c24xx_register_clock(&clk_mpll) < 0)
369 printk(KERN_ERR "failed to register mpll clock\n");
370
371 if (s3c24xx_register_clock(&clk_upll) < 0)
372 printk(KERN_ERR "failed to register upll clock\n");
373
374 if (s3c24xx_register_clock(&clk_f) < 0)
375 printk(KERN_ERR "failed to register cpu fclk\n");
376
377 if (s3c24xx_register_clock(&clk_h) < 0)
378 printk(KERN_ERR "failed to register cpu hclk\n");
379
380 if (s3c24xx_register_clock(&clk_p) < 0)
381 printk(KERN_ERR "failed to register cpu pclk\n");
382
383 return 0;
384}
385
Amit Daniel Kachhap436c3872011-01-12 13:40:04 +0900386#if defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS)
387/* debugfs support to trace clock tree hierarchy and attributes */
388
389static struct dentry *clk_debugfs_root;
390
391static int clk_debugfs_register_one(struct clk *c)
392{
393 int err;
Al Viro12520c42011-07-16 12:37:57 -0400394 struct dentry *d;
Amit Daniel Kachhap436c3872011-01-12 13:40:04 +0900395 struct clk *pa = c->parent;
396 char s[255];
397 char *p = s;
398
Thomas Abrahamf86c6662011-06-14 19:12:26 +0900399 p += sprintf(p, "%s", c->devname);
Amit Daniel Kachhap436c3872011-01-12 13:40:04 +0900400
401 d = debugfs_create_dir(s, pa ? pa->dent : clk_debugfs_root);
402 if (!d)
403 return -ENOMEM;
404
405 c->dent = d;
406
407 d = debugfs_create_u8("usecount", S_IRUGO, c->dent, (u8 *)&c->usage);
408 if (!d) {
409 err = -ENOMEM;
410 goto err_out;
411 }
412
413 d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate);
414 if (!d) {
415 err = -ENOMEM;
416 goto err_out;
417 }
418 return 0;
419
420err_out:
Al Viro12520c42011-07-16 12:37:57 -0400421 debugfs_remove_recursive(c->dent);
Amit Daniel Kachhap436c3872011-01-12 13:40:04 +0900422 return err;
423}
424
425static int clk_debugfs_register(struct clk *c)
426{
427 int err;
428 struct clk *pa = c->parent;
429
430 if (pa && !pa->dent) {
431 err = clk_debugfs_register(pa);
432 if (err)
433 return err;
434 }
435
436 if (!c->dent) {
437 err = clk_debugfs_register_one(c);
438 if (err)
439 return err;
440 }
441 return 0;
442}
443
444static int __init clk_debugfs_init(void)
445{
446 struct clk *c;
447 struct dentry *d;
448 int err;
449
450 d = debugfs_create_dir("clock", NULL);
451 if (!d)
452 return -ENOMEM;
453 clk_debugfs_root = d;
454
455 list_for_each_entry(c, &clocks, list) {
456 err = clk_debugfs_register(c);
457 if (err)
458 goto err_out;
459 }
460 return 0;
461
462err_out:
463 debugfs_remove_recursive(clk_debugfs_root);
464 return err;
465}
466late_initcall(clk_debugfs_init);
467
468#endif /* defined(CONFIG_PM_DEBUG) && defined(CONFIG_DEBUG_FS) */