m5249sim.h 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /****************************************************************************/
  2. /*
  3. * m5249sim.h -- ColdFire 5249 System Integration Module support.
  4. *
  5. * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com)
  6. */
  7. /****************************************************************************/
  8. #ifndef m5249sim_h
  9. #define m5249sim_h
  10. /****************************************************************************/
  11. #define CPU_NAME "COLDFIRE(m5249)"
  12. #define CPU_INSTR_PER_JIFFY 3
  13. #define MCF_BUSCLK (MCF_CLK / 2)
  14. #include <asm/m52xxacr.h>
  15. /*
  16. * The 5249 has a second MBAR region, define its address.
  17. */
  18. #define MCF_MBAR2 0x80000000
  19. /*
  20. * Define the 5249 SIM register set addresses.
  21. */
  22. #define MCFSIM_RSR 0x00 /* Reset Status reg (r/w) */
  23. #define MCFSIM_SYPCR 0x01 /* System Protection reg (r/w)*/
  24. #define MCFSIM_SWIVR 0x02 /* SW Watchdog intr reg (r/w) */
  25. #define MCFSIM_SWSR 0x03 /* SW Watchdog service (r/w) */
  26. #define MCFSIM_PAR 0x04 /* Pin Assignment reg (r/w) */
  27. #define MCFSIM_IRQPAR 0x06 /* Interrupt Assignment reg (r/w) */
  28. #define MCFSIM_MPARK 0x0C /* BUS Master Control Reg*/
  29. #define MCFSIM_IPR 0x40 /* Interrupt Pend reg (r/w) */
  30. #define MCFSIM_IMR 0x44 /* Interrupt Mask reg (r/w) */
  31. #define MCFSIM_AVR 0x4b /* Autovector Ctrl reg (r/w) */
  32. #define MCFSIM_ICR0 0x4c /* Intr Ctrl reg 0 (r/w) */
  33. #define MCFSIM_ICR1 0x4d /* Intr Ctrl reg 1 (r/w) */
  34. #define MCFSIM_ICR2 0x4e /* Intr Ctrl reg 2 (r/w) */
  35. #define MCFSIM_ICR3 0x4f /* Intr Ctrl reg 3 (r/w) */
  36. #define MCFSIM_ICR4 0x50 /* Intr Ctrl reg 4 (r/w) */
  37. #define MCFSIM_ICR5 0x51 /* Intr Ctrl reg 5 (r/w) */
  38. #define MCFSIM_ICR6 0x52 /* Intr Ctrl reg 6 (r/w) */
  39. #define MCFSIM_ICR7 0x53 /* Intr Ctrl reg 7 (r/w) */
  40. #define MCFSIM_ICR8 0x54 /* Intr Ctrl reg 8 (r/w) */
  41. #define MCFSIM_ICR9 0x55 /* Intr Ctrl reg 9 (r/w) */
  42. #define MCFSIM_ICR10 0x56 /* Intr Ctrl reg 10 (r/w) */
  43. #define MCFSIM_ICR11 0x57 /* Intr Ctrl reg 11 (r/w) */
  44. #define MCFSIM_CSAR0 0x80 /* CS 0 Address 0 reg (r/w) */
  45. #define MCFSIM_CSMR0 0x84 /* CS 0 Mask 0 reg (r/w) */
  46. #define MCFSIM_CSCR0 0x8a /* CS 0 Control reg (r/w) */
  47. #define MCFSIM_CSAR1 0x8c /* CS 1 Address reg (r/w) */
  48. #define MCFSIM_CSMR1 0x90 /* CS 1 Mask reg (r/w) */
  49. #define MCFSIM_CSCR1 0x96 /* CS 1 Control reg (r/w) */
  50. #define MCFSIM_CSAR2 0x98 /* CS 2 Address reg (r/w) */
  51. #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */
  52. #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */
  53. #define MCFSIM_CSAR3 0xa4 /* CS 3 Address reg (r/w) */
  54. #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */
  55. #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */
  56. #define MCFSIM_DCR (MCF_MBAR + 0x100) /* DRAM Control */
  57. #define MCFSIM_DACR0 (MCF_MBAR + 0x108) /* DRAM 0 Addr/Ctrl */
  58. #define MCFSIM_DMR0 (MCF_MBAR + 0x10c) /* DRAM 0 Mask */
  59. #define MCFSIM_DACR1 (MCF_MBAR + 0x110) /* DRAM 1 Addr/Ctrl */
  60. #define MCFSIM_DMR1 (MCF_MBAR + 0x114) /* DRAM 1 Mask */
  61. /*
  62. * Timer module.
  63. */
  64. #define MCFTIMER_BASE1 (MCF_MBAR + 0x140) /* Base of TIMER1 */
  65. #define MCFTIMER_BASE2 (MCF_MBAR + 0x180) /* Base of TIMER2 */
  66. /*
  67. * UART module.
  68. */
  69. #define MCFUART_BASE0 (MCF_MBAR + 0x1c0) /* Base address UART0 */
  70. #define MCFUART_BASE1 (MCF_MBAR + 0x200) /* Base address UART1 */
  71. /*
  72. * QSPI module.
  73. */
  74. #define MCFQSPI_BASE (MCF_MBAR + 0x300) /* Base address QSPI */
  75. #define MCFQSPI_SIZE 0x40 /* Register set size */
  76. #define MCFQSPI_CS0 29
  77. #define MCFQSPI_CS1 24
  78. #define MCFQSPI_CS2 21
  79. #define MCFQSPI_CS3 22
  80. /*
  81. * DMA unit base addresses.
  82. */
  83. #define MCFDMA_BASE0 (MCF_MBAR + 0x300) /* Base address DMA 0 */
  84. #define MCFDMA_BASE1 (MCF_MBAR + 0x340) /* Base address DMA 1 */
  85. #define MCFDMA_BASE2 (MCF_MBAR + 0x380) /* Base address DMA 2 */
  86. #define MCFDMA_BASE3 (MCF_MBAR + 0x3C0) /* Base address DMA 3 */
  87. /*
  88. * Some symbol defines for the above...
  89. */
  90. #define MCFSIM_SWDICR MCFSIM_ICR0 /* Watchdog timer ICR */
  91. #define MCFSIM_TIMER1ICR MCFSIM_ICR1 /* Timer 1 ICR */
  92. #define MCFSIM_TIMER2ICR MCFSIM_ICR2 /* Timer 2 ICR */
  93. #define MCFSIM_UART1ICR MCFSIM_ICR4 /* UART 1 ICR */
  94. #define MCFSIM_UART2ICR MCFSIM_ICR5 /* UART 2 ICR */
  95. #define MCFSIM_DMA0ICR MCFSIM_ICR6 /* DMA 0 ICR */
  96. #define MCFSIM_DMA1ICR MCFSIM_ICR7 /* DMA 1 ICR */
  97. #define MCFSIM_DMA2ICR MCFSIM_ICR8 /* DMA 2 ICR */
  98. #define MCFSIM_DMA3ICR MCFSIM_ICR9 /* DMA 3 ICR */
  99. #define MCFSIM_QSPIICR MCFSIM_ICR10 /* QSPI ICR */
  100. /*
  101. * Define system peripheral IRQ usage.
  102. */
  103. #define MCF_IRQ_QSPI 28 /* QSPI, Level 4 */
  104. #define MCF_IRQ_TIMER 30 /* Timer0, Level 6 */
  105. #define MCF_IRQ_PROFILER 31 /* Timer1, Level 7 */
  106. #define MCF_IRQ_UART0 73 /* UART0 */
  107. #define MCF_IRQ_UART1 74 /* UART1 */
  108. /*
  109. * General purpose IO registers (in MBAR2).
  110. */
  111. #define MCFSIM2_GPIOREAD (MCF_MBAR2 + 0x000) /* GPIO read values */
  112. #define MCFSIM2_GPIOWRITE (MCF_MBAR2 + 0x004) /* GPIO write values */
  113. #define MCFSIM2_GPIOENABLE (MCF_MBAR2 + 0x008) /* GPIO enabled */
  114. #define MCFSIM2_GPIOFUNC (MCF_MBAR2 + 0x00C) /* GPIO function */
  115. #define MCFSIM2_GPIO1READ (MCF_MBAR2 + 0x0B0) /* GPIO1 read values */
  116. #define MCFSIM2_GPIO1WRITE (MCF_MBAR2 + 0x0B4) /* GPIO1 write values */
  117. #define MCFSIM2_GPIO1ENABLE (MCF_MBAR2 + 0x0B8) /* GPIO1 enabled */
  118. #define MCFSIM2_GPIO1FUNC (MCF_MBAR2 + 0x0BC) /* GPIO1 function */
  119. #define MCFSIM2_GPIOINTSTAT 0xc0 /* GPIO interrupt status */
  120. #define MCFSIM2_GPIOINTCLEAR 0xc0 /* GPIO interrupt clear */
  121. #define MCFSIM2_GPIOINTENABLE 0xc4 /* GPIO interrupt enable */
  122. #define MCFSIM2_INTLEVEL1 0x140 /* Interrupt level reg 1 */
  123. #define MCFSIM2_INTLEVEL2 0x144 /* Interrupt level reg 2 */
  124. #define MCFSIM2_INTLEVEL3 0x148 /* Interrupt level reg 3 */
  125. #define MCFSIM2_INTLEVEL4 0x14c /* Interrupt level reg 4 */
  126. #define MCFSIM2_INTLEVEL5 0x150 /* Interrupt level reg 5 */
  127. #define MCFSIM2_INTLEVEL6 0x154 /* Interrupt level reg 6 */
  128. #define MCFSIM2_INTLEVEL7 0x158 /* Interrupt level reg 7 */
  129. #define MCFSIM2_INTLEVEL8 0x15c /* Interrupt level reg 8 */
  130. #define MCFSIM2_DMAROUTE 0x188 /* DMA routing */
  131. #define MCFSIM2_IDECONFIG1 0x18c /* IDEconfig1 */
  132. #define MCFSIM2_IDECONFIG2 0x190 /* IDEconfig2 */
  133. /*
  134. * Define the base interrupt for the second interrupt controller.
  135. * We set it to 128, out of the way of the base interrupts, and plenty
  136. * of room for its 64 interrupts.
  137. */
  138. #define MCFINTC2_VECBASE 128
  139. #define MCFINTC2_GPIOIRQ0 (MCFINTC2_VECBASE + 32)
  140. #define MCFINTC2_GPIOIRQ1 (MCFINTC2_VECBASE + 33)
  141. #define MCFINTC2_GPIOIRQ2 (MCFINTC2_VECBASE + 34)
  142. #define MCFINTC2_GPIOIRQ3 (MCFINTC2_VECBASE + 35)
  143. #define MCFINTC2_GPIOIRQ4 (MCFINTC2_VECBASE + 36)
  144. #define MCFINTC2_GPIOIRQ5 (MCFINTC2_VECBASE + 37)
  145. #define MCFINTC2_GPIOIRQ6 (MCFINTC2_VECBASE + 38)
  146. #define MCFINTC2_GPIOIRQ7 (MCFINTC2_VECBASE + 39)
  147. /*
  148. * Generic GPIO support
  149. */
  150. #define MCFGPIO_PIN_MAX 64
  151. #define MCFGPIO_IRQ_MAX -1
  152. #define MCFGPIO_IRQ_VECBASE -1
  153. /****************************************************************************/
  154. #ifdef __ASSEMBLER__
  155. /*
  156. * The M5249C3 board needs a little help getting all its SIM devices
  157. * initialized at kernel start time. dBUG doesn't set much up, so
  158. * we need to do it manually.
  159. */
  160. .macro m5249c3_setup
  161. /*
  162. * Set MBAR1 and MBAR2, just incase they are not set.
  163. */
  164. movel #0x10000001,%a0
  165. movec %a0,%MBAR /* map MBAR region */
  166. subql #1,%a0 /* get MBAR address in a0 */
  167. movel #0x80000001,%a1
  168. movec %a1,#3086 /* map MBAR2 region */
  169. subql #1,%a1 /* get MBAR2 address in a1 */
  170. /*
  171. * Move secondary interrupts to their base (128).
  172. */
  173. moveb #MCFINTC2_VECBASE,%d0
  174. moveb %d0,0x16b(%a1) /* interrupt base register */
  175. /*
  176. * Work around broken CSMR0/DRAM vector problem.
  177. */
  178. movel #0x001F0021,%d0 /* disable C/I bit */
  179. movel %d0,0x84(%a0) /* set CSMR0 */
  180. /*
  181. * Disable the PLL firstly. (Who knows what state it is
  182. * in here!).
  183. */
  184. movel 0x180(%a1),%d0 /* get current PLL value */
  185. andl #0xfffffffe,%d0 /* PLL bypass first */
  186. movel %d0,0x180(%a1) /* set PLL register */
  187. nop
  188. #if CONFIG_CLOCK_FREQ == 140000000
  189. /*
  190. * Set initial clock frequency. This assumes M5249C3 board
  191. * is fitted with 11.2896MHz crystal. It will program the
  192. * PLL for 140MHz. Lets go fast :-)
  193. */
  194. movel #0x125a40f0,%d0 /* set for 140MHz */
  195. movel %d0,0x180(%a1) /* set PLL register */
  196. orl #0x1,%d0
  197. movel %d0,0x180(%a1) /* set PLL register */
  198. #endif
  199. /*
  200. * Setup CS1 for ethernet controller.
  201. * (Setup as per M5249C3 doco).
  202. */
  203. movel #0xe0000000,%d0 /* CS1 mapped at 0xe0000000 */
  204. movel %d0,0x8c(%a0)
  205. movel #0x001f0021,%d0 /* CS1 size of 1Mb */
  206. movel %d0,0x90(%a0)
  207. movew #0x0080,%d0 /* CS1 = 16bit port, AA */
  208. movew %d0,0x96(%a0)
  209. /*
  210. * Setup CS2 for IDE interface.
  211. */
  212. movel #0x50000000,%d0 /* CS2 mapped at 0x50000000 */
  213. movel %d0,0x98(%a0)
  214. movel #0x001f0001,%d0 /* CS2 size of 1MB */
  215. movel %d0,0x9c(%a0)
  216. movew #0x0080,%d0 /* CS2 = 16bit, TA */
  217. movew %d0,0xa2(%a0)
  218. movel #0x00107000,%d0 /* IDEconfig1 */
  219. movel %d0,0x18c(%a1)
  220. movel #0x000c0400,%d0 /* IDEconfig2 */
  221. movel %d0,0x190(%a1)
  222. movel #0x00080000,%d0 /* GPIO19, IDE reset bit */
  223. orl %d0,0xc(%a1) /* function GPIO19 */
  224. orl %d0,0x8(%a1) /* enable GPIO19 as output */
  225. orl %d0,0x4(%a1) /* de-assert IDE reset */
  226. .endm
  227. #define PLATFORM_SETUP m5249c3_setup
  228. #endif /* __ASSEMBLER__ */
  229. /****************************************************************************/
  230. #endif /* m5249sim_h */