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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1992 Linus Torvalds
  7.  * Copyright (C) 1994 - 2001 Ralf Baechle
  8.  */
  9. #include <linux/delay.h>
  10. #include <linux/init.h>
  11. #include <linux/irq.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/kernel.h>
  14. #include <linux/spinlock.h>
  15. #include <asm/io.h>
  16. #include <asm/jazz.h>
  17. extern asmlinkage void jazz_handle_int(void);
  18. /*
  19.  * On systems with i8259-style interrupt controllers we assume for
  20.  * driver compatibility reasons interrupts 0 - 15 to be the i8295
  21.  * interrupts even if the hardware uses a different interrupt numbering.
  22.  */
  23. void __init init_IRQ (void)
  24. {
  25. int i;
  26. set_except_vector(0, jazz_handle_int);
  27. init_generic_irq();
  28. init_i8259_irqs(); /* Integrated i8259  */
  29. #if 0
  30. init_jazz_irq();
  31. /* Actually we've got more interrupts to handle ...  */
  32. for (i = PCIMT_IRQ_INT2; i <= PCIMT_IRQ_ETHERNET; i++) {
  33. irq_desc[i].status     = IRQ_DISABLED;
  34. irq_desc[i].action     = 0;
  35. irq_desc[i].depth      = 1;
  36. irq_desc[i].handler    = &pciasic_irq_type;
  37. }
  38. #endif
  39. }