ibmstbx25.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * arch/ppc/platforms/4xx/ibmstbx25.h
  3. *
  4. * Author: Armin Kuster <akuster@mvista.com>
  5. *
  6. * 2002 (c) MontaVista, Software, Inc. This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. */
  11. #ifdef __KERNEL__
  12. #ifndef __ASM_IBMSTBX25_H__
  13. #define __ASM_IBMSTBX25_H__
  14. #include <linux/config.h>
  15. /* serial port defines */
  16. #define STBx25xx_IO_BASE ((uint)0xe0000000)
  17. #define PPC4xx_ONB_IO_PADDR STBx25xx_IO_BASE
  18. #define PPC4xx_ONB_IO_VADDR ((uint)0xe0000000)
  19. #define PPC4xx_ONB_IO_SIZE ((uint)14*64*1024)
  20. /*
  21. * map STBxxxx internal i/o address (0x400x00xx) to an address
  22. * which is below the 2GB limit...
  23. *
  24. * 4000 000x uart1 -> 0xe000 000x
  25. * 4001 00xx uart2
  26. * 4002 00xx smart card
  27. * 4003 000x iic
  28. * 4004 000x uart0
  29. * 4005 0xxx timer
  30. * 4006 00xx gpio
  31. * 4007 00xx smart card
  32. * 400b 000x iic
  33. * 400c 000x scp
  34. * 400d 000x modem
  35. * 400e 000x uart2
  36. */
  37. #define STBx25xx_MAP_IO_ADDR(a) (((uint)(a)) + (STBx25xx_IO_BASE - 0x40000000))
  38. #define RS_TABLE_SIZE 3
  39. #define OPB_BASE_START 0x40000000
  40. #define EBIU_BASE_START 0xF0100000
  41. #define DCR_BASE_START 0x0000
  42. #ifdef __BOOTER__
  43. #define UART1_IO_BASE 0x40000000
  44. #define UART2_IO_BASE 0x40010000
  45. #else
  46. #define UART1_IO_BASE 0xe0000000
  47. #define UART2_IO_BASE 0xe0010000
  48. #endif
  49. #define SC0_BASE 0x40020000 /* smart card #0 */
  50. #define IIC0_BASE 0x40030000
  51. #ifdef __BOOTER__
  52. #define UART0_IO_BASE 0x40040000
  53. #else
  54. #define UART0_IO_BASE 0xe0040000
  55. #endif
  56. #define SCC0_BASE 0x40040000 /* Serial 0 controller IrdA */
  57. #define GPT0_BASE 0x40050000 /* General purpose timers */
  58. #define GPIO0_BASE 0x40060000
  59. #define SC1_BASE 0x40070000 /* smart card #1 */
  60. #define SCP0_BASE 0x400C0000 /* Serial Controller Port */
  61. #define SSP0_BASE 0x400D0000 /* Sync serial port */
  62. #define IDE0_BASE 0xf0100000
  63. #define REDWOOD_IDE_CTRL 0xf1100000
  64. #define RTCFPC_IRQ 0
  65. #define XPORT_IRQ 1
  66. #define AUD_IRQ 2
  67. #define AID_IRQ 3
  68. #define DMA0 4
  69. #define DMA1_IRQ 5
  70. #define DMA2_IRQ 6
  71. #define DMA3_IRQ 7
  72. #define SC0_IRQ 8
  73. #define IIC0_IRQ 9
  74. #define IIR0_IRQ 10
  75. #define GPT0_IRQ 11
  76. #define GPT1_IRQ 12
  77. #define SCP0_IRQ 13
  78. #define SSP0_IRQ 14
  79. #define GPT2_IRQ 15 /* count down timer */
  80. #define SC1_IRQ 16
  81. /* IRQ 17 - 19 external */
  82. #define UART0_INT 20
  83. #define UART1_INT 21
  84. #define UART2_INT 22
  85. #define XPTDMA_IRQ 23
  86. #define DCRIDE_IRQ 24
  87. /* IRQ 25 - 30 external */
  88. #define IDE0_IRQ 26
  89. #define IIC_NUMS 1
  90. #define UART_NUMS 3
  91. #define IIC_OWN 0x55
  92. #define IIC_CLOCK 50
  93. #define BD_EMAC_ADDR(e,i) bi_enetaddr[i]
  94. #define STD_UART_OP(num) \
  95. { 0, BASE_BAUD, 0, UART##num##_INT, \
  96. (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST), \
  97. iomem_base: (u8 *)UART##num##_IO_BASE, \
  98. io_type: SERIAL_IO_MEM},
  99. #if defined(CONFIG_UART0_TTYS0)
  100. #define SERIAL_DEBUG_IO_BASE UART0_IO_BASE
  101. #define SERIAL_PORT_DFNS \
  102. STD_UART_OP(0) \
  103. STD_UART_OP(1) \
  104. STD_UART_OP(2)
  105. #endif
  106. #if defined(CONFIG_UART0_TTYS1)
  107. #define SERIAL_DEBUG_IO_BASE UART2_IO_BASE
  108. #define SERIAL_PORT_DFNS \
  109. STD_UART_OP(1) \
  110. STD_UART_OP(0) \
  111. STD_UART_OP(2)
  112. #endif
  113. #if defined(CONFIG_UART0_TTYS2)
  114. #define SERIAL_DEBUG_IO_BASE UART2_IO_BASE
  115. #define SERIAL_PORT_DFNS \
  116. STD_UART_OP(2) \
  117. STD_UART_OP(0) \
  118. STD_UART_OP(1)
  119. #endif
  120. #define DCRN_BE_BASE 0x090
  121. #define DCRN_DMA0_BASE 0x0C0
  122. #define DCRN_DMA1_BASE 0x0C8
  123. #define DCRN_DMA2_BASE 0x0D0
  124. #define DCRN_DMA3_BASE 0x0D8
  125. #define DCRNCAP_DMA_CC 1 /* have DMA chained count capability */
  126. #define DCRN_DMASR_BASE 0x0E0
  127. #define DCRN_PLB0_BASE 0x054
  128. #define DCRN_PLB1_BASE 0x064
  129. #define DCRN_POB0_BASE 0x0B0
  130. #define DCRN_SCCR_BASE 0x120
  131. #define DCRN_UIC0_BASE 0x040
  132. #define DCRN_BE_BASE 0x090
  133. #define DCRN_DMA0_BASE 0x0C0
  134. #define DCRN_DMA1_BASE 0x0C8
  135. #define DCRN_DMA2_BASE 0x0D0
  136. #define DCRN_DMA3_BASE 0x0D8
  137. #define DCRN_CIC_BASE 0x030
  138. #define DCRN_DMASR_BASE 0x0E0
  139. #define DCRN_EBIMC_BASE 0x070
  140. #define DCRN_DCRX_BASE 0x020
  141. #define DCRN_CPMFR_BASE 0x102
  142. #define DCRN_SCCR_BASE 0x120
  143. #define DCRN_RTCFP_BASE 0x310
  144. #define UIC0 DCRN_UIC0_BASE
  145. #define IBM_CPM_IIC0 0x80000000 /* IIC 0 interface */
  146. #define IBM_CPM_CPU 0x10000000 /* PPC405B3 clock control */
  147. #define IBM_CPM_AUD 0x08000000 /* Audio Decoder */
  148. #define IBM_CPM_EBIU 0x04000000 /* External Bus Interface Unit */
  149. #define IBM_CPM_IRR 0x02000000 /* Infrared receiver */
  150. #define IBM_CPM_DMA 0x01000000 /* DMA controller */
  151. #define IBM_CPM_UART2 0x00200000 /* Serial Control Port */
  152. #define IBM_CPM_UART1 0x00100000 /* Serial 1 / Infrared */
  153. #define IBM_CPM_UART0 0x00080000 /* Serial 0 / 16550 */
  154. #define IBM_PM_DCRIDE 0x00040000 /* DCR timeout & IDE line Mode clock */
  155. #define IBM_CPM_SC0 0x00020000 /* Smart Card 0 */
  156. #define IBM_CPM_VID 0x00010000 /* reserved */
  157. #define IBM_CPM_SC1 0x00008000 /* Smart Card 0 */
  158. #define IBM_CPM_XPT0 0x00002000 /* Transport - 54 Mhz */
  159. #define IBM_CPM_CBS 0x00001000 /* Cross Bar Switch */
  160. #define IBM_CPM_GPT 0x00000800 /* GPTPWM */
  161. #define IBM_CPM_GPIO0 0x00000400 /* General Purpose IO 0 */
  162. #define IBM_CPM_DENC 0x00000200 /* Digital video Encoder */
  163. #define IBM_CPM_C405T 0x00000100 /* CPU timers */
  164. #define IBM_CPM_XPT27 0x00000080 /* Transport - 27 Mhz */
  165. #define IBM_CPM_UIC 0x00000040 /* Universal Interrupt Controller */
  166. #define IBM_CPM_RTCFPC 0x00000020 /* Realtime clock and front panel */
  167. #define IBM_CPM_SSP 0x00000010 /* Modem Serial Interface (SSP) */
  168. #define IBM_CPM_VID2 0x00000002 /* Video Decoder clock domain 2 */
  169. #define DFLT_IBM4xx_PM ~(IBM_CPM_CPU | IBM_CPM_EBIU | IBM_CPM_DMA \
  170. | IBM_CPM_CBS | IBM_CPM_XPT0 | IBM_CPM_C405T \
  171. | IBM_CPM_XPT27 | IBM_CPM_UIC)
  172. #define DCRN_BEAR (DCRN_BE_BASE + 0x0) /* Bus Error Address Register */
  173. #define DCRN_BESR (DCRN_BE_BASE + 0x1) /* Bus Error Syndrome Register */
  174. /* DCRN_BESR */
  175. #define BESR_DSES 0x80000000 /* Data-Side Error Status */
  176. #define BESR_DMES 0x40000000 /* DMA Error Status */
  177. #define BESR_RWS 0x20000000 /* Read/Write Status */
  178. #define BESR_ETMASK 0x1C000000 /* Error Type */
  179. #define ET_PROT 0
  180. #define ET_PARITY 1
  181. #define ET_NCFG 2
  182. #define ET_BUSERR 4
  183. #define ET_BUSTO 6
  184. #define CHR1_CETE 0x00800000 /* CPU external timer enable */
  185. #define CHR1_PCIPW 0x00008000 /* PCI Int enable/Peripheral Write enable */
  186. #define DCRN_CICCR (DCRN_CIC_BASE + 0x0) /* CIC Control Register */
  187. #define DCRN_DMAS1 (DCRN_CIC_BASE + 0x1) /* DMA Select1 Register */
  188. #define DCRN_DMAS2 (DCRN_CIC_BASE + 0x2) /* DMA Select2 Register */
  189. #define DCRN_CICVCR (DCRN_CIC_BASE + 0x3) /* CIC Video COntro Register */
  190. #define DCRN_CICSEL3 (DCRN_CIC_BASE + 0x5) /* CIC Select 3 Register */
  191. #define DCRN_SGPO (DCRN_CIC_BASE + 0x6) /* CIC GPIO Output Register */
  192. #define DCRN_SGPOD (DCRN_CIC_BASE + 0x7) /* CIC GPIO OD Register */
  193. #define DCRN_SGPTC (DCRN_CIC_BASE + 0x8) /* CIC GPIO Tristate Ctrl Reg */
  194. #define DCRN_SGPI (DCRN_CIC_BASE + 0x9) /* CIC GPIO Input Reg */
  195. #define DCRN_DCRXICR (DCRN_DCRX_BASE + 0x0) /* Internal Control Register */
  196. #define DCRN_DCRXISR (DCRN_DCRX_BASE + 0x1) /* Internal Status Register */
  197. #define DCRN_DCRXECR (DCRN_DCRX_BASE + 0x2) /* External Control Register */
  198. #define DCRN_DCRXESR (DCRN_DCRX_BASE + 0x3) /* External Status Register */
  199. #define DCRN_DCRXTAR (DCRN_DCRX_BASE + 0x4) /* Target Address Register */
  200. #define DCRN_DCRXTDR (DCRN_DCRX_BASE + 0x5) /* Target Data Register */
  201. #define DCRN_DCRXIGR (DCRN_DCRX_BASE + 0x6) /* Interrupt Generation Register */
  202. #define DCRN_DCRXBCR (DCRN_DCRX_BASE + 0x7) /* Line Buffer Control Register */
  203. #define DCRN_BRCRH0 (DCRN_EBIMC_BASE + 0x0) /* Bus Region Config High 0 */
  204. #define DCRN_BRCRH1 (DCRN_EBIMC_BASE + 0x1) /* Bus Region Config High 1 */
  205. #define DCRN_BRCRH2 (DCRN_EBIMC_BASE + 0x2) /* Bus Region Config High 2 */
  206. #define DCRN_BRCRH3 (DCRN_EBIMC_BASE + 0x3) /* Bus Region Config High 3 */
  207. #define DCRN_BRCRH4 (DCRN_EBIMC_BASE + 0x4) /* Bus Region Config High 4 */
  208. #define DCRN_BRCRH5 (DCRN_EBIMC_BASE + 0x5) /* Bus Region Config High 5 */
  209. #define DCRN_BRCRH6 (DCRN_EBIMC_BASE + 0x6) /* Bus Region Config High 6 */
  210. #define DCRN_BRCRH7 (DCRN_EBIMC_BASE + 0x7) /* Bus Region Config High 7 */
  211. #define DCRN_BRCR0 (DCRN_EBIMC_BASE + 0x10) /* BRC 0 */
  212. #define DCRN_BRCR1 (DCRN_EBIMC_BASE + 0x11) /* BRC 1 */
  213. #define DCRN_BRCR2 (DCRN_EBIMC_BASE + 0x12) /* BRC 2 */
  214. #define DCRN_BRCR3 (DCRN_EBIMC_BASE + 0x13) /* BRC 3 */
  215. #define DCRN_BRCR4 (DCRN_EBIMC_BASE + 0x14) /* BRC 4 */
  216. #define DCRN_BRCR5 (DCRN_EBIMC_BASE + 0x15) /* BRC 5 */
  217. #define DCRN_BRCR6 (DCRN_EBIMC_BASE + 0x16) /* BRC 6 */
  218. #define DCRN_BRCR7 (DCRN_EBIMC_BASE + 0x17) /* BRC 7 */
  219. #define DCRN_BEAR0 (DCRN_EBIMC_BASE + 0x20) /* Bus Error Address Register */
  220. #define DCRN_BESR0 (DCRN_EBIMC_BASE + 0x21) /* Bus Error Status Register */
  221. #define DCRN_BIUCR (DCRN_EBIMC_BASE + 0x2A) /* Bus Interfac Unit Ctrl Reg */
  222. #define DCRN_RTC_FPC0_CNTL (DCRN_RTCFP_BASE + 0x00) /* RTC cntl */
  223. #define DCRN_RTC_FPC0_INT (DCRN_RTCFP_BASE + 0x01) /* RTC Interrupt */
  224. #define DCRN_RTC_FPC0_TIME (DCRN_RTCFP_BASE + 0x02) /* RTC time reg */
  225. #define DCRN_RTC_FPC0_ALRM (DCRN_RTCFP_BASE + 0x03) /* RTC Alarm reg */
  226. #define DCRN_RTC_FPC0_D1 (DCRN_RTCFP_BASE + 0x04) /* LED Data 1 */
  227. #define DCRN_RTC_FPC0_D2 (DCRN_RTCFP_BASE + 0x05) /* LED Data 2 */
  228. #define DCRN_RTC_FPC0_D3 (DCRN_RTCFP_BASE + 0x06) /* LED Data 3 */
  229. #define DCRN_RTC_FPC0_D4 (DCRN_RTCFP_BASE + 0x07) /* LED Data 4 */
  230. #define DCRN_RTC_FPC0_D5 (DCRN_RTCFP_BASE + 0x08) /* LED Data 5 */
  231. #define DCRN_RTC_FPC0_FCNTL (DCRN_RTCFP_BASE + 0x09) /* LED control */
  232. #define DCRN_RTC_FPC0_BRT (DCRN_RTCFP_BASE + 0x0A) /* Brightness cntl */
  233. #include <asm/ibm405.h>
  234. #endif /* __ASM_IBMSTBX25_H__ */
  235. #endif /* __KERNEL__ */