m527xsim.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /****************************************************************************/
  2. /*
  3. * m527xsim.h -- ColdFire 5270/5271 System Integration Module support.
  4. *
  5. * (C) Copyright 2004, Greg Ungerer (gerg@snapgear.com)
  6. */
  7. /****************************************************************************/
  8. #ifndef m527xsim_h
  9. #define m527xsim_h
  10. /****************************************************************************/
  11. #define CPU_NAME "COLDFIRE(m527x)"
  12. #define CPU_INSTR_PER_JIFFY 3
  13. #define MCF_BUSCLK (MCF_CLK / 2)
  14. #include <asm/m52xxacr.h>
  15. /*
  16. * Define the 5270/5271 SIM register set addresses.
  17. */
  18. #define MCFICM_INTC0 (MCF_IPSBAR + 0x0c00) /* Base for Interrupt Ctrl 0 */
  19. #define MCFICM_INTC1 (MCF_IPSBAR + 0x0d00) /* Base for Interrupt Ctrl 1 */
  20. #define MCFINTC_IPRH 0x00 /* Interrupt pending 32-63 */
  21. #define MCFINTC_IPRL 0x04 /* Interrupt pending 1-31 */
  22. #define MCFINTC_IMRH 0x08 /* Interrupt mask 32-63 */
  23. #define MCFINTC_IMRL 0x0c /* Interrupt mask 1-31 */
  24. #define MCFINTC_INTFRCH 0x10 /* Interrupt force 32-63 */
  25. #define MCFINTC_INTFRCL 0x14 /* Interrupt force 1-31 */
  26. #define MCFINTC_IRLR 0x18 /* */
  27. #define MCFINTC_IACKL 0x19 /* */
  28. #define MCFINTC_ICR0 0x40 /* Base ICR register */
  29. #define MCFINT_VECBASE 64 /* Vector base number */
  30. #define MCFINT_UART0 13 /* Interrupt number for UART0 */
  31. #define MCFINT_UART1 14 /* Interrupt number for UART1 */
  32. #define MCFINT_UART2 15 /* Interrupt number for UART2 */
  33. #define MCFINT_QSPI 18 /* Interrupt number for QSPI */
  34. #define MCFINT_FECRX0 23 /* Interrupt number for FEC0 */
  35. #define MCFINT_FECTX0 27 /* Interrupt number for FEC0 */
  36. #define MCFINT_FECENTC0 29 /* Interrupt number for FEC0 */
  37. #define MCFINT_PIT1 36 /* Interrupt number for PIT1 */
  38. #define MCFINT2_VECBASE 128 /* Vector base number 2 */
  39. #define MCFINT2_FECRX1 23 /* Interrupt number for FEC1 */
  40. #define MCFINT2_FECTX1 27 /* Interrupt number for FEC1 */
  41. #define MCFINT2_FECENTC1 29 /* Interrupt number for FEC1 */
  42. #define MCF_IRQ_UART0 (MCFINT_VECBASE + MCFINT_UART0)
  43. #define MCF_IRQ_UART1 (MCFINT_VECBASE + MCFINT_UART1)
  44. #define MCF_IRQ_UART2 (MCFINT_VECBASE + MCFINT_UART2)
  45. #define MCF_IRQ_FECRX0 (MCFINT_VECBASE + MCFINT_FECRX0)
  46. #define MCF_IRQ_FECTX0 (MCFINT_VECBASE + MCFINT_FECTX0)
  47. #define MCF_IRQ_FECENTC0 (MCFINT_VECBASE + MCFINT_FECENTC0)
  48. #define MCF_IRQ_FECRX1 (MCFINT2_VECBASE + MCFINT2_FECRX1)
  49. #define MCF_IRQ_FECTX1 (MCFINT2_VECBASE + MCFINT2_FECTX1)
  50. #define MCF_IRQ_FECENTC1 (MCFINT2_VECBASE + MCFINT2_FECENTC1)
  51. #define MCF_IRQ_QSPI (MCFINT_VECBASE + MCFINT_QSPI)
  52. #define MCF_IRQ_PIT1 (MCFINT_VECBASE + MCFINT_PIT1)
  53. /*
  54. * SDRAM configuration registers.
  55. */
  56. #ifdef CONFIG_M5271
  57. #define MCFSIM_DCR (MCF_IPSBAR + 0x40) /* Control */
  58. #define MCFSIM_DACR0 (MCF_IPSBAR + 0x48) /* Base address 0 */
  59. #define MCFSIM_DMR0 (MCF_IPSBAR + 0x4c) /* Address mask 0 */
  60. #define MCFSIM_DACR1 (MCF_IPSBAR + 0x50) /* Base address 1 */
  61. #define MCFSIM_DMR1 (MCF_IPSBAR + 0x54) /* Address mask 1 */
  62. #endif
  63. #ifdef CONFIG_M5275
  64. #define MCFSIM_DMR (MCF_IPSBAR + 0x40) /* Mode */
  65. #define MCFSIM_DCR (MCF_IPSBAR + 0x44) /* Control */
  66. #define MCFSIM_DCFG1 (MCF_IPSBAR + 0x48) /* Configuration 1 */
  67. #define MCFSIM_DCFG2 (MCF_IPSBAR + 0x4c) /* Configuration 2 */
  68. #define MCFSIM_DBAR0 (MCF_IPSBAR + 0x50) /* Base address 0 */
  69. #define MCFSIM_DMR0 (MCF_IPSBAR + 0x54) /* Address mask 0 */
  70. #define MCFSIM_DBAR1 (MCF_IPSBAR + 0x58) /* Base address 1 */
  71. #define MCFSIM_DMR1 (MCF_IPSBAR + 0x5c) /* Address mask 1 */
  72. #endif
  73. /*
  74. * DMA unit base addresses.
  75. */
  76. #define MCFDMA_BASE0 (MCF_IPSBAR + 0x100)
  77. #define MCFDMA_BASE1 (MCF_IPSBAR + 0x140)
  78. #define MCFDMA_BASE2 (MCF_IPSBAR + 0x180)
  79. #define MCFDMA_BASE3 (MCF_IPSBAR + 0x1C0)
  80. /*
  81. * UART module.
  82. */
  83. #define MCFUART_BASE0 (MCF_IPSBAR + 0x200)
  84. #define MCFUART_BASE1 (MCF_IPSBAR + 0x240)
  85. #define MCFUART_BASE2 (MCF_IPSBAR + 0x280)
  86. /*
  87. * FEC ethernet module.
  88. */
  89. #define MCFFEC_BASE0 (MCF_IPSBAR + 0x1000)
  90. #define MCFFEC_SIZE0 0x800
  91. #ifdef CONFIG_M5275
  92. #define MCFFEC_BASE1 (MCF_IPSBAR + 0x1800)
  93. #define MCFFEC_SIZE1 0x800
  94. #endif
  95. /*
  96. * QSPI module.
  97. */
  98. #define MCFQSPI_BASE (MCF_IPSBAR + 0x340)
  99. #define MCFQSPI_SIZE 0x40
  100. #ifdef CONFIG_M5271
  101. #define MCFQSPI_CS0 91
  102. #define MCFQSPI_CS1 92
  103. #define MCFQSPI_CS2 99
  104. #define MCFQSPI_CS3 103
  105. #endif
  106. #ifdef CONFIG_M5275
  107. #define MCFQSPI_CS0 59
  108. #define MCFQSPI_CS1 60
  109. #define MCFQSPI_CS2 61
  110. #define MCFQSPI_CS3 62
  111. #endif
  112. /*
  113. * GPIO module.
  114. */
  115. #ifdef CONFIG_M5271
  116. #define MCFGPIO_PODR_ADDR (MCF_IPSBAR + 0x100000)
  117. #define MCFGPIO_PODR_DATAH (MCF_IPSBAR + 0x100001)
  118. #define MCFGPIO_PODR_DATAL (MCF_IPSBAR + 0x100002)
  119. #define MCFGPIO_PODR_BUSCTL (MCF_IPSBAR + 0x100003)
  120. #define MCFGPIO_PODR_BS (MCF_IPSBAR + 0x100004)
  121. #define MCFGPIO_PODR_CS (MCF_IPSBAR + 0x100005)
  122. #define MCFGPIO_PODR_SDRAM (MCF_IPSBAR + 0x100006)
  123. #define MCFGPIO_PODR_FECI2C (MCF_IPSBAR + 0x100007)
  124. #define MCFGPIO_PODR_UARTH (MCF_IPSBAR + 0x100008)
  125. #define MCFGPIO_PODR_UARTL (MCF_IPSBAR + 0x100009)
  126. #define MCFGPIO_PODR_QSPI (MCF_IPSBAR + 0x10000A)
  127. #define MCFGPIO_PODR_TIMER (MCF_IPSBAR + 0x10000B)
  128. #define MCFGPIO_PDDR_ADDR (MCF_IPSBAR + 0x100010)
  129. #define MCFGPIO_PDDR_DATAH (MCF_IPSBAR + 0x100011)
  130. #define MCFGPIO_PDDR_DATAL (MCF_IPSBAR + 0x100012)
  131. #define MCFGPIO_PDDR_BUSCTL (MCF_IPSBAR + 0x100013)
  132. #define MCFGPIO_PDDR_BS (MCF_IPSBAR + 0x100014)
  133. #define MCFGPIO_PDDR_CS (MCF_IPSBAR + 0x100015)
  134. #define MCFGPIO_PDDR_SDRAM (MCF_IPSBAR + 0x100016)
  135. #define MCFGPIO_PDDR_FECI2C (MCF_IPSBAR + 0x100017)
  136. #define MCFGPIO_PDDR_UARTH (MCF_IPSBAR + 0x100018)
  137. #define MCFGPIO_PDDR_UARTL (MCF_IPSBAR + 0x100019)
  138. #define MCFGPIO_PDDR_QSPI (MCF_IPSBAR + 0x10001A)
  139. #define MCFGPIO_PDDR_TIMER (MCF_IPSBAR + 0x10001B)
  140. #define MCFGPIO_PPDSDR_ADDR (MCF_IPSBAR + 0x100020)
  141. #define MCFGPIO_PPDSDR_DATAH (MCF_IPSBAR + 0x100021)
  142. #define MCFGPIO_PPDSDR_DATAL (MCF_IPSBAR + 0x100022)
  143. #define MCFGPIO_PPDSDR_BUSCTL (MCF_IPSBAR + 0x100023)
  144. #define MCFGPIO_PPDSDR_BS (MCF_IPSBAR + 0x100024)
  145. #define MCFGPIO_PPDSDR_CS (MCF_IPSBAR + 0x100025)
  146. #define MCFGPIO_PPDSDR_SDRAM (MCF_IPSBAR + 0x100026)
  147. #define MCFGPIO_PPDSDR_FECI2C (MCF_IPSBAR + 0x100027)
  148. #define MCFGPIO_PPDSDR_UARTH (MCF_IPSBAR + 0x100028)
  149. #define MCFGPIO_PPDSDR_UARTL (MCF_IPSBAR + 0x100029)
  150. #define MCFGPIO_PPDSDR_QSPI (MCF_IPSBAR + 0x10002A)
  151. #define MCFGPIO_PPDSDR_TIMER (MCF_IPSBAR + 0x10002B)
  152. #define MCFGPIO_PCLRR_ADDR (MCF_IPSBAR + 0x100030)
  153. #define MCFGPIO_PCLRR_DATAH (MCF_IPSBAR + 0x100031)
  154. #define MCFGPIO_PCLRR_DATAL (MCF_IPSBAR + 0x100032)
  155. #define MCFGPIO_PCLRR_BUSCTL (MCF_IPSBAR + 0x100033)
  156. #define MCFGPIO_PCLRR_BS (MCF_IPSBAR + 0x100034)
  157. #define MCFGPIO_PCLRR_CS (MCF_IPSBAR + 0x100035)
  158. #define MCFGPIO_PCLRR_SDRAM (MCF_IPSBAR + 0x100036)
  159. #define MCFGPIO_PCLRR_FECI2C (MCF_IPSBAR + 0x100037)
  160. #define MCFGPIO_PCLRR_UARTH (MCF_IPSBAR + 0x100038)
  161. #define MCFGPIO_PCLRR_UARTL (MCF_IPSBAR + 0x100039)
  162. #define MCFGPIO_PCLRR_QSPI (MCF_IPSBAR + 0x10003A)
  163. #define MCFGPIO_PCLRR_TIMER (MCF_IPSBAR + 0x10003B)
  164. /*
  165. * Generic GPIO support
  166. */
  167. #define MCFGPIO_PODR MCFGPIO_PODR_ADDR
  168. #define MCFGPIO_PDDR MCFGPIO_PDDR_ADDR
  169. #define MCFGPIO_PPDR MCFGPIO_PPDSDR_ADDR
  170. #define MCFGPIO_SETR MCFGPIO_PPDSDR_ADDR
  171. #define MCFGPIO_CLRR MCFGPIO_PCLRR_ADDR
  172. #define MCFGPIO_PIN_MAX 100
  173. #define MCFGPIO_IRQ_MAX 8
  174. #define MCFGPIO_IRQ_VECBASE MCFINT_VECBASE
  175. /*
  176. * Port Pin Assignment registers.
  177. */
  178. #define MCFGPIO_PAR_AD (MCF_IPSBAR + 0x100040)
  179. #define MCFGPIO_PAR_BUSCTL (MCF_IPSBAR + 0x100042)
  180. #define MCFGPIO_PAR_BS (MCF_IPSBAR + 0x100044)
  181. #define MCFGPIO_PAR_CS (MCF_IPSBAR + 0x100045)
  182. #define MCFGPIO_PAR_SDRAM (MCF_IPSBAR + 0x100046)
  183. #define MCFGPIO_PAR_FECI2C (MCF_IPSBAR + 0x100047)
  184. #define MCFGPIO_PAR_UART (MCF_IPSBAR + 0x100048)
  185. #define MCFGPIO_PAR_QSPI (MCF_IPSBAR + 0x10004A)
  186. #define MCFGPIO_PAR_TIMER (MCF_IPSBAR + 0x10004C)
  187. #define UART0_ENABLE_MASK 0x000f
  188. #define UART1_ENABLE_MASK 0x0ff0
  189. #define UART2_ENABLE_MASK 0x3000
  190. #endif /* CONFIG_M5271 */
  191. #ifdef CONFIG_M5275
  192. #define MCFGPIO_PODR_BUSCTL (MCF_IPSBAR + 0x100004)
  193. #define MCFGPIO_PODR_ADDR (MCF_IPSBAR + 0x100005)
  194. #define MCFGPIO_PODR_CS (MCF_IPSBAR + 0x100008)
  195. #define MCFGPIO_PODR_FEC0H (MCF_IPSBAR + 0x10000A)
  196. #define MCFGPIO_PODR_FEC0L (MCF_IPSBAR + 0x10000B)
  197. #define MCFGPIO_PODR_FECI2C (MCF_IPSBAR + 0x10000C)
  198. #define MCFGPIO_PODR_QSPI (MCF_IPSBAR + 0x10000D)
  199. #define MCFGPIO_PODR_SDRAM (MCF_IPSBAR + 0x10000E)
  200. #define MCFGPIO_PODR_TIMERH (MCF_IPSBAR + 0x10000F)
  201. #define MCFGPIO_PODR_TIMERL (MCF_IPSBAR + 0x100010)
  202. #define MCFGPIO_PODR_UARTL (MCF_IPSBAR + 0x100011)
  203. #define MCFGPIO_PODR_FEC1H (MCF_IPSBAR + 0x100012)
  204. #define MCFGPIO_PODR_FEC1L (MCF_IPSBAR + 0x100013)
  205. #define MCFGPIO_PODR_BS (MCF_IPSBAR + 0x100014)
  206. #define MCFGPIO_PODR_IRQ (MCF_IPSBAR + 0x100015)
  207. #define MCFGPIO_PODR_USBH (MCF_IPSBAR + 0x100016)
  208. #define MCFGPIO_PODR_USBL (MCF_IPSBAR + 0x100017)
  209. #define MCFGPIO_PODR_UARTH (MCF_IPSBAR + 0x100018)
  210. #define MCFGPIO_PDDR_BUSCTL (MCF_IPSBAR + 0x100020)
  211. #define MCFGPIO_PDDR_ADDR (MCF_IPSBAR + 0x100021)
  212. #define MCFGPIO_PDDR_CS (MCF_IPSBAR + 0x100024)
  213. #define MCFGPIO_PDDR_FEC0H (MCF_IPSBAR + 0x100026)
  214. #define MCFGPIO_PDDR_FEC0L (MCF_IPSBAR + 0x100027)
  215. #define MCFGPIO_PDDR_FECI2C (MCF_IPSBAR + 0x100028)
  216. #define MCFGPIO_PDDR_QSPI (MCF_IPSBAR + 0x100029)
  217. #define MCFGPIO_PDDR_SDRAM (MCF_IPSBAR + 0x10002A)
  218. #define MCFGPIO_PDDR_TIMERH (MCF_IPSBAR + 0x10002B)
  219. #define MCFGPIO_PDDR_TIMERL (MCF_IPSBAR + 0x10002C)
  220. #define MCFGPIO_PDDR_UARTL (MCF_IPSBAR + 0x10002D)
  221. #define MCFGPIO_PDDR_FEC1H (MCF_IPSBAR + 0x10002E)
  222. #define MCFGPIO_PDDR_FEC1L (MCF_IPSBAR + 0x10002F)
  223. #define MCFGPIO_PDDR_BS (MCF_IPSBAR + 0x100030)
  224. #define MCFGPIO_PDDR_IRQ (MCF_IPSBAR + 0x100031)
  225. #define MCFGPIO_PDDR_USBH (MCF_IPSBAR + 0x100032)
  226. #define MCFGPIO_PDDR_USBL (MCF_IPSBAR + 0x100033)
  227. #define MCFGPIO_PDDR_UARTH (MCF_IPSBAR + 0x100034)
  228. #define MCFGPIO_PPDSDR_BUSCTL (MCF_IPSBAR + 0x10003C)
  229. #define MCFGPIO_PPDSDR_ADDR (MCF_IPSBAR + 0x10003D)
  230. #define MCFGPIO_PPDSDR_CS (MCF_IPSBAR + 0x100040)
  231. #define MCFGPIO_PPDSDR_FEC0H (MCF_IPSBAR + 0x100042)
  232. #define MCFGPIO_PPDSDR_FEC0L (MCF_IPSBAR + 0x100043)
  233. #define MCFGPIO_PPDSDR_FECI2C (MCF_IPSBAR + 0x100044)
  234. #define MCFGPIO_PPDSDR_QSPI (MCF_IPSBAR + 0x100045)
  235. #define MCFGPIO_PPDSDR_SDRAM (MCF_IPSBAR + 0x100046)
  236. #define MCFGPIO_PPDSDR_TIMERH (MCF_IPSBAR + 0x100047)
  237. #define MCFGPIO_PPDSDR_TIMERL (MCF_IPSBAR + 0x100048)
  238. #define MCFGPIO_PPDSDR_UARTL (MCF_IPSBAR + 0x100049)
  239. #define MCFGPIO_PPDSDR_FEC1H (MCF_IPSBAR + 0x10004A)
  240. #define MCFGPIO_PPDSDR_FEC1L (MCF_IPSBAR + 0x10004B)
  241. #define MCFGPIO_PPDSDR_BS (MCF_IPSBAR + 0x10004C)
  242. #define MCFGPIO_PPDSDR_IRQ (MCF_IPSBAR + 0x10004D)
  243. #define MCFGPIO_PPDSDR_USBH (MCF_IPSBAR + 0x10004E)
  244. #define MCFGPIO_PPDSDR_USBL (MCF_IPSBAR + 0x10004F)
  245. #define MCFGPIO_PPDSDR_UARTH (MCF_IPSBAR + 0x100050)
  246. #define MCFGPIO_PCLRR_BUSCTL (MCF_IPSBAR + 0x100058)
  247. #define MCFGPIO_PCLRR_ADDR (MCF_IPSBAR + 0x100059)
  248. #define MCFGPIO_PCLRR_CS (MCF_IPSBAR + 0x10005C)
  249. #define MCFGPIO_PCLRR_FEC0H (MCF_IPSBAR + 0x10005E)
  250. #define MCFGPIO_PCLRR_FEC0L (MCF_IPSBAR + 0x10005F)
  251. #define MCFGPIO_PCLRR_FECI2C (MCF_IPSBAR + 0x100060)
  252. #define MCFGPIO_PCLRR_QSPI (MCF_IPSBAR + 0x100061)
  253. #define MCFGPIO_PCLRR_SDRAM (MCF_IPSBAR + 0x100062)
  254. #define MCFGPIO_PCLRR_TIMERH (MCF_IPSBAR + 0x100063)
  255. #define MCFGPIO_PCLRR_TIMERL (MCF_IPSBAR + 0x100064)
  256. #define MCFGPIO_PCLRR_UARTL (MCF_IPSBAR + 0x100065)
  257. #define MCFGPIO_PCLRR_FEC1H (MCF_IPSBAR + 0x100066)
  258. #define MCFGPIO_PCLRR_FEC1L (MCF_IPSBAR + 0x100067)
  259. #define MCFGPIO_PCLRR_BS (MCF_IPSBAR + 0x100068)
  260. #define MCFGPIO_PCLRR_IRQ (MCF_IPSBAR + 0x100069)
  261. #define MCFGPIO_PCLRR_USBH (MCF_IPSBAR + 0x10006A)
  262. #define MCFGPIO_PCLRR_USBL (MCF_IPSBAR + 0x10006B)
  263. #define MCFGPIO_PCLRR_UARTH (MCF_IPSBAR + 0x10006C)
  264. /*
  265. * Generic GPIO support
  266. */
  267. #define MCFGPIO_PODR MCFGPIO_PODR_BUSCTL
  268. #define MCFGPIO_PDDR MCFGPIO_PDDR_BUSCTL
  269. #define MCFGPIO_PPDR MCFGPIO_PPDSDR_BUSCTL
  270. #define MCFGPIO_SETR MCFGPIO_PPDSDR_BUSCTL
  271. #define MCFGPIO_CLRR MCFGPIO_PCLRR_BUSCTL
  272. #define MCFGPIO_PIN_MAX 148
  273. #define MCFGPIO_IRQ_MAX 8
  274. #define MCFGPIO_IRQ_VECBASE MCFINT_VECBASE
  275. /*
  276. * Port Pin Assignment registers.
  277. */
  278. #define MCFGPIO_PAR_AD (MCF_IPSBAR + 0x100070)
  279. #define MCFGPIO_PAR_CS (MCF_IPSBAR + 0x100071)
  280. #define MCFGPIO_PAR_BUSCTL (MCF_IPSBAR + 0x100072)
  281. #define MCFGPIO_PAR_USB (MCF_IPSBAR + 0x100076)
  282. #define MCFGPIO_PAR_FEC0HL (MCF_IPSBAR + 0x100078)
  283. #define MCFGPIO_PAR_FEC1HL (MCF_IPSBAR + 0x100079)
  284. #define MCFGPIO_PAR_TIMER (MCF_IPSBAR + 0x10007A)
  285. #define MCFGPIO_PAR_UART (MCF_IPSBAR + 0x10007C)
  286. #define MCFGPIO_PAR_QSPI (MCF_IPSBAR + 0x10007E)
  287. #define MCFGPIO_PAR_SDRAM (MCF_IPSBAR + 0x100080)
  288. #define MCFGPIO_PAR_FECI2C (MCF_IPSBAR + 0x100082)
  289. #define MCFGPIO_PAR_BS (MCF_IPSBAR + 0x100084)
  290. #define UART0_ENABLE_MASK 0x000f
  291. #define UART1_ENABLE_MASK 0x00f0
  292. #define UART2_ENABLE_MASK 0x3f00
  293. #endif /* CONFIG_M5275 */
  294. /*
  295. * PIT timer base addresses.
  296. */
  297. #define MCFPIT_BASE1 (MCF_IPSBAR + 0x150000)
  298. #define MCFPIT_BASE2 (MCF_IPSBAR + 0x160000)
  299. #define MCFPIT_BASE3 (MCF_IPSBAR + 0x170000)
  300. #define MCFPIT_BASE4 (MCF_IPSBAR + 0x180000)
  301. /*
  302. * EPort
  303. */
  304. #define MCFEPORT_EPPAR (MCF_IPSBAR + 0x130000)
  305. #define MCFEPORT_EPDDR (MCF_IPSBAR + 0x130002)
  306. #define MCFEPORT_EPIER (MCF_IPSBAR + 0x130003)
  307. #define MCFEPORT_EPDR (MCF_IPSBAR + 0x130004)
  308. #define MCFEPORT_EPPDR (MCF_IPSBAR + 0x130005)
  309. #define MCFEPORT_EPFR (MCF_IPSBAR + 0x130006)
  310. /*
  311. * Reset Control Unit (relative to IPSBAR).
  312. */
  313. #define MCF_RCR (MCF_IPSBAR + 0x110000)
  314. #define MCF_RSR (MCF_IPSBAR + 0x110001)
  315. #define MCF_RCR_SWRESET 0x80 /* Software reset bit */
  316. #define MCF_RCR_FRCSTOUT 0x40 /* Force external reset */
  317. /****************************************************************************/
  318. #endif /* m527xsim_h */