Blame view

arch/arm/plat-s5p/irq.c 823 Bytes
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /* arch/arm/plat-s5p/irq.c
   *
   * 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>
  
  #include <asm/hardware/vic.h>
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
19
20
  #include <mach/map.h>
  #include <plat/regs-timer.h>
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
21
22
  #include <plat/cpu.h>
  #include <plat/irq-vic-timer.h>
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
23
24
25
  
  void __init s5p_init_irq(u32 *vic, u32 num_vic)
  {
84bbc16c1   Changhwan Youn   ARM: S5PV310: Add...
26
  #ifdef CONFIG_ARM_VIC
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
27
28
29
30
  	int irq;
  
  	/* initialize the VICs */
  	for (irq = 0; irq < num_vic; irq++)
813179604   Kukjin Kim   ARM: S5P6440: Mov...
31
  		vic_init(VA_VIC(irq), VIC_BASE(irq), vic[irq], 0);
84bbc16c1   Changhwan Youn   ARM: S5PV310: Add...
32
  #endif
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
33

2d2e1d3c4   Thomas Gleixner   ARM: SAMSUNG: Con...
34
  	s3c_init_vic_timer_irq(5, IRQ_TIMER0);
b7db51be4   Kukjin Kim   ARM: S5P6440: Add...
35
  }