kmeter1.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  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. /* include common defines/options for all Keymile boards */
  30. #include "keymile-common.h"
  31. /*
  32. * System Clock Setup
  33. */
  34. #define CONFIG_83XX_CLKIN 66000000
  35. #define CONFIG_SYS_CLK_FREQ 66000000
  36. #define CONFIG_83XX_PCICLK 66000000
  37. /*
  38. * Hardware Reset Configuration Word
  39. */
  40. #define CONFIG_SYS_HRCW_LOW (\
  41. HRCWL_CSB_TO_CLKIN_4X1 | \
  42. HRCWL_CORE_TO_CSB_2X1 | \
  43. HRCWL_CE_PLL_VCO_DIV_2 | \
  44. HRCWL_CE_TO_PLL_1X6 )
  45. #define CONFIG_SYS_HRCW_HIGH (\
  46. HRCWH_CORE_ENABLE | \
  47. HRCWH_FROM_0X00000100 | \
  48. HRCWH_BOOTSEQ_NORMAL | \
  49. HRCWH_SW_WATCHDOG_DISABLE | \
  50. HRCWH_ROM_LOC_LOCAL_16BIT | \
  51. HRCWH_BIG_ENDIAN | \
  52. HRCWH_LDP_CLEAR )
  53. /*
  54. * System IO Config
  55. */
  56. #define CONFIG_SYS_SICRH 0x00000006
  57. #define CONFIG_SYS_SICRL 0x00000000
  58. /*
  59. * IMMR new address
  60. */
  61. #define CONFIG_SYS_IMMR 0xE0000000
  62. /*
  63. * DDR Setup
  64. */
  65. #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
  66. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
  67. #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
  68. #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN | \
  69. DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  70. #define CFG_83XX_DDR_USES_CS0
  71. #undef CONFIG_DDR_ECC
  72. /*
  73. * DDRCDR - DDR Control Driver Register
  74. */
  75. #undef CONFIG_SPD_EEPROM /* Do not use SPD EEPROM for DDR setup */
  76. /*
  77. * Manually set up DDR parameters
  78. */
  79. #define CONFIG_DDR_II
  80. #define CONFIG_SYS_DDR_SIZE 256 /* MB */
  81. #define CONFIG_SYS_DDR_CS0_BNDS 0x0000000f
  82. #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN | CSCONFIG_AP | \
  83. CSCONFIG_ROW_BIT_13 | \
  84. CSCONFIG_COL_BIT_10 | CSCONFIG_ODT_WR_ACS)
  85. #define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SDRAM_TYPE_DDR2 | \
  86. SDRAM_CFG_SREN)
  87. #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000
  88. #define CONFIG_SYS_DDR_CLK_CNTL (DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  89. #define CONFIG_SYS_DDR_INTERVAL ((0x100 << SDRAM_INTERVAL_BSTOPRE_SHIFT) | \
  90. (0x406 << SDRAM_INTERVAL_REFINT_SHIFT))
  91. #define CONFIG_SYS_DDR_MODE 0x04440242
  92. #define CONFIG_SYS_DDR_MODE2 0x00800000
  93. #define CONFIG_SYS_DDR_TIMING_0 ((2 << TIMING_CFG0_MRS_CYC_SHIFT) | \
  94. (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) | \
  95. (6 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) | \
  96. (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) | \
  97. (0 << TIMING_CFG0_WWT_SHIFT) | \
  98. (0 << TIMING_CFG0_RRT_SHIFT) | \
  99. (0 << TIMING_CFG0_WRT_SHIFT) | \
  100. (0 << TIMING_CFG0_RWT_SHIFT))
  101. #define CONFIG_SYS_DDR_TIMING_1 (( TIMING_CFG1_CASLAT_40) | \
  102. ( 2 << TIMING_CFG1_WRTORD_SHIFT) | \
  103. ( 1 << TIMING_CFG1_ACTTOACT_SHIFT) | \
  104. ( 2 << TIMING_CFG1_WRREC_SHIFT) | \
  105. ( 2 << TIMING_CFG1_REFREC_SHIFT) | \
  106. ( 2 << TIMING_CFG1_ACTTORW_SHIFT) | \
  107. ( 6 << TIMING_CFG1_ACTTOPRE_SHIFT) | \
  108. ( 2 << TIMING_CFG1_PRETOACT_SHIFT))
  109. #define CONFIG_SYS_DDR_TIMING_2 ((5 << TIMING_CFG2_FOUR_ACT_SHIFT) | \
  110. (3 << TIMING_CFG2_CKE_PLS_SHIFT) | \
  111. (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) | \
  112. (1 << TIMING_CFG2_RD_TO_PRE_SHIFT) | \
  113. (3 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) | \
  114. (0 << TIMING_CFG2_ADD_LAT_SHIFT) | \
  115. (4 << TIMING_CFG2_CPO_SHIFT))
  116. #define CONFIG_SYS_DDR_TIMING_3 0x00000000
  117. /*
  118. * The reserved memory
  119. */
  120. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE /* start of monitor */
  121. #define CONFIG_SYS_FLASH_BASE 0xF0000000
  122. #define CONFIG_SYS_FLASH_BASE_1 0xF2000000
  123. #define CONFIG_SYS_PIGGY_BASE 0x80000000
  124. #define CONFIG_SYS_PAXE_BASE 0xA0000000
  125. #define CONFIG_SYS_PAXE_SIZE 256
  126. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  127. #define CONFIG_SYS_RAMBOOT
  128. #else
  129. #undef CONFIG_SYS_RAMBOOT
  130. #endif
  131. #define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon */
  132. #define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserved for malloc */
  133. /*
  134. * Initial RAM Base Address Setup
  135. */
  136. #define CONFIG_SYS_INIT_RAM_LOCK 1
  137. #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
  138. #define CONFIG_SYS_INIT_RAM_END 0x1000 /* End of used area in RAM */
  139. #define CONFIG_SYS_GBL_DATA_SIZE 0x100 /* num bytes initial data */
  140. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  141. /*
  142. * Local Bus Configuration & Clock Setup
  143. */
  144. #define CONFIG_SYS_LCRR (LCRR_DBYP | LCRR_EADC_2 | LCRR_CLKDIV_4)
  145. /*
  146. * Init Local Bus Memory Controller:
  147. *
  148. * Bank Bus Machine PortSz Size Device
  149. * ---- --- ------- ------ ----- ------
  150. * 0 Local GPCM 16 bit 256MB FLASH
  151. * 1 Local GPCM 8 bit 256KB GPIO/PIGGY
  152. * 3 Local GPCM 8 bit 256MB PAXE
  153. *
  154. */
  155. /*
  156. * FLASH on the Local Bus
  157. */
  158. #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
  159. #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
  160. #define CONFIG_SYS_FLASH_SIZE 256 /* max FLASH size is 256M */
  161. #define CONFIG_SYS_FLASH_PROTECTION 1
  162. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
  163. #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE /* Window base at flash base */
  164. #define CONFIG_SYS_LBLAWAR0_PRELIM 0x8000001b /* 256MB window size */
  165. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | \
  166. (2 << BR_PS_SHIFT) | /* 16 bit port size */ \
  167. BR_V)
  168. #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) | \
  169. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  170. OR_GPCM_SCY_5 | \
  171. OR_GPCM_TRLX | OR_GPCM_EAD)
  172. #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max num of flash banks */
  173. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */
  174. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE_1 }
  175. #undef CONFIG_SYS_FLASH_CHECKSUM
  176. /*
  177. * PRIO1/PIGGY on the local bus CS1
  178. */
  179. #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_PIGGY_BASE /* Window base at flash base */
  180. #define CONFIG_SYS_LBLAWAR1_PRELIM 0x80000011 /* 256KB window size */
  181. #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_PIGGY_BASE | \
  182. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  183. BR_V)
  184. #define CONFIG_SYS_OR1_PRELIM (0xfffc0000 | /* 256KB */ \
  185. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  186. OR_GPCM_SCY_2 | \
  187. OR_GPCM_TRLX | OR_GPCM_EAD)
  188. /*
  189. * PAXE on the local bus CS3
  190. */
  191. #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_PAXE_BASE /* Window base at flash base */
  192. #define CONFIG_SYS_LBLAWAR3_PRELIM 0x8000001b /* 256MB window size */
  193. #define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_PAXE_BASE | \
  194. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  195. BR_V)
  196. #define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_PAXE_SIZE) | \
  197. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  198. OR_GPCM_SCY_2 | \
  199. OR_GPCM_TRLX | OR_GPCM_EAD)
  200. /*
  201. * Serial Port
  202. */
  203. #define CONFIG_CONS_INDEX 1
  204. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  205. #define CONFIG_SYS_NS16550
  206. #define CONFIG_SYS_NS16550_SERIAL
  207. #define CONFIG_SYS_NS16550_REG_SIZE 1
  208. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  209. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
  210. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
  211. /* Pass open firmware flat tree */
  212. #define CONFIG_OF_LIBFDT 1
  213. #define CONFIG_OF_BOARD_SETUP 1
  214. #define CONFIG_OF_STDOUT_VIA_ALIAS
  215. /*
  216. * General PCI
  217. * Addresses are mapped 1-1.
  218. */
  219. #undef CONFIG_PCI /* No PCI */
  220. #ifndef CONFIG_NET_MULTI
  221. #define CONFIG_NET_MULTI 1
  222. #endif
  223. /*
  224. * QE UEC ethernet configuration
  225. */
  226. #define CONFIG_UEC_ETH
  227. #define CONFIG_ETHPRIME "FSL UEC0"
  228. #define CONFIG_UEC_ETH1 /* GETH1 */
  229. #define UEC_VERBOSE_DEBUG 1
  230. #ifdef CONFIG_UEC_ETH1
  231. #define CONFIG_SYS_UEC1_UCC_NUM 3 /* UCC4 */
  232. #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE /* not used in RMII Mode */
  233. #define CONFIG_SYS_UEC1_TX_CLK QE_CLK17
  234. #define CONFIG_SYS_UEC1_ETH_TYPE FAST_ETH
  235. #define CONFIG_SYS_UEC1_PHY_ADDR 0
  236. #define CONFIG_SYS_UEC1_INTERFACE_MODE ENET_100_RMII
  237. #endif
  238. /*
  239. * Environment
  240. */
  241. #ifndef CONFIG_SYS_RAMBOOT
  242. #define CONFIG_ENV_IS_IN_FLASH 1
  243. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
  244. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
  245. #define CONFIG_ENV_SIZE 0x20000
  246. #define CONFIG_ENV_OFFSET (CONFIG_SYS_MONITOR_LEN)
  247. /* Address and size of Redundant Environment Sector */
  248. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET+CONFIG_ENV_SECT_SIZE)
  249. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  250. #else /* CFG_RAMBOOT */
  251. #define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */
  252. #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
  253. #define CONFIG_ENV_ADDR (CFG_MONITOR_BASE - 0x1000)
  254. #define CONFIG_ENV_SIZE 0x2000
  255. #endif /* CFG_RAMBOOT */
  256. #if defined(CONFIG_PCI)
  257. #define CONFIG_CMD_PCI
  258. #endif
  259. #if defined(CFG_RAMBOOT)
  260. #undef CONFIG_CMD_SAVEENV
  261. #undef CONFIG_CMD_LOADS
  262. #endif
  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 CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  269. /*
  270. * Core HID Setup
  271. */
  272. #define CONFIG_SYS_HID0_INIT 0x000000000
  273. #define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
  274. #define CONFIG_SYS_HID2 HID2_HBE
  275. /*
  276. * MMU Setup
  277. */
  278. #define CONFIG_HIGH_BATS 1 /* High BATs supported */
  279. /* DDR: cache cacheable */
  280. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | \
  281. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  282. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  283. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  284. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  285. /* IMMRBAR & PCI IO: cache-inhibit and guarded */
  286. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR | BATL_PP_10 | \
  287. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  288. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR | BATU_BL_4M | BATU_VS | BATU_VP)
  289. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  290. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  291. /* PRIO1, PIGGY: icache cacheable, but dcache-inhibit and guarded */
  292. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PIGGY_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  293. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PIGGY_BASE | BATU_BL_256K | BATU_VS | BATU_VP)
  294. #define CONFIG_SYS_DBAT2L (CONFIG_SYS_PIGGY_BASE | BATL_PP_10 | \
  295. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  296. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  297. /* FLASH: icache cacheable, but dcache-inhibit and guarded */
  298. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  299. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  300. #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | \
  301. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  302. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  303. /* Stack in dcache: cacheable, no memory coherence */
  304. #define CONFIG_SYS_IBAT4L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10)
  305. #define CONFIG_SYS_IBAT4U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
  306. #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
  307. #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
  308. /* PAXE: icache cacheable, but dcache-inhibit and guarded */
  309. #define CONFIG_SYS_IBAT5L (CONFIG_SYS_PAXE_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  310. #define CONFIG_SYS_IBAT5U (CONFIG_SYS_PAXE_BASE | BATU_BL_256K | BATU_VS | BATU_VP)
  311. #define CONFIG_SYS_DBAT5L (CONFIG_SYS_PAXE_BASE | BATL_PP_10 | \
  312. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  313. #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
  314. #ifdef CONFIG_PCI
  315. /* PCI MEM space: cacheable */
  316. #define CFG_IBAT6L (CFG_PCI1_MEM_PHYS | BATL_PP_10 | BATL_MEMCOHERENCE)
  317. #define CFG_IBAT6U (CFG_PCI1_MEM_PHYS | BATU_BL_256M | BATU_VS | BATU_VP)
  318. #define CFG_DBAT6L CFG_IBAT6L
  319. #define CFG_DBAT6U CFG_IBAT6U
  320. /* PCI MMIO space: cache-inhibit and guarded */
  321. #define CFG_IBAT7L (CFG_PCI1_MMIO_PHYS | BATL_PP_10 | \
  322. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  323. #define CFG_IBAT7U (CFG_PCI1_MMIO_PHYS | BATU_BL_256M | BATU_VS | BATU_VP)
  324. #define CFG_DBAT7L CFG_IBAT7L
  325. #define CFG_DBAT7U CFG_IBAT7U
  326. #else /* CONFIG_PCI */
  327. #define CONFIG_SYS_IBAT6L (0)
  328. #define CONFIG_SYS_IBAT6U (0)
  329. #define CONFIG_SYS_IBAT7L (0)
  330. #define CONFIG_SYS_IBAT7U (0)
  331. #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
  332. #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
  333. #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
  334. #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
  335. #endif /* CONFIG_PCI */
  336. /*
  337. * Internal Definitions
  338. *
  339. * Boot Flags
  340. */
  341. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  342. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  343. /*
  344. * Environment Configuration
  345. */
  346. #define CONFIG_ENV_OVERWRITE
  347. #if defined(CONFIG_UEC_ETH)
  348. #define CONFIG_HAS_ETH0
  349. #endif
  350. #define CONFIG_EXTRA_ENV_SETTINGS \
  351. "netdev=eth0\0" \
  352. "rootpath=/opt/eldk/ppc_82xx\0" \
  353. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  354. "nfsroot=${serverip}:${rootpath}\0" \
  355. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  356. "addip=setenv bootargs ${bootargs} " \
  357. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  358. ":${hostname}:${netdev}:off panic=1\0" \
  359. "addtty=setenv bootargs ${bootargs}" \
  360. " console=ttyS0,${baudrate}\0" \
  361. "fdt_addr=f0080000\0" \
  362. "kernel_addr=f00a0000\0" \
  363. "ramdisk_addr=f03a0000\0" \
  364. "kernel_addr_r=400000\0" \
  365. "fdt_addr_r=800000\0" \
  366. "ramdisk_addr_r=810000\0" \
  367. "flash_self=run ramargs addip addtty;" \
  368. "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
  369. "flash_nfs=run nfsargs addip addtty;" \
  370. "bootm ${kernel_addr} - ${fdt_addr}\0" \
  371. "net_nfs=tftp ${kernel_addr_r} ${boot_file}; " \
  372. "tftp ${fdt_addr_r} ${fdt_file}; " \
  373. "run nfsargs addip addtty;" \
  374. "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
  375. "fdt_file=/tftpboot/kmeter1/kmeter1.dtb\0" \
  376. "boot_file=/tftpboot/kmeter1/uImage\0" \
  377. "ramdisk_file=/tftpboot/kmeter1/uRamdisk\0" \
  378. "u-boot=/tftpboot/kmeter1/u-boot.bin\0" \
  379. "loadaddr=" MK_STR(CONFIG_SYS_LOAD_ADDR) "\0" \
  380. "load=tftp $loadaddr ${u-boot}\0" \
  381. "update=protect off " MK_STR(TEXT_BASE) " +$filesize;" \
  382. "erase " MK_STR(TEXT_BASE) " +$filesize;" \
  383. "cp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize;" \
  384. "protect on " MK_STR(TEXT_BASE) " +$filesize;" \
  385. "cmp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize;" \
  386. "setenv filesize;saveenv\0" \
  387. "upd=run load update\0" \
  388. "loadram=tftp ${ramdisk_addr_r} ${ramdisk_file}\0" \
  389. "loadfdt=tftp ${fdt_addr_r} ${fdt_file}\0" \
  390. "loadkernel=tftp ${kernel_addr_r} ${boot_file}\0" \
  391. "unlock=yes\0" \
  392. ""
  393. #endif /* __CONFIG_H */