blob: 26027a29b8a155e5e37b60f45e9da93cc60b8b6d [file] [log] [blame]
Kukjin Kim3fa754c2011-12-22 23:32:07 +01001/*
2 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
Kukjin Kim19a2c062010-08-31 16:30:51 +09003 * http://www.samsung.com
Kukjin Kim939d28a2010-02-24 16:40:29 +09004 *
Kukjin Kim3fa754c2011-12-22 23:32:07 +01005 * Common Codes for S5PV210
6 *
Kukjin Kim939d28a2010-02-24 16:40:29 +09007 * 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.
Kukjin Kim3fa754c2011-12-22 23:32:07 +010010 */
Kukjin Kim939d28a2010-02-24 16:40:29 +090011
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>
20#include <linux/io.h>
Kay Sievers4a858cf2011-12-21 16:01:38 -080021#include <linux/device.h>
Tomasz Figa1c161fd2013-04-12 21:17:22 +020022#include <clocksource/samsung_pwm.h>
Kukjin Kim939d28a2010-02-24 16:40:29 +090023#include <linux/platform_device.h>
SeungChull Suh4341f9b2010-10-02 12:48:12 +090024#include <linux/sched.h>
Jon Medhursta06a58a2011-08-04 14:39:20 +010025#include <linux/dma-mapping.h>
Kukjin Kim3fa754c2011-12-22 23:32:07 +010026#include <linux/serial_core.h>
Kukjin Kim939d28a2010-02-24 16:40:29 +090027
Kukjin Kim3fa754c2011-12-22 23:32:07 +010028#include <asm/proc-fns.h>
Kukjin Kim939d28a2010-02-24 16:40:29 +090029#include <asm/mach/arch.h>
30#include <asm/mach/map.h>
31#include <asm/mach/irq.h>
32
Kukjin Kim939d28a2010-02-24 16:40:29 +090033#include <mach/map.h>
34#include <mach/regs-clock.h>
35
36#include <plat/cpu.h>
Kukjin Kim939d28a2010-02-24 16:40:29 +090037#include <plat/clock.h>
Kukjin Kim3fa754c2011-12-22 23:32:07 +010038#include <plat/devs.h>
Kukjin Kim3fa754c2011-12-22 23:32:07 +010039#include <plat/sdhci.h>
Naveen Krishna Ch50e97692010-06-09 15:25:19 +053040#include <plat/adc-core.h>
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +090041#include <plat/ata-core.h>
Kukjin Kim3fa754c2011-12-22 23:32:07 +010042#include <plat/fb-core.h>
Sylwester Nawrocki33c14ff2010-08-05 18:16:31 +090043#include <plat/fimc-core.h>
Marek Szyprowskic8d833b2010-05-20 08:13:06 +020044#include <plat/iic-core.h>
Joonyoung Shime7d06282010-06-21 16:28:28 +090045#include <plat/keypad-core.h>
Tomasz Figa1c161fd2013-04-12 21:17:22 +020046#include <plat/pwm-core.h>
Tomasz Stanislawskifbf05562011-09-19 16:44:42 +090047#include <plat/tv-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090048#include <plat/spi-core.h>
Kukjin Kim3fa754c2011-12-22 23:32:07 +010049#include <plat/regs-serial.h>
50
51#include "common.h"
52
53static const char name_s5pv210[] = "S5PV210/S5PC110";
54
55static struct cpu_table cpu_ids[] __initdata = {
56 {
57 .idcode = S5PV210_CPU_ID,
58 .idmask = S5PV210_CPU_MASK,
59 .map_io = s5pv210_map_io,
60 .init_clocks = s5pv210_init_clocks,
61 .init_uarts = s5pv210_init_uarts,
62 .init = s5pv210_init,
63 .name = name_s5pv210,
64 },
65};
Kukjin Kim939d28a2010-02-24 16:40:29 +090066
67/* Initial IO mappings */
68
69static struct map_desc s5pv210_iodesc[] __initdata = {
70 {
Kukjin Kim3fa754c2011-12-22 23:32:07 +010071 .virtual = (unsigned long)S5P_VA_CHIPID,
72 .pfn = __phys_to_pfn(S5PV210_PA_CHIPID),
73 .length = SZ_4K,
74 .type = MT_DEVICE,
75 }, {
76 .virtual = (unsigned long)S3C_VA_SYS,
77 .pfn = __phys_to_pfn(S5PV210_PA_SYSCON),
78 .length = SZ_64K,
79 .type = MT_DEVICE,
80 }, {
81 .virtual = (unsigned long)S3C_VA_TIMER,
82 .pfn = __phys_to_pfn(S5PV210_PA_TIMER),
83 .length = SZ_16K,
84 .type = MT_DEVICE,
85 }, {
86 .virtual = (unsigned long)S3C_VA_WATCHDOG,
87 .pfn = __phys_to_pfn(S5PV210_PA_WATCHDOG),
88 .length = SZ_4K,
89 .type = MT_DEVICE,
90 }, {
91 .virtual = (unsigned long)S5P_VA_SROMC,
92 .pfn = __phys_to_pfn(S5PV210_PA_SROMC),
93 .length = SZ_4K,
94 .type = MT_DEVICE,
95 }, {
Kukjin Kim939d28a2010-02-24 16:40:29 +090096 .virtual = (unsigned long)S5P_VA_SYSTIMER,
97 .pfn = __phys_to_pfn(S5PV210_PA_SYSTIMER),
Kyungmin Parka203a132010-08-21 11:48:45 +090098 .length = SZ_4K,
Kukjin Kim939d28a2010-02-24 16:40:29 +090099 .type = MT_DEVICE,
100 }, {
Kukjin Kim19a2c062010-08-31 16:30:51 +0900101 .virtual = (unsigned long)S5P_VA_GPIO,
102 .pfn = __phys_to_pfn(S5PV210_PA_GPIO),
103 .length = SZ_4K,
104 .type = MT_DEVICE,
105 }, {
106 .virtual = (unsigned long)VA_VIC0,
107 .pfn = __phys_to_pfn(S5PV210_PA_VIC0),
108 .length = SZ_16K,
109 .type = MT_DEVICE,
110 }, {
111 .virtual = (unsigned long)VA_VIC1,
112 .pfn = __phys_to_pfn(S5PV210_PA_VIC1),
113 .length = SZ_16K,
114 .type = MT_DEVICE,
115 }, {
Kukjin Kim939d28a2010-02-24 16:40:29 +0900116 .virtual = (unsigned long)VA_VIC2,
117 .pfn = __phys_to_pfn(S5PV210_PA_VIC2),
118 .length = SZ_16K,
119 .type = MT_DEVICE,
120 }, {
121 .virtual = (unsigned long)VA_VIC3,
122 .pfn = __phys_to_pfn(S5PV210_PA_VIC3),
123 .length = SZ_16K,
124 .type = MT_DEVICE,
125 }, {
Kukjin Kim19a2c062010-08-31 16:30:51 +0900126 .virtual = (unsigned long)S3C_VA_UART,
127 .pfn = __phys_to_pfn(S3C_PA_UART),
128 .length = SZ_512K,
129 .type = MT_DEVICE,
130 }, {
Jaecheol Lee1d826d12010-09-15 15:57:37 +0900131 .virtual = (unsigned long)S5P_VA_DMC0,
132 .pfn = __phys_to_pfn(S5PV210_PA_DMC0),
133 .length = SZ_4K,
134 .type = MT_DEVICE,
135 }, {
136 .virtual = (unsigned long)S5P_VA_DMC1,
137 .pfn = __phys_to_pfn(S5PV210_PA_DMC1),
138 .length = SZ_4K,
139 .type = MT_DEVICE,
Marek Szyprowskica1931c2010-09-29 22:10:51 +0900140 }, {
141 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
142 .pfn =__phys_to_pfn(S5PV210_PA_HSPHY),
143 .length = SZ_4K,
144 .type = MT_DEVICE,
Kukjin Kim939d28a2010-02-24 16:40:29 +0900145 }
146};
147
Robin Holt7b6d8642013-07-08 16:01:40 -0700148void s5pv210_restart(enum reboot_mode mode, const char *cmd)
Jongpill Lee4550ee22010-07-23 21:39:15 +0900149{
150 __raw_writel(0x1, S5P_SWRESET);
151}
152
Tomasz Figa1c161fd2013-04-12 21:17:22 +0200153static struct samsung_pwm_variant s5pv210_pwm_variant = {
154 .bits = 32,
155 .div_base = 0,
156 .has_tint_cstat = true,
157 .tclk_mask = (1 << 5),
158};
159
Tomasz Figa42805062013-04-28 02:25:01 +0200160void __init samsung_set_timer_source(unsigned int event, unsigned int source)
161{
162 s5pv210_pwm_variant.output_mask = BIT(SAMSUNG_PWM_NUM) - 1;
163 s5pv210_pwm_variant.output_mask &= ~(BIT(event) | BIT(source));
164}
165
166void __init samsung_timer_init(void)
167{
168 unsigned int timer_irqs[SAMSUNG_PWM_NUM] = {
169 IRQ_TIMER0_VIC, IRQ_TIMER1_VIC, IRQ_TIMER2_VIC,
170 IRQ_TIMER3_VIC, IRQ_TIMER4_VIC,
171 };
172
173 samsung_pwm_clocksource_init(S3C_VA_TIMER,
174 timer_irqs, &s5pv210_pwm_variant);
175}
176
Kukjin Kim3fa754c2011-12-22 23:32:07 +0100177/*
178 * s5pv210_map_io
Kukjin Kim939d28a2010-02-24 16:40:29 +0900179 *
180 * register the standard cpu IO areas
Kukjin Kim3fa754c2011-12-22 23:32:07 +0100181 */
182
183void __init s5pv210_init_io(struct map_desc *mach_desc, int size)
184{
185 /* initialize the io descriptors we need for initialization */
186 iotable_init(s5pv210_iodesc, ARRAY_SIZE(s5pv210_iodesc));
187 if (mach_desc)
188 iotable_init(mach_desc, size);
189
190 /* detect cpu id and rev. */
191 s5p_init_cpu(S5P_VA_CHIPID);
192
193 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
Tomasz Figa1c161fd2013-04-12 21:17:22 +0200194
195 samsung_pwm_set_platdata(&s5pv210_pwm_variant);
Kukjin Kim3fa754c2011-12-22 23:32:07 +0100196}
Kukjin Kim939d28a2010-02-24 16:40:29 +0900197
198void __init s5pv210_map_io(void)
199{
Marek Szyprowskie6f66a92010-05-20 08:13:07 +0200200 /* initialise device information early */
201 s5pv210_default_sdhci0();
202 s5pv210_default_sdhci1();
203 s5pv210_default_sdhci2();
Hyuk Lee976a62f2010-06-14 10:18:56 +0900204 s5pv210_default_sdhci3();
Marek Szyprowskie6f66a92010-05-20 08:13:07 +0200205
MyungJoo Hama0428f32011-07-20 21:08:18 +0900206 s3c_adc_setname("samsung-adc-v3");
Naveen Krishna Ch50e97692010-06-09 15:25:19 +0530207
Abhilash Kesavan4b9a5ad2010-06-08 17:11:43 +0900208 s3c_cfcon_setname("s5pv210-pata");
209
Kukjin Kimd61bd772010-08-06 21:49:18 +0900210 s3c_fimc_setname(0, "s5pv210-fimc");
211 s3c_fimc_setname(1, "s5pv210-fimc");
212 s3c_fimc_setname(2, "s5pv210-fimc");
Kukjin Kim939d28a2010-02-24 16:40:29 +0900213
214 /* the i2c devices are directly compatible with s3c2440 */
215 s3c_i2c0_setname("s3c2440-i2c");
216 s3c_i2c1_setname("s3c2440-i2c");
217 s3c_i2c2_setname("s3c2440-i2c");
Pawel Osciakeb42b042010-08-10 18:02:37 -0700218
219 s3c_fb_setname("s5pv210-fb");
Linus Torvalds636d1742010-08-11 09:13:19 -0700220
Joonyoung Shime7d06282010-06-21 16:28:28 +0900221 /* Use s5pv210-keypad instead of samsung-keypad */
222 samsung_keypad_setname("s5pv210-keypad");
Tomasz Stanislawskifbf05562011-09-19 16:44:42 +0900223
224 /* setup TV devices */
225 s5p_hdmi_setname("s5pv210-hdmi");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900226
227 s3c64xx_spi_setname("s5pv210-spi");
Kukjin Kim939d28a2010-02-24 16:40:29 +0900228}
229
230void __init s5pv210_init_clocks(int xtal)
231{
232 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
233
234 s3c24xx_register_baseclocks(xtal);
235 s5p_register_clocks(xtal);
236 s5pv210_register_clocks();
237 s5pv210_setup_clocks();
238}
239
240void __init s5pv210_init_irq(void)
241{
242 u32 vic[4]; /* S5PV210 supports 4 VIC */
243
244 /* All the VICs are fully populated. */
245 vic[0] = ~0;
246 vic[1] = ~0;
247 vic[2] = ~0;
248 vic[3] = ~0;
249
250 s5p_init_irq(vic, ARRAY_SIZE(vic));
251}
252
Kay Sievers4a858cf2011-12-21 16:01:38 -0800253struct bus_type s5pv210_subsys = {
254 .name = "s5pv210-core",
255 .dev_name = "s5pv210-core",
Kukjin Kim939d28a2010-02-24 16:40:29 +0900256};
257
Kay Sievers4a858cf2011-12-21 16:01:38 -0800258static struct device s5pv210_dev = {
259 .bus = &s5pv210_subsys,
Kukjin Kim939d28a2010-02-24 16:40:29 +0900260};
261
262static int __init s5pv210_core_init(void)
263{
Kay Sievers4a858cf2011-12-21 16:01:38 -0800264 return subsys_system_register(&s5pv210_subsys, NULL);
Kukjin Kim939d28a2010-02-24 16:40:29 +0900265}
Kukjin Kim939d28a2010-02-24 16:40:29 +0900266core_initcall(s5pv210_core_init);
267
268int __init s5pv210_init(void)
269{
270 printk(KERN_INFO "S5PV210: Initializing architecture\n");
Kay Sievers4a858cf2011-12-21 16:01:38 -0800271 return device_register(&s5pv210_dev);
Kukjin Kim939d28a2010-02-24 16:40:29 +0900272}
Kukjin Kim3fa754c2011-12-22 23:32:07 +0100273
Kukjin Kim3fa754c2011-12-22 23:32:07 +0100274/* uart registration process */
275
276void __init s5pv210_init_uarts(struct s3c2410_uartcfg *cfg, int no)
277{
Kukjin Kim3fa754c2011-12-22 23:32:07 +0100278 s3c24xx_init_uartdevs("s5pv210-uart", s5p_uart_resources, cfg, no);
279}