1 /* arch/arm/plat-s5p/irq.c
3 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
6 * S5P - Interrupt handling
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/interrupt.h>
15 #include <linux/irq.h>
18 #include <asm/hardware/vic.h>
20 #include <linux/serial_core.h>
22 #include <plat/regs-timer.h>
23 #include <plat/regs-serial.h>
25 #include <plat/irq-vic-timer.h>
26 #include <plat/irq-uart.h>
29 * Note, we make use of the fact that the parent IRQs, IRQ_UART[0..3]
30 * are consecutive when looking up the interrupt in the demux routines.
32 static struct s3c_uart_irq uart_irqs
[] = {
35 .base_irq
= IRQ_S5P_UART_BASE0
,
36 .parent_irq
= IRQ_UART0
,
40 .base_irq
= IRQ_S5P_UART_BASE1
,
41 .parent_irq
= IRQ_UART1
,
45 .base_irq
= IRQ_S5P_UART_BASE2
,
46 .parent_irq
= IRQ_UART2
,
48 #if CONFIG_SERIAL_SAMSUNG_UARTS > 3
51 .base_irq
= IRQ_S5P_UART_BASE3
,
52 .parent_irq
= IRQ_UART3
,
57 void __init
s5p_init_irq(u32
*vic
, u32 num_vic
)
62 /* initialize the VICs */
63 for (irq
= 0; irq
< num_vic
; irq
++)
64 vic_init(VA_VIC(irq
), VIC_BASE(irq
), vic
[irq
], 0);
67 s3c_init_vic_timer_irq(5, IRQ_TIMER0
);
69 s3c_init_uart_irqs(uart_irqs
, ARRAY_SIZE(uart_irqs
));