blob: 8ae5800e807fa4f7e2c187acfbce0046612def3e [file] [log] [blame]
Kukjin Kim95af2142011-12-22 23:28:28 +01001/*
2 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
4 *
5 * Common Codes for S5P64X0 machines
6 *
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.
10 */
11
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/clk.h>
19#include <linux/io.h>
Linus Torvalds7affca32012-01-07 12:03:30 -080020#include <linux/device.h>
Kukjin Kim95af2142011-12-22 23:28:28 +010021#include <linux/serial_core.h>
22#include <linux/platform_device.h>
23#include <linux/sched.h>
24#include <linux/dma-mapping.h>
25#include <linux/gpio.h>
26#include <linux/irq.h>
27
28#include <asm/irq.h>
29#include <asm/proc-fns.h>
David Howells9f97da72012-03-28 18:30:01 +010030#include <asm/system_misc.h>
Kukjin Kim95af2142011-12-22 23:28:28 +010031#include <asm/mach/arch.h>
32#include <asm/mach/map.h>
33#include <asm/mach/irq.h>
34
35#include <mach/map.h>
36#include <mach/hardware.h>
37#include <mach/regs-clock.h>
38#include <mach/regs-gpio.h>
39
40#include <plat/cpu.h>
41#include <plat/clock.h>
42#include <plat/devs.h>
43#include <plat/pm.h>
Arnd Bergmann142f2102012-01-09 16:14:07 +000044#include <plat/sdhci.h>
Kukjin Kim95af2142011-12-22 23:28:28 +010045#include <plat/adc-core.h>
46#include <plat/fb-core.h>
Heiko Stuebner308b3af2012-10-17 16:47:11 +090047#include <plat/spi-core.h>
Kukjin Kim95af2142011-12-22 23:28:28 +010048#include <plat/gpio-cfg.h>
49#include <plat/regs-irqtype.h>
50#include <plat/regs-serial.h>
Kukjin Kim73aed8b2011-12-22 23:34:25 +010051#include <plat/watchdog-reset.h>
Kukjin Kim95af2142011-12-22 23:28:28 +010052
53#include "common.h"
54
55static const char name_s5p6440[] = "S5P6440";
56static const char name_s5p6450[] = "S5P6450";
57
58static struct cpu_table cpu_ids[] __initdata = {
59 {
60 .idcode = S5P6440_CPU_ID,
61 .idmask = S5P64XX_CPU_MASK,
62 .map_io = s5p6440_map_io,
63 .init_clocks = s5p6440_init_clocks,
64 .init_uarts = s5p6440_init_uarts,
65 .init = s5p64x0_init,
66 .name = name_s5p6440,
67 }, {
68 .idcode = S5P6450_CPU_ID,
69 .idmask = S5P64XX_CPU_MASK,
70 .map_io = s5p6450_map_io,
71 .init_clocks = s5p6450_init_clocks,
72 .init_uarts = s5p6450_init_uarts,
73 .init = s5p64x0_init,
74 .name = name_s5p6450,
75 },
76};
77
78/* Initial IO mappings */
79
80static struct map_desc s5p64x0_iodesc[] __initdata = {
81 {
82 .virtual = (unsigned long)S5P_VA_CHIPID,
83 .pfn = __phys_to_pfn(S5P64X0_PA_CHIPID),
84 .length = SZ_4K,
85 .type = MT_DEVICE,
86 }, {
87 .virtual = (unsigned long)S3C_VA_SYS,
88 .pfn = __phys_to_pfn(S5P64X0_PA_SYSCON),
89 .length = SZ_64K,
90 .type = MT_DEVICE,
91 }, {
92 .virtual = (unsigned long)S3C_VA_TIMER,
93 .pfn = __phys_to_pfn(S5P64X0_PA_TIMER),
94 .length = SZ_16K,
95 .type = MT_DEVICE,
96 }, {
97 .virtual = (unsigned long)S3C_VA_WATCHDOG,
98 .pfn = __phys_to_pfn(S5P64X0_PA_WDT),
99 .length = SZ_4K,
100 .type = MT_DEVICE,
101 }, {
102 .virtual = (unsigned long)S5P_VA_SROMC,
103 .pfn = __phys_to_pfn(S5P64X0_PA_SROMC),
104 .length = SZ_4K,
105 .type = MT_DEVICE,
106 }, {
107 .virtual = (unsigned long)S5P_VA_GPIO,
108 .pfn = __phys_to_pfn(S5P64X0_PA_GPIO),
109 .length = SZ_4K,
110 .type = MT_DEVICE,
111 }, {
112 .virtual = (unsigned long)VA_VIC0,
113 .pfn = __phys_to_pfn(S5P64X0_PA_VIC0),
114 .length = SZ_16K,
115 .type = MT_DEVICE,
116 }, {
117 .virtual = (unsigned long)VA_VIC1,
118 .pfn = __phys_to_pfn(S5P64X0_PA_VIC1),
119 .length = SZ_16K,
120 .type = MT_DEVICE,
121 },
122};
123
124static struct map_desc s5p6440_iodesc[] __initdata = {
125 {
126 .virtual = (unsigned long)S3C_VA_UART,
127 .pfn = __phys_to_pfn(S5P6440_PA_UART(0)),
128 .length = SZ_4K,
129 .type = MT_DEVICE,
130 },
131};
132
133static struct map_desc s5p6450_iodesc[] __initdata = {
134 {
135 .virtual = (unsigned long)S3C_VA_UART,
136 .pfn = __phys_to_pfn(S5P6450_PA_UART(0)),
137 .length = SZ_512K,
138 .type = MT_DEVICE,
139 }, {
140 .virtual = (unsigned long)S3C_VA_UART + SZ_512K,
141 .pfn = __phys_to_pfn(S5P6450_PA_UART(5)),
142 .length = SZ_4K,
143 .type = MT_DEVICE,
144 },
145};
146
147static void s5p64x0_idle(void)
148{
149 unsigned long val;
150
Nicolas Pitre1ab4ef92012-01-04 17:24:25 -0500151 val = __raw_readl(S5P64X0_PWR_CFG);
152 val &= ~(0x3 << 5);
153 val |= (0x1 << 5);
154 __raw_writel(val, S5P64X0_PWR_CFG);
Kukjin Kim95af2142011-12-22 23:28:28 +0100155
Nicolas Pitre1ab4ef92012-01-04 17:24:25 -0500156 cpu_do_idle();
Kukjin Kim95af2142011-12-22 23:28:28 +0100157}
158
159/*
160 * s5p64x0_map_io
161 *
162 * register the standard CPU IO areas
163 */
164
165void __init s5p64x0_init_io(struct map_desc *mach_desc, int size)
166{
167 /* initialize the io descriptors we need for initialization */
168 iotable_init(s5p64x0_iodesc, ARRAY_SIZE(s5p64x0_iodesc));
169 if (mach_desc)
170 iotable_init(mach_desc, size);
171
172 /* detect cpu id and rev. */
173 s5p_init_cpu(S5P64X0_SYS_ID);
174
175 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
176}
177
178void __init s5p6440_map_io(void)
179{
180 /* initialize any device information early */
181 s3c_adc_setname("s3c64xx-adc");
182 s3c_fb_setname("s5p64x0-fb");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900183 s3c64xx_spi_setname("s5p64x0-spi");
Kukjin Kim95af2142011-12-22 23:28:28 +0100184
Arnd Bergmann142f2102012-01-09 16:14:07 +0000185 s5p64x0_default_sdhci0();
186 s5p64x0_default_sdhci1();
187 s5p6440_default_sdhci2();
188
Kukjin Kim95af2142011-12-22 23:28:28 +0100189 iotable_init(s5p6440_iodesc, ARRAY_SIZE(s5p6440_iodesc));
Kukjin Kim95af2142011-12-22 23:28:28 +0100190}
191
192void __init s5p6450_map_io(void)
193{
194 /* initialize any device information early */
195 s3c_adc_setname("s3c64xx-adc");
196 s3c_fb_setname("s5p64x0-fb");
Heiko Stuebner308b3af2012-10-17 16:47:11 +0900197 s3c64xx_spi_setname("s5p64x0-spi");
Kukjin Kim95af2142011-12-22 23:28:28 +0100198
Arnd Bergmann142f2102012-01-09 16:14:07 +0000199 s5p64x0_default_sdhci0();
200 s5p64x0_default_sdhci1();
201 s5p6450_default_sdhci2();
202
Kukjin Kim95af2142011-12-22 23:28:28 +0100203 iotable_init(s5p6450_iodesc, ARRAY_SIZE(s5p6450_iodesc));
Kukjin Kim95af2142011-12-22 23:28:28 +0100204}
205
206/*
207 * s5p64x0_init_clocks
208 *
209 * register and setup the CPU clocks
210 */
211
212void __init s5p6440_init_clocks(int xtal)
213{
214 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
215
216 s3c24xx_register_baseclocks(xtal);
217 s5p_register_clocks(xtal);
218 s5p6440_register_clocks();
219 s5p6440_setup_clocks();
220}
221
222void __init s5p6450_init_clocks(int xtal)
223{
224 printk(KERN_DEBUG "%s: initializing clocks\n", __func__);
225
226 s3c24xx_register_baseclocks(xtal);
227 s5p_register_clocks(xtal);
228 s5p6450_register_clocks();
229 s5p6450_setup_clocks();
230}
231
232/*
233 * s5p64x0_init_irq
234 *
235 * register the CPU interrupts
236 */
237
238void __init s5p6440_init_irq(void)
239{
240 /* S5P6440 supports 2 VIC */
241 u32 vic[2];
242
243 /*
244 * VIC0 is missing IRQ_VIC0[3, 4, 8, 10, (12-22)]
245 * VIC1 is missing IRQ VIC1[1, 3, 4, 10, 11, 12, 14, 15, 22]
246 */
247 vic[0] = 0xff800ae7;
248 vic[1] = 0xffbf23e5;
249
250 s5p_init_irq(vic, ARRAY_SIZE(vic));
251}
252
253void __init s5p6450_init_irq(void)
254{
255 /* S5P6450 supports only 2 VIC */
256 u32 vic[2];
257
258 /*
259 * VIC0 is missing IRQ_VIC0[(13-15), (21-22)]
260 * VIC1 is missing IRQ VIC1[12, 14, 23]
261 */
262 vic[0] = 0xff9f1fff;
263 vic[1] = 0xff7fafff;
264
265 s5p_init_irq(vic, ARRAY_SIZE(vic));
266}
267
Linus Torvalds7affca32012-01-07 12:03:30 -0800268struct bus_type s5p64x0_subsys = {
269 .name = "s5p64x0-core",
270 .dev_name = "s5p64x0-core",
Kukjin Kim95af2142011-12-22 23:28:28 +0100271};
272
Linus Torvalds7affca32012-01-07 12:03:30 -0800273static struct device s5p64x0_dev = {
274 .bus = &s5p64x0_subsys,
Kukjin Kim95af2142011-12-22 23:28:28 +0100275};
276
277static int __init s5p64x0_core_init(void)
278{
Linus Torvalds7affca32012-01-07 12:03:30 -0800279 return subsys_system_register(&s5p64x0_subsys, NULL);
Kukjin Kim95af2142011-12-22 23:28:28 +0100280}
281core_initcall(s5p64x0_core_init);
282
283int __init s5p64x0_init(void)
284{
285 printk(KERN_INFO "S5P64X0(S5P6440/S5P6450): Initializing architecture\n");
286
287 /* set idle function */
Nicolas Pitre1ab4ef92012-01-04 17:24:25 -0500288 arm_pm_idle = s5p64x0_idle;
Kukjin Kim95af2142011-12-22 23:28:28 +0100289
Linus Torvalds7affca32012-01-07 12:03:30 -0800290 return device_register(&s5p64x0_dev);
Kukjin Kim95af2142011-12-22 23:28:28 +0100291}
292
Kukjin Kim95af2142011-12-22 23:28:28 +0100293/* uart registration process */
Kukjin Kim95af2142011-12-22 23:28:28 +0100294void __init s5p6440_init_uarts(struct s3c2410_uartcfg *cfg, int no)
295{
296 int uart;
297
298 for (uart = 0; uart < no; uart++) {
299 s5p_uart_resources[uart].resources->start = S5P6440_PA_UART(uart);
300 s5p_uart_resources[uart].resources->end = S5P6440_PA_UART(uart) + S5P_SZ_UART;
301 }
302
Kukjin Kim95af2142011-12-22 23:28:28 +0100303 s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no);
304}
305
306void __init s5p6450_init_uarts(struct s3c2410_uartcfg *cfg, int no)
307{
Kukjin Kim95af2142011-12-22 23:28:28 +0100308 s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources, cfg, no);
309}
310
311#define eint_offset(irq) ((irq) - IRQ_EINT(0))
312
313static int s5p64x0_irq_eint_set_type(struct irq_data *data, unsigned int type)
314{
315 int offs = eint_offset(data->irq);
316 int shift;
317 u32 ctrl, mask;
318 u32 newvalue = 0;
319
320 if (offs > 15)
321 return -EINVAL;
322
323 switch (type) {
324 case IRQ_TYPE_NONE:
325 printk(KERN_WARNING "No edge setting!\n");
326 break;
327 case IRQ_TYPE_EDGE_RISING:
328 newvalue = S3C2410_EXTINT_RISEEDGE;
329 break;
330 case IRQ_TYPE_EDGE_FALLING:
331 newvalue = S3C2410_EXTINT_FALLEDGE;
332 break;
333 case IRQ_TYPE_EDGE_BOTH:
334 newvalue = S3C2410_EXTINT_BOTHEDGE;
335 break;
336 case IRQ_TYPE_LEVEL_LOW:
337 newvalue = S3C2410_EXTINT_LOWLEV;
338 break;
339 case IRQ_TYPE_LEVEL_HIGH:
340 newvalue = S3C2410_EXTINT_HILEV;
341 break;
342 default:
343 printk(KERN_ERR "No such irq type %d", type);
344 return -EINVAL;
345 }
346
347 shift = (offs / 2) * 4;
348 mask = 0x7 << shift;
349
350 ctrl = __raw_readl(S5P64X0_EINT0CON0) & ~mask;
351 ctrl |= newvalue << shift;
352 __raw_writel(ctrl, S5P64X0_EINT0CON0);
353
354 /* Configure the GPIO pin for 6450 or 6440 based on CPU ID */
355 if (soc_is_s5p6450())
356 s3c_gpio_cfgpin(S5P6450_GPN(offs), S3C_GPIO_SFN(2));
357 else
358 s3c_gpio_cfgpin(S5P6440_GPN(offs), S3C_GPIO_SFN(2));
359
360 return 0;
361}
362
363/*
364 * s5p64x0_irq_demux_eint
365 *
366 * This function demuxes the IRQ from the group0 external interrupts,
367 * from IRQ_EINT(0) to IRQ_EINT(15). It is designed to be inlined into
368 * the specific handlers s5p64x0_irq_demux_eintX_Y.
369 */
370static inline void s5p64x0_irq_demux_eint(unsigned int start, unsigned int end)
371{
372 u32 status = __raw_readl(S5P64X0_EINT0PEND);
373 u32 mask = __raw_readl(S5P64X0_EINT0MASK);
374 unsigned int irq;
375
376 status &= ~mask;
377 status >>= start;
378 status &= (1 << (end - start + 1)) - 1;
379
380 for (irq = IRQ_EINT(start); irq <= IRQ_EINT(end); irq++) {
381 if (status & 1)
382 generic_handle_irq(irq);
383 status >>= 1;
384 }
385}
386
387static void s5p64x0_irq_demux_eint0_3(unsigned int irq, struct irq_desc *desc)
388{
389 s5p64x0_irq_demux_eint(0, 3);
390}
391
392static void s5p64x0_irq_demux_eint4_11(unsigned int irq, struct irq_desc *desc)
393{
394 s5p64x0_irq_demux_eint(4, 11);
395}
396
397static void s5p64x0_irq_demux_eint12_15(unsigned int irq,
398 struct irq_desc *desc)
399{
400 s5p64x0_irq_demux_eint(12, 15);
401}
402
403static int s5p64x0_alloc_gc(void)
404{
405 struct irq_chip_generic *gc;
406 struct irq_chip_type *ct;
407
408 gc = irq_alloc_generic_chip("s5p64x0-eint", 1, S5P_IRQ_EINT_BASE,
409 S5P_VA_GPIO, handle_level_irq);
410 if (!gc) {
411 printk(KERN_ERR "%s: irq_alloc_generic_chip for group 0"
412 "external interrupts failed\n", __func__);
413 return -EINVAL;
414 }
415
416 ct = gc->chip_types;
417 ct->chip.irq_ack = irq_gc_ack_set_bit;
418 ct->chip.irq_mask = irq_gc_mask_set_bit;
419 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
420 ct->chip.irq_set_type = s5p64x0_irq_eint_set_type;
421 ct->chip.irq_set_wake = s3c_irqext_wake;
422 ct->regs.ack = EINT0PEND_OFFSET;
423 ct->regs.mask = EINT0MASK_OFFSET;
424 irq_setup_generic_chip(gc, IRQ_MSK(16), IRQ_GC_INIT_MASK_CACHE,
425 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
426 return 0;
427}
428
429static int __init s5p64x0_init_irq_eint(void)
430{
431 int ret = s5p64x0_alloc_gc();
432 irq_set_chained_handler(IRQ_EINT0_3, s5p64x0_irq_demux_eint0_3);
433 irq_set_chained_handler(IRQ_EINT4_11, s5p64x0_irq_demux_eint4_11);
434 irq_set_chained_handler(IRQ_EINT12_15, s5p64x0_irq_demux_eint12_15);
435
436 return ret;
437}
438arch_initcall(s5p64x0_init_irq_eint);
Kukjin Kim73aed8b2011-12-22 23:34:25 +0100439
440void s5p64x0_restart(char mode, const char *cmd)
441{
442 if (mode != 's')
443 arch_wdt_reset();
444
445 soft_restart(0);
446}