2 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * Common Codes for S5P64X0 machines
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/clk.h>
20 #include <linux/device.h>
21 #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>
29 #include <asm/proc-fns.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/irq.h>
35 #include <mach/hardware.h>
36 #include <mach/regs-clock.h>
37 #include <mach/regs-gpio.h>
40 #include <plat/clock.h>
41 #include <plat/devs.h>
43 #include <plat/sdhci.h>
44 #include <plat/adc-core.h>
45 #include <plat/fb-core.h>
46 #include <plat/gpio-cfg.h>
47 #include <plat/regs-irqtype.h>
48 #include <plat/regs-serial.h>
49 #include <plat/watchdog-reset.h>
53 static const char name_s5p6440
[] = "S5P6440";
54 static const char name_s5p6450
[] = "S5P6450";
56 static struct cpu_table cpu_ids
[] __initdata
= {
58 .idcode
= S5P6440_CPU_ID
,
59 .idmask
= S5P64XX_CPU_MASK
,
60 .map_io
= s5p6440_map_io
,
61 .init_clocks
= s5p6440_init_clocks
,
62 .init_uarts
= s5p6440_init_uarts
,
66 .idcode
= S5P6450_CPU_ID
,
67 .idmask
= S5P64XX_CPU_MASK
,
68 .map_io
= s5p6450_map_io
,
69 .init_clocks
= s5p6450_init_clocks
,
70 .init_uarts
= s5p6450_init_uarts
,
76 /* Initial IO mappings */
78 static struct map_desc s5p64x0_iodesc
[] __initdata
= {
80 .virtual = (unsigned long)S5P_VA_CHIPID
,
81 .pfn
= __phys_to_pfn(S5P64X0_PA_CHIPID
),
85 .virtual = (unsigned long)S3C_VA_SYS
,
86 .pfn
= __phys_to_pfn(S5P64X0_PA_SYSCON
),
90 .virtual = (unsigned long)S3C_VA_TIMER
,
91 .pfn
= __phys_to_pfn(S5P64X0_PA_TIMER
),
95 .virtual = (unsigned long)S3C_VA_WATCHDOG
,
96 .pfn
= __phys_to_pfn(S5P64X0_PA_WDT
),
100 .virtual = (unsigned long)S5P_VA_SROMC
,
101 .pfn
= __phys_to_pfn(S5P64X0_PA_SROMC
),
105 .virtual = (unsigned long)S5P_VA_GPIO
,
106 .pfn
= __phys_to_pfn(S5P64X0_PA_GPIO
),
110 .virtual = (unsigned long)VA_VIC0
,
111 .pfn
= __phys_to_pfn(S5P64X0_PA_VIC0
),
115 .virtual = (unsigned long)VA_VIC1
,
116 .pfn
= __phys_to_pfn(S5P64X0_PA_VIC1
),
122 static struct map_desc s5p6440_iodesc
[] __initdata
= {
124 .virtual = (unsigned long)S3C_VA_UART
,
125 .pfn
= __phys_to_pfn(S5P6440_PA_UART(0)),
131 static struct map_desc s5p6450_iodesc
[] __initdata
= {
133 .virtual = (unsigned long)S3C_VA_UART
,
134 .pfn
= __phys_to_pfn(S5P6450_PA_UART(0)),
138 .virtual = (unsigned long)S3C_VA_UART
+ SZ_512K
,
139 .pfn
= __phys_to_pfn(S5P6450_PA_UART(5)),
145 static void s5p64x0_idle(void)
149 if (!need_resched()) {
150 val
= __raw_readl(S5P64X0_PWR_CFG
);
153 __raw_writel(val
, S5P64X0_PWR_CFG
);
163 * register the standard CPU IO areas
166 void __init
s5p64x0_init_io(struct map_desc
*mach_desc
, int size
)
168 /* initialize the io descriptors we need for initialization */
169 iotable_init(s5p64x0_iodesc
, ARRAY_SIZE(s5p64x0_iodesc
));
171 iotable_init(mach_desc
, size
);
173 /* detect cpu id and rev. */
174 s5p_init_cpu(S5P64X0_SYS_ID
);
176 s3c_init_cpu(samsung_cpu_id
, cpu_ids
, ARRAY_SIZE(cpu_ids
));
179 void __init
s5p6440_map_io(void)
181 /* initialize any device information early */
182 s3c_adc_setname("s3c64xx-adc");
183 s3c_fb_setname("s5p64x0-fb");
185 s5p64x0_default_sdhci0();
186 s5p64x0_default_sdhci1();
187 s5p6440_default_sdhci2();
189 iotable_init(s5p6440_iodesc
, ARRAY_SIZE(s5p6440_iodesc
));
190 init_consistent_dma_size(SZ_8M
);
193 void __init
s5p6450_map_io(void)
195 /* initialize any device information early */
196 s3c_adc_setname("s3c64xx-adc");
197 s3c_fb_setname("s5p64x0-fb");
199 s5p64x0_default_sdhci0();
200 s5p64x0_default_sdhci1();
201 s5p6450_default_sdhci2();
203 iotable_init(s5p6450_iodesc
, ARRAY_SIZE(s5p6450_iodesc
));
204 init_consistent_dma_size(SZ_8M
);
208 * s5p64x0_init_clocks
210 * register and setup the CPU clocks
213 void __init
s5p6440_init_clocks(int xtal
)
215 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
217 s3c24xx_register_baseclocks(xtal
);
218 s5p_register_clocks(xtal
);
219 s5p6440_register_clocks();
220 s5p6440_setup_clocks();
223 void __init
s5p6450_init_clocks(int xtal
)
225 printk(KERN_DEBUG
"%s: initializing clocks\n", __func__
);
227 s3c24xx_register_baseclocks(xtal
);
228 s5p_register_clocks(xtal
);
229 s5p6450_register_clocks();
230 s5p6450_setup_clocks();
236 * register the CPU interrupts
239 void __init
s5p6440_init_irq(void)
241 /* S5P6440 supports 2 VIC */
245 * VIC0 is missing IRQ_VIC0[3, 4, 8, 10, (12-22)]
246 * VIC1 is missing IRQ VIC1[1, 3, 4, 10, 11, 12, 14, 15, 22]
251 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
254 void __init
s5p6450_init_irq(void)
256 /* S5P6450 supports only 2 VIC */
260 * VIC0 is missing IRQ_VIC0[(13-15), (21-22)]
261 * VIC1 is missing IRQ VIC1[12, 14, 23]
266 s5p_init_irq(vic
, ARRAY_SIZE(vic
));
269 struct bus_type s5p64x0_subsys
= {
270 .name
= "s5p64x0-core",
271 .dev_name
= "s5p64x0-core",
274 static struct device s5p64x0_dev
= {
275 .bus
= &s5p64x0_subsys
,
278 static int __init
s5p64x0_core_init(void)
280 return subsys_system_register(&s5p64x0_subsys
, NULL
);
282 core_initcall(s5p64x0_core_init
);
284 int __init
s5p64x0_init(void)
286 printk(KERN_INFO
"S5P64X0(S5P6440/S5P6450): Initializing architecture\n");
288 /* set idle function */
289 pm_idle
= s5p64x0_idle
;
291 return device_register(&s5p64x0_dev
);
294 /* uart registration process */
295 void __init
s5p6440_init_uarts(struct s3c2410_uartcfg
*cfg
, int no
)
299 for (uart
= 0; uart
< no
; uart
++) {
300 s5p_uart_resources
[uart
].resources
->start
= S5P6440_PA_UART(uart
);
301 s5p_uart_resources
[uart
].resources
->end
= S5P6440_PA_UART(uart
) + S5P_SZ_UART
;
304 s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources
, cfg
, no
);
307 void __init
s5p6450_init_uarts(struct s3c2410_uartcfg
*cfg
, int no
)
309 s3c24xx_init_uartdevs("s3c6400-uart", s5p_uart_resources
, cfg
, no
);
312 #define eint_offset(irq) ((irq) - IRQ_EINT(0))
314 static int s5p64x0_irq_eint_set_type(struct irq_data
*data
, unsigned int type
)
316 int offs
= eint_offset(data
->irq
);
326 printk(KERN_WARNING
"No edge setting!\n");
328 case IRQ_TYPE_EDGE_RISING
:
329 newvalue
= S3C2410_EXTINT_RISEEDGE
;
331 case IRQ_TYPE_EDGE_FALLING
:
332 newvalue
= S3C2410_EXTINT_FALLEDGE
;
334 case IRQ_TYPE_EDGE_BOTH
:
335 newvalue
= S3C2410_EXTINT_BOTHEDGE
;
337 case IRQ_TYPE_LEVEL_LOW
:
338 newvalue
= S3C2410_EXTINT_LOWLEV
;
340 case IRQ_TYPE_LEVEL_HIGH
:
341 newvalue
= S3C2410_EXTINT_HILEV
;
344 printk(KERN_ERR
"No such irq type %d", type
);
348 shift
= (offs
/ 2) * 4;
351 ctrl
= __raw_readl(S5P64X0_EINT0CON0
) & ~mask
;
352 ctrl
|= newvalue
<< shift
;
353 __raw_writel(ctrl
, S5P64X0_EINT0CON0
);
355 /* Configure the GPIO pin for 6450 or 6440 based on CPU ID */
356 if (soc_is_s5p6450())
357 s3c_gpio_cfgpin(S5P6450_GPN(offs
), S3C_GPIO_SFN(2));
359 s3c_gpio_cfgpin(S5P6440_GPN(offs
), S3C_GPIO_SFN(2));
365 * s5p64x0_irq_demux_eint
367 * This function demuxes the IRQ from the group0 external interrupts,
368 * from IRQ_EINT(0) to IRQ_EINT(15). It is designed to be inlined into
369 * the specific handlers s5p64x0_irq_demux_eintX_Y.
371 static inline void s5p64x0_irq_demux_eint(unsigned int start
, unsigned int end
)
373 u32 status
= __raw_readl(S5P64X0_EINT0PEND
);
374 u32 mask
= __raw_readl(S5P64X0_EINT0MASK
);
379 status
&= (1 << (end
- start
+ 1)) - 1;
381 for (irq
= IRQ_EINT(start
); irq
<= IRQ_EINT(end
); irq
++) {
383 generic_handle_irq(irq
);
388 static void s5p64x0_irq_demux_eint0_3(unsigned int irq
, struct irq_desc
*desc
)
390 s5p64x0_irq_demux_eint(0, 3);
393 static void s5p64x0_irq_demux_eint4_11(unsigned int irq
, struct irq_desc
*desc
)
395 s5p64x0_irq_demux_eint(4, 11);
398 static void s5p64x0_irq_demux_eint12_15(unsigned int irq
,
399 struct irq_desc
*desc
)
401 s5p64x0_irq_demux_eint(12, 15);
404 static int s5p64x0_alloc_gc(void)
406 struct irq_chip_generic
*gc
;
407 struct irq_chip_type
*ct
;
409 gc
= irq_alloc_generic_chip("s5p64x0-eint", 1, S5P_IRQ_EINT_BASE
,
410 S5P_VA_GPIO
, handle_level_irq
);
412 printk(KERN_ERR
"%s: irq_alloc_generic_chip for group 0"
413 "external interrupts failed\n", __func__
);
418 ct
->chip
.irq_ack
= irq_gc_ack_set_bit
;
419 ct
->chip
.irq_mask
= irq_gc_mask_set_bit
;
420 ct
->chip
.irq_unmask
= irq_gc_mask_clr_bit
;
421 ct
->chip
.irq_set_type
= s5p64x0_irq_eint_set_type
;
422 ct
->chip
.irq_set_wake
= s3c_irqext_wake
;
423 ct
->regs
.ack
= EINT0PEND_OFFSET
;
424 ct
->regs
.mask
= EINT0MASK_OFFSET
;
425 irq_setup_generic_chip(gc
, IRQ_MSK(16), IRQ_GC_INIT_MASK_CACHE
,
426 IRQ_NOREQUEST
| IRQ_NOPROBE
, 0);
430 static int __init
s5p64x0_init_irq_eint(void)
432 int ret
= s5p64x0_alloc_gc();
433 irq_set_chained_handler(IRQ_EINT0_3
, s5p64x0_irq_demux_eint0_3
);
434 irq_set_chained_handler(IRQ_EINT4_11
, s5p64x0_irq_demux_eint4_11
);
435 irq_set_chained_handler(IRQ_EINT12_15
, s5p64x0_irq_demux_eint12_15
);
439 arch_initcall(s5p64x0_init_irq_eint
);
441 void s5p64x0_restart(char mode
, const char *cmd
)