kmeter1.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. /*
  2. * Copyright (C) 2006 Freescale Semiconductor, Inc.
  3. * Dave Liu <daveliu@freescale.com>
  4. *
  5. * Copyright (C) 2007 Logic Product Development, Inc.
  6. * Peter Barada <peterb@logicpd.com>
  7. *
  8. * Copyright (C) 2007 MontaVista Software, Inc.
  9. * Anton Vorontsov <avorontsov@ru.mvista.com>
  10. *
  11. * (C) Copyright 2008
  12. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. */
  19. #ifndef __CONFIG_H
  20. #define __CONFIG_H
  21. /*
  22. * High Level Configuration Options
  23. */
  24. #define CONFIG_E300 1 /* E300 family */
  25. #define CONFIG_QE 1 /* Has QE */
  26. #define CONFIG_MPC83XX 1 /* MPC83XX family */
  27. #define CONFIG_MPC8360 1 /* MPC8360 CPU specific */
  28. #define CONFIG_KMETER1 1 /* KMETER1 board specific */
  29. /*
  30. * System Clock Setup
  31. */
  32. #define CONFIG_83XX_CLKIN 66000000
  33. #define CONFIG_SYS_CLK_FREQ 66000000
  34. #define CONFIG_83XX_PCICLK 66000000
  35. /*
  36. * Hardware Reset Configuration Word
  37. */
  38. #define CONFIG_SYS_HRCW_LOW (\
  39. HRCWL_CSB_TO_CLKIN_4X1 | \
  40. HRCWL_CORE_TO_CSB_2X1 | \
  41. HRCWL_CE_PLL_VCO_DIV_2 | \
  42. HRCWL_CE_TO_PLL_1X6 )
  43. #define CONFIG_SYS_HRCW_HIGH (\
  44. HRCWH_CORE_ENABLE | \
  45. HRCWH_FROM_0X00000100 | \
  46. HRCWH_BOOTSEQ_NORMAL | \
  47. HRCWH_SW_WATCHDOG_DISABLE | \
  48. HRCWH_ROM_LOC_LOCAL_16BIT | \
  49. HRCWH_BIG_ENDIAN | \
  50. HRCWH_LDP_CLEAR )
  51. /*
  52. * System IO Config
  53. */
  54. #define CONFIG_SYS_SICRH 0x00000006
  55. #define CONFIG_SYS_SICRL 0x00000000
  56. #define CONFIG_BOARD_EARLY_INIT_R
  57. /*
  58. * IMMR new address
  59. */
  60. #define CONFIG_SYS_IMMR 0xE0000000
  61. /*
  62. * DDR Setup
  63. */
  64. #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
  65. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
  66. #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
  67. #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN | \
  68. DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  69. #define CFG_83XX_DDR_USES_CS0
  70. #undef CONFIG_DDR_ECC
  71. /*
  72. * DDRCDR - DDR Control Driver Register
  73. */
  74. #undef CONFIG_SPD_EEPROM /* Do not use SPD EEPROM for DDR setup */
  75. /*
  76. * Manually set up DDR parameters
  77. */
  78. #define CONFIG_DDR_II
  79. #define CONFIG_SYS_DDR_SIZE 256 /* MB */
  80. #define CONFIG_SYS_DDR_CS0_BNDS 0x0000000f
  81. #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN | CSCONFIG_AP | \
  82. CSCONFIG_ROW_BIT_13 | \
  83. CSCONFIG_COL_BIT_10 | CSCONFIG_ODT_WR_ACS)
  84. #define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SDRAM_TYPE_DDR2 | \
  85. SDRAM_CFG_SREN)
  86. #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000
  87. #define CONFIG_SYS_DDR_CLK_CNTL (DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  88. #define CONFIG_SYS_DDR_INTERVAL ((0x100 << SDRAM_INTERVAL_BSTOPRE_SHIFT) | \
  89. (0x406 << SDRAM_INTERVAL_REFINT_SHIFT))
  90. #define CONFIG_SYS_DDR_MODE 0x04440242
  91. #define CONFIG_SYS_DDR_MODE2 0x00800000
  92. #define CONFIG_SYS_DDR_TIMING_0 ((2 << TIMING_CFG0_MRS_CYC_SHIFT) | \
  93. (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) | \
  94. (6 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) | \
  95. (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) | \
  96. (0 << TIMING_CFG0_WWT_SHIFT) | \
  97. (0 << TIMING_CFG0_RRT_SHIFT) | \
  98. (0 << TIMING_CFG0_WRT_SHIFT) | \
  99. (0 << TIMING_CFG0_RWT_SHIFT))
  100. #define CONFIG_SYS_DDR_TIMING_1 (( TIMING_CFG1_CASLAT_40) | \
  101. ( 2 << TIMING_CFG1_WRTORD_SHIFT) | \
  102. ( 1 << TIMING_CFG1_ACTTOACT_SHIFT) | \
  103. ( 2 << TIMING_CFG1_WRREC_SHIFT) | \
  104. ( 2 << TIMING_CFG1_REFREC_SHIFT) | \
  105. ( 2 << TIMING_CFG1_ACTTORW_SHIFT) | \
  106. ( 6 << TIMING_CFG1_ACTTOPRE_SHIFT) | \
  107. ( 2 << TIMING_CFG1_PRETOACT_SHIFT))
  108. #define CONFIG_SYS_DDR_TIMING_2 ((5 << TIMING_CFG2_FOUR_ACT_SHIFT) | \
  109. (3 << TIMING_CFG2_CKE_PLS_SHIFT) | \
  110. (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) | \
  111. (1 << TIMING_CFG2_RD_TO_PRE_SHIFT) | \
  112. (3 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) | \
  113. (0 << TIMING_CFG2_ADD_LAT_SHIFT) | \
  114. (4 << TIMING_CFG2_CPO_SHIFT))
  115. #define CONFIG_SYS_DDR_TIMING_3 0x00000000
  116. /*
  117. * Memory test
  118. */
  119. #define CONFIG_SYS_ALT_MEMTEST /* memory test, takes time */
  120. #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest region */
  121. #define CONFIG_SYS_MEMTEST_END 0x00F00000
  122. /*
  123. * The reserved memory
  124. */
  125. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE /* start of monitor */
  126. #define CONFIG_SYS_FLASH_BASE 0xF0000000
  127. #define CONFIG_SYS_FLASH_BASE_1 0xF2000000
  128. #define CONFIG_SYS_PIGGY_BASE 0x80000000
  129. #define CONFIG_SYS_PAXE_BASE 0xA0000000
  130. #define CONFIG_SYS_PAXE_SIZE 256
  131. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  132. #define CONFIG_SYS_RAMBOOT
  133. #else
  134. #undef CONFIG_SYS_RAMBOOT
  135. #endif
  136. #define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon */
  137. #define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserved for malloc */
  138. /*
  139. * Initial RAM Base Address Setup
  140. */
  141. #define CONFIG_SYS_INIT_RAM_LOCK 1
  142. #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
  143. #define CONFIG_SYS_INIT_RAM_END 0x1000 /* End of used area in RAM */
  144. #define CONFIG_SYS_GBL_DATA_SIZE 0x100 /* num bytes initial data */
  145. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  146. /*
  147. * Local Bus Configuration & Clock Setup
  148. */
  149. #define CONFIG_SYS_LCRR (LCRR_DBYP | LCRR_EADC_2 | LCRR_CLKDIV_4)
  150. /*
  151. * Init Local Bus Memory Controller:
  152. *
  153. * Bank Bus Machine PortSz Size Device
  154. * ---- --- ------- ------ ----- ------
  155. * 0 Local GPCM 16 bit 256MB FLASH
  156. * 1 Local GPCM 8 bit 256KB GPIO/PIGGY
  157. * 3 Local GPCM 8 bit 256MB PAXE
  158. *
  159. */
  160. /*
  161. * FLASH on the Local Bus
  162. */
  163. #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
  164. #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
  165. #define CONFIG_SYS_FLASH_SIZE 256 /* max FLASH size is 256M */
  166. #define CONFIG_SYS_FLASH_PROTECTION 1
  167. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
  168. #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE /* Window base at flash base */
  169. #define CONFIG_SYS_LBLAWAR0_PRELIM 0x8000001b /* 256MB window size */
  170. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | \
  171. (2 << BR_PS_SHIFT) | /* 16 bit port size */ \
  172. BR_V)
  173. #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) | \
  174. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  175. OR_GPCM_SCY_5 | \
  176. OR_GPCM_TRLX | OR_GPCM_EAD)
  177. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max num of flash banks */
  178. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */
  179. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE_1 }
  180. #undef CONFIG_SYS_FLASH_CHECKSUM
  181. /*
  182. * PRIO1/PIGGY on the local bus CS1
  183. */
  184. #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_PIGGY_BASE /* Window base at flash base */
  185. #define CONFIG_SYS_LBLAWAR1_PRELIM 0x80000011 /* 256KB window size */
  186. #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_PIGGY_BASE | \
  187. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  188. BR_V)
  189. #define CONFIG_SYS_OR1_PRELIM (0xfffc0000 | /* 256KB */ \
  190. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  191. OR_GPCM_SCY_2 | \
  192. OR_GPCM_TRLX | OR_GPCM_EAD)
  193. /*
  194. * PAXE on the local bus CS3
  195. */
  196. #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_PAXE_BASE /* Window base at flash base */
  197. #define CONFIG_SYS_LBLAWAR3_PRELIM 0x8000001b /* 256MB window size */
  198. #define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_PAXE_BASE | \
  199. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  200. BR_V)
  201. #define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_PAXE_SIZE) | \
  202. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  203. OR_GPCM_SCY_2 | \
  204. OR_GPCM_TRLX | OR_GPCM_EAD)
  205. /*
  206. * Serial Port
  207. */
  208. #define CONFIG_CONS_INDEX 1
  209. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  210. #define CONFIG_SYS_NS16550
  211. #define CONFIG_SYS_NS16550_SERIAL
  212. #define CONFIG_SYS_NS16550_REG_SIZE 1
  213. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  214. #define CONFIG_SYS_BAUDRATE_TABLE \
  215. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200,}
  216. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
  217. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
  218. /* Pass open firmware flat tree */
  219. #define CONFIG_OF_LIBFDT 1
  220. #define CONFIG_OF_BOARD_SETUP 1
  221. #define CONFIG_OF_STDOUT_VIA_ALIAS
  222. /*
  223. * General PCI
  224. * Addresses are mapped 1-1.
  225. */
  226. #undef CONFIG_PCI /* No PCI */
  227. #ifndef CONFIG_NET_MULTI
  228. #define CONFIG_NET_MULTI 1
  229. #endif
  230. /*
  231. * QE UEC ethernet configuration
  232. */
  233. #define CONFIG_UEC_ETH
  234. #define CONFIG_ETHPRIME "FSL UEC0"
  235. #define CONFIG_UEC_ETH1 /* GETH1 */
  236. #define UEC_VERBOSE_DEBUG 1
  237. #ifdef CONFIG_UEC_ETH1
  238. #define CONFIG_SYS_UEC1_UCC_NUM 3 /* UCC4 */
  239. #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE /* not used in RMII Mode */
  240. #define CONFIG_SYS_UEC1_TX_CLK QE_CLK17
  241. #define CONFIG_SYS_UEC1_ETH_TYPE FAST_ETH
  242. #define CONFIG_SYS_UEC1_PHY_ADDR 0
  243. #define CONFIG_SYS_UEC1_INTERFACE_MODE ENET_100_RMII
  244. #endif
  245. /*
  246. * Environment
  247. */
  248. #ifndef CONFIG_SYS_RAMBOOT
  249. #define CONFIG_ENV_IS_IN_FLASH 1
  250. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
  251. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
  252. #define CONFIG_ENV_SIZE 0x20000
  253. #define CONFIG_ENV_OFFSET (CONFIG_SYS_MONITOR_LEN)
  254. /* Address and size of Redundant Environment Sector */
  255. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET+CONFIG_ENV_SECT_SIZE)
  256. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  257. #else /* CFG_RAMBOOT */
  258. #define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */
  259. #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
  260. #define CONFIG_ENV_ADDR (CFG_MONITOR_BASE - 0x1000)
  261. #define CONFIG_ENV_SIZE 0x2000
  262. #endif /* CFG_RAMBOOT */
  263. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  264. #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
  265. /*
  266. * BOOTP options
  267. */
  268. #define CONFIG_BOOTP_BOOTFILESIZE
  269. #define CONFIG_BOOTP_BOOTPATH
  270. #define CONFIG_BOOTP_GATEWAY
  271. #define CONFIG_BOOTP_HOSTNAME
  272. /*
  273. * Command line configuration.
  274. */
  275. #include <config_cmd_default.h>
  276. #define CONFIG_CMD_ASKENV
  277. #define CONFIG_CMD_DHCP
  278. #define CONFIG_CMD_NFS
  279. #define CONFIG_CMD_MII
  280. #define CONFIG_CMD_PING
  281. #if defined(CONFIG_PCI)
  282. #define CONFIG_CMD_PCI
  283. #endif
  284. #if defined(CFG_RAMBOOT)
  285. #undef CONFIG_CMD_ENV
  286. #undef CONFIG_CMD_LOADS
  287. #endif
  288. #undef CONFIG_WATCHDOG /* watchdog disabled */
  289. /*
  290. * Miscellaneous configurable options
  291. */
  292. #define CONFIG_SYS_HUSH_PARSER
  293. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  294. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  295. #define CONFIG_SYS_LOAD_ADDR 0x200000 /* default load address */
  296. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  297. #if defined(CONFIG_CMD_KGDB)
  298. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  299. #else
  300. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  301. #endif
  302. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  303. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  304. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  305. #define CONFIG_CMDLINE_EDITING 1 /* add command line history */
  306. #define CONFIG_SYS_HZ 1000
  307. /*
  308. * For booting Linux, the board info and command line data
  309. * have to be in the first 8 MB of memory, since this is
  310. * the maximum mapped by the Linux kernel during initialization.
  311. */
  312. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  313. /*
  314. * Core HID Setup
  315. */
  316. #define CONFIG_SYS_HID0_INIT 0x000000000
  317. #define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
  318. #define CONFIG_SYS_HID2 HID2_HBE
  319. /*
  320. * MMU Setup
  321. */
  322. #define CONFIG_HIGH_BATS 1 /* High BATs supported */
  323. /* DDR: cache cacheable */
  324. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | \
  325. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  326. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  327. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  328. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  329. /* IMMRBAR & PCI IO: cache-inhibit and guarded */
  330. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR | BATL_PP_10 | \
  331. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  332. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR | BATU_BL_4M | BATU_VS | BATU_VP)
  333. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  334. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  335. /* PRIO1, PIGGY: icache cacheable, but dcache-inhibit and guarded */
  336. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PIGGY_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  337. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PIGGY_BASE | BATU_BL_256K | BATU_VS | BATU_VP)
  338. #define CONFIG_SYS_DBAT2L (CONFIG_SYS_PIGGY_BASE | BATL_PP_10 | \
  339. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  340. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  341. /* FLASH: icache cacheable, but dcache-inhibit and guarded */
  342. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  343. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  344. #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | \
  345. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  346. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  347. /* Stack in dcache: cacheable, no memory coherence */
  348. #define CONFIG_SYS_IBAT4L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10)
  349. #define CONFIG_SYS_IBAT4U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
  350. #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
  351. #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
  352. /* PAXE: icache cacheable, but dcache-inhibit and guarded */
  353. #define CONFIG_SYS_IBAT5L (CONFIG_SYS_PAXE_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  354. #define CONFIG_SYS_IBAT5U (CONFIG_SYS_PAXE_BASE | BATU_BL_256K | BATU_VS | BATU_VP)
  355. #define CONFIG_SYS_DBAT5L (CONFIG_SYS_PAXE_BASE | BATL_PP_10 | \
  356. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  357. #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
  358. #ifdef CONFIG_PCI
  359. /* PCI MEM space: cacheable */
  360. #define CFG_IBAT6L (CFG_PCI1_MEM_PHYS | BATL_PP_10 | BATL_MEMCOHERENCE)
  361. #define CFG_IBAT6U (CFG_PCI1_MEM_PHYS | BATU_BL_256M | BATU_VS | BATU_VP)
  362. #define CFG_DBAT6L CFG_IBAT6L
  363. #define CFG_DBAT6U CFG_IBAT6U
  364. /* PCI MMIO space: cache-inhibit and guarded */
  365. #define CFG_IBAT7L (CFG_PCI1_MMIO_PHYS | BATL_PP_10 | \
  366. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  367. #define CFG_IBAT7U (CFG_PCI1_MMIO_PHYS | BATU_BL_256M | BATU_VS | BATU_VP)
  368. #define CFG_DBAT7L CFG_IBAT7L
  369. #define CFG_DBAT7U CFG_IBAT7U
  370. #else /* CONFIG_PCI */
  371. #define CONFIG_SYS_IBAT6L (0)
  372. #define CONFIG_SYS_IBAT6U (0)
  373. #define CONFIG_SYS_IBAT7L (0)
  374. #define CONFIG_SYS_IBAT7U (0)
  375. #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
  376. #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
  377. #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
  378. #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
  379. #endif /* CONFIG_PCI */
  380. /*
  381. * Internal Definitions
  382. *
  383. * Boot Flags
  384. */
  385. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  386. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  387. #if defined(CONFIG_CMD_KGDB)
  388. #define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
  389. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  390. #endif
  391. /*
  392. * Environment Configuration
  393. */
  394. #define CONFIG_ENV_OVERWRITE
  395. #if defined(CONFIG_UEC_ETH)
  396. #define CONFIG_HAS_ETH0
  397. #endif
  398. #define CONFIG_BAUDRATE 115200
  399. #define CONFIG_BOOTDELAY 5 /* -1 disables auto-boot */
  400. #undef CONFIG_BOOTARGS /* the boot command will set bootargs */
  401. #define CONFIG_EXTRA_ENV_SETTINGS \
  402. "netdev=eth0\0" \
  403. "rootpath=/opt/eldk/ppc_82xx\0" \
  404. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  405. "nfsroot=${serverip}:${rootpath}\0" \
  406. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  407. "addip=setenv bootargs ${bootargs} " \
  408. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  409. ":${hostname}:${netdev}:off panic=1\0" \
  410. "addtty=setenv bootargs ${bootargs}" \
  411. " console=ttyS0,${baudrate}\0" \
  412. "fdt_addr=f0080000\0" \
  413. "kernel_addr=f00a0000\0" \
  414. "ramdisk_addr=f03a0000\0" \
  415. "kernel_addr_r=400000\0" \
  416. "fdt_addr_r=800000\0" \
  417. "ramdisk_addr_r=810000\0" \
  418. "flash_self=run ramargs addip addtty;" \
  419. "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
  420. "flash_nfs=run nfsargs addip addtty;" \
  421. "bootm ${kernel_addr} - ${fdt_addr}\0" \
  422. "net_nfs=tftp ${kernel_addr_r} ${boot_file}; " \
  423. "tftp ${fdt_addr_r} ${fdt_file}; " \
  424. "run nfsargs addip addtty;" \
  425. "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
  426. "fdt_file=/tftpboot/kmeter1/kmeter1.dtb\0" \
  427. "boot_file=/tftpboot/kmeter1/uImage\0" \
  428. "ramdisk_file=/tftpboot/kmeter1/uRamdisk\0" \
  429. "u-boot=/tftpboot/kmeter1/u-boot.bin\0" \
  430. "loadaddr=" MK_STR(CONFIG_SYS_LOAD_ADDR) "\0" \
  431. "load=tftp $loadaddr ${u-boot}\0" \
  432. "update=protect off " MK_STR(TEXT_BASE) " +$filesize;" \
  433. "erase " MK_STR(TEXT_BASE) " +$filesize;" \
  434. "cp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize;" \
  435. "protect on " MK_STR(TEXT_BASE) " +$filesize;" \
  436. "cmp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize;" \
  437. "setenv filesize;saveenv\0" \
  438. "upd=run load update\0" \
  439. "loadram=tftp ${ramdisk_addr_r} ${ramdisk_file}\0" \
  440. "loadfdt=tftp ${fdt_addr_r} ${fdt_file}\0" \
  441. "loadkernel=tftp ${kernel_addr_r} ${boot_file}\0" \
  442. "unlock=yes\0" \
  443. ""
  444. #define CONFIG_BOOTCOMMAND "run net_nfs"
  445. #endif /* __CONFIG_H */