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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/mips/ddb5476/irq.c -- NEC DDB Vrc-5476 interrupt routines
  3.  *
  4.  *  Copyright (C) 2000 Geert Uytterhoeven <geert@sonycom.com>
  5.  *                     Sony Software Development Center Europe (SDCE), Brussels
  6.  *
  7.  * Re-write the whole thing to use new irq.c file.
  8.  * Copyright (C) 2001 MontaVista Software Inc.
  9.  * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  10.  *
  11.  */
  12. #include <linux/init.h>
  13. #include <linux/sched.h>
  14. #include <linux/types.h>
  15. #include <linux/interrupt.h>
  16. #include <asm/io.h>
  17. #include <asm/ptrace.h>
  18. #include <asm/ddb5xxx/ddb5xxx.h>
  19. #define M1543_PNP_CONFIG 0x03f0 /* PnP Config Port */
  20. #define M1543_PNP_INDEX 0x03f0 /* PnP Index Port */
  21. #define M1543_PNP_DATA 0x03f1 /* PnP Data Port */
  22. #define M1543_PNP_ALT_CONFIG 0x0370 /* Alternative PnP Config Port */
  23. #define M1543_PNP_ALT_INDEX 0x0370 /* Alternative PnP Index Port */
  24. #define M1543_PNP_ALT_DATA 0x0371 /* Alternative PnP Data Port */
  25. #define M1543_INT1_MASTER_CTRL 0x0020 /* INT_1 (master) Control Register */
  26. #define M1543_INT1_MASTER_MASK 0x0021 /* INT_1 (master) Mask Register */
  27. #define M1543_INT1_SLAVE_CTRL 0x00a0 /* INT_1 (slave) Control Register */
  28. #define M1543_INT1_SLAVE_MASK 0x00a1 /* INT_1 (slave) Mask Register */
  29. #define M1543_INT1_MASTER_ELCR 0x04d0 /* INT_1 (master) Edge/Level Control */
  30. #define M1543_INT1_SLAVE_ELCR 0x04d1 /* INT_1 (slave) Edge/Level Control */
  31. static void m1543_irq_setup(void)
  32. {
  33. /*
  34.  *  The ALI M1543 has 13 interrupt inputs, IRQ1..IRQ13.  Not all
  35.  *  the possible IO sources in the M1543 are in use by us.  We will
  36.  *  use the following mapping:
  37.  *
  38.  *      IRQ1  - keyboard (default set by M1543)
  39.  *      IRQ3  - reserved for UART B (default set by M1543) (note that
  40.  *              the schematics for the DDB Vrc-5476 board seem to
  41.  *              indicate that IRQ3 is connected to the DS1386
  42.  *              watchdog timer interrupt output so we might have
  43.  *              a conflict)
  44.  *      IRQ4  - reserved for UART A (default set by M1543)
  45.  *      IRQ5  - parallel (default set by M1543)
  46.  *      IRQ8  - DS1386 time of day (RTC) interrupt
  47.  *      IRQ9  - USB (hardwired in ddb_setup)
  48.  *      IRQ10 - PMU (hardwired in ddb_setup)
  49.  *      IRQ12 - mouse
  50.  *      IRQ14,15 - IDE controller (need to be confirmed, jsun)
  51.  */
  52. /*
  53.  *  Assing mouse interrupt to IRQ12
  54.  */
  55. /* Enter configuration mode */
  56. outb(0x51, M1543_PNP_CONFIG);
  57. outb(0x23, M1543_PNP_CONFIG);
  58. /* Select logical device 7 (Keyboard) */
  59. outb(0x07, M1543_PNP_INDEX);
  60. outb(0x07, M1543_PNP_DATA);
  61. /* Select IRQ12 */
  62. outb(0x72, M1543_PNP_INDEX);
  63. outb(0x0c, M1543_PNP_DATA);
  64. /* Leave configration mode */
  65. outb(0xbb, M1543_PNP_CONFIG);
  66. }
  67. static void nile4_irq_setup(void)
  68. {
  69. int i;
  70. /* Map all interrupts to CPU int #0 (IP2) */
  71. nile4_map_irq_all(0);
  72. /* PCI INTA#-E# must be level triggered */
  73. nile4_set_pci_irq_level_or_edge(0, 1);
  74. nile4_set_pci_irq_level_or_edge(1, 1);
  75. nile4_set_pci_irq_level_or_edge(2, 1);
  76. nile4_set_pci_irq_level_or_edge(3, 1);
  77. /* PCI INTA#, B#, D# must be active low, INTC# must be active high */
  78. nile4_set_pci_irq_polarity(0, 0);
  79. nile4_set_pci_irq_polarity(1, 0);
  80. nile4_set_pci_irq_polarity(2, 1);
  81. nile4_set_pci_irq_polarity(3, 0);
  82. for (i = 0; i < 16; i++)
  83. nile4_clear_irq(i);
  84. /* Enable CPU int #0 */
  85. nile4_enable_irq_output(0);
  86. /* memory resource acquire in ddb_setup */
  87. }
  88. static void error_action(int irq, void *dev_id, struct pt_regs *regs)
  89. {
  90. printk(KERN_ERR "Error interrupt happend: %dn", irq);
  91. }
  92. static struct irqaction irq_cascade = { no_action, 0, 0, "cascade", NULL, NULL };
  93. static struct irqaction irq_error = { no_action, 0, 0, "error", NULL, NULL };
  94. extern asmlinkage void ddb5476_handle_int(void);
  95. extern int setup_irq(unsigned int irq, struct irqaction *irqaction);
  96. extern void mips_cpu_irq_init(u32 irq_base);
  97. extern void vrc5476_irq_init(u32 irq_base);
  98. void __init ddb5476_irq_setup(void)
  99. {
  100. /* hardware initialization */
  101. nile4_irq_setup();
  102. m1543_irq_setup();
  103. /* controller setup */
  104. init_i8259_irqs();
  105. vrc5476_irq_init(VRC5476_IRQ_BASE);
  106. mips_cpu_irq_init(CPU_IRQ_BASE);
  107. /* setup cascade interrupts */
  108. setup_irq(VRC5476_IRQ_BASE + VRC5476_I8259_CASCADE, &irq_cascade);
  109. setup_irq(CPU_IRQ_BASE + CPU_VRC5476_CASCADE, &irq_cascade);
  110. /* setup error interrupts for debugging */
  111. setup_irq(VRC5476_IRQ_BASE + VRC5476_IRQ_CPCE, &irq_error);
  112. setup_irq(VRC5476_IRQ_BASE + VRC5476_IRQ_CNTD, &irq_error);
  113. setup_irq(VRC5476_IRQ_BASE + VRC5476_IRQ_MCE, &irq_error);
  114. setup_irq(VRC5476_IRQ_BASE + VRC5476_IRQ_LBRT, &irq_error);
  115. setup_irq(VRC5476_IRQ_BASE + VRC5476_IRQ_PCIS, &irq_error);
  116. setup_irq(VRC5476_IRQ_BASE + VRC5476_IRQ_PCI, &irq_error);
  117. /* setup the grandpa intr vector */
  118. set_except_vector(0, ddb5476_handle_int);
  119. }