irq.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-epxa10db/irq.c
  3.  *
  4.  *  Copyright (C) 2001 Altera Corporation
  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. #include <asm/arch/platform.h>
  26. #include <asm/arch/int_ctrl00.h>
  27. static void mask_irq(unsigned int irq)
  28. {
  29.         __raw_writel(1 << irq, INT_MC(IO_ADDRESS(EXC_INT_CTRL00_BASE)));
  30. }
  31. static void unmask_irq(unsigned int irq)
  32. {
  33.         __raw_writel(1 << irq, INT_MS(IO_ADDRESS(EXC_INT_CTRL00_BASE)));
  34. }
  35.  
  36. void __init epxa10db_init_irq(void)
  37. {
  38. unsigned int i;
  39. /*
  40.  * This bit sets up the interrupt controller using 
  41.  * the 6 PLD interrupts mode (the default) each 
  42.  * irqs is assigned a priority which is the same
  43.  * as its interrupt number. This scheme is used because 
  44.  * its easy, but you may want to change it depending
  45.  * on the contents of your PLD
  46.  */
  47. __raw_writel(3,INT_MODE(IO_ADDRESS(EXC_INT_CTRL00_BASE)));
  48. for (i = 0; i < NR_IRQS; i++){
  49. __raw_writel(i+1, INT_PRIORITY_P0(IO_ADDRESS(EXC_INT_CTRL00_BASE)) + (4*i));
  50. }
  51. for (i = 0; i < NR_IRQS; i++) {
  52.        
  53. irq_desc[i].valid = 1;
  54. irq_desc[i].probe_ok = 1;
  55. irq_desc[i].mask_ack = mask_irq;
  56. irq_desc[i].mask = mask_irq;
  57. irq_desc[i].unmask = unmask_irq;
  58. }
  59. /* Disable all interrupt */
  60. __raw_writel(-1,INT_MC(IO_ADDRESS(EXC_INT_CTRL00_BASE)));
  61. }