blob: afdaa1082b9fdba45720fa8297363a767148d868 [file] [log] [blame]
Kukjin Kimb7db51b2010-01-14 08:14:40 +09001/* arch/arm/plat-s5p/irq.c
2 *
3 * Copyright (c) 2009 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com/
5 *
6 * S5P - Interrupt handling
7 *
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.
11*/
12
13#include <linux/kernel.h>
14#include <linux/interrupt.h>
15#include <linux/irq.h>
16#include <linux/io.h>
17
18#include <asm/hardware/vic.h>
19
Kukjin Kimb7db51b2010-01-14 08:14:40 +090020#include <mach/map.h>
21#include <plat/regs-timer.h>
Kukjin Kimb7db51b2010-01-14 08:14:40 +090022#include <plat/cpu.h>
23#include <plat/irq-vic-timer.h>
Kukjin Kimb7db51b2010-01-14 08:14:40 +090024
25void __init s5p_init_irq(u32 *vic, u32 num_vic)
26{
Changhwan Youn84bbc162010-07-16 12:12:07 +090027#ifdef CONFIG_ARM_VIC
Kukjin Kimb7db51b2010-01-14 08:14:40 +090028 int irq;
29
30 /* initialize the VICs */
31 for (irq = 0; irq < num_vic; irq++)
Kukjin Kim81317962010-01-27 16:57:07 +090032 vic_init(VA_VIC(irq), VIC_BASE(irq), vic[irq], 0);
Changhwan Youn84bbc162010-07-16 12:12:07 +090033#endif
Kukjin Kimb7db51b2010-01-14 08:14:40 +090034
Thomas Gleixner2d2e1d32011-05-09 10:09:26 +020035 s3c_init_vic_timer_irq(5, IRQ_TIMER0);
Kukjin Kimb7db51b2010-01-14 08:14:40 +090036}