1 /* linux/arch/arm/mach-s5p64x0/cpu.c
3 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/interrupt.h>
14 #include <linux/list.h>
15 #include <linux/timer.h>
16 #include <linux/init.h>
17 #include <linux/clk.h>
19 #include <linux/sysdev.h>
20 #include <linux/serial_core.h>
21 #include <linux/platform_device.h>
22 #include <linux/sched.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26 #include <asm/mach/irq.h>
27 #include <asm/proc-fns.h>
30 #include <mach/hardware.h>
32 #include <mach/regs-clock.h>
34 #include <plat/regs-serial.h>
36 #include <plat/devs.h>
37 #include <plat/clock.h>
38 #include <plat/s5p6440.h>
39 #include <plat/s5p6450.h>
40 #include <plat/adc-core.h>
42 /* Initial IO mappings */
44 static struct map_desc s5p64x0_iodesc
[] __initdata
= {
46 .virtual = (unsigned long)S5P_VA_GPIO
,
47 .pfn
= __phys_to_pfn(S5P64X0_PA_GPIO
),
51 .virtual = (unsigned long)VA_VIC0
,
52 .pfn
= __phys_to_pfn(S5P64X0_PA_VIC0
),
56 .virtual = (unsigned long)VA_VIC1
,
57 .pfn
= __phys_to_pfn(S5P64X0_PA_VIC1
),
63 static struct map_desc s5p6440_iodesc
[] __initdata
= {
65 .virtual = (unsigned long)S3C_VA_UART
,
66 .pfn
= __phys_to_pfn(S5P6440_PA_UART(0)),
72 static struct map_desc s5p6450_iodesc
[] __initdata
= {
74 .virtual = (unsigned long)S3C_VA_UART
,
75 .pfn
= __phys_to_pfn(S5P6450_PA_UART(0)),
79 .virtual = (unsigned long)S3C_VA_UART
+ SZ_512K
,
80 .pfn
= __phys_to_pfn(S5P6450_PA_UART(5)),
86 static void s5p64x0_idle(void)
90 if (!need_resched()) {
91 val
= __raw_readl(S5P64X0_PWR_CFG
);
94 __raw_writel(val
, S5P64X0_PWR_CFG
);
104 * register the standard CPU IO areas
107 void __init
s5p6440_map_io(void)
109 /* initialize any device information early */
110 s3c_adc_setname("s3c64xx-adc");
112 iotable_init(s5p64x0_iodesc
, ARRAY_SIZE(s5p64x0_iodesc
));
113 iotable_init(s5p6440_iodesc
, ARRAY_SIZE(s5p6440_iodesc
));
116 void __init
s5p6450_map_io(void)
118 /* initialize any device information early */
119 s3c_adc_setname("s3c64xx-adc");
121 iotable_init(s5p64x0_iodesc
, ARRAY_SIZE(s5p64x0_iodesc
));
122 iotable_init(s5p6450_iodesc
, ARRAY_SIZE(s5p6450_iodesc
));
126 * s5p64x0_init_clocks
128 * register and setup the CPU clocks
131 void __init
s5p6440_init_clocks(int xtal
)
133 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
135 s3c24xx_register_baseclocks(xtal
);
136 s5p_register_clocks(xtal
);
137 s5p6440_register_clocks();
138 s5p6440_setup_clocks();
141 void __init
s5p6450_init_clocks(int xtal
)
143 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
145 s3c24xx_register_baseclocks(xtal
);
146 s5p_register_clocks(xtal
);
147 s5p6450_register_clocks();
148 s5p6450_setup_clocks();
154 * register the CPU interrupts
157 void __init
s5p6440_init_irq(void)
159 /* S5P6440 supports 2 VIC */
163 * VIC0 is missing IRQ_VIC0[3, 4, 8, 10, (12-22)]
164 * VIC1 is missing IRQ VIC1[1, 3, 4, 10, 11, 12, 14, 15, 22]
169 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
172 void __init
s5p6450_init_irq(void)
174 /* S5P6450 supports only 2 VIC */
178 * VIC0 is missing IRQ_VIC0[(13-15), (21-22)]
179 * VIC1 is missing IRQ VIC1[12, 14, 23]
184 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
187 struct sysdev_class s5p64x0_sysclass
= {
188 .name
= "s5p64x0-core",
191 static struct sys_device s5p64x0_sysdev
= {
192 .cls
= &s5p64x0_sysclass
,
195 static int __init
s5p64x0_core_init(void)
197 return sysdev_class_register(&s5p64x0_sysclass
);
199 core_initcall(s5p64x0_core_init
);
201 int __init
s5p64x0_init(void)
203 printk(KERN_INFO
"S5P64X0(S5P6440/S5P6450): Initializing architecture\n");
205 /* set idle function */
206 pm_idle
= s5p64x0_idle
;
208 return sysdev_register(&s5p64x0_sysdev
);