linux/audit.h: move ptrace.h include to kernel header
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-s3c64xx / common.c
blobaef303b8997e5948cf834540e790fc4a3221ae27
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * Copyright 2008 Openmoko, Inc.
6 * Copyright 2008 Simtec Electronics
7 * Ben Dooks <ben@simtec.co.uk>
8 * http://armlinux.simtec.co.uk/
10 * Common Codes for S3C64XX machines
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/interrupt.h>
21 #include <linux/ioport.h>
22 #include <linux/serial_core.h>
23 #include <linux/platform_device.h>
24 #include <linux/io.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/irq.h>
27 #include <linux/gpio.h>
29 #include <asm/mach/arch.h>
30 #include <asm/mach/map.h>
31 #include <asm/hardware/vic.h>
32 #include <asm/system_misc.h>
34 #include <mach/map.h>
35 #include <mach/hardware.h>
36 #include <mach/regs-gpio.h>
38 #include <plat/cpu.h>
39 #include <plat/clock.h>
40 #include <plat/devs.h>
41 #include <plat/pm.h>
42 #include <plat/gpio-cfg.h>
43 #include <plat/irq-uart.h>
44 #include <plat/irq-vic-timer.h>
45 #include <plat/regs-irqtype.h>
46 #include <plat/regs-serial.h>
47 #include <plat/watchdog-reset.h>
49 #include "common.h"
51 /* uart registration process */
53 static void __init s3c64xx_init_uarts(struct s3c2410_uartcfg *cfg, int no)
55 s3c24xx_init_uartdevs("s3c6400-uart", s3c64xx_uart_resources, cfg, no);
58 /* table of supported CPUs */
60 static const char name_s3c6400[] = "S3C6400";
61 static const char name_s3c6410[] = "S3C6410";
63 static struct cpu_table cpu_ids[] __initdata = {
65 .idcode = S3C6400_CPU_ID,
66 .idmask = S3C64XX_CPU_MASK,
67 .map_io = s3c6400_map_io,
68 .init_clocks = s3c6400_init_clocks,
69 .init_uarts = s3c64xx_init_uarts,
70 .init = s3c6400_init,
71 .name = name_s3c6400,
72 }, {
73 .idcode = S3C6410_CPU_ID,
74 .idmask = S3C64XX_CPU_MASK,
75 .map_io = s3c6410_map_io,
76 .init_clocks = s3c6410_init_clocks,
77 .init_uarts = s3c64xx_init_uarts,
78 .init = s3c6410_init,
79 .name = name_s3c6410,
83 /* minimal IO mapping */
85 /* see notes on uart map in arch/arm/mach-s3c64xx/include/mach/debug-macro.S */
86 #define UART_OFFS (S3C_PA_UART & 0xfffff)
88 static struct map_desc s3c_iodesc[] __initdata = {
90 .virtual = (unsigned long)S3C_VA_SYS,
91 .pfn = __phys_to_pfn(S3C64XX_PA_SYSCON),
92 .length = SZ_4K,
93 .type = MT_DEVICE,
94 }, {
95 .virtual = (unsigned long)S3C_VA_MEM,
96 .pfn = __phys_to_pfn(S3C64XX_PA_SROM),
97 .length = SZ_4K,
98 .type = MT_DEVICE,
99 }, {
100 .virtual = (unsigned long)(S3C_VA_UART + UART_OFFS),
101 .pfn = __phys_to_pfn(S3C_PA_UART),
102 .length = SZ_4K,
103 .type = MT_DEVICE,
104 }, {
105 .virtual = (unsigned long)VA_VIC0,
106 .pfn = __phys_to_pfn(S3C64XX_PA_VIC0),
107 .length = SZ_16K,
108 .type = MT_DEVICE,
109 }, {
110 .virtual = (unsigned long)VA_VIC1,
111 .pfn = __phys_to_pfn(S3C64XX_PA_VIC1),
112 .length = SZ_16K,
113 .type = MT_DEVICE,
114 }, {
115 .virtual = (unsigned long)S3C_VA_TIMER,
116 .pfn = __phys_to_pfn(S3C_PA_TIMER),
117 .length = SZ_16K,
118 .type = MT_DEVICE,
119 }, {
120 .virtual = (unsigned long)S3C64XX_VA_GPIO,
121 .pfn = __phys_to_pfn(S3C64XX_PA_GPIO),
122 .length = SZ_4K,
123 .type = MT_DEVICE,
124 }, {
125 .virtual = (unsigned long)S3C64XX_VA_MODEM,
126 .pfn = __phys_to_pfn(S3C64XX_PA_MODEM),
127 .length = SZ_4K,
128 .type = MT_DEVICE,
129 }, {
130 .virtual = (unsigned long)S3C_VA_WATCHDOG,
131 .pfn = __phys_to_pfn(S3C64XX_PA_WATCHDOG),
132 .length = SZ_4K,
133 .type = MT_DEVICE,
134 }, {
135 .virtual = (unsigned long)S3C_VA_USB_HSPHY,
136 .pfn = __phys_to_pfn(S3C64XX_PA_USB_HSPHY),
137 .length = SZ_1K,
138 .type = MT_DEVICE,
142 static struct bus_type s3c64xx_subsys = {
143 .name = "s3c64xx-core",
144 .dev_name = "s3c64xx-core",
147 static struct device s3c64xx_dev = {
148 .bus = &s3c64xx_subsys,
151 /* read cpu identification code */
153 void __init s3c64xx_init_io(struct map_desc *mach_desc, int size)
155 /* initialise the io descriptors we need for initialisation */
156 iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
157 iotable_init(mach_desc, size);
159 /* detect cpu id */
160 s3c64xx_init_cpu();
162 s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
165 static __init int s3c64xx_dev_init(void)
167 subsys_system_register(&s3c64xx_subsys, NULL);
168 return device_register(&s3c64xx_dev);
170 core_initcall(s3c64xx_dev_init);
173 * setup the sources the vic should advertise resume
174 * for, even though it is not doing the wake
175 * (set_irq_wake needs to be valid)
177 #define IRQ_VIC0_RESUME (1 << (IRQ_RTC_TIC - IRQ_VIC0_BASE))
178 #define IRQ_VIC1_RESUME (1 << (IRQ_RTC_ALARM - IRQ_VIC1_BASE) | \
179 1 << (IRQ_PENDN - IRQ_VIC1_BASE) | \
180 1 << (IRQ_HSMMC0 - IRQ_VIC1_BASE) | \
181 1 << (IRQ_HSMMC1 - IRQ_VIC1_BASE) | \
182 1 << (IRQ_HSMMC2 - IRQ_VIC1_BASE))
184 void __init s3c64xx_init_irq(u32 vic0_valid, u32 vic1_valid)
186 printk(KERN_DEBUG "%s: initialising interrupts\n", __func__);
188 /* initialise the pair of VICs */
189 vic_init(VA_VIC0, IRQ_VIC0_BASE, vic0_valid, IRQ_VIC0_RESUME);
190 vic_init(VA_VIC1, IRQ_VIC1_BASE, vic1_valid, IRQ_VIC1_RESUME);
192 /* add the timer sub-irqs */
193 s3c_init_vic_timer_irq(5, IRQ_TIMER0);
196 #define eint_offset(irq) ((irq) - IRQ_EINT(0))
197 #define eint_irq_to_bit(irq) ((u32)(1 << eint_offset(irq)))
199 static inline void s3c_irq_eint_mask(struct irq_data *data)
201 u32 mask;
203 mask = __raw_readl(S3C64XX_EINT0MASK);
204 mask |= (u32)data->chip_data;
205 __raw_writel(mask, S3C64XX_EINT0MASK);
208 static void s3c_irq_eint_unmask(struct irq_data *data)
210 u32 mask;
212 mask = __raw_readl(S3C64XX_EINT0MASK);
213 mask &= ~((u32)data->chip_data);
214 __raw_writel(mask, S3C64XX_EINT0MASK);
217 static inline void s3c_irq_eint_ack(struct irq_data *data)
219 __raw_writel((u32)data->chip_data, S3C64XX_EINT0PEND);
222 static void s3c_irq_eint_maskack(struct irq_data *data)
224 /* compiler should in-line these */
225 s3c_irq_eint_mask(data);
226 s3c_irq_eint_ack(data);
229 static int s3c_irq_eint_set_type(struct irq_data *data, unsigned int type)
231 int offs = eint_offset(data->irq);
232 int pin, pin_val;
233 int shift;
234 u32 ctrl, mask;
235 u32 newvalue = 0;
236 void __iomem *reg;
238 if (offs > 27)
239 return -EINVAL;
241 if (offs <= 15)
242 reg = S3C64XX_EINT0CON0;
243 else
244 reg = S3C64XX_EINT0CON1;
246 switch (type) {
247 case IRQ_TYPE_NONE:
248 printk(KERN_WARNING "No edge setting!\n");
249 break;
251 case IRQ_TYPE_EDGE_RISING:
252 newvalue = S3C2410_EXTINT_RISEEDGE;
253 break;
255 case IRQ_TYPE_EDGE_FALLING:
256 newvalue = S3C2410_EXTINT_FALLEDGE;
257 break;
259 case IRQ_TYPE_EDGE_BOTH:
260 newvalue = S3C2410_EXTINT_BOTHEDGE;
261 break;
263 case IRQ_TYPE_LEVEL_LOW:
264 newvalue = S3C2410_EXTINT_LOWLEV;
265 break;
267 case IRQ_TYPE_LEVEL_HIGH:
268 newvalue = S3C2410_EXTINT_HILEV;
269 break;
271 default:
272 printk(KERN_ERR "No such irq type %d", type);
273 return -1;
276 if (offs <= 15)
277 shift = (offs / 2) * 4;
278 else
279 shift = ((offs - 16) / 2) * 4;
280 mask = 0x7 << shift;
282 ctrl = __raw_readl(reg);
283 ctrl &= ~mask;
284 ctrl |= newvalue << shift;
285 __raw_writel(ctrl, reg);
287 /* set the GPIO pin appropriately */
289 if (offs < 16) {
290 pin = S3C64XX_GPN(offs);
291 pin_val = S3C_GPIO_SFN(2);
292 } else if (offs < 23) {
293 pin = S3C64XX_GPL(offs + 8 - 16);
294 pin_val = S3C_GPIO_SFN(3);
295 } else {
296 pin = S3C64XX_GPM(offs - 23);
297 pin_val = S3C_GPIO_SFN(3);
300 s3c_gpio_cfgpin(pin, pin_val);
302 return 0;
305 static struct irq_chip s3c_irq_eint = {
306 .name = "s3c-eint",
307 .irq_mask = s3c_irq_eint_mask,
308 .irq_unmask = s3c_irq_eint_unmask,
309 .irq_mask_ack = s3c_irq_eint_maskack,
310 .irq_ack = s3c_irq_eint_ack,
311 .irq_set_type = s3c_irq_eint_set_type,
312 .irq_set_wake = s3c_irqext_wake,
315 /* s3c_irq_demux_eint
317 * This function demuxes the IRQ from the group0 external interrupts,
318 * from IRQ_EINT(0) to IRQ_EINT(27). It is designed to be inlined into
319 * the specific handlers s3c_irq_demux_eintX_Y.
321 static inline void s3c_irq_demux_eint(unsigned int start, unsigned int end)
323 u32 status = __raw_readl(S3C64XX_EINT0PEND);
324 u32 mask = __raw_readl(S3C64XX_EINT0MASK);
325 unsigned int irq;
327 status &= ~mask;
328 status >>= start;
329 status &= (1 << (end - start + 1)) - 1;
331 for (irq = IRQ_EINT(start); irq <= IRQ_EINT(end); irq++) {
332 if (status & 1)
333 generic_handle_irq(irq);
335 status >>= 1;
339 static void s3c_irq_demux_eint0_3(unsigned int irq, struct irq_desc *desc)
341 s3c_irq_demux_eint(0, 3);
344 static void s3c_irq_demux_eint4_11(unsigned int irq, struct irq_desc *desc)
346 s3c_irq_demux_eint(4, 11);
349 static void s3c_irq_demux_eint12_19(unsigned int irq, struct irq_desc *desc)
351 s3c_irq_demux_eint(12, 19);
354 static void s3c_irq_demux_eint20_27(unsigned int irq, struct irq_desc *desc)
356 s3c_irq_demux_eint(20, 27);
359 static int __init s3c64xx_init_irq_eint(void)
361 int irq;
363 for (irq = IRQ_EINT(0); irq <= IRQ_EINT(27); irq++) {
364 irq_set_chip_and_handler(irq, &s3c_irq_eint, handle_level_irq);
365 irq_set_chip_data(irq, (void *)eint_irq_to_bit(irq));
366 set_irq_flags(irq, IRQF_VALID);
369 irq_set_chained_handler(IRQ_EINT0_3, s3c_irq_demux_eint0_3);
370 irq_set_chained_handler(IRQ_EINT4_11, s3c_irq_demux_eint4_11);
371 irq_set_chained_handler(IRQ_EINT12_19, s3c_irq_demux_eint12_19);
372 irq_set_chained_handler(IRQ_EINT20_27, s3c_irq_demux_eint20_27);
374 return 0;
376 arch_initcall(s3c64xx_init_irq_eint);
378 void s3c64xx_restart(char mode, const char *cmd)
380 if (mode != 's')
381 arch_wdt_reset();
383 /* if all else fails, or mode was for soft, jump to 0 */
384 soft_restart(0);
387 void __init s3c64xx_init_late(void)
389 s3c64xx_pm_late_initcall();