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

Linux/Unix编程

开发平台:

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/irq_cpu.h>
  17. #include <asm/ptrace.h>
  18. #include <asm/nile4.h>
  19. #include <asm/ddb5xxx/ddb5xxx.h>
  20. #include <asm/ddb5xxx/ddb5074.h>
  21. extern void __init i8259_init(void);
  22. extern void init_i8259_irqs (void);
  23. extern void i8259_disable_irq(unsigned int irq_nr);
  24. extern void i8259_enable_irq(unsigned int irq_nr);
  25. extern asmlinkage void ddbIRQ(void);
  26. extern asmlinkage void i8259_do_irq(int irq, struct pt_regs *regs);
  27. extern asmlinkage void do_IRQ(int irq, struct pt_regs *regs);
  28. static struct irqaction irq_cascade = { no_action, 0, 0, "cascade", NULL, NULL };
  29. #define M1543_PNP_CONFIG 0x03f0 /* PnP Config Port */
  30. #define M1543_PNP_INDEX 0x03f0 /* PnP Index Port */
  31. #define M1543_PNP_DATA 0x03f1 /* PnP Data Port */
  32. #define M1543_PNP_ALT_CONFIG 0x0370 /* Alternative PnP Config Port */
  33. #define M1543_PNP_ALT_INDEX 0x0370 /* Alternative PnP Index Port */
  34. #define M1543_PNP_ALT_DATA 0x0371 /* Alternative PnP Data Port */
  35. #define M1543_INT1_MASTER_CTRL 0x0020 /* INT_1 (master) Control Register */
  36. #define M1543_INT1_MASTER_MASK 0x0021 /* INT_1 (master) Mask Register */
  37. #define M1543_INT1_SLAVE_CTRL 0x00a0 /* INT_1 (slave) Control Register */
  38. #define M1543_INT1_SLAVE_MASK 0x00a1 /* INT_1 (slave) Mask Register */
  39. #define M1543_INT1_MASTER_ELCR 0x04d0 /* INT_1 (master) Edge/Level Control */
  40. #define M1543_INT1_SLAVE_ELCR 0x04d1 /* INT_1 (slave) Edge/Level Control */
  41. static void m1543_irq_setup(void)
  42. {
  43. /*
  44.  *  The ALI M1543 has 13 interrupt inputs, IRQ1..IRQ13.  Not all
  45.  *  the possible IO sources in the M1543 are in use by us.  We will
  46.  *  use the following mapping:
  47.  *
  48.  *      IRQ1  - keyboard (default set by M1543)
  49.  *      IRQ3  - reserved for UART B (default set by M1543) (note that
  50.  *              the schematics for the DDB Vrc-5074 board seem to
  51.  *              indicate that IRQ3 is connected to the DS1386
  52.  *              watchdog timer interrupt output so we might have
  53.  *              a conflict)
  54.  *      IRQ4  - reserved for UART A (default set by M1543)
  55.  *      IRQ5  - parallel (default set by M1543)
  56.  *      IRQ8  - DS1386 time of day (RTC) interrupt
  57.  *      IRQ12 - mouse
  58.  */
  59. /*
  60.  *  Assing mouse interrupt to IRQ12
  61.  */
  62. /* Enter configuration mode */
  63. outb(0x51, M1543_PNP_CONFIG);
  64. outb(0x23, M1543_PNP_CONFIG);
  65. /* Select logical device 7 (Keyboard) */
  66. outb(0x07, M1543_PNP_INDEX);
  67. outb(0x07, M1543_PNP_DATA);
  68. /* Select IRQ12 */
  69. outb(0x72, M1543_PNP_INDEX);
  70. outb(0x0c, M1543_PNP_DATA);
  71. outb(0x30, M1543_PNP_INDEX);
  72. printk("device 7, 0x30: %02xn",inb(M1543_PNP_DATA));
  73. outb(0x70, M1543_PNP_INDEX);
  74. printk("device 7, 0x70: %02xn",inb(M1543_PNP_DATA));
  75. /* Leave configration mode */
  76. outb(0xbb, M1543_PNP_CONFIG);
  77. }
  78. void ddb_local0_irqdispatch(struct pt_regs *regs)
  79. {
  80. u32 mask;
  81. int nile4_irq;
  82. mask = nile4_get_irq_stat(0);
  83. /* Handle the timer interrupt first */
  84. #if 0
  85. if (mask & (1 << NILE4_INT_GPT)) {
  86. do_IRQ(nile4_to_irq(NILE4_INT_GPT), regs);
  87. mask &= ~(1 << NILE4_INT_GPT);
  88. }
  89. #endif
  90. for (nile4_irq = 0; mask; nile4_irq++, mask >>= 1)
  91. if (mask & 1) {
  92. if (nile4_irq == NILE4_INT_INTE) {
  93. int i8259_irq;
  94. nile4_clear_irq(NILE4_INT_INTE);
  95. i8259_irq = nile4_i8259_iack();
  96. do_IRQ(i8259_irq, regs);
  97. } else
  98. do_IRQ(nile4_to_irq(nile4_irq), regs);
  99. }
  100. }
  101. void ddb_local1_irqdispatch(void)
  102. {
  103. printk("ddb_local1_irqdispatch calledn");
  104. }
  105. void ddb_buserror_irq(void)
  106. {
  107. printk("ddb_buserror_irq calledn");
  108. }
  109. void ddb_8254timer_irq(void)
  110. {
  111. printk("ddb_8254timer_irq calledn");
  112. }
  113. void __init ddb_irq_setup(void)
  114. {
  115. #ifdef CONFIG_REMOTE_DEBUG
  116. if (remote_debug)
  117. set_debug_traps();
  118. breakpoint(); /* you may move this line to whereever you want :-) */
  119. #endif
  120. /* setup cascade interrupts */
  121. setup_irq(NILE4_IRQ_BASE  + NILE4_INT_INTE, &irq_cascade);
  122. setup_irq(CPU_IRQ_BASE + CPU_NILE4_CASCADE, &irq_cascade);
  123. set_except_vector(0, ddbIRQ);
  124. nile4_irq_setup(NILE4_IRQ_BASE);
  125. m1543_irq_setup();
  126. init_i8259_irqs();
  127. printk("CPU_IRQ_BASE: %dn",CPU_IRQ_BASE);
  128. mips_cpu_irq_init(CPU_IRQ_BASE);
  129. printk("enabling 8259 cascaden");
  130. ddb5074_led_hex(0);
  131. /* Enable the interrupt cascade */
  132. nile4_enable_irq(NILE4_IRQ_BASE+IRQ_I8259_CASCADE);
  133. }