MPC8349ADS.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /*
  2. * Copyright 2004 Freescale Semiconductor.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. /*
  23. * mpc8349ads board configuration file
  24. *
  25. * Please refer to doc/README.mpc83xxads for more info.
  26. */
  27. #ifndef __CONFIG_H
  28. #define __CONFIG_H
  29. #undef DEBUG
  30. #define CONFIG_MII
  31. /*
  32. * High Level Configuration Options
  33. */
  34. #define CONFIG_E300 1 /* E300 Family */
  35. #define CONFIG_MPC83XX 1 /* MPC83XX family */
  36. #define CONFIG_MPC8349 1 /* MPC8349 specific */
  37. #define CONFIG_MPC8349ADS 1 /* MPC8349ADS board specific */
  38. #define CONFIG_PCI
  39. #undef CONFIG_MPC83XX_PCI2 /* support for 2nd PCI controller */
  40. #define CONFIG_TSEC_ENET /* tsec ethernet support */
  41. #define CONFIG_ENV_OVERWRITE
  42. #define CONFIG_SPD_EEPROM /* Use SPD EEPROM for DDR setup*/
  43. #undef CONFIG_DDR_ECC /* only for ECC DDR module */
  44. #define PCI_66M
  45. #ifdef PCI_66M
  46. #define CONFIG_83XX_CLKIN 66000000 /* in Hz */
  47. #else
  48. #define CONFIG_83XX_CLKIN 33000000 /* in Hz */
  49. #endif
  50. #ifndef CONFIG_SYS_CLK_FREQ
  51. #ifdef PCI_66M
  52. #define CONFIG_SYS_CLK_FREQ 66000000
  53. #else
  54. #define CONFIG_SYS_CLK_FREQ 33000000
  55. #endif
  56. #endif
  57. #define CONFIG_BOARD_EARLY_INIT_F /* call board_pre_init */
  58. #define CFG_IMMRBAR 0xE0000000
  59. #undef CFG_DRAM_TEST /* memory test, takes time */
  60. #define CFG_MEMTEST_START 0x00000000 /* memtest region */
  61. #define CFG_MEMTEST_END 0x00100000
  62. /*
  63. * DDR Setup
  64. */
  65. #define CFG_DDR_BASE 0x00000000 /* DDR is system memory*/
  66. #define CFG_SDRAM_BASE CFG_DDR_BASE
  67. #undef CONFIG_DDR_2T_TIMING
  68. #define CFG_DDR_SDRAM_BASE CFG_DDR_BASE
  69. #if defined(CONFIG_SPD_EEPROM)
  70. /*
  71. * Determine DDR configuration from I2C interface.
  72. */
  73. #define SPD_EEPROM_ADDRESS 0x51 /* DDR DIMM */
  74. #else
  75. /*
  76. * Manually set up DDR parameters
  77. */
  78. #define CFG_DDR_SIZE 256 /* Mb */
  79. #define CFG_DDR_CONFIG (CSCONFIG_EN | CSCONFIG_ROW_BIT_13 | CSCONFIG_COL_BIT_9)
  80. #define CFG_DDR_TIMING_1 0x37344321
  81. #define CFG_DDR_TIMING_2 0x00000800 /* P9-45,may need tuning */
  82. #define CFG_DDR_CONTROL 0xc2000000 /* unbuffered,no DYN_PWR */
  83. #define CFG_DDR_MODE 0x00000062 /* DLL,normal,seq,4/2.5 */
  84. #define CFG_DDR_INTERVAL 0x05200100 /* autocharge,no open page */
  85. #endif
  86. /*
  87. * SDRAM on the Local Bus
  88. */
  89. #define CFG_LBC_SDRAM_BASE 0xf0000000 /* Localbus SDRAM */
  90. #define CFG_LBC_SDRAM_SIZE 64 /* LBC SDRAM is 64MB */
  91. /*
  92. * FLASH on the Local Bus
  93. */
  94. #define CFG_FLASH_CFI /* use the Common Flash Interface */
  95. #define CFG_FLASH_CFI_DRIVER /* use the CFI driver */
  96. #define CFG_FLASH_BASE 0xFE000000 /* start of FLASH */
  97. #define CFG_FLASH_SIZE 8 /* FLASH size in MB */
  98. /* #define CFG_FLASH_USE_BUFFER_WRITE */
  99. #define CFG_BR0_PRELIM (CFG_FLASH_BASE | /* Flash Base address */ \
  100. (2 << BR_PS_SHIFT) | /* 32 bit port size */ \
  101. BR_V) /* valid */
  102. #define CFG_OR0_PRELIM 0xff806ff7 /* 16Mb Flash size*/
  103. #define CFG_LBLAWBAR0_PRELIM CFG_FLASH_BASE /* Window base at flash base */
  104. #define CFG_LBLAWAR0_PRELIM 0x80000016 /* 16Mb window size */
  105. #define CFG_MAX_FLASH_BANKS 1 /* number of banks */
  106. #define CFG_MAX_FLASH_SECT 64 /* sectors per device */
  107. #undef CFG_FLASH_CHECKSUM
  108. #define CFG_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
  109. #define CFG_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
  110. #define CFG_MID_FLASH_JUMP 0x7F000000
  111. #define CFG_MONITOR_BASE TEXT_BASE /* start of monitor */
  112. #if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
  113. #define CFG_RAMBOOT
  114. #else
  115. #undef CFG_RAMBOOT
  116. #endif
  117. /*
  118. * BCSR register on local bus 32KB, 8-bit wide for ADS config reg
  119. */
  120. #define CFG_BCSR 0xF8000000
  121. #define CFG_LBLAWBAR1_PRELIM CFG_BCSR /* Access window base at BCSR base */
  122. #define CFG_LBLAWAR1_PRELIM 0x8000000E /* Access window size 32K */
  123. #define CFG_BR1_PRELIM (CFG_BCSR|0x00000801) /* Port-size=8bit, MSEL=GPCM */
  124. #define CFG_OR1_PRELIM 0xFFFFE8f0 /* length 32K */
  125. #define CONFIG_L1_INIT_RAM
  126. #define CFG_INIT_RAM_LOCK 1
  127. #define CFG_INIT_RAM_ADDR 0xe4010000 /* Initial RAM address */
  128. #define CFG_INIT_RAM_END 0x1000 /* End of used area in RAM*/
  129. #define CFG_GBL_DATA_SIZE 0x100 /* num bytes initial data */
  130. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
  131. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  132. #define CFG_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon */
  133. #define CFG_MALLOC_LEN (128 * 1024) /* Reserved for malloc */
  134. /*
  135. * Local Bus LCRR and LBCR regs
  136. * LCRR: DLL bypass, Clock divider is 4
  137. * External Local Bus rate is
  138. * CLKIN * HRCWL_CSB_TO_CLKIN / HRCWL_LCL_BUS_TO_SCB_CLK / LCRR_CLKDIV
  139. */
  140. #define CFG_LCRR (LCRR_DBYP | LCRR_CLKDIV_4)
  141. #define CFG_LBC_LBCR 0x00000000
  142. #define CFG_LB_SDRAM /* if board has SRDAM on local bus */
  143. #ifdef CFG_LB_SDRAM
  144. /*local bus BR2, OR2 definition for SDRAM if soldered on the ADS board*/
  145. /*
  146. * Base Register 2 and Option Register 2 configure SDRAM.
  147. * The SDRAM base address, CFG_LBC_SDRAM_BASE, is 0xf0000000.
  148. *
  149. * For BR2, need:
  150. * Base address of 0xf0000000 = BR[0:16] = 1111 0000 0000 0000 0
  151. * port-size = 32-bits = BR2[19:20] = 11
  152. * no parity checking = BR2[21:22] = 00
  153. * SDRAM for MSEL = BR2[24:26] = 011
  154. * Valid = BR[31] = 1
  155. *
  156. * 0 4 8 12 16 20 24 28
  157. * 1111 0000 0000 0000 0001 1000 0110 0001 = f0001861
  158. *
  159. * FIXME: CFG_LBC_SDRAM_BASE should be masked and OR'ed into
  160. * FIXME: the top 17 bits of BR2.
  161. */
  162. #define CFG_BR2_PRELIM 0xf0001861 /*Port-size=32bit, MSEL=SDRAM*/
  163. #define CFG_LBLAWBAR2_PRELIM 0xF0000000
  164. #define CFG_LBLAWAR2_PRELIM 0x80000019 /*64M*/
  165. /*
  166. * The SDRAM size in MB, CFG_LBC_SDRAM_SIZE, is 64.
  167. *
  168. * For OR2, need:
  169. * 64MB mask for AM, OR2[0:7] = 1111 1100
  170. * XAM, OR2[17:18] = 11
  171. * 9 columns OR2[19-21] = 010
  172. * 13 rows OR2[23-25] = 100
  173. * EAD set for extra time OR[31] = 1
  174. *
  175. * 0 4 8 12 16 20 24 28
  176. * 1111 1100 0000 0000 0110 1001 0000 0001 = fc006901
  177. */
  178. #define CFG_OR2_PRELIM 0xfc006901
  179. #define CFG_LBC_LSRT 0x32000000 /* LB sdram refresh timer, about 6us */
  180. #define CFG_LBC_MRTPR 0x20000000 /* LB refresh timer prescal, 266MHz/32*/
  181. /*
  182. * LSDMR masks
  183. */
  184. #define CFG_LBC_LSDMR_RFEN (1 << (31 - 1))
  185. #define CFG_LBC_LSDMR_BSMA1516 (3 << (31 - 10))
  186. #define CFG_LBC_LSDMR_BSMA1617 (4 << (31 - 10))
  187. #define CFG_LBC_LSDMR_RFCR5 (3 << (31 - 16))
  188. #define CFG_LBC_LSDMR_RFCR8 (5 << (31 - 16))
  189. #define CFG_LBC_LSDMR_RFCR16 (7 << (31 - 16))
  190. #define CFG_LBC_LSDMR_PRETOACT3 (3 << (31 - 19))
  191. #define CFG_LBC_LSDMR_PRETOACT6 (5 << (31 - 19))
  192. #define CFG_LBC_LSDMR_PRETOACT7 (7 << (31 - 19))
  193. #define CFG_LBC_LSDMR_ACTTORW3 (3 << (31 - 22))
  194. #define CFG_LBC_LSDMR_ACTTORW7 (7 << (31 - 22))
  195. #define CFG_LBC_LSDMR_ACTTORW6 (6 << (31 - 22))
  196. #define CFG_LBC_LSDMR_BL8 (1 << (31 - 23))
  197. #define CFG_LBC_LSDMR_WRC2 (2 << (31 - 27))
  198. #define CFG_LBC_LSDMR_WRC3 (3 << (31 - 27))
  199. #define CFG_LBC_LSDMR_WRC4 (0 << (31 - 27))
  200. #define CFG_LBC_LSDMR_BUFCMD (1 << (31 - 29))
  201. #define CFG_LBC_LSDMR_CL3 (3 << (31 - 31))
  202. #define CFG_LBC_LSDMR_OP_NORMAL (0 << (31 - 4))
  203. #define CFG_LBC_LSDMR_OP_ARFRSH (1 << (31 - 4))
  204. #define CFG_LBC_LSDMR_OP_SRFRSH (2 << (31 - 4))
  205. #define CFG_LBC_LSDMR_OP_MRW (3 << (31 - 4))
  206. #define CFG_LBC_LSDMR_OP_PRECH (4 << (31 - 4))
  207. #define CFG_LBC_LSDMR_OP_PCHALL (5 << (31 - 4))
  208. #define CFG_LBC_LSDMR_OP_ACTBNK (6 << (31 - 4))
  209. #define CFG_LBC_LSDMR_OP_RWINV (7 << (31 - 4))
  210. #define CFG_LBC_LSDMR_COMMON ( CFG_LBC_LSDMR_RFEN \
  211. | CFG_LBC_LSDMR_BSMA1516 \
  212. | CFG_LBC_LSDMR_RFCR8 \
  213. | CFG_LBC_LSDMR_PRETOACT6 \
  214. | CFG_LBC_LSDMR_ACTTORW3 \
  215. | CFG_LBC_LSDMR_BL8 \
  216. | CFG_LBC_LSDMR_WRC3 \
  217. | CFG_LBC_LSDMR_CL3 \
  218. )
  219. /*
  220. * SDRAM Controller configuration sequence.
  221. */
  222. #define CFG_LBC_LSDMR_1 ( CFG_LBC_LSDMR_COMMON \
  223. | CFG_LBC_LSDMR_OP_PCHALL)
  224. #define CFG_LBC_LSDMR_2 ( CFG_LBC_LSDMR_COMMON \
  225. | CFG_LBC_LSDMR_OP_ARFRSH)
  226. #define CFG_LBC_LSDMR_3 ( CFG_LBC_LSDMR_COMMON \
  227. | CFG_LBC_LSDMR_OP_ARFRSH)
  228. #define CFG_LBC_LSDMR_4 ( CFG_LBC_LSDMR_COMMON \
  229. | CFG_LBC_LSDMR_OP_MRW)
  230. #define CFG_LBC_LSDMR_5 ( CFG_LBC_LSDMR_COMMON \
  231. | CFG_LBC_LSDMR_OP_NORMAL)
  232. #endif
  233. /*
  234. * Serial Port
  235. */
  236. #define CONFIG_CONS_INDEX 1
  237. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  238. #define CFG_NS16550
  239. #define CFG_NS16550_SERIAL
  240. #define CFG_NS16550_REG_SIZE 1
  241. #define CFG_NS16550_CLK get_bus_freq(0)
  242. #define CFG_BAUDRATE_TABLE \
  243. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400,115200}
  244. #define CFG_NS16550_COM1 (CFG_IMMRBAR+0x4500)
  245. #define CFG_NS16550_COM2 (CFG_IMMRBAR+0x4600)
  246. /* Use the HUSH parser */
  247. #define CFG_HUSH_PARSER
  248. #ifdef CFG_HUSH_PARSER
  249. #define CFG_PROMPT_HUSH_PS2 "> "
  250. #endif
  251. /* I2C */
  252. #define CONFIG_HARD_I2C /* I2C with hardware support*/
  253. #undef CONFIG_SOFT_I2C /* I2C bit-banged */
  254. #define CFG_I2C_SPEED 400000 /* I2C speed and slave address */
  255. #define CFG_I2C_SLAVE 0x7F
  256. #define CFG_I2C_NOPROBES {0x69} /* Don't probe these addrs */
  257. #define CFG_I2C_OFFSET 0x3000
  258. #define CFG_I2C2_OFFSET 0x3100
  259. /* TSEC */
  260. #define CFG_TSEC1_OFFSET 0x24000
  261. #define CFG_TSEC1 (CFG_IMMRBAR+CFG_TSEC1_OFFSET)
  262. #define CFG_TSEC2_OFFSET 0x25000
  263. #define CFG_TSEC2 (CFG_IMMRBAR+CFG_TSEC2_OFFSET)
  264. /* IO Configuration */
  265. #define CFG_IO_CONF (\
  266. IO_CONF_UART |\
  267. IO_CONF_TSEC1 |\
  268. IO_CONF_IRQ0 |\
  269. IO_CONF_IRQ1 |\
  270. IO_CONF_IRQ2 |\
  271. IO_CONF_IRQ3 |\
  272. IO_CONF_IRQ4 |\
  273. IO_CONF_IRQ5 |\
  274. IO_CONF_IRQ6 |\
  275. IO_CONF_IRQ7 )
  276. /*
  277. * General PCI
  278. * Addresses are mapped 1-1.
  279. */
  280. #define CFG_PCI1_MEM_BASE 0x80000000
  281. #define CFG_PCI1_MEM_PHYS CFG_PCI1_MEM_BASE
  282. #define CFG_PCI1_MEM_SIZE 0x10000000 /* 256M */
  283. #define CFG_PCI1_MMIO_BASE 0x90000000
  284. #define CFG_PCI1_MMIO_PHYS CFG_PCI1_MMIO_BASE
  285. #define CFG_PCI1_MMIO_SIZE 0x10000000 /* 256M */
  286. #define CFG_PCI1_IO_BASE 0x00000000
  287. #define CFG_PCI1_IO_PHYS 0xe2000000
  288. #define CFG_PCI1_IO_SIZE 0x00100000 /* 1M */
  289. #define CFG_PCI2_MEM_BASE 0xa0000000
  290. #define CFG_PCI2_MEM_PHYS CFG_PCI2_MEM_BASE
  291. #define CFG_PCI2_MEM_SIZE 0x10000000 /* 256M */
  292. #define CFG_PCI2_MMIO_BASE 0xb0000000
  293. #define CFG_PCI2_MMIO_PHYS CFG_PCI2_MMIO_BASE
  294. #define CFG_PCI2_MMIO_SIZE 0x10000000 /* 256M */
  295. #define CFG_PCI2_IO_BASE 0x00000000
  296. #define CFG_PCI2_IO_PHYS 0xe2100000
  297. #define CFG_PCI2_IO_SIZE 0x00100000 /* 1M */
  298. #if defined(CONFIG_PCI)
  299. #define PCI_ALL_PCI1
  300. #if defined(PCI_64BIT)
  301. #undef PCI_ALL_PCI1
  302. #undef PCI_TWO_PCI1
  303. #undef PCI_ONE_PCI1
  304. #endif
  305. #define CONFIG_NET_MULTI
  306. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  307. #undef CONFIG_EEPRO100
  308. #undef CONFIG_TULIP
  309. #if !defined(CONFIG_PCI_PNP)
  310. #define PCI_ENET0_IOADDR 0xFIXME
  311. #define PCI_ENET0_MEMADDR 0xFIXME
  312. #define PCI_IDSEL_NUMBER 0x0c /* slot0->3(IDSEL)=12->15 */
  313. #endif
  314. #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  315. #define CFG_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */
  316. #endif /* CONFIG_PCI */
  317. #if defined(CONFIG_TSEC_ENET)
  318. #ifndef CONFIG_NET_MULTI
  319. #define CONFIG_NET_MULTI 1
  320. #endif
  321. #define CONFIG_GMII 1 /* MII PHY management */
  322. #define CONFIG_MPC83XX_TSEC1 1
  323. #define CONFIG_MPC83XX_TSEC1_NAME "TSEC0"
  324. #define CONFIG_MPC83XX_TSEC2 1
  325. #define CONFIG_MPC83XX_TSEC2_NAME "TSEC1"
  326. #define TSEC1_PHY_ADDR 0
  327. #define TSEC2_PHY_ADDR 1
  328. #define TSEC1_PHYIDX 0
  329. #define TSEC2_PHYIDX 0
  330. /* Options are: TSEC[0-1] */
  331. #define CONFIG_ETHPRIME "TSEC0"
  332. #endif /* CONFIG_TSEC_ENET */
  333. /*
  334. * Environment
  335. */
  336. #ifndef CFG_RAMBOOT
  337. #define CFG_ENV_IS_IN_FLASH 1
  338. #define CFG_ENV_ADDR (CFG_MONITOR_BASE + 0x40000)
  339. #define CFG_ENV_SECT_SIZE 0x40000 /* 256K(one sector) for env */
  340. #define CFG_ENV_SIZE 0x2000
  341. #else
  342. #define CFG_NO_FLASH 1 /* Flash is not usable now */
  343. #define CFG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
  344. #define CFG_ENV_ADDR (CFG_MONITOR_BASE - 0x1000)
  345. #define CFG_ENV_SIZE 0x2000
  346. #endif
  347. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  348. #define CFG_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
  349. #if defined(CFG_RAMBOOT)
  350. #if defined(CONFIG_PCI)
  351. #define CONFIG_COMMANDS ((CONFIG_CMD_DFL \
  352. | CFG_CMD_PING \
  353. | CFG_CMD_PCI \
  354. | CFG_CMD_I2C) \
  355. & \
  356. ~(CFG_CMD_ENV \
  357. | CFG_CMD_LOADS))
  358. #else
  359. #define CONFIG_COMMANDS ((CONFIG_CMD_DFL \
  360. | CFG_CMD_PING \
  361. | CFG_CMD_I2C) \
  362. & \
  363. ~(CFG_CMD_ENV \
  364. | CFG_CMD_LOADS))
  365. #endif
  366. #else
  367. #if defined(CONFIG_PCI)
  368. #define CONFIG_COMMANDS (CONFIG_CMD_DFL \
  369. | CFG_CMD_PCI \
  370. | CFG_CMD_PING \
  371. | CFG_CMD_I2C)
  372. #else
  373. #define CONFIG_COMMANDS (CONFIG_CMD_DFL \
  374. | CFG_CMD_PING \
  375. | CFG_CMD_I2C \
  376. | CFG_CMD_MII \
  377. )
  378. #endif
  379. #endif
  380. #include <cmd_confdefs.h>
  381. #undef CONFIG_WATCHDOG /* watchdog disabled */
  382. /*
  383. * Miscellaneous configurable options
  384. */
  385. #define CFG_LONGHELP /* undef to save memory */
  386. #define CFG_LOAD_ADDR 0x2000000 /* default load address */
  387. #define CFG_PROMPT "=> " /* Monitor Command Prompt */
  388. #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
  389. #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */
  390. #else
  391. #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
  392. #endif
  393. #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
  394. #define CFG_MAXARGS 16 /* max number of command args */
  395. #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
  396. #define CFG_HZ 1000 /* decrementer freq: 1ms ticks */
  397. /*
  398. * For booting Linux, the board info and command line data
  399. * have to be in the first 8 MB of memory, since this is
  400. * the maximum mapped by the Linux kernel during initialization.
  401. */
  402. #define CFG_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux*/
  403. /* Cache Configuration */
  404. #define CFG_DCACHE_SIZE 32768
  405. #define CFG_CACHELINE_SIZE 32
  406. #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
  407. #define CFG_CACHELINE_SHIFT 5 /*log base 2 of the above value*/
  408. #endif
  409. #define CFG_RCWH_PCIHOST 0x80000000 /* PCIHOST */
  410. #define CFG_HRCW_LOW (\
  411. HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\
  412. HRCWL_DDR_TO_SCB_CLK_1X1 |\
  413. HRCWL_CSB_TO_CLKIN_4X1 |\
  414. HRCWL_VCO_1X2 |\
  415. HRCWL_CORE_TO_CSB_2X1)
  416. #if defined(PCI_64BIT)
  417. #define CFG_HRCW_HIGH (\
  418. HRCWH_PCI_HOST |\
  419. HRCWH_64_BIT_PCI |\
  420. HRCWH_PCI1_ARBITER_ENABLE |\
  421. HRCWH_PCI2_ARBITER_DISABLE |\
  422. HRCWH_CORE_ENABLE |\
  423. HRCWH_FROM_0X00000100 |\
  424. HRCWH_BOOTSEQ_DISABLE |\
  425. HRCWH_SW_WATCHDOG_DISABLE |\
  426. HRCWH_ROM_LOC_LOCAL_16BIT |\
  427. HRCWH_TSEC1M_IN_GMII |\
  428. HRCWH_TSEC2M_IN_GMII )
  429. #else
  430. #define CFG_HRCW_HIGH (\
  431. HRCWH_PCI_HOST |\
  432. HRCWH_32_BIT_PCI |\
  433. HRCWH_PCI1_ARBITER_ENABLE |\
  434. HRCWH_PCI2_ARBITER_ENABLE |\
  435. HRCWH_CORE_ENABLE |\
  436. HRCWH_FROM_0X00000100 |\
  437. HRCWH_BOOTSEQ_DISABLE |\
  438. HRCWH_SW_WATCHDOG_DISABLE |\
  439. HRCWH_ROM_LOC_LOCAL_16BIT |\
  440. HRCWH_TSEC1M_IN_GMII |\
  441. HRCWH_TSEC2M_IN_GMII )
  442. #endif
  443. #define CFG_HID0_INIT 0x000000000
  444. #define CFG_HID0_FINAL CFG_HID0_INIT
  445. /* #define CFG_HID0_FINAL (\
  446. HID0_ENABLE_INSTRUCTION_CACHE |\
  447. HID0_ENABLE_M_BIT |\
  448. HID0_ENABLE_ADDRESS_BROADCAST ) */
  449. #define CFG_HID2 0x000000000
  450. /*
  451. * Internal Definitions
  452. *
  453. * Boot Flags
  454. */
  455. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  456. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  457. #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
  458. #define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
  459. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  460. #endif
  461. /*
  462. * Environment Configuration
  463. */
  464. #if defined(CONFIG_TSEC_ENET)
  465. #define CONFIG_ETHADDR 00:04:9f:11:22:33
  466. #define CONFIG_HAS_ETH1
  467. #define CONFIG_ETH1ADDR 00:E0:0C:00:7D:01
  468. #endif
  469. #define CONFIG_IPADDR 192.168.1.253
  470. #define CONFIG_HOSTNAME unknown
  471. #define CONFIG_ROOTPATH /nfsroot
  472. #define CONFIG_BOOTFILE your.uImage
  473. #define CONFIG_SERVERIP 192.168.1.1
  474. #define CONFIG_GATEWAYIP 192.168.1.1
  475. #define CONFIG_NETMASK 255.255.255.0
  476. #define CONFIG_LOADADDR 200000 /* default location for tftp and bootm */
  477. #define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */
  478. #undef CONFIG_BOOTARGS /* the boot command will set bootargs */
  479. #define CONFIG_BAUDRATE 115200
  480. #define CONFIG_EXTRA_ENV_SETTINGS \
  481. "netdev=eth0\0" \
  482. "consoledev=ttyS0\0" \
  483. "ramdiskaddr=400000\0" \
  484. "ramdiskfile=ramfs.83xx\0"
  485. #define CONFIG_NFSBOOTCOMMAND \
  486. "setenv bootargs root=/dev/nfs rw " \
  487. "nfsroot=$serverip:$rootpath " \
  488. "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
  489. "console=$consoledev,$baudrate $othbootargs;" \
  490. "tftp $loadaddr $bootfile;" \
  491. "bootm $loadaddr"
  492. #define CONFIG_RAMBOOTCOMMAND \
  493. "setenv bootargs root=/dev/ram rw " \
  494. "console=$consoledev,$baudrate $othbootargs;" \
  495. "tftp $ramdiskaddr $ramdiskfile;" \
  496. "tftp $loadaddr $bootfile;" \
  497. "bootm $loadaddr $ramdiskaddr"
  498. #define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
  499. #endif /* __CONFIG_H */