Merge branch 'for-next'
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-s5p64x0 / cpu.c
blobb8d02eb4cf30efeb5ed749eb755cd29d44461ed6
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.
9 */
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>
18 #include <linux/io.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>
28 #include <asm/irq.h>
30 #include <mach/hardware.h>
31 #include <mach/map.h>
32 #include <mach/regs-clock.h>
34 #include <plat/regs-serial.h>
35 #include <plat/cpu.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),
48 .length = SZ_4K,
49 .type = MT_DEVICE,
50 }, {
51 .virtual = (unsigned long)VA_VIC0,
52 .pfn = __phys_to_pfn(S5P64X0_PA_VIC0),
53 .length = SZ_16K,
54 .type = MT_DEVICE,
55 }, {
56 .virtual = (unsigned long)VA_VIC1,
57 .pfn = __phys_to_pfn(S5P64X0_PA_VIC1),
58 .length = SZ_16K,
59 .type = MT_DEVICE,
63 static struct map_desc s5p6440_iodesc[] __initdata = {
65 .virtual = (unsigned long)S3C_VA_UART,
66 .pfn = __phys_to_pfn(S5P6440_PA_UART(0)),
67 .length = SZ_4K,
68 .type = MT_DEVICE,
72 static struct map_desc s5p6450_iodesc[] __initdata = {
74 .virtual = (unsigned long)S3C_VA_UART,
75 .pfn = __phys_to_pfn(S5P6450_PA_UART(0)),
76 .length = SZ_512K,
77 .type = MT_DEVICE,
78 }, {
79 .virtual = (unsigned long)S3C_VA_UART + SZ_512K,
80 .pfn = __phys_to_pfn(S5P6450_PA_UART(5)),
81 .length = SZ_4K,
82 .type = MT_DEVICE,
86 static void s5p64x0_idle(void)
88 unsigned long val;
90 if (!need_resched()) {
91 val = __raw_readl(S5P64X0_PWR_CFG);
92 val &= ~(0x3 << 5);
93 val |= (0x1 << 5);
94 __raw_writel(val, S5P64X0_PWR_CFG);
96 cpu_do_idle();
98 local_irq_enable();
102 * s5p64x0_map_io
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(s5p6440_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();
152 * s5p64x0_init_irq
154 * register the CPU interrupts
157 void __init s5p6440_init_irq(void)
159 /* S5P6440 supports 2 VIC */
160 u32 vic[2];
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]
166 vic[0] = 0xff800ae7;
167 vic[1] = 0xffbf23e5;
169 s5p_init_irq(vic, ARRAY_SIZE(vic));
172 void __init s5p6450_init_irq(void)
174 /* S5P6450 supports only 2 VIC */
175 u32 vic[2];
178 * VIC0 is missing IRQ_VIC0[(13-15), (21-22)]
179 * VIC1 is missing IRQ VIC1[12, 14, 23]
181 vic[0] = 0xff9f1fff;
182 vic[1] = 0xff7fafff;
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);