2 * Copyright (c) 2006 Simtec Electronics
3 * Ben Dooks <ben@simtec.co.uk>
5 * S3C2410,S3C2440,S3C2442 Clock control support
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/list.h>
26 #include <linux/errno.h>
27 #include <linux/err.h>
28 #include <linux/device.h>
29 #include <linux/clk.h>
30 #include <linux/mutex.h>
31 #include <linux/delay.h>
32 #include <linux/serial_core.h>
35 #include <asm/mach/map.h>
37 #include <mach/hardware.h>
39 #include <plat/regs-serial.h>
40 #include <mach/regs-clock.h>
41 #include <mach/regs-gpio.h>
43 #include <plat/clock.h>
46 int s3c2410_clkcon_enable(struct clk
*clk
, int enable
)
48 unsigned int clocks
= clk
->ctrlbit
;
51 clkcon
= __raw_readl(S3C2410_CLKCON
);
58 /* ensure none of the special function bits set */
59 clkcon
&= ~(S3C2410_CLKCON_IDLE
|S3C2410_CLKCON_POWER
);
61 __raw_writel(clkcon
, S3C2410_CLKCON
);
66 static int s3c2410_upll_enable(struct clk
*clk
, int enable
)
68 unsigned long clkslow
= __raw_readl(S3C2410_CLKSLOW
);
69 unsigned long orig
= clkslow
;
72 clkslow
&= ~S3C2410_CLKSLOW_UCLK_OFF
;
74 clkslow
|= S3C2410_CLKSLOW_UCLK_OFF
;
76 __raw_writel(clkslow
, S3C2410_CLKSLOW
);
78 /* if we started the UPLL, then allow to settle */
80 if (enable
&& (orig
& S3C2410_CLKSLOW_UCLK_OFF
))
86 /* standard clock definitions */
88 static struct clk init_clocks_off
[] = {
92 .enable
= s3c2410_clkcon_enable
,
93 .ctrlbit
= S3C2410_CLKCON_NAND
,
97 .enable
= s3c2410_clkcon_enable
,
98 .ctrlbit
= S3C2410_CLKCON_SDI
,
102 .enable
= s3c2410_clkcon_enable
,
103 .ctrlbit
= S3C2410_CLKCON_ADC
,
107 .enable
= s3c2410_clkcon_enable
,
108 .ctrlbit
= S3C2410_CLKCON_IIC
,
112 .enable
= s3c2410_clkcon_enable
,
113 .ctrlbit
= S3C2410_CLKCON_IIS
,
117 .enable
= s3c2410_clkcon_enable
,
118 .ctrlbit
= S3C2410_CLKCON_SPI
,
122 static struct clk clk_lcd
= {
125 .enable
= s3c2410_clkcon_enable
,
126 .ctrlbit
= S3C2410_CLKCON_LCDC
,
129 static struct clk clk_gpio
= {
132 .enable
= s3c2410_clkcon_enable
,
133 .ctrlbit
= S3C2410_CLKCON_GPIO
,
136 static struct clk clk_usb_host
= {
139 .enable
= s3c2410_clkcon_enable
,
140 .ctrlbit
= S3C2410_CLKCON_USBH
,
143 static struct clk clk_usb_device
= {
144 .name
= "usb-device",
146 .enable
= s3c2410_clkcon_enable
,
147 .ctrlbit
= S3C2410_CLKCON_USBD
,
150 static struct clk clk_timers
= {
153 .enable
= s3c2410_clkcon_enable
,
154 .ctrlbit
= S3C2410_CLKCON_PWMT
,
157 struct clk s3c24xx_clk_uart0
= {
159 .devname
= "s3c2410-uart.0",
161 .enable
= s3c2410_clkcon_enable
,
162 .ctrlbit
= S3C2410_CLKCON_UART0
,
165 struct clk s3c24xx_clk_uart1
= {
167 .devname
= "s3c2410-uart.1",
169 .enable
= s3c2410_clkcon_enable
,
170 .ctrlbit
= S3C2410_CLKCON_UART1
,
173 struct clk s3c24xx_clk_uart2
= {
175 .devname
= "s3c2410-uart.2",
177 .enable
= s3c2410_clkcon_enable
,
178 .ctrlbit
= S3C2410_CLKCON_UART2
,
181 static struct clk clk_rtc
= {
184 .enable
= s3c2410_clkcon_enable
,
185 .ctrlbit
= S3C2410_CLKCON_RTC
,
188 static struct clk clk_watchdog
= {
194 static struct clk clk_usb_bus_host
= {
195 .name
= "usb-bus-host",
196 .parent
= &clk_usb_bus
,
199 static struct clk clk_usb_bus_gadget
= {
200 .name
= "usb-bus-gadget",
201 .parent
= &clk_usb_bus
,
204 static struct clk
*init_clocks
[] = {
219 /* s3c2410_baseclk_add()
221 * Add all the clocks used by the s3c2410 or compatible CPUs
222 * such as the S3C2440 and S3C2442.
224 * We cannot use a system device as we are needed before any
225 * of the init-calls that initialise the devices are actually
229 int __init
s3c2410_baseclk_add(void)
231 unsigned long clkslow
= __raw_readl(S3C2410_CLKSLOW
);
232 unsigned long clkcon
= __raw_readl(S3C2410_CLKCON
);
237 clk_upll
.enable
= s3c2410_upll_enable
;
239 if (s3c24xx_register_clock(&clk_usb_bus
) < 0)
240 printk(KERN_ERR
"failed to register usb bus clock\n");
242 /* register clocks from clock array */
244 for (ptr
= 0; ptr
< ARRAY_SIZE(init_clocks
); ptr
++) {
245 struct clk
*clkp
= init_clocks
[ptr
];
247 /* ensure that we note the clock state */
249 clkp
->usage
= clkcon
& clkp
->ctrlbit
? 1 : 0;
251 ret
= s3c24xx_register_clock(clkp
);
253 printk(KERN_ERR
"Failed to register clock %s (%d)\n",
258 /* We must be careful disabling the clocks we are not intending to
259 * be using at boot time, as subsystems such as the LCD which do
260 * their own DMA requests to the bus can cause the system to lockup
261 * if they where in the middle of requesting bus access.
263 * Disabling the LCD clock if the LCD is active is very dangerous,
264 * and therefore the bootloader should be careful to not enable
265 * the LCD clock if it is not needed.
268 /* install (and disable) the clocks we do not need immediately */
270 s3c_register_clocks(init_clocks_off
, ARRAY_SIZE(init_clocks_off
));
271 s3c_disable_clocks(init_clocks_off
, ARRAY_SIZE(init_clocks_off
));
273 /* show the clock-slow value */
275 xtal
= clk_get(NULL
, "xtal");
277 printk("CLOCK: Slow mode (%ld.%ld MHz), %s, MPLL %s, UPLL %s\n",
278 print_mhz(clk_get_rate(xtal
) /
279 ( 2 * S3C2410_CLKSLOW_GET_SLOWVAL(clkslow
))),
280 (clkslow
& S3C2410_CLKSLOW_SLOW
) ? "slow" : "fast",
281 (clkslow
& S3C2410_CLKSLOW_MPLL_OFF
) ? "off" : "on",
282 (clkslow
& S3C2410_CLKSLOW_UCLK_OFF
) ? "off" : "on");