2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * Copyright 2009 Samsung Electronics Co.
6 * Byungho Min <bhmin@samsung.com>
8 * Common Codes for S5PC100
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/interrupt.h>
18 #include <linux/list.h>
19 #include <linux/timer.h>
20 #include <linux/init.h>
21 #include <linux/clk.h>
23 #include <linux/device.h>
24 #include <linux/serial_core.h>
25 #include <linux/platform_device.h>
26 #include <linux/sched.h>
27 #include <linux/reboot.h>
30 #include <asm/proc-fns.h>
31 #include <asm/system_misc.h>
32 #include <asm/mach/arch.h>
33 #include <asm/mach/map.h>
34 #include <asm/mach/irq.h>
37 #include <mach/hardware.h>
38 #include <mach/regs-clock.h>
41 #include <plat/devs.h>
42 #include <plat/clock.h>
43 #include <plat/sdhci.h>
44 #include <plat/adc-core.h>
45 #include <plat/ata-core.h>
46 #include <plat/fb-core.h>
47 #include <plat/iic-core.h>
48 #include <plat/onenand-core.h>
49 #include <plat/spi-core.h>
50 #include <plat/regs-serial.h>
51 #include <plat/watchdog-reset.h>
55 static const char name_s5pc100
[] = "S5PC100";
57 static struct cpu_table cpu_ids
[] __initdata
= {
59 .idcode
= S5PC100_CPU_ID
,
60 .idmask
= S5PC100_CPU_MASK
,
61 .map_io
= s5pc100_map_io
,
62 .init_clocks
= s5pc100_init_clocks
,
63 .init_uarts
= s5pc100_init_uarts
,
69 /* Initial IO mappings */
71 static struct map_desc s5pc100_iodesc
[] __initdata
= {
73 .virtual = (unsigned long)S5P_VA_CHIPID
,
74 .pfn
= __phys_to_pfn(S5PC100_PA_CHIPID
),
78 .virtual = (unsigned long)S3C_VA_SYS
,
79 .pfn
= __phys_to_pfn(S5PC100_PA_SYSCON
),
83 .virtual = (unsigned long)S3C_VA_TIMER
,
84 .pfn
= __phys_to_pfn(S5PC100_PA_TIMER
),
88 .virtual = (unsigned long)S3C_VA_WATCHDOG
,
89 .pfn
= __phys_to_pfn(S5PC100_PA_WATCHDOG
),
93 .virtual = (unsigned long)S5P_VA_SROMC
,
94 .pfn
= __phys_to_pfn(S5PC100_PA_SROMC
),
98 .virtual = (unsigned long)S5P_VA_SYSTIMER
,
99 .pfn
= __phys_to_pfn(S5PC100_PA_SYSTIMER
),
103 .virtual = (unsigned long)S5P_VA_GPIO
,
104 .pfn
= __phys_to_pfn(S5PC100_PA_GPIO
),
108 .virtual = (unsigned long)VA_VIC0
,
109 .pfn
= __phys_to_pfn(S5PC100_PA_VIC0
),
113 .virtual = (unsigned long)VA_VIC1
,
114 .pfn
= __phys_to_pfn(S5PC100_PA_VIC1
),
118 .virtual = (unsigned long)VA_VIC2
,
119 .pfn
= __phys_to_pfn(S5PC100_PA_VIC2
),
123 .virtual = (unsigned long)S3C_VA_UART
,
124 .pfn
= __phys_to_pfn(S3C_PA_UART
),
128 .virtual = (unsigned long)S5PC100_VA_OTHERS
,
129 .pfn
= __phys_to_pfn(S5PC100_PA_OTHERS
),
138 * register the standard CPU IO areas
141 void __init
s5pc100_init_io(struct map_desc
*mach_desc
, int size
)
143 /* initialize the io descriptors we need for initialization */
144 iotable_init(s5pc100_iodesc
, ARRAY_SIZE(s5pc100_iodesc
));
146 iotable_init(mach_desc
, size
);
148 /* detect cpu id and rev. */
149 s5p_init_cpu(S5P_VA_CHIPID
);
151 s3c_init_cpu(samsung_cpu_id
, cpu_ids
, ARRAY_SIZE(cpu_ids
));
154 void __init
s5pc100_map_io(void)
156 /* initialise device information early */
157 s5pc100_default_sdhci0();
158 s5pc100_default_sdhci1();
159 s5pc100_default_sdhci2();
161 s3c_adc_setname("s3c64xx-adc");
163 /* the i2c devices are directly compatible with s3c2440 */
164 s3c_i2c0_setname("s3c2440-i2c");
165 s3c_i2c1_setname("s3c2440-i2c");
167 s3c_onenand_setname("s5pc100-onenand");
168 s3c_fb_setname("s5pc100-fb");
169 s3c_cfcon_setname("s5pc100-pata");
171 s3c64xx_spi_setname("s5pc100-spi");
174 void __init
s5pc100_init_clocks(int xtal
)
176 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
178 s3c24xx_register_baseclocks(xtal
);
179 s5p_register_clocks(xtal
);
180 s5pc100_register_clocks();
181 s5pc100_setup_clocks();
182 samsung_wdt_reset_init(S3C_VA_WATCHDOG
);
185 void __init
s5pc100_init_irq(void)
187 u32 vic
[] = {~0, ~0, ~0};
189 /* VIC0, VIC1, and VIC2 are fully populated. */
190 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
193 static struct bus_type s5pc100_subsys
= {
194 .name
= "s5pc100-core",
195 .dev_name
= "s5pc100-core",
198 static struct device s5pc100_dev
= {
199 .bus
= &s5pc100_subsys
,
202 static int __init
s5pc100_core_init(void)
204 return subsys_system_register(&s5pc100_subsys
, NULL
);
206 core_initcall(s5pc100_core_init
);
208 int __init
s5pc100_init(void)
210 printk(KERN_INFO
"S5PC100: Initializing architecture\n");
211 return device_register(&s5pc100_dev
);
214 /* uart registration process */
216 void __init
s5pc100_init_uarts(struct s3c2410_uartcfg
*cfg
, int no
)
218 s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources
, cfg
, no
);
221 void s5pc100_restart(enum reboot_mode mode
, const char *cmd
)
223 if (mode
!= REBOOT_SOFT
)