hcu5.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /*
  2. * (C) Copyright 2007 Netstal Maschinen AG
  3. * Niklaus Giger (Niklaus.Giger@netstal.com)
  4. *
  5. * (C) Copyright 2006-2007
  6. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  7. *
  8. * (C) Copyright 2006
  9. * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com
  10. * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. /************************************************************************
  28. * hcu5.h - configuration for HCU5 board (derived from sequoia.h)
  29. ***********************************************************************/
  30. #ifndef __CONFIG_H
  31. #define __CONFIG_H
  32. /*-----------------------------------------------------------------------
  33. * High Level Configuration Options
  34. *----------------------------------------------------------------------*/
  35. #define CONFIG_HCU5 1 /* Board is HCU5 */
  36. #define CONFIG_440EPX 1 /* Specific PPC440EPx */
  37. #define CONFIG_440 1 /* ... PPC440 family */
  38. #define CONFIG_4xx 1 /* ... PPC4xx family */
  39. #define CONFIG_SYS_CLK_FREQ 33333333 /* external freq to pll */
  40. #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
  41. #define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */
  42. /*-----------------------------------------------------------------------
  43. * Base addresses -- Note these are effective addresses where the
  44. * actual resources get mapped (not physical addresses)
  45. *----------------------------------------------------------------------*/
  46. #define CFG_MONITOR_LEN (384 * 1024) /* Reserve 384 kB for Monitor */
  47. #define CFG_MALLOC_LEN (256 * 1024) /* Reserve 256 kB for malloc() */
  48. #define CFG_BOOT_BASE_ADDR 0xfff00000
  49. #define CFG_SDRAM_BASE 0x00000000 /* _must_ be 0 */
  50. #define CFG_FLASH_BASE 0xfff80000 /* start of FLASH */
  51. #define CFG_MONITOR_BASE TEXT_BASE
  52. #define CFG_OCM_BASE 0xe0010000 /* ocm */
  53. #define CFG_PCI_BASE 0xe0000000 /* Internal PCI regs */
  54. #define CFG_PCI_MEMBASE 0x80000000 /* mapped pci memory */
  55. #define CFG_PCI_MEMBASE1 CFG_PCI_MEMBASE + 0x10000000
  56. #define CFG_PCI_MEMBASE2 CFG_PCI_MEMBASE1 + 0x10000000
  57. #define CFG_PCI_MEMBASE3 CFG_PCI_MEMBASE2 + 0x10000000
  58. /* Don't change either of these */
  59. #define CFG_PERIPHERAL_BASE 0xef600000 /* internal peripherals */
  60. #define CFG_USB2D0_BASE 0xe0000100
  61. #define CFG_USB_DEVICE 0xe0000000
  62. #define CFG_USB_HOST 0xe0000400
  63. /*-----------------------------------------------------------------------
  64. * Initial RAM & stack pointer
  65. *----------------------------------------------------------------------*/
  66. /* 440EPx/440GRx have 16KB of internal SRAM, so no need for D-Cache */
  67. #define CFG_INIT_RAM_ADDR CFG_OCM_BASE /* OCM */
  68. #define CFG_INIT_RAM_END (4 << 10)
  69. #define CFG_GBL_DATA_SIZE 256 /* num bytes initial data */
  70. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
  71. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  72. /*-----------------------------------------------------------------------
  73. * Serial Port
  74. *----------------------------------------------------------------------*/
  75. #undef CFG_EXT_SERIAL_CLOCK /* external serial clock */
  76. #define CONFIG_BAUDRATE 9600
  77. #undef CONFIG_SERIAL_MULTI /* needed to be able to define
  78. CONFIG_SERIAL_SOFTWARE_FIFO, but
  79. CONFIG_SERIAL_SOFTWARE_FIFO (16) does not work */
  80. /* Size (bytes) of interrupt driven serial port buffer.
  81. * Set to 0 to use polling instead of interrupts.
  82. * Setting to 0 will also disable RTS/CTS handshaking.
  83. */
  84. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  85. #undef CONFIG_UART1_CONSOLE
  86. #define CFG_BAUDRATE_TABLE \
  87. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
  88. /*-----------------------------------------------------------------------
  89. * Environment
  90. *----------------------------------------------------------------------*/
  91. #undef CFG_ENV_IS_IN_NVRAM
  92. #undef CFG_ENV_IS_IN_FLASH
  93. #define CFG_ENV_IS_IN_EEPROM
  94. #undef CFG_ENV_IS_NOWHERE
  95. #ifdef CFG_ENV_IS_IN_EEPROM
  96. /* Put the environment after the SDRAM and bootstrap configuration */
  97. #define PROM_SIZE 2048
  98. #define CFG_BOOSTRAP_OPTION_OFFSET 512
  99. #define CFG_ENV_OFFSET (CFG_BOOSTRAP_OPTION_OFFSET + 0x10)
  100. #define CFG_ENV_SIZE (PROM_SIZE-CFG_ENV_OFFSET)
  101. #endif
  102. #ifdef CFG_ENV_IS_IN_FLASH
  103. /* Put the environment in Flash */
  104. #define CFG_ENV_SECT_SIZE 0x10000 /* size of one complete sector */
  105. #define CFG_ENV_ADDR ((-CFG_MONITOR_LEN)-CFG_ENV_SECT_SIZE)
  106. #define CFG_ENV_SIZE 0x10000 /* Total Size of Environment Sector */
  107. /* Address and size of Redundant Environment Sector */
  108. #define CFG_ENV_ADDR_REDUND (CFG_ENV_ADDR-CFG_ENV_SECT_SIZE)
  109. #define CFG_ENV_SIZE_REDUND (CFG_ENV_SIZE)
  110. #endif
  111. /*-----------------------------------------------------------------------
  112. * DDR SDRAM
  113. *----------------------------------------------------------------------*/
  114. #define CFG_MBYTES_SDRAM (128) /* 128 MB or 256 MB */
  115. #define CFG_DDR_CACHED_ADDR 0x40000000 /* setup 2nd TLB cached here */
  116. #undef CONFIG_DDR_DATA_EYE /* Do not use DDR2 optimization */
  117. #define CONFIG_DDR_ECC 1 /* enable ECC */
  118. /*-----------------------------------------------------------------------
  119. * I2C stuff for a ATMEL AT24C16 (2kB holding ENV, we are using the
  120. * the second internal I2C controller of the PPC440EPx
  121. *----------------------------------------------------------------------*/
  122. #define CFG_SPD_BUS_NUM 1
  123. #define CONFIG_HARD_I2C 1 /* I2C with hardware support */
  124. #undef CONFIG_SOFT_I2C /* I2C bit-banged */
  125. #define CFG_I2C_SPEED 400000 /* I2C speed and slave address */
  126. #define CFG_I2C_SLAVE 0x7F
  127. /* This is the 7bit address of the device, not including P. */
  128. #define CFG_I2C_EEPROM_ADDR 0x50
  129. #define CFG_I2C_EEPROM_ADDR_LEN 1
  130. /* The EEPROM can do 16byte ( 1 << 4 ) page writes. */
  131. #define CFG_I2C_EEPROM_ADDR_OVERFLOW 0x07
  132. #define CFG_EEPROM_PAGE_WRITE_BITS 4
  133. #define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
  134. #define CFG_EEPROM_PAGE_WRITE_ENABLE
  135. #undef CFG_I2C_MULTI_EEPROMS
  136. #define CONFIG_PREBOOT "echo;" \
  137. "echo Type \"run nfs\" to mount Linux root filesystem over NFS;"\
  138. "echo"
  139. #undef CONFIG_BOOTARGS
  140. /* Setup some board specific values for the default environment variables */
  141. #define CONFIG_HOSTNAME hcu5
  142. #define CONFIG_IPADDR 172.25.1.42
  143. #define CONFIG_ETHADDR 00:60:13:00:00:00 /* Netstal Machines AG MAC */
  144. #define CONFIG_OVERWRITE_ETHADDR_ONCE
  145. #define CONFIG_SERVERIP 172.25.1.3
  146. #define CFG_TFTP_LOADADDR 0x01000000 /* @16 MB */
  147. #define CONFIG_EXTRA_ENV_SETTINGS \
  148. "netdev=eth0\0" \
  149. "loadaddr=0x01000000\0" \
  150. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  151. "nfsroot=${serverip}:${rootpath}\0" \
  152. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  153. "addip=setenv bootargs ${bootargs} " \
  154. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  155. ":${hostname}:${netdev}:off panic=1\0" \
  156. "addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"\
  157. "nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;" \
  158. "bootm\0" \
  159. "bootfile=hcu5/uImage\0" \
  160. "rootpath=/home/hcu/eldk/ppc_4xxFP\0" \
  161. "load=tftp 100000 hcu5/u-boot.bin\0" \
  162. "update=protect off FFFa0000 FFFFFFFF;era FFFa0000 FFFFFFFF;" \
  163. "cp.b 100000 FFFa0000 60000\0" \
  164. "upd=run load;run update\0" \
  165. "vx=tftp ${loadaddr} hcu5/hcu5_vx_rom;" \
  166. "setenv bootargs emac(0,0)hcu5_vx_rom e=${ipaddr} " \
  167. " h=${serverip} u=dpu pw=netstal8752 tn=hcu5 f=0x3008;" \
  168. "bootvx ${loadaddr}\0" \
  169. ""
  170. #define CONFIG_BOOTCOMMAND "run vx"
  171. #if 0
  172. #define CONFIG_BOOTDELAY -1 /* autoboot disabled */
  173. #else
  174. #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
  175. #endif
  176. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  177. #define CFG_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
  178. #define CONFIG_M88E1111_PHY 1
  179. #define CONFIG_IBM_EMAC4_V4 1
  180. #define CONFIG_MII 1 /* MII PHY management */
  181. #define CONFIG_PHY_ADDR 0 /* PHY address, See schematics */
  182. #define CONFIG_PHY_RESET 1 /* reset phy upon startup */
  183. #define CONFIG_HAS_ETH0
  184. #define CFG_RX_ETH_BUFFER 32 /* Number of ethernet rx buffers & descriptors */
  185. #define CONFIG_NET_MULTI 1
  186. #define CONFIG_HAS_ETH1 1 /* add support for "eth1addr" */
  187. #define CONFIG_PHY1_ADDR 1
  188. /* USB */
  189. #define CONFIG_USB_OHCI
  190. #define CONFIG_USB_STORAGE
  191. /* Comment this out to enable USB 1.1 device */
  192. #define USB_2_0_DEVICE
  193. /* Partitions */
  194. #define CONFIG_MAC_PARTITION
  195. #define CONFIG_DOS_PARTITION
  196. #define CONFIG_ISO_PARTITION
  197. /*
  198. * BOOTP options
  199. */
  200. #define CONFIG_BOOTP_BOOTFILESIZE
  201. #define CONFIG_BOOTP_BOOTPATH
  202. #define CONFIG_BOOTP_GATEWAY
  203. #define CONFIG_BOOTP_HOSTNAME
  204. /*
  205. * Command line configuration.
  206. */
  207. #include <config_cmd_default.h>
  208. #define CONFIG_CMD_ASKENV
  209. #define CONFIG_CMD_BSP
  210. #define CONFIG_CMD_DHCP
  211. #define CONFIG_CMD_DIAG
  212. #define CONFIG_CMD_EEPROM
  213. #define CONFIG_CMD_ELF
  214. #define CONFIG_CMD_FLASH
  215. #define CONFIG_CMD_FAT
  216. #define CONFIG_CMD_I2C
  217. #define CONFIG_CMD_IMMAP
  218. #define CONFIG_CMD_IRQ
  219. #define CONFIG_CMD_MII
  220. #define CONFIG_CMD_NET
  221. #define CONFIG_CMD_NFS
  222. #define CONFIG_CMD_PING
  223. #define CONFIG_CMD_REGINFO
  224. #define CONFIG_CMD_SDRAM
  225. #define CONFIG_CMD_USB
  226. #define CONFIG_SUPPORT_VFAT
  227. /*-----------------------------------------------------------------------
  228. * Miscellaneous configurable options
  229. *----------------------------------------------------------------------*/
  230. #define CFG_LONGHELP /* undef to save memory */
  231. #define CFG_PROMPT "=> " /* Monitor Command Prompt */
  232. #if defined(CONFIG_CMD_KGDB)
  233. #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
  234. #else
  235. #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
  236. #endif
  237. #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
  238. #define CFG_MAXARGS 16 /* max number of command args */
  239. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  240. #define CFG_MEMTEST_START 0x0400000 /* memtest works on */
  241. #define CFG_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
  242. #define CFG_LOAD_ADDR 0x100000 /* default load address */
  243. #define CFG_EXTBDINFO 1 /* To use extended board_into (bd_t) */
  244. #define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */
  245. #define CONFIG_CMDLINE_EDITING 1 /* add command line history */
  246. #define CONFIG_LOOPW 1 /* enable loopw command */
  247. #define CONFIG_MX_CYCLIC 1 /* enable mdc/mwc commands */
  248. #define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
  249. #define CONFIG_VERSION_VARIABLE 1 /* include version env variable */
  250. /*-----------------------------------------------------------------------
  251. * PCI stuff
  252. *----------------------------------------------------------------------*/
  253. /* General PCI */
  254. #define CONFIG_PCI /* include pci support */
  255. #undef CONFIG_PCI_PNP /* do (not) pci plug-and-play */
  256. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  257. #define CFG_PCI_TARGBASE 0x80000000 /* PCIaddr mapped to CFG_PCI_MEMBASE*/
  258. /* Board-specific PCI */
  259. #define CFG_PCI_TARGET_INIT
  260. #define CFG_PCI_MASTER_INIT
  261. #define CFG_PCI_SUBSYS_VENDORID 0x10e8 /* AMCC */
  262. #define CFG_PCI_SUBSYS_ID 0xcafe /* Whatever */
  263. /*
  264. * For booting Linux, the board info and command line data
  265. * have to be in the first 8 MB of memory, since this is
  266. * the maximum mapped by the Linux kernel during initialization.
  267. */
  268. #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  269. /*-----------------------------------------------------------------------
  270. * External Bus Controller (EBC) Setup
  271. *----------------------------------------------------------------------*/
  272. #define CFG_FLASH CFG_FLASH_BASE
  273. #define CFG_CS_1 0xC8000000 /* CAN */
  274. #define CFG_CS_2 0xCC000000 /* CPLD and IMC-Bus Standard */
  275. #define CFG_CPLD CFG_CS_2
  276. #define CFG_CS_3 0xCD000000 /* CPLD and IMC-Bus Fast */
  277. /*-----------------------------------------------------------------------
  278. * FLASH organization
  279. * Memory Bank 0 (BOOT-FLASH) initialization
  280. */
  281. #define CFG_BOOTFLASH_CS 0 /* Boot Flash chip connected to CSx */
  282. #define CFG_EBC_PB0AP 0x02005400
  283. #define CFG_EBC_PB0CR 0xFFF18000 /* (CFG_FLASH | 0xda000) */
  284. #define FLASH_BASE0_PRELIM CFG_FLASH_BASE /* FLASH bank #0 */
  285. #define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */
  286. #define CFG_MAX_FLASH_SECT 32 /* max number of sectors on one chip */
  287. #define CFG_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
  288. #define CFG_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
  289. /* Memory Bank 1 CAN-Chips initialization */
  290. #define CFG_EBC_PB1AP 0x02054500
  291. #define CFG_EBC_PB1CR 0xC8018000
  292. /* Memory Bank 2 CPLD/IMC-Bus standard initialization */
  293. #define CFG_EBC_PB2AP 0x01840300
  294. #define CFG_EBC_PB2CR 0xCC0BA000
  295. /* Memory Bank 3 IMC-Bus fast mode initialization */
  296. #define CFG_EBC_PB3AP 0x01800300
  297. #define CFG_EBC_PB3CR 0xCE0BA000
  298. /* Memory Bank 4 (not used) initialization */
  299. #undef CFG_EBC_PB4AP
  300. #undef CFG_EBC_PB4CR
  301. /* Memory Bank 5 (not used) initialization */
  302. #undef CFG_EBC_PB5AP
  303. #undef CFG_EBC_PB5CR
  304. #define HCU_CPLD_VERSION_REGISTER ( CFG_CPLD + 0x0F00000 )
  305. #define HCU_HW_VERSION_REGISTER ( CFG_CPLD + 0x1400000 )
  306. /*
  307. * Internal Definitions
  308. *
  309. * Boot Flags
  310. */
  311. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  312. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  313. #define CFG_HUSH_PARSER /* use "hush" command parser */
  314. #ifdef CFG_HUSH_PARSER
  315. #define CFG_PROMPT_HUSH_PS2 "> "
  316. #endif
  317. #if defined(CONFIG_CMD_KGDB)
  318. #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
  319. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  320. #endif
  321. #endif /* __CONFIG_H */