cmi_mpc5xx.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /*
  2. * (C) Copyright 2003
  3. * Martin Winistoerfer, martinwinistoerfer@gmx.ch.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation,
  21. */
  22. /*
  23. * File: cmi_mpc5xx.h
  24. *
  25. * Discription: Config header file for cmi
  26. * board using an MPC5xx CPU
  27. *
  28. */
  29. #ifndef __CONFIG_H
  30. #define __CONFIG_H
  31. /*
  32. * High Level Configuration Options
  33. */
  34. #define CONFIG_MPC555 1 /* This is an MPC555 CPU */
  35. #define CONFIG_CMI 1 /* Using the customized cmi board */
  36. /* Serial Console Configuration */
  37. #define CONFIG_5xx_CONS_SCI1
  38. #undef CONFIG_5xx_CONS_SCI2
  39. #define CONFIG_BAUDRATE 57600
  40. /*
  41. * BOOTP options
  42. */
  43. #define CONFIG_BOOTP_BOOTFILESIZE
  44. #define CONFIG_BOOTP_BOOTPATH
  45. #define CONFIG_BOOTP_GATEWAY
  46. #define CONFIG_BOOTP_HOSTNAME
  47. /*
  48. * Command line configuration.
  49. */
  50. #include <config_cmd_default.h>
  51. #undef CONFIG_CMD_NET /* disabeled - causes compile errors */
  52. #define CONFIG_CMD_MEMORY
  53. #define CONFIG_CMD_LOADB
  54. #define CONFIG_CMD_REGINFO
  55. #define CONFIG_CMD_FLASH
  56. #define CONFIG_CMD_LOADS
  57. #define CONFIG_CMD_ASKENV
  58. #define CONFIG_CMD_BDI
  59. #define CONFIG_CMD_CONSOLE
  60. #define CONFIG_CMD_SAVEENV
  61. #define CONFIG_CMD_RUN
  62. #define CONFIG_CMD_IMI
  63. #if 0
  64. #define CONFIG_BOOTDELAY -1 /* autoboot disabled */
  65. #else
  66. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  67. #endif
  68. #define CONFIG_BOOTCOMMAND "go 02034004" /* autoboot command */
  69. #define CONFIG_BOOTARGS "" /* Assuming OS Image in 4 flash sector at offset 4004 */
  70. #define CONFIG_WATCHDOG /* turn on platform specific watchdog */
  71. #define CONFIG_STATUS_LED 1 /* Enable status led */
  72. #define CONFIG_LOADS_ECHO 1 /* Echo on for serial download */
  73. /*
  74. * Miscellaneous configurable options
  75. */
  76. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  77. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  78. #if defined(CONFIG_CMD_KGDB)
  79. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  80. #else
  81. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  82. #endif
  83. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  84. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  85. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  86. #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest works on */
  87. #define CONFIG_SYS_MEMTEST_END 0x000fa000 /* 1 MB in SRAM */
  88. #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
  89. #define CONFIG_SYS_HZ 1000 /* Decrementer freq: 1 ms ticks */
  90. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 1250000 }
  91. /*
  92. * Low Level Configuration Settings
  93. */
  94. /*
  95. * Internal Memory Mapped (This is not the IMMR content)
  96. */
  97. #define CONFIG_SYS_IMMR 0x01000000 /* Physical start adress of internal memory map */
  98. /*
  99. * Definitions for initial stack pointer and data area
  100. */
  101. #define CONFIG_SYS_INIT_RAM_ADDR (CONFIG_SYS_IMMR + 0x003f9800) /* Physical start adress of internal MPC555 writable RAM */
  102. #define CONFIG_SYS_INIT_RAM_END (CONFIG_SYS_IMMR + 0x003fffff) /* Physical end adress of internal MPC555 used RAM area */
  103. #define CONFIG_SYS_GBL_DATA_SIZE 64 /* Size in bytes reserved for initial global data */
  104. #define CONFIG_SYS_GBL_DATA_OFFSET ((CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_INIT_RAM_ADDR) - CONFIG_SYS_GBL_DATA_SIZE) /* Offset from the beginning of ram */
  105. #define CONFIG_SYS_INIT_SP_ADDR 0x013fa000 /* Physical start adress of inital stack */
  106. /*
  107. * Start addresses for the final memory configuration
  108. * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
  109. */
  110. #define CONFIG_SYS_SDRAM_BASE 0x00000000 /* Monitor won't change memory map */
  111. #define CONFIG_SYS_FLASH_BASE 0x02000000 /* External flash */
  112. #define PLD_BASE 0x03000000 /* PLD */
  113. #define ANYBUS_BASE 0x03010000 /* Anybus Module */
  114. #define CONFIG_SYS_RESET_ADRESS 0x01000000 /* Adress which causes reset */
  115. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE /* TEXT_BASE is defined in the board config.mk file. */
  116. /* This adress is given to the linker with -Ttext to */
  117. /* locate the text section at this adress. */
  118. #define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */
  119. #define CONFIG_SYS_MALLOC_LEN (64 << 10) /* Reserve 128 kB for malloc() */
  120. /*
  121. * For booting Linux, the board info and command line data
  122. * have to be in the first 8 MB of memory, since this is
  123. * the maximum mapped by the Linux kernel during initialization.
  124. */
  125. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  126. /*-----------------------------------------------------------------------
  127. * FLASH organization
  128. *-----------------------------------------------------------------------
  129. *
  130. */
  131. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max number of memory banks */
  132. #define CONFIG_SYS_MAX_FLASH_SECT 64 /* Max number of sectors on one chip */
  133. #define CONFIG_SYS_FLASH_ERASE_TOUT 180000 /* Timeout for Flash Erase (in ms) */
  134. #define CONFIG_SYS_FLASH_WRITE_TOUT 600 /* Timeout for Flash Write (in ms) */
  135. #define CONFIG_SYS_FLASH_PROTECTION 1 /* Physically section protection on */
  136. #define CONFIG_ENV_IS_IN_FLASH 1
  137. #ifdef CONFIG_ENV_IS_IN_FLASH
  138. #define CONFIG_ENV_OFFSET 0x00020000 /* Environment starts at this adress */
  139. #define CONFIG_ENV_SIZE 0x00010000 /* Set whole sector as env */
  140. #define CONFIG_SYS_USE_PPCENV /* Environment embedded in sect .ppcenv */
  141. #endif
  142. /*-----------------------------------------------------------------------
  143. * SYPCR - System Protection Control
  144. * SYPCR can only be written once after reset!
  145. *-----------------------------------------------------------------------
  146. * SW Watchdog freeze
  147. */
  148. #if defined(CONFIG_WATCHDOG)
  149. #define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | \
  150. SYPCR_SWE | SYPCR_SWRI| SYPCR_SWP)
  151. #else
  152. #define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | \
  153. SYPCR_SWP)
  154. #endif /* CONFIG_WATCHDOG */
  155. /*-----------------------------------------------------------------------
  156. * TBSCR - Time Base Status and Control
  157. *-----------------------------------------------------------------------
  158. * Clear Reference Interrupt Status, Timebase freezing enabled
  159. */
  160. #define CONFIG_SYS_TBSCR (TBSCR_REFA | TBSCR_REFB | TBSCR_TBF)
  161. /*-----------------------------------------------------------------------
  162. * PISCR - Periodic Interrupt Status and Control
  163. *-----------------------------------------------------------------------
  164. * Clear Periodic Interrupt Status, Interrupt Timer freezing enabled
  165. */
  166. #define CONFIG_SYS_PISCR (PISCR_PITF)
  167. /*-----------------------------------------------------------------------
  168. * SCCR - System Clock and reset Control Register
  169. *-----------------------------------------------------------------------
  170. * Set clock output, timebase and RTC source and divider,
  171. * power management and some other internal clocks
  172. */
  173. #define SCCR_MASK SCCR_EBDF00
  174. #define CONFIG_SYS_SCCR (SCCR_TBS | SCCR_RTDIV | SCCR_RTSEL | \
  175. SCCR_COM00 | SCCR_DFNL000 | SCCR_DFNH000)
  176. /*-----------------------------------------------------------------------
  177. * SIUMCR - SIU Module Configuration
  178. *-----------------------------------------------------------------------
  179. * Data show cycle
  180. */
  181. #define CONFIG_SYS_SIUMCR (SIUMCR_DBGC00) /* Disable data show cycle */
  182. /*-----------------------------------------------------------------------
  183. * PLPRCR - PLL, Low-Power, and Reset Control Register
  184. *-----------------------------------------------------------------------
  185. * Set all bits to 40 Mhz
  186. *
  187. */
  188. #define CONFIG_SYS_OSC_CLK ((uint)4000000) /* Oscillator clock is 4MHz */
  189. #define CONFIG_SYS_PLPRCR (PLPRCR_MF_9 | PLPRCR_DIVF_0)
  190. /*-----------------------------------------------------------------------
  191. * UMCR - UIMB Module Configuration Register
  192. *-----------------------------------------------------------------------
  193. *
  194. */
  195. #define CONFIG_SYS_UMCR (UMCR_FSPEED) /* IMB clock same as U-bus */
  196. /*-----------------------------------------------------------------------
  197. * ICTRL - I-Bus Support Control Register
  198. */
  199. #define CONFIG_SYS_ICTRL (ICTRL_ISCT_SER_7) /* Take out of serialized mode */
  200. /*-----------------------------------------------------------------------
  201. * USIU - Memory Controller Register
  202. *-----------------------------------------------------------------------
  203. */
  204. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | BR_V | BR_BI | BR_PS_16)
  205. #define CONFIG_SYS_OR0_PRELIM (OR_ADDR_MK_FF | OR_SCY_3)
  206. #define CONFIG_SYS_BR1_PRELIM (ANYBUS_BASE)
  207. #define CONFIG_SYS_OR1_PRELIM (OR_ADDR_MK_FFFF | OR_SCY_1 | OR_ETHR)
  208. #define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_SDRAM_BASE | BR_V | BR_PS_32)
  209. #define CONFIG_SYS_OR2_PRELIM (OR_ADDR_MK_FF)
  210. #define CONFIG_SYS_BR3_PRELIM (PLD_BASE | BR_V | BR_BI | BR_LBDIR | BR_PS_8)
  211. #define CONFIG_SYS_OR3_PRELIM (OR_ADDR_MK_FF | OR_TRLX | OR_BSCY | OR_SCY_8 | \
  212. OR_ACS_10 | OR_ETHR | OR_CSNT)
  213. #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE /* We don't realign the flash */
  214. /*-----------------------------------------------------------------------
  215. * DER - Timer Decrementer
  216. *-----------------------------------------------------------------------
  217. * Initialise to zero
  218. */
  219. #define CONFIG_SYS_DER 0x00000000
  220. /*
  221. * Internal Definitions
  222. *
  223. * Boot Flags
  224. */
  225. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  226. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  227. #endif /* __CONFIG_H */