2012-04-16 06:40:33 +02:00
|
|
|
/*
|
2010-01-14 00:14:40 +01:00
|
|
|
* Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com/
|
|
|
|
*
|
|
|
|
* S5P - Interrupt handling
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/io.h>
|
2013-01-07 16:45:59 +01:00
|
|
|
#include <linux/irqchip/arm-vic.h>
|
2010-01-14 00:14:40 +01:00
|
|
|
|
2013-03-05 11:28:29 +01:00
|
|
|
#include <mach/irqs.h>
|
2010-01-14 00:14:40 +01:00
|
|
|
#include <mach/map.h>
|
|
|
|
#include <plat/cpu.h>
|
|
|
|
|
|
|
|
void __init s5p_init_irq(u32 *vic, u32 num_vic)
|
|
|
|
{
|
2010-07-16 05:12:07 +02:00
|
|
|
#ifdef CONFIG_ARM_VIC
|
2010-01-14 00:14:40 +01:00
|
|
|
int irq;
|
|
|
|
|
|
|
|
/* initialize the VICs */
|
|
|
|
for (irq = 0; irq < num_vic; irq++)
|
2010-01-27 08:57:07 +01:00
|
|
|
vic_init(VA_VIC(irq), VIC_BASE(irq), vic[irq], 0);
|
2010-07-16 05:12:07 +02:00
|
|
|
#endif
|
2010-01-14 00:14:40 +01:00
|
|
|
}
|