TQM85xx.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. /*
  2. * (C) Copyright 2007
  3. * Thomas Waehner, TQ-System GmbH, thomas.waehner@tqs.de.
  4. *
  5. * (C) Copyright 2005
  6. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  7. *
  8. * Wolfgang Denk <wd@denx.de>
  9. * Copyright 2004 Freescale Semiconductor.
  10. * (C) Copyright 2002,2003 Motorola,Inc.
  11. * Xianghua Xiao <X.Xiao@motorola.com>
  12. *
  13. * See file CREDITS for list of people who contributed to this
  14. * project.
  15. *
  16. * This program is free software; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License as
  18. * published by the Free Software Foundation; either version 2 of
  19. * the License, or (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29. * MA 02111-1307 USA
  30. */
  31. /*
  32. * TQM85xx (8560/40/55/41/48) board configuration file
  33. */
  34. #ifndef __CONFIG_H
  35. #define __CONFIG_H
  36. /* High Level Configuration Options */
  37. #define CONFIG_BOOKE 1 /* BOOKE */
  38. #define CONFIG_E500 1 /* BOOKE e500 family */
  39. #define CONFIG_MPC85xx 1 /* MPC8540/60/55/41 */
  40. #define CONFIG_PCI
  41. #define CONFIG_TSEC_ENET /* tsec ethernet support */
  42. #define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */
  43. /*
  44. * MPC8540 and MPC8548 don't have CPM module
  45. */
  46. #if !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8548)
  47. #define CONFIG_CPM2 1 /* has CPM2 */
  48. #endif
  49. #define CONFIG_FSL_LAW 1 /* Use common FSL init code */
  50. #undef CONFIG_CAN_DRIVER /* CAN Driver support */
  51. /*
  52. * sysclk for MPC85xx
  53. *
  54. * Two valid values are:
  55. * 33333333
  56. * 66666666
  57. *
  58. * Most PCI cards are still 33Mhz, so in the presence of PCI, 33MHz
  59. * is likely the desired value here, so that is now the default.
  60. * The board, however, can run at 66MHz. In any event, this value
  61. * must match the settings of some switches. Details can be found
  62. * in the README.mpc85xxads.
  63. */
  64. #ifndef CONFIG_SYS_CLK_FREQ
  65. #define CONFIG_SYS_CLK_FREQ 33333333
  66. #endif
  67. /*
  68. * These can be toggled for performance analysis, otherwise use default.
  69. */
  70. #define CONFIG_L2_CACHE /* toggle L2 cache */
  71. #define CONFIG_BTB /* toggle branch predition */
  72. #define CONFIG_ADDR_STREAMING /* toggle addr streaming */
  73. #define CFG_INIT_DBCR DBCR_IDM /* Enable Debug Exceptions */
  74. #undef CFG_DRAM_TEST /* memory test, takes time */
  75. #define CFG_MEMTEST_START 0x00000000
  76. #define CFG_MEMTEST_END 0x10000000
  77. /*
  78. * Base addresses -- Note these are effective addresses where the
  79. * actual resources get mapped (not physical addresses)
  80. */
  81. #define CFG_CCSRBAR_DEFAULT 0xFF700000 /* CCSRBAR Default */
  82. #define CFG_CCSRBAR 0xE0000000 /* relocated CCSRBAR */
  83. #define CFG_CCSRBAR_PHYS CFG_CCSRBAR /* physical addr of CCSRBAR */
  84. #define CFG_IMMR CFG_CCSRBAR /* PQII uses CFG_IMMR */
  85. /*
  86. * DDR Setup
  87. */
  88. #define CFG_DDR_SDRAM_BASE 0x00000000 /* DDR is system memory */
  89. #define CFG_SDRAM_BASE CFG_DDR_SDRAM_BASE
  90. #if defined(CONFIG_TQM8540) || defined(CONFIG_TQM8560)
  91. /* TQM8540 & 8560 need DLL-override */
  92. #define CONFIG_DDR_DLL /* DLL fix needed */
  93. #define CONFIG_DDR_DEFAULT_CL 25 /* CAS latency 2,5 */
  94. #endif /* CONFIG_TQM8540 || CONFIG_TQM8560 */
  95. #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555) || \
  96. defined(CONFIG_TQM8548)
  97. #define CONFIG_DDR_DEFAULT_CL 30 /* CAS latency 3 */
  98. #endif /* CONFIG_TQM8541 || CONFIG_TQM8555 || CONFIG_TQM8548 */
  99. /*
  100. * Old TQM85xx boards have 'M' type Spansion Flashes from the S29GLxxxM
  101. * series while new boards have 'N' type Flashes from the S29GLxxxN
  102. * series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
  103. */
  104. #ifdef CONFIG_TQM8548
  105. #define CONFIG_TQM_FLASH_N_TYPE
  106. #endif /* CONFIG_TQM8548 */
  107. /*
  108. * Flash on the Local Bus
  109. */
  110. #define CFG_FLASH0 0xFC000000
  111. #define CFG_FLASH1 0xF8000000
  112. #define CFG_FLASH_BANKS_LIST { CFG_FLASH1, CFG_FLASH0 }
  113. #define CFG_LBC_FLASH_BASE CFG_FLASH1 /* Localbus flash start */
  114. #define CFG_FLASH_BASE CFG_LBC_FLASH_BASE /* start of FLASH */
  115. /* Default ORx timings are for <= 41.7 MHz Local Bus Clock.
  116. *
  117. * Note: According to timing specifications external addr latch delay
  118. * (EAD, bit #0) must be set if Local Bus Clock is > 83 MHz.
  119. *
  120. * For other Local Bus Clocks see following table:
  121. *
  122. * Clock/MHz CFG_ORx_PRELIM
  123. * 166 0x.....CA5
  124. * 133 0x.....C85
  125. * 100 0x.....C65
  126. * 83 0x.....FA2
  127. * 66 0x.....C82
  128. * 50 0x.....C60
  129. * 42 0x.....040
  130. * 33 0x.....030
  131. * 25 0x.....020
  132. *
  133. */
  134. #define CFG_BR0_PRELIM 0xfc001801 /* port size 32bit */
  135. #define CFG_OR0_PRELIM 0xfc000040 /* 64MB Flash */
  136. #define CFG_BR1_PRELIM 0xf8001801 /* port size 32bit */
  137. #define CFG_OR1_PRELIM 0xfc000040 /* 64MB Flash */
  138. #define CFG_FLASH_CFI /* flash is CFI compat. */
  139. #define CFG_FLASH_CFI_DRIVER /* Use common CFI driver */
  140. #define CFG_FLASH_EMPTY_INFO /* print 'E' for empty sector */
  141. #define CFG_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash*/
  142. #define CFG_FLASH_USE_BUFFER_WRITE 1 /* speed up output to Flash */
  143. #define CFG_MAX_FLASH_BANKS 2 /* number of banks */
  144. #define CFG_MAX_FLASH_SECT 512 /* sectors per device */
  145. #undef CFG_FLASH_CHECKSUM
  146. #define CFG_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
  147. #define CFG_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
  148. #define CFG_MONITOR_BASE TEXT_BASE /* start of monitor */
  149. /*
  150. * Note: when changing the Local Bus clock divider you have to
  151. * change the timing values in CFG_ORx_PRELIM.
  152. *
  153. * LCRR[00:03] CLKDIV: System (CCB) clock divider. Valid values are 2, 4, 8.
  154. * LCRR[16:17] EADC : External address delay cycles. It should be set to 2
  155. * for Local Bus Clock > 83.3 MHz.
  156. */
  157. #define CFG_LBC_LCRR 0x00030008 /* LB clock ratio reg */
  158. #define CFG_LBC_LBCR 0x00000000 /* LB config reg */
  159. #define CFG_LBC_LSRT 0x20000000 /* LB sdram refresh timer */
  160. #define CFG_LBC_MRTPR 0x20000000 /* LB refresh timer presc.*/
  161. #define CONFIG_L1_INIT_RAM
  162. #define CFG_INIT_RAM_LOCK 1
  163. #define CFG_INIT_RAM_ADDR 0xe4010000 /* Initial RAM address */
  164. #define CFG_INIT_RAM_END 0x4000 /* End used area in RAM */
  165. #define CFG_GBL_DATA_SIZE 128 /* num bytes initial data */
  166. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
  167. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  168. #define CFG_MONITOR_LEN (256 * 1024) /* Reserve 256kB for Mon */
  169. #define CFG_MALLOC_LEN (256 * 1024) /* Reserved for malloc */
  170. /* Serial Port */
  171. #if defined(CONFIG_TQM8560)
  172. #define CONFIG_CONS_ON_SCC /* define if console on SCC */
  173. #undef CONFIG_CONS_NONE /* define if console on something else */
  174. #define CONFIG_CONS_INDEX 1 /* which serial channel for console */
  175. #else /* !CONFIG_TQM8560 */
  176. #define CONFIG_CONS_INDEX 1
  177. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  178. #define CFG_NS16550
  179. #define CFG_NS16550_SERIAL
  180. #define CFG_NS16550_REG_SIZE 1
  181. #define CFG_NS16550_CLK get_bus_freq(0)
  182. #define CFG_NS16550_COM1 (CFG_CCSRBAR+0x4500)
  183. #define CFG_NS16550_COM2 (CFG_CCSRBAR+0x4600)
  184. /* PS/2 Keyboard */
  185. #define CONFIG_PS2KBD /* AT-PS/2 Keyboard */
  186. #define CONFIG_PS2MULT /* .. on PS/2 Multiplexer */
  187. #define CONFIG_PS2SERIAL 2 /* .. on DUART2 */
  188. #define CONFIG_PS2MULT_DELAY (CFG_HZ/2) /* Initial delay */
  189. #define CONFIG_BOARD_EARLY_INIT_R 1
  190. #endif /* CONFIG_TQM8560 */
  191. #define CONFIG_BAUDRATE 115200
  192. #define CFG_BAUDRATE_TABLE \
  193. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
  194. #define CONFIG_CMDLINE_EDITING 1 /* add command line history */
  195. #define CFG_HUSH_PARSER 1 /* Use the HUSH parser */
  196. #ifdef CFG_HUSH_PARSER
  197. #define CFG_PROMPT_HUSH_PS2 "> "
  198. #endif
  199. /* pass open firmware flat tree */
  200. #define CONFIG_OF_LIBFDT 1
  201. #define CONFIG_OF_BOARD_SETUP 1
  202. #define CONFIG_OF_STDOUT_VIA_ALIAS 1
  203. /* CAN */
  204. #ifdef CONFIG_CAN_DRIVER
  205. #define CFG_CAN_BASE 0xE3000000 /* CAN base address */
  206. #define CFG_CAN_OR_AM 0xFFFF8000 /* 32 KiB address mask */
  207. #define CFG_OR2_CAN (CFG_CAN_OR_AM | OR_UPM_BI)
  208. #define CFG_BR2_CAN ((CFG_CAN_BASE & BR_BA) | \
  209. BR_PS_8 | BR_MS_UPMC | BR_V)
  210. #endif /* CONFIG_CAN_DRIVER */
  211. /*
  212. * I2C
  213. */
  214. #define CONFIG_FSL_I2C /* Use FSL common I2C driver */
  215. #define CONFIG_HARD_I2C /* I2C with hardware support */
  216. #undef CONFIG_SOFT_I2C /* I2C bit-banged */
  217. #define CFG_I2C_SPEED 400000 /* I2C speed and slave address */
  218. #define CFG_I2C_SLAVE 0x7F
  219. #define CFG_I2C_NOPROBES {0x48} /* Don't probe these addrs */
  220. #define CFG_I2C_OFFSET 0x3000
  221. /* I2C RTC */
  222. #define CONFIG_RTC_DS1337 /* Use ds1337 rtc via i2c */
  223. #define CFG_I2C_RTC_ADDR 0x68 /* at address 0x68 */
  224. /* I2C EEPROM */
  225. /*
  226. * EEPROM configuration for onboard EEPROM M24C32 (M24C64 should work also).
  227. */
  228. #define CFG_I2C_EEPROM_ADDR 0x50 /* 1010000x */
  229. #define CFG_I2C_EEPROM_ADDR_LEN 2
  230. #define CFG_EEPROM_PAGE_WRITE_BITS 5 /* =32 Bytes per write */
  231. #define CFG_EEPROM_PAGE_WRITE_ENABLE
  232. #define CFG_EEPROM_PAGE_WRITE_DELAY_MS 20
  233. #define CFG_I2C_MULTI_EEPROMS 1 /* more than one eeprom */
  234. /* I2C SYSMON (LM75) */
  235. #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */
  236. #define CONFIG_DTT_SENSORS {0} /* Sensor addresses */
  237. #define CFG_DTT_MAX_TEMP 70
  238. #define CFG_DTT_LOW_TEMP -30
  239. #define CFG_DTT_HYSTERESIS 3
  240. /* RapidIO MMU */
  241. #define CFG_RIO_MEM_BASE 0xc0000000 /* base address */
  242. #define CFG_RIO_MEM_PHYS CFG_RIO_MEM_BASE
  243. #define CFG_RIO_MEM_SIZE 0x20000000 /* 128M */
  244. /*
  245. * General PCI
  246. * Addresses are mapped 1-1.
  247. */
  248. #define CFG_PCI1_MEM_BASE 0x80000000
  249. #define CFG_PCI1_MEM_PHYS CFG_PCI1_MEM_BASE
  250. #define CFG_PCI1_MEM_SIZE 0x20000000 /* 512M */
  251. #define CFG_PCI1_IO_BASE 0xe2000000
  252. #define CFG_PCI1_IO_PHYS CFG_PCI1_IO_BASE
  253. #define CFG_PCI1_IO_SIZE 0x1000000 /* 16M */
  254. #if defined(CONFIG_PCI)
  255. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  256. #define CONFIG_EEPRO100
  257. #undef CONFIG_TULIP
  258. #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  259. #define CFG_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */
  260. #endif /* CONFIG_PCI */
  261. #define CONFIG_NET_MULTI 1
  262. #define CONFIG_MII 1 /* MII PHY management */
  263. #define CONFIG_TSEC1 1
  264. #define CONFIG_TSEC1_NAME "TSEC0"
  265. #define CONFIG_TSEC2 1
  266. #define CONFIG_TSEC2_NAME "TSEC1"
  267. #define TSEC1_PHY_ADDR 2
  268. #define TSEC2_PHY_ADDR 1
  269. #define TSEC1_PHYIDX 0
  270. #define TSEC2_PHYIDX 0
  271. #define TSEC1_FLAGS TSEC_GIGABIT
  272. #define TSEC2_FLAGS TSEC_GIGABIT
  273. #define FEC_PHY_ADDR 3
  274. #define FEC_PHYIDX 0
  275. #define FEC_FLAGS 0
  276. #define CONFIG_HAS_ETH0
  277. #define CONFIG_HAS_ETH1
  278. #define CONFIG_HAS_ETH2
  279. #ifdef CONFIG_TQM8548
  280. /*
  281. * TQM8548 has 4 ethernet ports. 4 ETSEC's.
  282. *
  283. * On the STK85xx Starterkit the ETSEC3/4 ports are on an
  284. * additional adapter (AIO) between module and Starterkit.
  285. */
  286. #define CONFIG_TSEC3 1
  287. #define CONFIG_TSEC3_NAME "TSEC2"
  288. #define CONFIG_TSEC4 1
  289. #define CONFIG_TSEC4_NAME "TSEC3"
  290. #define TSEC3_PHY_ADDR 4
  291. #define TSEC4_PHY_ADDR 5
  292. #define TSEC3_PHYIDX 0
  293. #define TSEC4_PHYIDX 0
  294. #define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  295. #define TSEC4_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  296. #define CONFIG_HAS_ETH3
  297. #define CONFIG_HAS_ETH4
  298. #endif /* CONFIG_TQM8548 */
  299. /* Options are TSEC[0-1], FEC */
  300. #define CONFIG_ETHPRIME "TSEC0"
  301. #if defined(CONFIG_TQM8540)
  302. /*
  303. * TQM8540 has 3 ethernet ports. 2 TSEC's and one FEC.
  304. * The FEC port is connected on the same signals as the FCC3 port
  305. * of the TQM8560 to the baseboard (STK85xx Starterkit).
  306. *
  307. * On the STK85xx Starterkit the X47/X50 jumper has to be set to
  308. * a - d (X50.2 - 3) to enable the FEC port.
  309. */
  310. #define CONFIG_MPC85XX_FEC 1
  311. #define CONFIG_MPC85XX_FEC_NAME "FEC"
  312. #endif
  313. #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555)
  314. /*
  315. * TQM8541/55 have 4 ethernet ports. 2 TSEC's and 2 FCC's. Only one FCC port
  316. * can be used at once, since only one FCC port is available on the STK85xx
  317. * Starterkit.
  318. *
  319. * To use this port you have to configure U-Boot to use the FCC port 1...2
  320. * and set the X47/X50 jumper to:
  321. * FCC1: a - b (X47.2 - X50.2)
  322. * FCC2: a - c (X50.2 - 1)
  323. */
  324. #define CONFIG_ETHER_ON_FCC
  325. #define CONFIG_ETHER_INDEX 1 /* FCC channel for ethernet */
  326. #endif
  327. #if defined(CONFIG_TQM8560)
  328. /*
  329. * TQM8560 has 5 ethernet ports. 2 TSEC's and 3 FCC's. Only one FCC port
  330. * can be used at once, since only one FCC port is available on the STK85xx
  331. * Starterkit.
  332. *
  333. * To use this port you have to configure U-Boot to use the FCC port 1...3
  334. * and set the X47/X50 jumper to:
  335. * FCC1: a - b (X47.2 - X50.2)
  336. * FCC2: a - c (X50.2 - 1)
  337. * FCC3: a - d (X50.2 - 3)
  338. */
  339. #define CONFIG_ETHER_ON_FCC
  340. #define CONFIG_ETHER_INDEX 3 /* FCC channel for ethernet */
  341. #endif
  342. #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 1)
  343. #define CONFIG_ETHER_ON_FCC1
  344. #define CFG_CMXFCR_MASK1 (CMXFCR_FC1 | CMXFCR_RF1CS_MSK | \
  345. CMXFCR_TF1CS_MSK)
  346. #define CFG_CMXFCR_VALUE1 (CMXFCR_RF1CS_CLK11 | CMXFCR_TF1CS_CLK12)
  347. #define CFG_CPMFCR_RAMTYPE 0
  348. #define CFG_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
  349. #endif
  350. #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 2)
  351. #define CONFIG_ETHER_ON_FCC2
  352. #define CFG_CMXFCR_MASK2 (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | \
  353. CMXFCR_TF2CS_MSK)
  354. #define CFG_CMXFCR_VALUE2 (CMXFCR_RF2CS_CLK16 | CMXFCR_TF2CS_CLK13)
  355. #define CFG_CPMFCR_RAMTYPE 0
  356. #define CFG_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
  357. #endif
  358. #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 3)
  359. #define CONFIG_ETHER_ON_FCC3
  360. #define CFG_CMXFCR_MASK3 (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | \
  361. CMXFCR_TF3CS_MSK)
  362. #define CFG_CMXFCR_VALUE3 (CMXFCR_RF3CS_CLK15 | CMXFCR_TF3CS_CLK14)
  363. #define CFG_CPMFCR_RAMTYPE 0
  364. #define CFG_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
  365. #endif
  366. /*
  367. * Environment
  368. */
  369. #define CFG_ENV_IS_IN_FLASH 1
  370. #ifdef CONFIG_TQM_FLASH_N_TYPE
  371. #define CFG_ENV_SECT_SIZE 0x40000 /* 256K (one sector) for env */
  372. #else /* !CONFIG_TQM_FLASH_N_TYPE */
  373. #define CFG_ENV_SECT_SIZE 0x20000 /* 128K (one sector) for env */
  374. #endif /* CONFIG_TQM_FLASH_N_TYPE */
  375. #define CFG_ENV_ADDR (CFG_MONITOR_BASE - CFG_ENV_SECT_SIZE)
  376. #define CFG_ENV_SIZE 0x2000
  377. #define CFG_ENV_ADDR_REDUND (CFG_ENV_ADDR - CFG_ENV_SECT_SIZE)
  378. #define CFG_ENV_SIZE_REDUND (CFG_ENV_SIZE)
  379. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  380. #define CFG_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
  381. #define CONFIG_TIMESTAMP /* Print image info with ts */
  382. /*
  383. * BOOTP options
  384. */
  385. #define CONFIG_BOOTP_BOOTFILESIZE
  386. #define CONFIG_BOOTP_BOOTPATH
  387. #define CONFIG_BOOTP_GATEWAY
  388. #define CONFIG_BOOTP_HOSTNAME
  389. /*
  390. * Command line configuration.
  391. */
  392. #include <config_cmd_default.h>
  393. #define CONFIG_CMD_PING
  394. #define CONFIG_CMD_I2C
  395. #define CONFIG_CMD_DHCP
  396. #define CONFIG_CMD_NFS
  397. #define CONFIG_CMD_SNTP
  398. #define CONFIG_CMD_DATE
  399. #define CONFIG_CMD_EEPROM
  400. #define CONFIG_CMD_DTT
  401. #define CONFIG_CMD_MII
  402. #if defined(CONFIG_PCI)
  403. #define CONFIG_CMD_PCI
  404. #endif
  405. #undef CONFIG_WATCHDOG /* watchdog disabled */
  406. /*
  407. * Miscellaneous configurable options
  408. */
  409. #define CFG_LONGHELP /* undef to save memory */
  410. #define CFG_LOAD_ADDR 0x2000000 /* default load address */
  411. #define CFG_PROMPT "=> " /* Monitor Command Prompt */
  412. #if defined(CONFIG_CMD_KGDB)
  413. #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
  414. #else
  415. #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
  416. #endif
  417. #define CFG_PBSIZE (CFG_CBSIZE + \
  418. sizeof(CFG_PROMPT) + 16) /* Print Buf Size */
  419. #define CFG_MAXARGS 16 /* max number of command args */
  420. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  421. #define CFG_HZ 1000 /* decrementer freq: 1ms ticks */
  422. /*
  423. * For booting Linux, the board info and command line data
  424. * have to be in the first 8 MB of memory, since this is
  425. * the maximum mapped by the Linux kernel during initialization.
  426. */
  427. #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  428. /*
  429. * Internal Definitions
  430. *
  431. * Boot Flags
  432. */
  433. #define BOOTFLAG_COLD 0x01 /* Power-On: Boot from FLASH */
  434. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  435. #if defined(CONFIG_CMD_KGDB)
  436. #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/
  437. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  438. #endif
  439. #define CONFIG_LOADADDR 200000 /* default addr for tftp & bootm*/
  440. #define CONFIG_BOOTDELAY 5 /* -1 disables auto-boot */
  441. #define CONFIG_PREBOOT "echo;" \
  442. "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
  443. "echo"
  444. #undef CONFIG_BOOTARGS /* the boot command will set bootargs */
  445. /*
  446. * Setup some board specific values for the default environment variables
  447. */
  448. #ifdef CONFIG_CPM2
  449. #define CFG_ENV_CONSDEV "consdev=ttyCPM0\0"
  450. #else
  451. #define CFG_ENV_CONSDEV "consdev=ttyS0\0"
  452. #endif
  453. #define CFG_ENV_FDT_FILE "fdt_file="MK_STR(CONFIG_HOSTNAME)"/" \
  454. MK_STR(CONFIG_HOSTNAME)".dtb\0"
  455. #define CFG_ENV_BOOTFILE "bootfile="MK_STR(CONFIG_HOSTNAME)"/uImage\0"
  456. #define CFG_ENV_UBOOT "uboot="MK_STR(CONFIG_HOSTNAME)"/u-boot.bin\0" \
  457. "uboot_addr="MK_STR(TEXT_BASE)"\0"
  458. #define CONFIG_EXTRA_ENV_SETTINGS \
  459. CFG_ENV_BOOTFILE \
  460. CFG_ENV_FDT_FILE \
  461. CFG_ENV_CONSDEV \
  462. "netdev=eth0\0" \
  463. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  464. "nfsroot=$serverip:$rootpath\0" \
  465. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  466. "addip=setenv bootargs $bootargs " \
  467. "ip=$ipaddr:$serverip:$gatewayip:$netmask" \
  468. ":$hostname:$netdev:off panic=1\0" \
  469. "addcons=setenv bootargs $bootargs " \
  470. "console=$consdev,$baudrate\0" \
  471. "flash_nfs=run nfsargs addip addcons;" \
  472. "bootm $kernel_addr - $fdt_addr\0" \
  473. "flash_self=run ramargs addip addcons;" \
  474. "bootm $kernel_addr $ramdisk_addr $fdt_addr\0" \
  475. "net_nfs=tftp $kernel_addr_r $bootfile;" \
  476. "tftp $fdt_addr_r $fdt_file;" \
  477. "run nfsargs addip addcons;" \
  478. "bootm $kernel_addr_r - $fdt_addr_r\0" \
  479. "rootpath=/opt/eldk/ppc_85xx\0" \
  480. "fdt_addr_r=900000\0" \
  481. "kernel_addr_r=1000000\0" \
  482. "fdt_addr=ffec0000\0" \
  483. "kernel_addr=ffd00000\0" \
  484. "ramdisk_addr=ff800000\0" \
  485. CFG_ENV_UBOOT \
  486. "load=tftp 100000 $uboot\0" \
  487. "update=protect off $uboot_addr +$filesize;" \
  488. "erase $uboot_addr +$filesize;" \
  489. "cp.b 100000 $uboot_addr $filesize;" \
  490. "setenv filesize;saveenv\0" \
  491. "upd=run load update\0" \
  492. ""
  493. #define CONFIG_BOOTCOMMAND "run flash_self"
  494. #endif /* __CONFIG_H */