2 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * Common Codes for S5PV210
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/types.h>
14 #include <linux/interrupt.h>
15 #include <linux/list.h>
16 #include <linux/timer.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/clk.h>
21 #include <linux/device.h>
22 #include <linux/platform_device.h>
23 #include <linux/sched.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/serial_core.h>
27 #include <asm/proc-fns.h>
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
33 #include <mach/regs-clock.h>
36 #include <plat/clock.h>
37 #include <plat/devs.h>
38 #include <plat/sdhci.h>
39 #include <plat/adc-core.h>
40 #include <plat/ata-core.h>
41 #include <plat/fb-core.h>
42 #include <plat/fimc-core.h>
43 #include <plat/iic-core.h>
44 #include <plat/keypad-core.h>
45 #include <plat/tv-core.h>
46 #include <plat/spi-core.h>
47 #include <plat/regs-serial.h>
51 static const char name_s5pv210
[] = "S5PV210/S5PC110";
53 static struct cpu_table cpu_ids
[] __initdata
= {
55 .idcode
= S5PV210_CPU_ID
,
56 .idmask
= S5PV210_CPU_MASK
,
57 .map_io
= s5pv210_map_io
,
58 .init_clocks
= s5pv210_init_clocks
,
59 .init_uarts
= s5pv210_init_uarts
,
65 /* Initial IO mappings */
67 static struct map_desc s5pv210_iodesc
[] __initdata
= {
69 .virtual = (unsigned long)S5P_VA_CHIPID
,
70 .pfn
= __phys_to_pfn(S5PV210_PA_CHIPID
),
74 .virtual = (unsigned long)S3C_VA_SYS
,
75 .pfn
= __phys_to_pfn(S5PV210_PA_SYSCON
),
79 .virtual = (unsigned long)S3C_VA_TIMER
,
80 .pfn
= __phys_to_pfn(S5PV210_PA_TIMER
),
84 .virtual = (unsigned long)S3C_VA_WATCHDOG
,
85 .pfn
= __phys_to_pfn(S5PV210_PA_WATCHDOG
),
89 .virtual = (unsigned long)S5P_VA_SROMC
,
90 .pfn
= __phys_to_pfn(S5PV210_PA_SROMC
),
94 .virtual = (unsigned long)S5P_VA_SYSTIMER
,
95 .pfn
= __phys_to_pfn(S5PV210_PA_SYSTIMER
),
99 .virtual = (unsigned long)S5P_VA_GPIO
,
100 .pfn
= __phys_to_pfn(S5PV210_PA_GPIO
),
104 .virtual = (unsigned long)VA_VIC0
,
105 .pfn
= __phys_to_pfn(S5PV210_PA_VIC0
),
109 .virtual = (unsigned long)VA_VIC1
,
110 .pfn
= __phys_to_pfn(S5PV210_PA_VIC1
),
114 .virtual = (unsigned long)VA_VIC2
,
115 .pfn
= __phys_to_pfn(S5PV210_PA_VIC2
),
119 .virtual = (unsigned long)VA_VIC3
,
120 .pfn
= __phys_to_pfn(S5PV210_PA_VIC3
),
124 .virtual = (unsigned long)S3C_VA_UART
,
125 .pfn
= __phys_to_pfn(S3C_PA_UART
),
129 .virtual = (unsigned long)S5P_VA_DMC0
,
130 .pfn
= __phys_to_pfn(S5PV210_PA_DMC0
),
134 .virtual = (unsigned long)S5P_VA_DMC1
,
135 .pfn
= __phys_to_pfn(S5PV210_PA_DMC1
),
139 .virtual = (unsigned long)S3C_VA_USB_HSPHY
,
140 .pfn
=__phys_to_pfn(S5PV210_PA_HSPHY
),
146 void s5pv210_restart(enum reboot_mode mode
, const char *cmd
)
148 __raw_writel(0x1, S5P_SWRESET
);
154 * register the standard cpu IO areas
157 void __init
s5pv210_init_io(struct map_desc
*mach_desc
, int size
)
159 /* initialize the io descriptors we need for initialization */
160 iotable_init(s5pv210_iodesc
, ARRAY_SIZE(s5pv210_iodesc
));
162 iotable_init(mach_desc
, size
);
164 /* detect cpu id and rev. */
165 s5p_init_cpu(S5P_VA_CHIPID
);
167 s3c_init_cpu(samsung_cpu_id
, cpu_ids
, ARRAY_SIZE(cpu_ids
));
170 void __init
s5pv210_map_io(void)
172 /* initialise device information early */
173 s5pv210_default_sdhci0();
174 s5pv210_default_sdhci1();
175 s5pv210_default_sdhci2();
176 s5pv210_default_sdhci3();
178 s3c_adc_setname("samsung-adc-v3");
180 s3c_cfcon_setname("s5pv210-pata");
182 s3c_fimc_setname(0, "s5pv210-fimc");
183 s3c_fimc_setname(1, "s5pv210-fimc");
184 s3c_fimc_setname(2, "s5pv210-fimc");
186 /* the i2c devices are directly compatible with s3c2440 */
187 s3c_i2c0_setname("s3c2440-i2c");
188 s3c_i2c1_setname("s3c2440-i2c");
189 s3c_i2c2_setname("s3c2440-i2c");
191 s3c_fb_setname("s5pv210-fb");
193 /* Use s5pv210-keypad instead of samsung-keypad */
194 samsung_keypad_setname("s5pv210-keypad");
196 /* setup TV devices */
197 s5p_hdmi_setname("s5pv210-hdmi");
199 s3c64xx_spi_setname("s5pv210-spi");
202 void __init
s5pv210_init_clocks(int xtal
)
204 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
206 s3c24xx_register_baseclocks(xtal
);
207 s5p_register_clocks(xtal
);
208 s5pv210_register_clocks();
209 s5pv210_setup_clocks();
212 void __init
s5pv210_init_irq(void)
214 u32 vic
[4]; /* S5PV210 supports 4 VIC */
216 /* All the VICs are fully populated. */
222 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
225 struct bus_type s5pv210_subsys
= {
226 .name
= "s5pv210-core",
227 .dev_name
= "s5pv210-core",
230 static struct device s5pv210_dev
= {
231 .bus
= &s5pv210_subsys
,
234 static int __init
s5pv210_core_init(void)
236 return subsys_system_register(&s5pv210_subsys
, NULL
);
238 core_initcall(s5pv210_core_init
);
240 int __init
s5pv210_init(void)
242 printk(KERN_INFO
"S5PV210: Initializing architecture\n");
243 return device_register(&s5pv210_dev
);
246 /* uart registration process */
248 void __init
s5pv210_init_uarts(struct s3c2410_uartcfg
*cfg
, int no
)
250 s3c24xx_init_uartdevs("s5pv210-uart", s5p_uart_resources
, cfg
, no
);