2 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com/
5 * S5P - Interrupt handling
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/interrupt.h>
14 #include <linux/irq.h>
16 #include <linux/irqchip/arm-vic.h>
18 #include <mach/irqs.h>
22 void __init
s5p_init_irq(u32
*vic
, u32 num_vic
)
27 /* initialize the VICs */
28 for (irq
= 0; irq
< num_vic
; irq
++)
29 vic_init(VA_VIC(irq
), VIC_BASE(irq
), vic
[irq
], 0);