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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  *  arch/mips/ddb5xxx/ddb5477/irq.c
  6.  *     The irq setup and misc routines for DDB5476.
  7.  *
  8.  * This program is free software; you can redistribute  it and/or modify it
  9.  * under  the terms of  the GNU General  Public License as published by the
  10.  * Free Software Foundation;  either version 2 of the  License, or (at your
  11.  * option) any later version.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/init.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/types.h>
  17. #include <linux/ptrace.h>
  18. #include <asm/system.h>
  19. #include <asm/mipsregs.h>
  20. #include <asm/debug.h>
  21. #include <asm/addrspace.h>
  22. #include <asm/bootinfo.h>
  23. #include <asm/ddb5xxx/ddb5xxx.h>
  24. /*
  25.  * IRQ mapping
  26.  *
  27.  *  0-7: 8 CPU interrupts
  28.  * 0 - software interrupt 0
  29.  * 1 -  software interrupt 1
  30.  * 2 -  most Vrc5477 interrupts are routed to this pin
  31.  * 3 -  (optional) some other interrupts routed to this pin for debugg
  32.  * 4 -  not used
  33.  * 5 -  not used
  34.  * 6 -  not used
  35.  * 7 -  cpu timer (used by default)
  36.  *
  37.  *  8-39: 32 Vrc5477 interrupt sources
  38.  * (refer to the Vrc5477 manual)
  39.  */
  40. #define PCI0 DDB_INTPPES0
  41. #define PCI1 DDB_INTPPES1
  42. #define ACTIVE_LOW 1
  43. #define ACTIVE_HIGH 0
  44. #define LEVEL_SENSE 2
  45. #define EDGE_TRIGGER 0
  46. #define INTA 0
  47. #define INTB 1
  48. #define INTC 2
  49. #define INTD 3
  50. #define INTE 4
  51. static inline void
  52. set_pci_int_attr(u32 pci, u32 intn, u32 active, u32 trigger)
  53. {
  54. u32 reg_value;
  55. u32 reg_bitmask;
  56. reg_value = ddb_in32(pci);
  57. reg_bitmask = 0x3 << (intn * 2);
  58. reg_value &= ~reg_bitmask;
  59. reg_value |= (active | trigger) << (intn * 2);
  60. ddb_out32(pci, reg_value);
  61. }
  62. extern void init_i8259_irqs (void);
  63. extern void vrc5477_irq_init(u32 base);
  64. extern void mips_cpu_irq_init(u32 base);
  65. extern asmlinkage void ddb5477_handle_int(void);
  66. extern int setup_irq(unsigned int irq, struct irqaction *irqaction);
  67. static struct irqaction irq_cascade = { no_action, 0, 0, "cascade", NULL, NULL };
  68. void
  69. ddb5477_irq_setup(void)
  70. {
  71. db_run(printk("ddb5477_irq_setup invoked.n"));
  72. /* by default, we disable all interrupts and route all vrc5477
  73.  * interrupts to pin 0 (irq 2) */
  74. ddb_out32(DDB_INTCTRL0, 0);
  75. ddb_out32(DDB_INTCTRL1, 0);
  76. ddb_out32(DDB_INTCTRL2, 0);
  77. ddb_out32(DDB_INTCTRL3, 0);
  78. clear_cp0_status(0xff00);
  79. set_cp0_status(0x0400);
  80. /* setup PCI interrupt attributes */
  81. set_pci_int_attr(PCI0, INTA, ACTIVE_LOW, LEVEL_SENSE);
  82. set_pci_int_attr(PCI0, INTB, ACTIVE_LOW, LEVEL_SENSE);
  83. if (mips_machtype == MACH_NEC_ROCKHOPPERII)
  84. set_pci_int_attr(PCI0, INTC, ACTIVE_HIGH, LEVEL_SENSE);
  85. else
  86. set_pci_int_attr(PCI0, INTC, ACTIVE_LOW, LEVEL_SENSE);
  87. set_pci_int_attr(PCI0, INTD, ACTIVE_LOW, LEVEL_SENSE);
  88. set_pci_int_attr(PCI0, INTE, ACTIVE_LOW, LEVEL_SENSE);
  89. set_pci_int_attr(PCI1, INTA, ACTIVE_LOW, LEVEL_SENSE);
  90. set_pci_int_attr(PCI1, INTB, ACTIVE_LOW, LEVEL_SENSE);
  91. set_pci_int_attr(PCI1, INTC, ACTIVE_LOW, LEVEL_SENSE);
  92. set_pci_int_attr(PCI1, INTD, ACTIVE_LOW, LEVEL_SENSE);
  93. set_pci_int_attr(PCI1, INTE, ACTIVE_LOW, LEVEL_SENSE);
  94. /*
  95.  * for debugging purpose, we enable several error interrupts
  96.  * and route them to pin 1. (IP3)
  97.  */
  98. /* cpu parity check - 0 */
  99. ll_vrc5477_irq_route(0, 1); ll_vrc5477_irq_enable(0);
  100. /* cpu no-target decode - 1 */
  101. ll_vrc5477_irq_route(1, 1); ll_vrc5477_irq_enable(1);
  102. /* local bus read time-out - 7 */
  103. ll_vrc5477_irq_route(7, 1); ll_vrc5477_irq_enable(7);
  104. /* PCI SERR# - 14 */
  105. ll_vrc5477_irq_route(14, 1); ll_vrc5477_irq_enable(14);
  106. /* PCI internal error - 15 */
  107. ll_vrc5477_irq_route(15, 1); ll_vrc5477_irq_enable(15);
  108. /* IOPCI SERR# - 30 */
  109. ll_vrc5477_irq_route(30, 1); ll_vrc5477_irq_enable(30);
  110. /* IOPCI internal error - 31 */
  111. ll_vrc5477_irq_route(31, 1); ll_vrc5477_irq_enable(31);
  112. /* init all controllers */
  113. init_i8259_irqs();
  114. mips_cpu_irq_init(CPU_IRQ_BASE);
  115. vrc5477_irq_init(VRC5477_IRQ_BASE);
  116. /* setup cascade interrupts */
  117. setup_irq(VRC5477_IRQ_BASE + VRC5477_I8259_CASCADE, &irq_cascade);
  118. setup_irq(CPU_IRQ_BASE + CPU_VRC5477_CASCADE, &irq_cascade);
  119. /* hook up the first-level interrupt handler */
  120. set_except_vector(0, ddb5477_handle_int);
  121. }
  122. u8 i8259_interrupt_ack(void)
  123. {
  124. u8 irq;
  125. u32 reg;
  126. /* Set window 0 for interrupt acknowledge */
  127. reg = ddb_in32(DDB_PCIINIT10);
  128. ddb_set_pmr(DDB_PCIINIT10, DDB_PCICMD_IACK, 0, DDB_PCI_ACCESS_32);
  129. irq = *(volatile u8 *) KSEG1ADDR(DDB_PCI_IACK_BASE);
  130. ddb_out32(DDB_PCIINIT10, reg);
  131. /* i8259.c set the base vector to be 0x0 */
  132. return irq + I8259_IRQ_BASE;
  133. }
  134. /*
  135.  * the first level int-handler will jump here if it is a vrc5477 irq
  136.  */
  137. #define NUM_5477_IRQS 32
  138. asmlinkage void
  139. vrc5477_irq_dispatch(struct pt_regs *regs)
  140. {
  141. extern unsigned int do_IRQ(int irq, struct pt_regs *regs);
  142. u32 intStatus;
  143. u32 bitmask;
  144. u32 i;
  145. db_assert(ddb_in32(DDB_INT2STAT) == 0);
  146. db_assert(ddb_in32(DDB_INT3STAT) == 0);
  147. db_assert(ddb_in32(DDB_INT4STAT) == 0);
  148. db_assert(ddb_in32(DDB_NMISTAT) == 0);
  149. if (ddb_in32(DDB_INT1STAT) != 0) {
  150. #if defined(CONFIG_DEBUG)
  151. vrc5477_show_int_regs();
  152. #endif
  153. panic("error interrupt has happened.");
  154. }
  155. intStatus = ddb_in32(DDB_INT0STAT);
  156. if (mips_machtype == MACH_NEC_ROCKHOPPERII) {
  157. /* check for i8259 interrupts */
  158. if (intStatus & (1 << VRC5477_I8259_CASCADE)) {
  159. int i8259_irq = i8259_interrupt_ack();
  160. do_IRQ(I8259_IRQ_BASE + i8259_irq, regs);
  161. return;
  162. }
  163. }
  164. for (i=0, bitmask=1; i<= NUM_5477_IRQS; bitmask <<=1, i++) {
  165. /* do we need to "and" with the int mask? */
  166. if (intStatus & bitmask) {
  167. do_IRQ(VRC5477_IRQ_BASE + i, regs);
  168. return;
  169. }
  170. }
  171. }