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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * BRIEF MODULE DESCRIPTION
  4.  * ITE 8172 Interrupt Numbering
  5.  *
  6.  * Copyright 2000 MontaVista Software Inc.
  7.  * Author: MontaVista Software, Inc.
  8.  *          ppopov@mvista.com or source@mvista.com
  9.  *
  10.  *  This program is free software; you can redistribute  it and/or modify it
  11.  *  under  the terms of  the GNU General  Public License as published by the
  12.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  13.  *  option) any later version.
  14.  *
  15.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  16.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  17.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  18.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  19.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  20.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  21.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  22.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  23.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  24.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25.  *
  26.  *  You should have received a copy of the  GNU General Public License along
  27.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  28.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  29.  */
  30. #ifndef _MIPS_ITEINT_H
  31. #define _MIPS_ITEINT_H
  32. /*
  33.  * Here's the "strategy":
  34.  * We number the LPC serial irqs from 0 to 15,
  35.  * the local bus irqs from 16 to 31,
  36.  * the pci dev register interrupts from 32 to 47,
  37.  * and the non-maskable ints from 48 to 53.
  38.  */
  39. #define IT8172_LPC_IRQ_BASE  0    /* first LPC int number */
  40. #define IT8172_SERIRQ_0      (IT8172_LPC_IRQ_BASE + 0)
  41. #define IT8172_SERIRQ_1      (IT8172_LPC_IRQ_BASE + 1)
  42. #define IT8172_SERIRQ_2      (IT8172_LPC_IRQ_BASE + 2)
  43. #define IT8172_SERIRQ_3      (IT8172_LPC_IRQ_BASE + 3)
  44. #define IT8172_SERIRQ_4      (IT8172_LPC_IRQ_BASE + 4)
  45. #define IT8172_SERIRQ_5      (IT8172_LPC_IRQ_BASE + 5)
  46. #define IT8172_SERIRQ_6      (IT8172_LPC_IRQ_BASE + 6)
  47. #define IT8172_SERIRQ_7      (IT8172_LPC_IRQ_BASE + 7)
  48. #define IT8172_SERIRQ_8      (IT8172_LPC_IRQ_BASE + 8)
  49. #define IT8172_SERIRQ_9      (IT8172_LPC_IRQ_BASE + 9)
  50. #define IT8172_SERIRQ_10     (IT8172_LPC_IRQ_BASE + 10)
  51. #define IT8172_SERIRQ_11     (IT8172_LPC_IRQ_BASE + 11)
  52. #define IT8172_SERIRQ_12     (IT8172_LPC_IRQ_BASE + 12)
  53. #define IT8172_SERIRQ_13     (IT8172_LPC_IRQ_BASE + 13)
  54. #define IT8172_SERIRQ_14     (IT8172_LPC_IRQ_BASE + 14)
  55. #define IT8172_SERIRQ_15     (IT8172_LPC_IRQ_BASE + 15)
  56. #define IT8172_LB_IRQ_BASE  16   /* first local bus int number */
  57. #define IT8172_PPR_IRQ          (IT8172_LB_IRQ_BASE + 0) /* parallel port */
  58. #define IT8172_TIMER0_IRQ       (IT8172_LB_IRQ_BASE + 1)
  59. #define IT8172_TIMER1_IRQ       (IT8172_LB_IRQ_BASE + 2)
  60. #define IT8172_I2C_IRQ          (IT8172_LB_IRQ_BASE + 3)
  61. #define IT8172_GPIO_IRQ         (IT8172_LB_IRQ_BASE + 4)
  62. #define IT8172_CIR0_IRQ         (IT8172_LB_IRQ_BASE + 5)
  63. #define IT8172_CIR1_IRQ         (IT8172_LB_IRQ_BASE + 6)
  64. #define IT8172_UART_IRQ         (IT8172_LB_IRQ_BASE + 7)
  65. #define IT8172_SCR0_IRQ         (IT8172_LB_IRQ_BASE + 8)
  66. #define IT8172_SCR1_IRQ         (IT8172_LB_IRQ_BASE + 9)
  67. #define IT8172_RTC_IRQ          (IT8172_LB_IRQ_BASE + 10)
  68. #define IT8172_IOCHK_IRQ        (IT8172_LB_IRQ_BASE + 11)
  69. /* 12 - 15 reserved */
  70. /*
  71.  * Note here that the pci dev registers includes bits for more than
  72.  * just the pci devices.
  73.  */
  74. #define IT8172_PCI_DEV_IRQ_BASE  32   /* first pci dev irq */
  75. #define IT8172_AC97_IRQ          (IT8172_PCI_DEV_IRQ_BASE + 0)
  76. #define IT8172_MC68K_IRQ         (IT8172_PCI_DEV_IRQ_BASE + 1)
  77. #define IT8172_IDE_IRQ           (IT8172_PCI_DEV_IRQ_BASE + 2)
  78. #define IT8172_USB_IRQ           (IT8172_PCI_DEV_IRQ_BASE + 3)
  79. #define IT8172_BRIDGE_MASTER_IRQ (IT8172_PCI_DEV_IRQ_BASE + 4)
  80. #define IT8172_BRIDGE_TARGET_IRQ (IT8172_PCI_DEV_IRQ_BASE + 5)
  81. #define IT8172_PCI_INTA_IRQ      (IT8172_PCI_DEV_IRQ_BASE + 6)
  82. #define IT8172_PCI_INTB_IRQ      (IT8172_PCI_DEV_IRQ_BASE + 7)
  83. #define IT8172_PCI_INTC_IRQ      (IT8172_PCI_DEV_IRQ_BASE + 8)
  84. #define IT8172_PCI_INTD_IRQ      (IT8172_PCI_DEV_IRQ_BASE + 9)
  85. #define IT8172_S_INTA_IRQ        (IT8172_PCI_DEV_IRQ_BASE + 10)
  86. #define IT8172_S_INTB_IRQ        (IT8172_PCI_DEV_IRQ_BASE + 11)
  87. #define IT8172_S_INTC_IRQ        (IT8172_PCI_DEV_IRQ_BASE + 12)
  88. #define IT8172_S_INTD_IRQ        (IT8172_PCI_DEV_IRQ_BASE + 13)
  89. #define IT8172_CDMA_IRQ          (IT8172_PCI_DEV_IRQ_BASE + 14)
  90. #define IT8172_DMA_IRQ           (IT8172_PCI_DEV_IRQ_BASE + 15)
  91. #define IT8172_NMI_IRQ_BASE      48
  92. #define IT8172_SER_NMI_IRQ       (IT8172_NMI_IRQ_BASE + 0)
  93. #define IT8172_PCI_NMI_IRQ       (IT8172_NMI_IRQ_BASE + 1)
  94. #define IT8172_RTC_NMI_IRQ       (IT8172_NMI_IRQ_BASE + 2)
  95. #define IT8172_CPUIF_NMI_IRQ     (IT8172_NMI_IRQ_BASE + 3)
  96. #define IT8172_PMER_NMI_IRQ      (IT8172_NMI_IRQ_BASE + 4)
  97. #define IT8172_POWER_NMI_IRQ     (IT8172_NMI_IRQ_BASE + 5)
  98. /* Finally, let's move over here the mips cpu timer interrupt.
  99.  * This is more or less strictly for statistics.
  100.  */
  101. #define MIPS_CPU_TIMER_IRQ       (IT8172_NMI_IRQ_BASE + 6)
  102. #define IT8172_INT_END           MIPS_CPU_TIMER_IRQ
  103. /* 
  104.  * IT8172 Interrupt Controller Registers
  105.  */
  106. struct it8172_intc_regs {
  107.         volatile unsigned short lb_req;      /* offset 0 */
  108.         volatile unsigned short lb_mask;
  109.         volatile unsigned short lb_trigger;
  110.         volatile unsigned short lb_level;
  111. unsigned char pad0[8];
  112.         volatile unsigned short lpc_req;     /* offset 0x10 */
  113.         volatile unsigned short lpc_mask;
  114.         volatile unsigned short lpc_trigger;
  115.         volatile unsigned short lpc_level;
  116. unsigned char pad1[8];
  117.         volatile unsigned short pci_req;     /* offset 0x20 */
  118.         volatile unsigned short pci_mask;
  119.         volatile unsigned short pci_trigger;
  120.         volatile unsigned short pci_level;
  121. unsigned char pad2[8];
  122.         volatile unsigned short nmi_req;     /* offset 0x30 */
  123.         volatile unsigned short nmi_mask;
  124.         volatile unsigned short nmi_trigger;
  125.         volatile unsigned short nmi_level;
  126. unsigned char pad3[6];
  127.         volatile unsigned short nmi_redir;   /* offset 0x3E */
  128. unsigned char pad4[0xBE];
  129.         volatile unsigned short intstatus;    /* offset 0xFE */
  130. };
  131. #endif /* _MIPS_ITEINT_H */