Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / arch / arm / plat-samsung / s5p-irq.c
CommitLineData
68ae8998 1/*
b7db51be
KK
2 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com/
4 *
5 * S5P - Interrupt handling
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/interrupt.h>
14#include <linux/irq.h>
15#include <linux/io.h>
9e47b8bf 16#include <linux/irqchip/arm-vic.h>
b7db51be 17
b7db51be
KK
18#include <mach/map.h>
19#include <plat/regs-timer.h>
b7db51be
KK
20#include <plat/cpu.h>
21#include <plat/irq-vic-timer.h>
b7db51be
KK
22
23void __init s5p_init_irq(u32 *vic, u32 num_vic)
24{
84bbc16c 25#ifdef CONFIG_ARM_VIC
b7db51be
KK
26 int irq;
27
28 /* initialize the VICs */
29 for (irq = 0; irq < num_vic; irq++)
81317960 30 vic_init(VA_VIC(irq), VIC_BASE(irq), vic[irq], 0);
84bbc16c 31#endif
b7db51be 32
2d2e1d3c 33 s3c_init_vic_timer_irq(5, IRQ_TIMER0);
b7db51be 34}