irqs.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /* linux/arch/arm/plat-s3c64xx/include/mach/irqs.h
  2. *
  3. * Copyright 2008 Openmoko, Inc.
  4. * Copyright 2008 Simtec Electronics
  5. * Ben Dooks <ben@simtec.co.uk>
  6. * http://armlinux.simtec.co.uk/
  7. *
  8. * S3C64XX - Common IRQ support
  9. */
  10. #ifndef __ASM_PLAT_S3C64XX_IRQS_H
  11. #define __ASM_PLAT_S3C64XX_IRQS_H __FILE__
  12. /* we keep the first set of CPU IRQs out of the range of
  13. * the ISA space, so that the PC104 has them to itself
  14. * and we don't end up having to do horrible things to the
  15. * standard ISA drivers....
  16. *
  17. * note, since we're using the VICs, our start must be a
  18. * mulitple of 32 to allow the common code to work
  19. */
  20. #define S3C_IRQ_OFFSET (32)
  21. #define S3C_IRQ(x) ((x) + S3C_IRQ_OFFSET)
  22. #define S3C_VIC0_BASE S3C_IRQ(0)
  23. #define S3C_VIC1_BASE S3C_IRQ(32)
  24. /* UART interrupts, each UART has 4 intterupts per channel so
  25. * use the space between the ISA and S3C main interrupts. Note, these
  26. * are not in the same order as the S3C24XX series! */
  27. #define IRQ_S3CUART_BASE0 (16)
  28. #define IRQ_S3CUART_BASE1 (20)
  29. #define IRQ_S3CUART_BASE2 (24)
  30. #define IRQ_S3CUART_BASE3 (28)
  31. #define UART_IRQ_RXD (0)
  32. #define UART_IRQ_ERR (1)
  33. #define UART_IRQ_TXD (2)
  34. #define UART_IRQ_MODEM (3)
  35. #define IRQ_S3CUART_RX0 (IRQ_S3CUART_BASE0 + UART_IRQ_RXD)
  36. #define IRQ_S3CUART_TX0 (IRQ_S3CUART_BASE0 + UART_IRQ_TXD)
  37. #define IRQ_S3CUART_ERR0 (IRQ_S3CUART_BASE0 + UART_IRQ_ERR)
  38. #define IRQ_S3CUART_RX1 (IRQ_S3CUART_BASE1 + UART_IRQ_RXD)
  39. #define IRQ_S3CUART_TX1 (IRQ_S3CUART_BASE1 + UART_IRQ_TXD)
  40. #define IRQ_S3CUART_ERR1 (IRQ_S3CUART_BASE1 + UART_IRQ_ERR)
  41. #define IRQ_S3CUART_RX2 (IRQ_S3CUART_BASE2 + UART_IRQ_RXD)
  42. #define IRQ_S3CUART_TX2 (IRQ_S3CUART_BASE2 + UART_IRQ_TXD)
  43. #define IRQ_S3CUART_ERR2 (IRQ_S3CUART_BASE2 + UART_IRQ_ERR)
  44. #define IRQ_S3CUART_RX3 (IRQ_S3CUART_BASE3 + UART_IRQ_RXD)
  45. #define IRQ_S3CUART_TX3 (IRQ_S3CUART_BASE3 + UART_IRQ_TXD)
  46. #define IRQ_S3CUART_ERR3 (IRQ_S3CUART_BASE3 + UART_IRQ_ERR)
  47. /* VIC based IRQs */
  48. #define S3C64XX_IRQ_VIC0(x) (S3C_VIC0_BASE + (x))
  49. #define S3C64XX_IRQ_VIC1(x) (S3C_VIC1_BASE + (x))
  50. /* VIC0 */
  51. #define IRQ_EINT0_3 S3C64XX_IRQ_VIC0(0)
  52. #define IRQ_EINT4_11 S3C64XX_IRQ_VIC0(1)
  53. #define IRQ_RTC_TIC S3C64XX_IRQ_VIC0(2)
  54. #define IRQ_CAMIF_C S3C64XX_IRQ_VIC0(3)
  55. #define IRQ_CAMIF_P S3C64XX_IRQ_VIC0(4)
  56. #define IRQ_CAMIF_MC S3C64XX_IRQ_VIC0(5)
  57. #define IRQ_S3C6410_IIS S3C64XX_IRQ_VIC0(6)
  58. #define IRQ_S3C6400_CAMIF_MP S3C64XX_IRQ_VIC0(6)
  59. #define IRQ_CAMIF_WE_C S3C64XX_IRQ_VIC0(7)
  60. #define IRQ_S3C6410_G3D S3C64XX_IRQ_VIC0(8)
  61. #define IRQ_S3C6400_CAMIF_WE_P S3C64XX_IRQ_VIC0(8)
  62. #define IRQ_POST0 S3C64XX_IRQ_VIC0(9)
  63. #define IRQ_ROTATOR S3C64XX_IRQ_VIC0(10)
  64. #define IRQ_2D S3C64XX_IRQ_VIC0(11)
  65. #define IRQ_TVENC S3C64XX_IRQ_VIC0(12)
  66. #define IRQ_SCALER S3C64XX_IRQ_VIC0(13)
  67. #define IRQ_BATF S3C64XX_IRQ_VIC0(14)
  68. #define IRQ_JPEG S3C64XX_IRQ_VIC0(15)
  69. #define IRQ_MFC S3C64XX_IRQ_VIC0(16)
  70. #define IRQ_SDMA0 S3C64XX_IRQ_VIC0(17)
  71. #define IRQ_SDMA1 S3C64XX_IRQ_VIC0(18)
  72. #define IRQ_ARM_DMAERR S3C64XX_IRQ_VIC0(19)
  73. #define IRQ_ARM_DMA S3C64XX_IRQ_VIC0(20)
  74. #define IRQ_ARM_DMAS S3C64XX_IRQ_VIC0(21)
  75. #define IRQ_KEYPAD S3C64XX_IRQ_VIC0(22)
  76. #define IRQ_TIMER0 S3C64XX_IRQ_VIC0(23)
  77. #define IRQ_TIMER1 S3C64XX_IRQ_VIC0(24)
  78. #define IRQ_TIMER2 S3C64XX_IRQ_VIC0(25)
  79. #define IRQ_WDT S3C64XX_IRQ_VIC0(26)
  80. #define IRQ_TIMER3 S3C64XX_IRQ_VIC0(27)
  81. #define IRQ_TIMER4 S3C64XX_IRQ_VIC0(28)
  82. #define IRQ_LCD_FIFO S3C64XX_IRQ_VIC0(29)
  83. #define IRQ_LCD_VSYNC S3C64XX_IRQ_VIC0(30)
  84. #define IRQ_LCD_SYSTEM S3C64XX_IRQ_VIC0(31)
  85. /* VIC1 */
  86. #define IRQ_EINT12_19 S3C64XX_IRQ_VIC1(0)
  87. #define IRQ_EINT20_27 S3C64XX_IRQ_VIC1(1)
  88. #define IRQ_PCM0 S3C64XX_IRQ_VIC1(2)
  89. #define IRQ_PCM1 S3C64XX_IRQ_VIC1(3)
  90. #define IRQ_AC97 S3C64XX_IRQ_VIC1(4)
  91. #define IRQ_UART0 S3C64XX_IRQ_VIC1(5)
  92. #define IRQ_UART1 S3C64XX_IRQ_VIC1(6)
  93. #define IRQ_UART2 S3C64XX_IRQ_VIC1(7)
  94. #define IRQ_UART3 S3C64XX_IRQ_VIC1(8)
  95. #define IRQ_DMA0 S3C64XX_IRQ_VIC1(9)
  96. #define IRQ_DMA1 S3C64XX_IRQ_VIC1(10)
  97. #define IRQ_ONENAND0 S3C64XX_IRQ_VIC1(11)
  98. #define IRQ_ONENAND1 S3C64XX_IRQ_VIC1(12)
  99. #define IRQ_NFC S3C64XX_IRQ_VIC1(13)
  100. #define IRQ_CFCON S3C64XX_IRQ_VIC1(14)
  101. #define IRQ_UHOST S3C64XX_IRQ_VIC1(15)
  102. #define IRQ_SPI0 S3C64XX_IRQ_VIC1(16)
  103. #define IRQ_SPI1 S3C64XX_IRQ_VIC1(17)
  104. #define IRQ_IIC S3C64XX_IRQ_VIC1(18)
  105. #define IRQ_HSItx S3C64XX_IRQ_VIC1(19)
  106. #define IRQ_HSIrx S3C64XX_IRQ_VIC1(20)
  107. #define IRQ_RESERVED S3C64XX_IRQ_VIC1(21)
  108. #define IRQ_MSM S3C64XX_IRQ_VIC1(22)
  109. #define IRQ_HOSTIF S3C64XX_IRQ_VIC1(23)
  110. #define IRQ_HSMMC0 S3C64XX_IRQ_VIC1(24)
  111. #define IRQ_HSMMC1 S3C64XX_IRQ_VIC1(25)
  112. #define IRQ_HSMMC2 IRQ_SPI1 /* shared with SPI1 */
  113. #define IRQ_OTG S3C64XX_IRQ_VIC1(26)
  114. #define IRQ_IRDA S3C64XX_IRQ_VIC1(27)
  115. #define IRQ_RTC_ALARM S3C64XX_IRQ_VIC1(28)
  116. #define IRQ_SEC S3C64XX_IRQ_VIC1(29)
  117. #define IRQ_PENDN S3C64XX_IRQ_VIC1(30)
  118. #define IRQ_TC IRQ_PENDN
  119. #define IRQ_ADC S3C64XX_IRQ_VIC1(31)
  120. /* Since the IRQ_EINT(x) are a linear mapping on current s3c64xx series
  121. * we just defined them as an IRQ_EINT(x) macro from S3C_IRQ_EINT_BASE
  122. * which we place after the pair of VICs. */
  123. #define S3C_IRQ_EINT_BASE S3C_IRQ(64)
  124. #define S3C_EINT(x) ((x) + S3C_IRQ_EINT_BASE)
  125. /* Define NR_IRQs here, machine specific can always re-define.
  126. * Currently the IRQ_EINT27 is the last one we can have. */
  127. #define NR_IRQS (S3C_EINT(27) + 1)
  128. #endif /* __ASM_PLAT_S3C64XX_IRQS_H */