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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/mips/ddb5074/irq.c -- NEC DDB Vrc-5074 interrupt routines
  3.  *
  4.  *  Copyright (C) 2000 Geert Uytterhoeven <geert@sonycom.com>
  5.  *                     Sony Software Development Center Europe (SDCE), Brussels
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/init.h>
  9. #include <linux/signal.h>
  10. #include <linux/sched.h>
  11. #include <linux/types.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/ioport.h>
  14. #include <asm/io.h>
  15. #include <asm/irq.h>
  16. #include <asm/ptrace.h>
  17. #include <asm/nile4.h>
  18. #include <asm/ddb5074.h>
  19. extern void __init i8259_init(void);
  20. extern void i8259_disable_irq(unsigned int irq_nr);
  21. extern void i8259_enable_irq(unsigned int irq_nr);
  22. extern asmlinkage void ddbIRQ(void);
  23. extern asmlinkage void i8259_do_irq(int irq, struct pt_regs *regs);
  24. extern asmlinkage void do_IRQ(int irq, struct pt_regs *regs);
  25. void no_action(int cpl, void *dev_id, struct pt_regs *regs)
  26. {
  27. }
  28. #define M1543_PNP_CONFIG 0x03f0 /* PnP Config Port */
  29. #define M1543_PNP_INDEX 0x03f0 /* PnP Index Port */
  30. #define M1543_PNP_DATA 0x03f1 /* PnP Data Port */
  31. #define M1543_PNP_ALT_CONFIG 0x0370 /* Alternative PnP Config Port */
  32. #define M1543_PNP_ALT_INDEX 0x0370 /* Alternative PnP Index Port */
  33. #define M1543_PNP_ALT_DATA 0x0371 /* Alternative PnP Data Port */
  34. #define M1543_INT1_MASTER_CTRL 0x0020 /* INT_1 (master) Control Register */
  35. #define M1543_INT1_MASTER_MASK 0x0021 /* INT_1 (master) Mask Register */
  36. #define M1543_INT1_SLAVE_CTRL 0x00a0 /* INT_1 (slave) Control Register */
  37. #define M1543_INT1_SLAVE_MASK 0x00a1 /* INT_1 (slave) Mask Register */
  38. #define M1543_INT1_MASTER_ELCR 0x04d0 /* INT_1 (master) Edge/Level Control */
  39. #define M1543_INT1_SLAVE_ELCR 0x04d1 /* INT_1 (slave) Edge/Level Control */
  40. static void m1543_irq_setup(void)
  41. {
  42. /*
  43.  *  The ALI M1543 has 13 interrupt inputs, IRQ1..IRQ13.  Not all
  44.  *  the possible IO sources in the M1543 are in use by us.  We will
  45.  *  use the following mapping:
  46.  *
  47.  *      IRQ1  - keyboard (default set by M1543)
  48.  *      IRQ3  - reserved for UART B (default set by M1543) (note that
  49.  *              the schematics for the DDB Vrc-5074 board seem to 
  50.  *              indicate that IRQ3 is connected to the DS1386 
  51.  *              watchdog timer interrupt output so we might have 
  52.  *              a conflict)
  53.  *      IRQ4  - reserved for UART A (default set by M1543)
  54.  *      IRQ5  - parallel (default set by M1543)
  55.  *      IRQ8  - DS1386 time of day (RTC) interrupt
  56.  *      IRQ12 - mouse
  57.  */
  58. /*
  59.  *  Assing mouse interrupt to IRQ12 
  60.  */
  61. /* Enter configuration mode */
  62. outb(0x51, M1543_PNP_CONFIG);
  63. outb(0x23, M1543_PNP_CONFIG);
  64. /* Select logical device 7 (Keyboard) */
  65. outb(0x07, M1543_PNP_INDEX);
  66. outb(0x07, M1543_PNP_DATA);
  67. /* Select IRQ12 */
  68. outb(0x72, M1543_PNP_INDEX);
  69. outb(0x0c, M1543_PNP_DATA);
  70. /* Leave configration mode */
  71. outb(0xbb, M1543_PNP_CONFIG);
  72. /* Initialize the 8259 PIC in the M1543 */
  73. i8259_init();
  74. /* Enable the interrupt cascade */
  75. nile4_enable_irq(NILE4_INT_INTE);
  76. request_region(M1543_PNP_CONFIG, 2, "M1543 config");
  77. request_region(M1543_INT1_MASTER_ELCR, 2, "pic ELCR");
  78. }
  79. static void nile4_irq_setup(void)
  80. {
  81. int i;
  82. /* Map all interrupts to CPU int #0 */
  83. nile4_map_irq_all(0);
  84. /* PCI INTA#-E# must be level triggered */
  85. nile4_set_pci_irq_level_or_edge(0, 1);
  86. nile4_set_pci_irq_level_or_edge(1, 1);
  87. nile4_set_pci_irq_level_or_edge(2, 1);
  88. nile4_set_pci_irq_level_or_edge(3, 1);
  89. nile4_set_pci_irq_level_or_edge(4, 1);
  90. /* PCI INTA#-D# must be active low, INTE# must be active high */
  91. nile4_set_pci_irq_polarity(0, 0);
  92. nile4_set_pci_irq_polarity(1, 0);
  93. nile4_set_pci_irq_polarity(2, 0);
  94. nile4_set_pci_irq_polarity(3, 0);
  95. nile4_set_pci_irq_polarity(4, 1);
  96. for (i = 0; i < 16; i++)
  97. nile4_clear_irq(i);
  98. /* Enable CPU int #0 */
  99. nile4_enable_irq_output(0);
  100. request_mem_region(NILE4_BASE, NILE4_SIZE, "Nile 4");
  101. }
  102. /*
  103.  * IRQ2 is cascade interrupt to second interrupt controller
  104.  */
  105. static struct irqaction irq2 = { no_action, 0, 0, "cascade", NULL, NULL };
  106. void disable_irq(unsigned int irq_nr)
  107. {
  108. if (is_i8259_irq(irq_nr))
  109. i8259_disable_irq(irq_nr);
  110. else
  111. nile4_disable_irq(irq_to_nile4(irq_nr));
  112. }
  113. void enable_irq(unsigned int irq_nr)
  114. {
  115. if (is_i8259_irq(irq_nr))
  116. i8259_enable_irq(irq_nr);
  117. else
  118. nile4_enable_irq(irq_to_nile4(irq_nr));
  119. }
  120. int table[16] = { 0, };
  121. void ddb_local0_irqdispatch(struct pt_regs *regs)
  122. {
  123. u32 mask;
  124. int nile4_irq;
  125. #if 1
  126. volatile static int nesting = 0;
  127. if (nesting++ == 0)
  128. ddb5074_led_d3(1);
  129. ddb5074_led_hex(nesting < 16 ? nesting : 15);
  130. #endif
  131. mask = nile4_get_irq_stat(0);
  132. nile4_clear_irq_mask(mask);
  133. /* Handle the timer interrupt first */
  134. if (mask & (1 << NILE4_INT_GPT)) {
  135. nile4_disable_irq(NILE4_INT_GPT);
  136. do_IRQ(nile4_to_irq(NILE4_INT_GPT), regs);
  137. nile4_enable_irq(NILE4_INT_GPT);
  138. mask &= ~(1 << NILE4_INT_GPT);
  139. }
  140. for (nile4_irq = 0; mask; nile4_irq++, mask >>= 1)
  141. if (mask & 1) {
  142. nile4_disable_irq(nile4_irq);
  143. if (nile4_irq == NILE4_INT_INTE) {
  144. int i8259_irq = nile4_i8259_iack();
  145. i8259_do_irq(i8259_irq, regs);
  146. } else
  147. do_IRQ(nile4_to_irq(nile4_irq), regs);
  148. nile4_enable_irq(nile4_irq);
  149. }
  150. #if 1
  151. if (--nesting == 0)
  152. ddb5074_led_d3(0);
  153. ddb5074_led_hex(nesting < 16 ? nesting : 15);
  154. #endif
  155. }
  156. void ddb_local1_irqdispatch(void)
  157. {
  158. printk("ddb_local1_irqdispatch calledn");
  159. }
  160. void ddb_buserror_irq(void)
  161. {
  162. printk("ddb_buserror_irq calledn");
  163. }
  164. void ddb_8254timer_irq(void)
  165. {
  166. printk("ddb_8254timer_irq calledn");
  167. }
  168. void __init ddb_irq_setup(void)
  169. {
  170. #ifdef CONFIG_REMOTE_DEBUG
  171. if (remote_debug)
  172. set_debug_traps();
  173. breakpoint(); /* you may move this line to whereever you want :-) */
  174. #endif
  175. request_region(0x20, 0x20, "pic1");
  176. request_region(0xa0, 0x20, "pic2");
  177. i8259_setup_irq(2, &irq2);
  178. nile4_irq_setup();
  179. m1543_irq_setup();
  180. set_except_vector(0, ddbIRQ);
  181. }