ixp425IntrCtl.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:6k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* ixp425IntrCtl.h - interrupt controller driver Ixp425 */
  2. /* Copyright 2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,05jun02,jb  initial version...
  7. */
  8. #ifndef __INCixp425IntrCtlh
  9. #define __INCixp425IntrCtlh
  10. #include "ixp425.h"
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /* typedefs */
  15. #ifndef _ASMLANGUAGE
  16. #endif /* _ASMLANGUAGE */
  17. /*
  18.  * Define Ixp425 Interrupt registers
  19.  */
  20. /******************************************************************
  21.   Interrupt Controller Register Definitions.
  22. ******************************************************************/
  23. #define IXP425_ICPR ( IXP425_INTC_BASE + 0x0 )  /* Interrupt Status Reg. */
  24. #define IXP425_ICMR ( IXP425_INTC_BASE + 0x4 )  /* Interrupt Enable Reg. */
  25. #define IXP425_ICLR ( IXP425_INTC_BASE + 0x8 )  /* Interrupt Select Reg IRQ/FIQ */
  26. #define IXP425_ICIP ( IXP425_INTC_BASE + 0xC )  /* IRQ Status Reg. */
  27. #define IXP425_ICFP ( IXP425_INTC_BASE + 0x10 ) /* FIQ Status Reg. */
  28. #define IXP425_ICHR ( IXP425_INTC_BASE + 0x14 ) /* Interrupt Priority Reg. */
  29. #define IXP425_ICIH ( IXP425_INTC_BASE + 0x18 ) /* IRQ Highest Pri Int Reg. */
  30. #define IXP425_ICFH ( IXP425_INTC_BASE + 0x1C ) /* FIQ Highest Pri Int Reg. */
  31. #define IXP425_INT_LVL_PSMA (0)
  32. #define IXP425_INT_LVL_PSMB (1)
  33. #define IXP425_INT_LVL_PSMC (2)
  34. #define IXP425_INT_LVL_QM1 (3)
  35. #define IXP425_INT_LVL_QM2 (4)
  36. #define IXP425_INT_LVL_TIMER1 (5)
  37. #define IXP425_INT_LVL_GPIO0 (6)
  38. #define IXP425_INT_LVL_GPIO1 (7)
  39. #define IXP425_INT_LVL_PCI_INT (8)
  40. #define IXP425_INT_LVL_PCI_DMA1 (9)
  41. #define IXP425_INT_LVL_PCI_DMA2 (10)
  42. #define IXP425_INT_LVL_TIMER2 (11)
  43. #define IXP425_INT_LVL_USB (12)
  44. #define IXP425_INT_LVL_UART2 (13)
  45. #define IXP425_INT_LVL_TIMESTAMP (14)
  46. #define IXP425_INT_LVL_UART1 (15)
  47. #define IXP425_INT_LVL_WDOG (16)
  48. #define IXP425_INT_LVL_AHB_PMU (17)
  49. #define IXP425_INT_LVL_XSCALE_PMU (18)
  50. #define IXP425_INT_LVL_GPIO2 (19)
  51. #define IXP425_INT_LVL_GPIO3 (20)
  52. #define IXP425_INT_LVL_GPIO4 (21)
  53. #define IXP425_INT_LVL_GPIO5 (22)
  54. #define IXP425_INT_LVL_GPIO6 (23)
  55. #define IXP425_INT_LVL_GPIO7 (24)
  56. #define IXP425_INT_LVL_GPIO8 (25)
  57. #define IXP425_INT_LVL_GPIO9 (26)
  58. #define IXP425_INT_LVL_GPIO10 (27)
  59. #define IXP425_INT_LVL_GPIO11 (28)
  60. #define IXP425_INT_LVL_GPIO12 (29)
  61. #define IXP425_INT_LVL_INT1 (30)
  62. #define IXP425_INT_LVL_INT2 (31)
  63. /* Bit definitions for Interrupt Pending/Mask/Status registers */
  64. #define IXP425_INTC_PSMA (1 << IXP425_INT_LVL_PSMA)
  65. #define IXP425_INTC_PSMB (1 << IXP425_INT_LVL_PSMB)
  66. #define IXP425_INTC_PSMC (1 << IXP425_INT_LVL_PSMC)
  67. #define IXP425_INTC_QM1 (1 << IXP425_INT_LVL_QM1)
  68. #define IXP425_INTC_QM2 (1 << IXP425_INT_LVL_QM2)
  69. #define IXP425_INTC_TIMER1 (1 << IXP425_INT_LVL_TIMER1)
  70. #define IXP425_INTC_GPIO0 (1 << IXP425_INT_LVL_GPIO0)
  71. #define IXP425_INTC_GPIO1 (1 << IXP425_INT_LVL_GPIO1)
  72. #define IXP425_INTC_PCI_INT (1 << IXP425_INT_LVL_PCI_INT)
  73. #define IXP425_INTC_PCI_DMA1 (1 << IXP425_INT_LVL_PCI_DMA1)
  74. #define IXP425_INTC_PCI_DMA2 (1 << IXP425_INT_LVL_PCI_DMA2)
  75. #define IXP425_INTC_TIMER2 (1 << IXP425_INT_LVL_TIMER2)
  76. #define IXP425_INTC_USB (1 << IXP425_INT_LVL_USB)
  77. #define IXP425_INTC_UART2 (1 << IXP425_INT_LVL_UART2)
  78. #define IXP425_INTC_TIMESTAMP (1 << IXP425_INT_LVL_TIMESTAMP)
  79. #define IXP425_INTC_UART1 (1 << IXP425_INT_LVL_UART1)
  80. #define IXP425_INTC_WDOG (1 << IXP425_INT_LVL_WDOG)
  81. #define IXP425_INTC_AHB_PMU (1 << IXP425_INT_LVL_AHB_PMU)
  82. #define IXP425_INTC_XSCALE_PMU (1 << IXP425_INT_LVL_XSCALE_PMU)
  83. #define IXP425_INTC_GPIO2 (1 << IXP425_INT_LVL_GPIO2)
  84. #define IXP425_INTC_GPIO3 (1 << IXP425_INT_LVL_GPIO3)
  85. #define IXP425_INTC_GPIO4 (1 << IXP425_INT_LVL_GPIO4)
  86. #define IXP425_INTC_GPIO5 (1 << IXP425_INT_LVL_GPIO5)
  87. #define IXP425_INTC_GPIO6 (1 << IXP425_INT_LVL_GPIO6)
  88. #define IXP425_INTC_GPIO7 (1 << IXP425_INT_LVL_GPIO7)
  89. #define IXP425_INTC_GPIO8 (1 << IXP425_INT_LVL_GPIO8)
  90. #define IXP425_INTC_GPIO9 (1 << IXP425_INT_LVL_GPIO9)
  91. #define IXP425_INTC_GPIO10 (1 << IXP425_INT_LVL_GPIO10)
  92. #define IXP425_INTC_GPIO11 (1 << IXP425_INT_LVL_GPIO11)
  93. #define IXP425_INTC_GPIO12 (1 << IXP425_INT_LVL_GPIO12)
  94. #define IXP425_INTC_SW_INT1 (1 << IXP425_INT_LVL_INT1)
  95. #define IXP425_INTC_SW_INT2 (1 << IXP425_INT_LVL_INT2)
  96. /* Vector definitions */
  97. #define IXP425_INT_NUM_LEVELS (32)
  98. #define IXP425_INT_MODE INT_NON_PREEMPT_MODEL
  99. #define INT_VEC_PSMA IVEC_TO_INUM(IXP425_INT_LVL_PSMA)
  100. #define INT_VEC_PSMB IVEC_TO_INUM(IXP425_INT_LVL_PSMB)
  101. #define INT_VEC_PSMC IVEC_TO_INUM(IXP425_INT_LVL_PSMC)
  102. #define INT_VEC_QM1 IVEC_TO_INUM(IXP425_INT_LVL_QM1 )
  103. #define INT_VEC_QM2 IVEC_TO_INUM(IXP425_INT_LVL_QM2 )
  104. #define INT_VEC_TIMER1 IVEC_TO_INUM(IXP425_INT_LVL_TIMER1)
  105. #define INT_VEC_GPIO0 IVEC_TO_INUM(IXP425_INT_LVL_GPIO0)
  106. #define INT_VEC_GPIO1 IVEC_TO_INUM(IXP425_INT_LVL_GPIO1)
  107. #define INT_VEC_PCI_ERR IVEC_TO_INUM(IXP425_INT_LVL_PCI_ERR)
  108. #define INT_VEC_PCI_DMA1 IVEC_TO_INUM(IXP425_INT_LVL_PCI_DMA1)
  109. #define INT_VEC_PDI_DMA2 IVEC_TO_INUM(IXP425_INT_LVL_PCI_DMA2)
  110. #define INT_VEC_TIMER2 IVEC_TO_INUM(IXP425_INT_LVL_TIMER2)
  111. #define INT_VEC_APB_DMA IVEC_TO_INUM(IXP425_INT_LVL_APB_DMA)
  112. #define INT_VEC_USB IVEC_TO_INUM(IXP425_INT_LVL_USB)
  113. #define INT_VEC_UART1 IVEC_TO_INUM(IXP425_INT_LVL_UART1)
  114. #define INT_VEC_TIMESTAMP IVEC_TO_INUM(IXP425_INT_LVL_TIMESTAMP)
  115. #define INT_VEC_UART2 IVEC_TO_INUM(IXP425_INT_LVL_UART2)
  116. #define INT_VEC_WDOG IVEC_TO_INUM(IXP425_INT_LVL_WDOG)
  117. #define INT_VEC_AHB_PMU IVEC_TO_INUM(IXP425_INT_LVL_AHB_PMU)
  118. #define INT_VEC_XSCALE_PMU IVEC_TO_INUM(IXP425_INT_LVL_XSCALE_PMU)
  119. #define INT_VEC_GPIO2 IVEC_TO_INUM(IXP425_INT_LVL_GPIO2)
  120. #define INT_VEC_GPIO3 IVEC_TO_INUM(IXP425_INT_LVL_GPIO3)
  121. #define INT_VEC_GPIO4 IVEC_TO_INUM(IXP425_INT_LVL_GPIO4)
  122. #define INT_VEC_GPIO5 IVEC_TO_INUM(IXP425_INT_LVL_GPIO5)
  123. #define INT_VEC_GPIO6 IVEC_TO_INUM(IXP425_INT_LVL_GPIO6)
  124. #define INT_VEC_GPIO7 IVEC_TO_INUM(IXP425_INT_LVL_GPIO7)
  125. #define INT_VEC_GPIO8 IVEC_TO_INUM(IXP425_INT_LVL_GPIO8)
  126. #define INT_VEC_GPIO9 IVEC_TO_INUM(IXP425_INT_LVL_GPIO9)
  127. #define INT_VEC_GPIO10 IVEC_TO_INUM(IXP425_INT_LVL_GPIO10)
  128. #define INT_VEC_GPIO11 IVEC_TO_INUM(IXP425_INT_LVL_GPIO11)
  129. #define INT_VEC_GPIO12 IVEC_TO_INUM(IXP425_INT_LVL_GPIO12)
  130. #define INT_VEC_INT1 IVEC_TO_INUM(IXP425_INT_LVL_INT1)
  131. #define INT_VEC_INT2            IVEC_TO_INUM(IXP425_INT_LVL_INT2)
  132. /*
  133.  * Set the default value of   ICHP - Interrupt highest priorty encoding register.
  134.  */
  135. #ifndef IXP425_ICHR_INIT_VALUE
  136. #define IXP425_ICHR_INIT_VALUE (0x00fac688)
  137. #endif
  138. #ifdef __cplusplus
  139. }
  140. #endif
  141. #endif /* __INCIxp425IntrCtrl */