irq.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-integrator/irq.c
  3.  *
  4.  *  Copyright (C) 1999 ARM Limited
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. #include <linux/init.h>
  21. #include <asm/hardware.h>
  22. #include <asm/irq.h>
  23. #include <asm/io.h>
  24. #include <asm/mach/irq.h>
  25. /* 
  26.  * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
  27.  * is the (PA >> 12).
  28.  *
  29.  * Setup a VA for the Integrator interrupt controller (for header #0,
  30.  * just for now).
  31.  */
  32. #define VA_IC_BASE              IO_ADDRESS(INTEGRATOR_IC_BASE) 
  33. #define VA_CMIC_BASE            IO_ADDRESS(INTEGRATOR_HDR_BASE) + INTEGRATOR_HDR_IC_OFFSET
  34. #define ALLPCI ( (1 << IRQ_PCIINT0) | (1 << IRQ_PCIINT1) | (1 << IRQ_PCIINT2) | (1 << IRQ_PCIINT3) ) 
  35. static void sc_mask_irq(unsigned int irq)
  36. {
  37.         __raw_writel(1 << irq, VA_IC_BASE + IRQ_ENABLE_CLEAR);
  38. }
  39. static void sc_unmask_irq(unsigned int irq)
  40. {
  41.         __raw_writel(1 << irq, VA_IC_BASE + IRQ_ENABLE_SET);
  42. }
  43.  
  44. void __init integrator_init_irq(void)
  45. {
  46. unsigned int i;
  47. for (i = 0; i < NR_IRQS; i++) {
  48.         if (((1 << i) && INTEGRATOR_SC_VALID_INT) != 0) {
  49.         irq_desc[i].valid = 1;
  50. irq_desc[i].probe_ok = 1;
  51. irq_desc[i].mask_ack = sc_mask_irq;
  52. irq_desc[i].mask = sc_mask_irq;
  53. irq_desc[i].unmask = sc_unmask_irq;
  54. }
  55. }
  56. /* Disable all interrupts initially. */
  57. /* Do the core module ones */
  58. __raw_writel(-1, VA_CMIC_BASE + IRQ_ENABLE_CLEAR);
  59. /* do the header card stuff next */
  60. __raw_writel(-1, VA_IC_BASE + IRQ_ENABLE_CLEAR);
  61. __raw_writel(-1, VA_IC_BASE + FIQ_ENABLE_CLEAR);
  62. }