mcu25.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*
  2. *(C) Copyright 2005-2007 Netstal Maschinen AG
  3. * Niklaus Giger (Niklaus.Giger@netstal.com)
  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, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /************************************************************************
  24. * mcu25.h - configuration for MCU25 board (similar to hcu4.h)
  25. ***********************************************************************/
  26. #ifndef __CONFIG_H
  27. #define __CONFIG_H
  28. /*-----------------------------------------------------------------------
  29. * High Level Configuration Options
  30. *----------------------------------------------------------------------*/
  31. #define CONFIG_MCU25 1 /* Board is MCU25 */
  32. #define CONFIG_4xx 1 /* ... PPC4xx family */
  33. #define CONFIG_405GP 1
  34. #define CONFIG_4xx 1
  35. #define CONFIG_HOSTNAME mcu25
  36. #define CONFIG_SYS_TEXT_BASE 0xFFFB0000
  37. /*
  38. * Include common defines/options for all boards produced by Netstal Maschinen
  39. */
  40. #include "netstal-common.h"
  41. #define CONFIG_SYS_CLK_FREQ 33333333 /* external freq to pll */
  42. #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
  43. #define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */
  44. /*-----------------------------------------------------------------------
  45. * Base addresses -- Note these are effective addresses where the
  46. * actual resources get mapped (not physical addresses)
  47. *----------------------------------------------------------------------*/
  48. #define CONFIG_SYS_MONITOR_LEN (320 * 1024) /* Reserve 320 kB for Monitor */
  49. #define CONFIG_SYS_MALLOC_LEN (256 * 1024) /* Reserve 256 kB for malloc() */
  50. #define CONFIG_SYS_SDRAM_BASE 0x00000000 /* _must_ be 0 */
  51. #define CONFIG_SYS_FLASH_BASE 0xfff80000 /* start of FLASH */
  52. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
  53. /* ... with on-chip memory here (4KBytes) */
  54. #define CONFIG_SYS_OCM_DATA_ADDR 0xF4000000
  55. #define CONFIG_SYS_OCM_DATA_SIZE 0x00001000
  56. /* Do not set up locked dcache as init ram. */
  57. #undef CONFIG_SYS_INIT_DCACHE_CS
  58. /* Use the On-Chip-Memory (OCM) as a temporary stack for the startup code. */
  59. #define CONFIG_SYS_TEMP_STACK_OCM 1
  60. #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR /* OCM */
  61. #define CONFIG_SYS_INIT_RAM_END CONFIG_SYS_OCM_DATA_SIZE
  62. #define CONFIG_SYS_GBL_DATA_SIZE 256 /* num bytes initial data */
  63. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  64. #define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_GBL_DATA_OFFSET - 0x4)
  65. /*-----------------------------------------------------------------------
  66. * Serial Port
  67. *----------------------------------------------------------------------*/
  68. /*
  69. * If CONFIG_SYS_EXT_SERIAL_CLOCK, then the UART divisor is 1.
  70. * If CONFIG_SYS_405_UART_ERRATA_59, then UART divisor is 31.
  71. * Otherwise, UART divisor is determined by CPU Clock and CONFIG_SYS_BASE_BAUD value.
  72. * The Linux BASE_BAUD define should match this configuration.
  73. * baseBaud = cpuClock/(uartDivisor*16)
  74. * If CONFIG_SYS_405_UART_ERRATA_59 and 200MHz CPU clock,
  75. * set Linux BASE_BAUD to 403200.
  76. */
  77. #undef CONFIG_SYS_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */
  78. #define CONFIG_SYS_BASE_BAUD 691200
  79. /* Set console baudrate to 9600 */
  80. #define CONFIG_BAUDRATE 9600
  81. /*-----------------------------------------------------------------------
  82. * Flash
  83. *----------------------------------------------------------------------*/
  84. /* Use common CFI driver */
  85. #define CONFIG_SYS_FLASH_CFI
  86. #define CONFIG_FLASH_CFI_DRIVER
  87. /* board provides its own flash_init code */
  88. #define CONFIG_FLASH_CFI_LEGACY 1
  89. #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_8BIT
  90. #define CONFIG_SYS_FLASH_LEGACY_512Kx8 1
  91. /* print 'E' for empty sector on flinfo */
  92. #define CONFIG_SYS_FLASH_EMPTY_INFO
  93. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
  94. #define CONFIG_SYS_MAX_FLASH_SECT 8 /* max number of sectors on one chip */
  95. /*-----------------------------------------------------------------------
  96. * Environment
  97. *----------------------------------------------------------------------*/
  98. #undef CONFIG_ENV_IS_IN_NVRAM
  99. #define CONFIG_ENV_IS_IN_FLASH
  100. #undef CONFIG_ENV_IS_NOWHERE
  101. #ifdef CONFIG_ENV_IS_IN_EEPROM
  102. /* Put the environment after the SDRAM configuration */
  103. #define PROM_SIZE 2048
  104. #define CONFIG_ENV_OFFSET 512
  105. #define CONFIG_ENV_SIZE (PROM_SIZE-CONFIG_ENV_OFFSET)
  106. #endif
  107. #ifdef CONFIG_ENV_IS_IN_FLASH
  108. /* Put the environment in Flash */
  109. #define CONFIG_ENV_SECT_SIZE 0x10000 /* size of one complete sector */
  110. #define CONFIG_ENV_ADDR ((-CONFIG_SYS_MONITOR_LEN)-CONFIG_ENV_SECT_SIZE)
  111. #define CONFIG_ENV_SIZE 8*1024 /* 8 KB Environment Sector */
  112. /* Address and size of Redundant Environment Sector */
  113. #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE)
  114. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  115. #endif
  116. /*-----------------------------------------------------------------------
  117. * I2C stuff for a ATMEL AT24C16 (2kB holding ENV, we are using the
  118. * the first internal I2C controller of the PPC440EPx
  119. *----------------------------------------------------------------------*/
  120. #define CONFIG_SYS_SPD_BUS_NUM 0
  121. /* Setup some board specific values for the default environment variables */
  122. #define CONFIG_IPADDR 172.25.1.25
  123. #define CONFIG_EXTRA_ENV_SETTINGS \
  124. CONFIG_NETSTAL_DEF_ENV \
  125. CONFIG_NETSTAL_DEF_ENV_POWERPC \
  126. ""
  127. /*
  128. * BOOTP options
  129. */
  130. #define CONFIG_BOOTP_BOOTFILESIZE
  131. #define CONFIG_BOOTP_BOOTPATH
  132. #define CONFIG_BOOTP_GATEWAY
  133. #define CONFIG_BOOTP_HOSTNAME
  134. /*
  135. * Command line configuration.
  136. */
  137. #include <config_cmd_default.h>
  138. #define CONFIG_CMD_ASKENV
  139. #define CONFIG_CMD_CACHE
  140. #define CONFIG_CMD_DHCP
  141. #define CONFIG_CMD_DIAG
  142. #define CONFIG_CMD_EEPROM
  143. #define CONFIG_CMD_ELF
  144. #define CONFIG_CMD_FLASH
  145. #define CONFIG_CMD_I2C
  146. #define CONFIG_CMD_IMMAP
  147. #define CONFIG_CMD_IRQ
  148. #define CONFIG_CMD_MII
  149. #define CONFIG_CMD_NET
  150. #define CONFIG_CMD_PING
  151. #define CONFIG_CMD_REGINFO
  152. #define CONFIG_CMD_SDRAM
  153. /* SPD EEPROM (sdram speed config) disabled */
  154. #define CONFIG_SPD_EEPROM 1
  155. #define SPD_EEPROM_ADDRESS 0x50
  156. /* POST support */
  157. #define CONFIG_POST (CONFIG_SYS_POST_MEMORY | \
  158. CONFIG_SYS_POST_CPU | \
  159. CONFIG_SYS_POST_UART | \
  160. CONFIG_SYS_POST_I2C | \
  161. CONFIG_SYS_POST_CACHE | \
  162. CONFIG_SYS_POST_ETHER | \
  163. CONFIG_SYS_POST_SPR)
  164. #define CONFIG_SYS_POST_UART_TABLE { CONFIG_SYS_NS16550_COM1 }
  165. #undef CONFIG_LOGBUFFER
  166. #define CONFIG_SYS_POST_CACHE_ADDR 0x00800000 /* free virtual address */
  167. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* Otherwise it catches logbuffer as output */
  168. /*-----------------------------------------------------------------------
  169. * Miscellaneous configurable options
  170. *----------------------------------------------------------------------*/
  171. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  172. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  173. #if defined(CONFIG_CMD_KGDB)
  174. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  175. #else
  176. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  177. #endif
  178. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
  179. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  180. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  181. #define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
  182. #define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
  183. #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
  184. /*-----------------------------------------------------------------------
  185. * External Bus Controller (EBC) Setup
  186. */
  187. #define CONFIG_SYS_EBC_CFG 0x98400000
  188. /* Memory Bank 0 (Flash Bank 0) initialization */
  189. #define CONFIG_SYS_EBC_PB0AP 0x02005400
  190. #define CONFIG_SYS_EBC_PB0CR 0xFFF18000 /* BAS=0xFFF,BS=1MB,BU=R/W,BW=8bit*/
  191. #define CONFIG_SYS_EBC_PB1AP 0x03041200
  192. #define CONFIG_SYS_EBC_PB1CR 0x7009A000 /* BAS=,BS=MB,BU=R/W,BW=bit */
  193. #define CONFIG_SYS_EBC_PB2AP 0x01845200u /* BAS=,BS=MB,BU=R/W,BW=bit */
  194. #define CONFIG_SYS_EBC_PB2CR 0x7A09A000u
  195. #define CONFIG_SYS_EBC_PB3AP 0x01845200u /* BAS=,BS=MB,BU=R/W,BW=bit */
  196. #define CONFIG_SYS_EBC_PB3CR 0x7B09A000u
  197. #define CONFIG_SYS_EBC_PB4AP 0x01845200u /* BAS=,BS=MB,BU=R/W,BW=bit */
  198. #define CONFIG_SYS_EBC_PB4CR 0x7C09A000u
  199. #define CONFIG_SYS_EBC_PB5AP 0x00800200u
  200. #define CONFIG_SYS_EBC_PB5CR 0x7D81A000u
  201. #define CONFIG_SYS_EBC_PB6AP 0x01040200u
  202. #define CONFIG_SYS_EBC_PB6CR 0x7D91A000u
  203. #define CONFIG_SYS_GPIO0_OR 0x087FFFFF /* GPIO value */
  204. #define CONFIG_SYS_GPIO0_TCR 0x7FFF8000 /* GPIO value */
  205. #define CONFIG_SYS_GPIO0_ODR 0xFFFF0000 /* GPIO value */
  206. /*
  207. * For booting Linux, the board info and command line data
  208. * have to be in the first 8 MB of memory, since this is
  209. * the maximum mapped by the Linux kernel during initialization.
  210. */
  211. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  212. /* Init Memory Controller:
  213. *
  214. * BR0/1 and OR0/1 (FLASH)
  215. */
  216. #define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE /* FLASH bank #0 */
  217. #define FLASH_BASE1_PRELIM 0 /* FLASH bank #1 */
  218. /* Configuration Port location */
  219. #define CONFIG_PORT_ADDR 0xF0000500
  220. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  221. #ifdef CONFIG_SYS_HUSH_PARSER
  222. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  223. #endif
  224. #if defined(CONFIG_CMD_KGDB)
  225. #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
  226. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  227. #endif
  228. #endif /* __CONFIG_H */