1 /* linux/arch/arm/plat-s3c24xx/clock.c
3 * Copyright (c) 2004-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * S3C24XX Core clock control support
8 * Based on, and code from linux/arch/arm/mach-versatile/clock.c
10 ** Copyright (C) 2004 ARM Limited.
11 ** Written by Deep Blue Solutions Limited.
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.
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.
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
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/mutex.h>
41 #include <linux/delay.h>
43 #include <mach/hardware.h>
47 #include <mach/regs-clock.h>
48 #include <mach/regs-gpio.h>
50 #include <asm/plat-s3c24xx/clock.h>
51 #include <asm/plat-s3c24xx/cpu.h>
53 /* clock information */
55 static LIST_HEAD(clocks
);
57 DEFINE_MUTEX(clocks_mutex
);
59 /* enable and disable calls for use with the clk struct */
61 static int clk_null_enable(struct clk
*clk
, int enable
)
68 struct clk
*clk_get(struct device
*dev
, const char *id
)
71 struct clk
*clk
= ERR_PTR(-ENOENT
);
74 if (dev
== NULL
|| dev
->bus
!= &platform_bus_type
)
77 idno
= to_platform_device(dev
)->id
;
79 mutex_lock(&clocks_mutex
);
81 list_for_each_entry(p
, &clocks
, list
) {
83 strcmp(id
, p
->name
) == 0 &&
84 try_module_get(p
->owner
)) {
90 /* check for the case where a device was supplied, but the
91 * clock that was being searched for is not device specific */
94 list_for_each_entry(p
, &clocks
, list
) {
95 if (p
->id
== -1 && strcmp(id
, p
->name
) == 0 &&
96 try_module_get(p
->owner
)) {
103 mutex_unlock(&clocks_mutex
);
107 void clk_put(struct clk
*clk
)
109 module_put(clk
->owner
);
112 int clk_enable(struct clk
*clk
)
114 if (IS_ERR(clk
) || clk
== NULL
)
117 clk_enable(clk
->parent
);
119 mutex_lock(&clocks_mutex
);
121 if ((clk
->usage
++) == 0)
122 (clk
->enable
)(clk
, 1);
124 mutex_unlock(&clocks_mutex
);
128 void clk_disable(struct clk
*clk
)
130 if (IS_ERR(clk
) || clk
== NULL
)
133 mutex_lock(&clocks_mutex
);
135 if ((--clk
->usage
) == 0)
136 (clk
->enable
)(clk
, 0);
138 mutex_unlock(&clocks_mutex
);
139 clk_disable(clk
->parent
);
143 unsigned long clk_get_rate(struct clk
*clk
)
151 if (clk
->get_rate
!= NULL
)
152 return (clk
->get_rate
)(clk
);
154 if (clk
->parent
!= NULL
)
155 return clk_get_rate(clk
->parent
);
160 long clk_round_rate(struct clk
*clk
, unsigned long rate
)
162 if (!IS_ERR(clk
) && clk
->round_rate
)
163 return (clk
->round_rate
)(clk
, rate
);
168 int clk_set_rate(struct clk
*clk
, unsigned long rate
)
175 /* We do not default just do a clk->rate = rate as
176 * the clock may have been made this way by choice.
179 WARN_ON(clk
->set_rate
== NULL
);
181 if (clk
->set_rate
== NULL
)
184 mutex_lock(&clocks_mutex
);
185 ret
= (clk
->set_rate
)(clk
, rate
);
186 mutex_unlock(&clocks_mutex
);
191 struct clk
*clk_get_parent(struct clk
*clk
)
196 int clk_set_parent(struct clk
*clk
, struct clk
*parent
)
203 mutex_lock(&clocks_mutex
);
206 ret
= (clk
->set_parent
)(clk
, parent
);
208 mutex_unlock(&clocks_mutex
);
213 EXPORT_SYMBOL(clk_get
);
214 EXPORT_SYMBOL(clk_put
);
215 EXPORT_SYMBOL(clk_enable
);
216 EXPORT_SYMBOL(clk_disable
);
217 EXPORT_SYMBOL(clk_get_rate
);
218 EXPORT_SYMBOL(clk_round_rate
);
219 EXPORT_SYMBOL(clk_set_rate
);
220 EXPORT_SYMBOL(clk_get_parent
);
221 EXPORT_SYMBOL(clk_set_parent
);
225 static int clk_default_setrate(struct clk
*clk
, unsigned long rate
)
231 struct clk clk_xtal
= {
239 struct clk clk_mpll
= {
242 .set_rate
= clk_default_setrate
,
245 struct clk clk_upll
= {
258 .set_rate
= clk_default_setrate
,
267 .set_rate
= clk_default_setrate
,
276 .set_rate
= clk_default_setrate
,
279 struct clk clk_usb_bus
= {
286 /* clocks that could be registered by external code */
288 static int s3c24xx_dclk_enable(struct clk
*clk
, int enable
)
290 unsigned long dclkcon
= __raw_readl(S3C24XX_DCLKCON
);
293 dclkcon
|= clk
->ctrlbit
;
295 dclkcon
&= ~clk
->ctrlbit
;
297 __raw_writel(dclkcon
, S3C24XX_DCLKCON
);
302 static int s3c24xx_dclk_setparent(struct clk
*clk
, struct clk
*parent
)
304 unsigned long dclkcon
;
307 if (parent
== &clk_upll
)
309 else if (parent
== &clk_p
)
314 clk
->parent
= parent
;
316 dclkcon
= __raw_readl(S3C24XX_DCLKCON
);
318 if (clk
->ctrlbit
== S3C2410_DCLKCON_DCLK0EN
) {
320 dclkcon
|= S3C2410_DCLKCON_DCLK0_UCLK
;
322 dclkcon
&= ~S3C2410_DCLKCON_DCLK0_UCLK
;
325 dclkcon
|= S3C2410_DCLKCON_DCLK1_UCLK
;
327 dclkcon
&= ~S3C2410_DCLKCON_DCLK1_UCLK
;
330 __raw_writel(dclkcon
, S3C24XX_DCLKCON
);
335 static unsigned long s3c24xx_calc_div(struct clk
*clk
, unsigned long rate
)
339 if ((rate
== 0) || !clk
->parent
)
342 div
= clk_get_rate(clk
->parent
) / rate
;
351 static unsigned long s3c24xx_round_dclk_rate(struct clk
*clk
,
354 unsigned long div
= s3c24xx_calc_div(clk
, rate
);
359 return clk_get_rate(clk
->parent
) / div
;
362 static int s3c24xx_set_dclk_rate(struct clk
*clk
, unsigned long rate
)
364 unsigned long mask
, data
, div
= s3c24xx_calc_div(clk
, rate
);
369 if (clk
== &s3c24xx_dclk0
) {
370 mask
= S3C2410_DCLKCON_DCLK0_DIV_MASK
|
371 S3C2410_DCLKCON_DCLK0_CMP_MASK
;
372 data
= S3C2410_DCLKCON_DCLK0_DIV(div
) |
373 S3C2410_DCLKCON_DCLK0_CMP((div
+ 1) / 2);
374 } else if (clk
== &s3c24xx_dclk1
) {
375 mask
= S3C2410_DCLKCON_DCLK1_DIV_MASK
|
376 S3C2410_DCLKCON_DCLK1_CMP_MASK
;
377 data
= S3C2410_DCLKCON_DCLK1_DIV(div
) |
378 S3C2410_DCLKCON_DCLK1_CMP((div
+ 1) / 2);
382 clk
->rate
= clk_get_rate(clk
->parent
) / div
;
383 __raw_writel(((__raw_readl(S3C24XX_DCLKCON
) & ~mask
) | data
),
388 static int s3c24xx_clkout_setparent(struct clk
*clk
, struct clk
*parent
)
391 unsigned long source
;
393 /* calculate the MISCCR setting for the clock */
395 if (parent
== &clk_xtal
)
396 source
= S3C2410_MISCCR_CLK0_MPLL
;
397 else if (parent
== &clk_upll
)
398 source
= S3C2410_MISCCR_CLK0_UPLL
;
399 else if (parent
== &clk_f
)
400 source
= S3C2410_MISCCR_CLK0_FCLK
;
401 else if (parent
== &clk_h
)
402 source
= S3C2410_MISCCR_CLK0_HCLK
;
403 else if (parent
== &clk_p
)
404 source
= S3C2410_MISCCR_CLK0_PCLK
;
405 else if (clk
== &s3c24xx_clkout0
&& parent
== &s3c24xx_dclk0
)
406 source
= S3C2410_MISCCR_CLK0_DCLK0
;
407 else if (clk
== &s3c24xx_clkout1
&& parent
== &s3c24xx_dclk1
)
408 source
= S3C2410_MISCCR_CLK0_DCLK0
;
412 clk
->parent
= parent
;
414 if (clk
== &s3c24xx_clkout0
)
415 mask
= S3C2410_MISCCR_CLK0_MASK
;
418 mask
= S3C2410_MISCCR_CLK1_MASK
;
421 s3c2410_modify_misccr(mask
, source
);
425 /* external clock definitions */
427 struct clk s3c24xx_dclk0
= {
430 .ctrlbit
= S3C2410_DCLKCON_DCLK0EN
,
431 .enable
= s3c24xx_dclk_enable
,
432 .set_parent
= s3c24xx_dclk_setparent
,
433 .set_rate
= s3c24xx_set_dclk_rate
,
434 .round_rate
= s3c24xx_round_dclk_rate
,
437 struct clk s3c24xx_dclk1
= {
440 .ctrlbit
= S3C2410_DCLKCON_DCLK1EN
,
441 .enable
= s3c24xx_dclk_enable
,
442 .set_parent
= s3c24xx_dclk_setparent
,
443 .set_rate
= s3c24xx_set_dclk_rate
,
444 .round_rate
= s3c24xx_round_dclk_rate
,
447 struct clk s3c24xx_clkout0
= {
450 .set_parent
= s3c24xx_clkout_setparent
,
453 struct clk s3c24xx_clkout1
= {
456 .set_parent
= s3c24xx_clkout_setparent
,
459 struct clk s3c24xx_uclk
= {
464 /* initialise the clock system */
466 int s3c24xx_register_clock(struct clk
*clk
)
468 clk
->owner
= THIS_MODULE
;
470 if (clk
->enable
== NULL
)
471 clk
->enable
= clk_null_enable
;
473 /* add to the list of available clocks */
475 mutex_lock(&clocks_mutex
);
476 list_add(&clk
->list
, &clocks
);
477 mutex_unlock(&clocks_mutex
);
482 int s3c24xx_register_clocks(struct clk
**clks
, int nr_clks
)
486 for (; nr_clks
> 0; nr_clks
--, clks
++) {
487 if (s3c24xx_register_clock(*clks
) < 0)
494 /* initalise all the clocks */
496 int __init
s3c24xx_setup_clocks(unsigned long xtal
,
501 printk(KERN_INFO
"S3C24XX Clocks, (c) 2004 Simtec Electronics\n");
503 /* initialise the main system clocks */
505 clk_xtal
.rate
= xtal
;
506 clk_upll
.rate
= s3c2410_get_pll(__raw_readl(S3C2410_UPLLCON
), xtal
);
508 clk_mpll
.rate
= fclk
;
513 /* assume uart clocks are correctly setup */
515 /* register our clocks */
517 if (s3c24xx_register_clock(&clk_xtal
) < 0)
518 printk(KERN_ERR
"failed to register master xtal\n");
520 if (s3c24xx_register_clock(&clk_mpll
) < 0)
521 printk(KERN_ERR
"failed to register mpll clock\n");
523 if (s3c24xx_register_clock(&clk_upll
) < 0)
524 printk(KERN_ERR
"failed to register upll clock\n");
526 if (s3c24xx_register_clock(&clk_f
) < 0)
527 printk(KERN_ERR
"failed to register cpu fclk\n");
529 if (s3c24xx_register_clock(&clk_h
) < 0)
530 printk(KERN_ERR
"failed to register cpu hclk\n");
532 if (s3c24xx_register_clock(&clk_p
) < 0)
533 printk(KERN_ERR
"failed to register cpu pclk\n");