1 /* linux/arch/arm/plat-s3c24xx/s3c244x.c
3 * Copyright (c) 2004-2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * Samsung S3C2440 and S3C2442 Mobile CPU support (not S3C2443)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/interrupt.h>
16 #include <linux/list.h>
17 #include <linux/timer.h>
18 #include <linux/init.h>
19 #include <linux/serial_core.h>
20 #include <linux/platform_device.h>
21 #include <linux/sysdev.h>
22 #include <linux/clk.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26 #include <asm/mach/irq.h>
28 #include <asm/hardware.h>
32 #include <asm/arch/regs-clock.h>
33 #include <asm/plat-s3c/regs-serial.h>
34 #include <asm/arch/regs-gpio.h>
35 #include <asm/arch/regs-gpioj.h>
36 #include <asm/arch/regs-dsc.h>
38 #include <asm/plat-s3c24xx/s3c2410.h>
39 #include <asm/plat-s3c24xx/s3c2440.h>
41 #include <asm/plat-s3c24xx/clock.h>
42 #include <asm/plat-s3c24xx/devs.h>
43 #include <asm/plat-s3c24xx/cpu.h>
44 #include <asm/plat-s3c24xx/pm.h>
46 static struct map_desc s3c244x_iodesc
[] __initdata
= {
52 /* uart initialisation */
54 void __init
s3c244x_init_uarts(struct s3c2410_uartcfg
*cfg
, int no
)
56 s3c24xx_init_uartdevs("s3c2440-uart", s3c2410_uart_resources
, cfg
, no
);
59 void __init
s3c244x_map_io(struct map_desc
*mach_desc
, int size
)
61 /* register our io-tables */
63 iotable_init(s3c244x_iodesc
, ARRAY_SIZE(s3c244x_iodesc
));
64 iotable_init(mach_desc
, size
);
66 /* rename any peripherals used differing from the s3c2410 */
68 s3c_device_sdi
.name
= "s3c2440-sdi";
69 s3c_device_i2c
.name
= "s3c2440-i2c";
70 s3c_device_nand
.name
= "s3c2440-nand";
71 s3c_device_usbgadget
.name
= "s3c2440-usbgadget";
74 void __init
s3c244x_init_clocks(int xtal
)
78 unsigned long hclk
, fclk
, pclk
;
81 /* now we've got our machine bits initialised, work out what
84 fclk
= s3c2410_get_pll(__raw_readl(S3C2410_MPLLCON
), xtal
) * 2;
86 clkdiv
= __raw_readl(S3C2410_CLKDIVN
);
87 camdiv
= __raw_readl(S3C2440_CAMDIVN
);
89 /* work out clock scalings */
91 switch (clkdiv
& S3C2440_CLKDIVN_HDIVN_MASK
) {
92 case S3C2440_CLKDIVN_HDIVN_1
:
96 case S3C2440_CLKDIVN_HDIVN_2
:
100 case S3C2440_CLKDIVN_HDIVN_4_8
:
101 hdiv
= (camdiv
& S3C2440_CAMDIVN_HCLK4_HALF
) ? 8 : 4;
104 case S3C2440_CLKDIVN_HDIVN_3_6
:
105 hdiv
= (camdiv
& S3C2440_CAMDIVN_HCLK3_HALF
) ? 6 : 3;
110 pclk
= hclk
/ ((clkdiv
& S3C2440_CLKDIVN_PDIVN
)? 2:1);
112 /* print brief summary of clocks, etc */
114 printk("S3C244X: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n",
115 print_mhz(fclk
), print_mhz(hclk
), print_mhz(pclk
));
117 /* initialise the clocks here, to allow other things like the
118 * console to use them, and to add new ones after the initialisation
121 s3c24xx_setup_clocks(xtal
, fclk
, hclk
, pclk
);
122 s3c2410_baseclk_add();
127 static struct sleep_save s3c244x_sleep
[] = {
128 SAVE_ITEM(S3C2440_DSC0
),
129 SAVE_ITEM(S3C2440_DSC1
),
130 SAVE_ITEM(S3C2440_GPJDAT
),
131 SAVE_ITEM(S3C2440_GPJCON
),
132 SAVE_ITEM(S3C2440_GPJUP
)
135 static int s3c244x_suspend(struct sys_device
*dev
, pm_message_t state
)
137 s3c2410_pm_do_save(s3c244x_sleep
, ARRAY_SIZE(s3c244x_sleep
));
141 static int s3c244x_resume(struct sys_device
*dev
)
143 s3c2410_pm_do_restore(s3c244x_sleep
, ARRAY_SIZE(s3c244x_sleep
));
148 #define s3c244x_suspend NULL
149 #define s3c244x_resume NULL
152 /* Since the S3C2442 and S3C2440 share items, put both sysclasses here */
154 struct sysdev_class s3c2440_sysclass
= {
155 .name
= "s3c2440-core",
156 .suspend
= s3c244x_suspend
,
157 .resume
= s3c244x_resume
160 struct sysdev_class s3c2442_sysclass
= {
161 .name
= "s3c2442-core",
162 .suspend
= s3c244x_suspend
,
163 .resume
= s3c244x_resume
166 /* need to register class before we actually register the device, and
167 * we also need to ensure that it has been initialised before any of the
168 * drivers even try to use it (even if not on an s3c2440 based system)
169 * as a driver which may support both 2410 and 2440 may try and use it.
172 static int __init
s3c2440_core_init(void)
174 return sysdev_class_register(&s3c2440_sysclass
);
177 core_initcall(s3c2440_core_init
);
179 static int __init
s3c2442_core_init(void)
181 return sysdev_class_register(&s3c2442_sysclass
);
184 core_initcall(s3c2442_core_init
);