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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 2000, 2001 MIPS Technologies, Inc.
  4.  * Copyright (C) 2001 Ralf Baechle
  5.  *
  6.  *  This program is free software; you can distribute it and/or modify it
  7.  *  under the terms of the GNU General Public License (Version 2) as
  8.  *  published by the Free Software Foundation.
  9.  *
  10.  *  This program is distributed in the hope it will be useful, but WITHOUT
  11.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13.  *  for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License along
  16.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  17.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  18.  *
  19.  * Routines for generic manipulation of the interrupts found on the MIPS 
  20.  * Malta board.
  21.  * The interrupt controller is located in the South Bridge a PIIX4 device 
  22.  * with two internal 82C95 interrupt controllers.
  23.  */
  24. #include <linux/config.h>
  25. #include <linux/init.h>
  26. #include <linux/sched.h>
  27. #include <linux/slab.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/kernel_stat.h>
  30. #include <linux/random.h>
  31. #include <asm/irq.h>
  32. #include <asm/io.h>
  33. #include <asm/mips-boards/malta.h>
  34. #include <asm/mips-boards/maltaint.h>
  35. #include <asm/mips-boards/piix4.h>
  36. #include <asm/gt64120.h>
  37. #include <asm/mips-boards/generic.h>
  38. extern asmlinkage void mipsIRQ(void);
  39. void malta_hw0_irqdispatch(struct pt_regs *regs)
  40. {
  41. int irq;
  42. /*  
  43.  * Determine highest priority pending interrupt by performing a PCI
  44.  * Interrupt Acknowledge cycle.
  45.  */
  46. GT_READ(GT_PCI0_IACK_OFS, irq);
  47. irq &= 0xFF;
  48. /*  
  49.  * IRQ7 is used to detect spurious interrupts.  The interrupt
  50.  * acknowledge cycle returns IRQ7, if no interrupts is requested.  We
  51.  * can differentiate between this situation and a "normal" IRQ7 by
  52.  * reading the ISR.
  53.  */
  54. if (irq == 7) {
  55. outb(PIIX4_OCW3_SEL | PIIX4_OCW3_ISR, PIIX4_ICTLR1_OCW3);
  56. if (!(inb(PIIX4_ICTLR1_OCW3) & (1 << 7)))
  57.         return;    /* Spurious interrupt. */
  58. }
  59. do_IRQ(irq, regs);
  60. }
  61. void __init init_IRQ(void)
  62. {
  63. set_except_vector(0, mipsIRQ);
  64. init_generic_irq();
  65. init_i8259_irqs();
  66. #ifdef CONFIG_REMOTE_DEBUG
  67. if (remote_debug) {
  68. set_debug_traps();
  69. breakpoint();
  70. }
  71. #endif
  72. }