kmeter1.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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. #define CONFIG_HOSTNAME kmeter1
  30. /* include common defines/options for all Keymile boards */
  31. #include "keymile-common.h"
  32. #define CONFIG_KM_UBI_PARTITION_NAME "ubi0"
  33. #define MTDIDS_DEFAULT "nor0=boot"
  34. #define MTDPARTS_DEFAULT \
  35. "mtdparts=boot:768k(u-boot),128k(env),128k(envred)," \
  36. "-(" CONFIG_KM_UBI_PARTITION_NAME ")"
  37. #define CONFIG_MISC_INIT_R 1
  38. /*
  39. * System Clock Setup
  40. */
  41. #define CONFIG_83XX_CLKIN 66000000
  42. #define CONFIG_SYS_CLK_FREQ 66000000
  43. #define CONFIG_83XX_PCICLK 66000000
  44. /*
  45. * Hardware Reset Configuration Word
  46. */
  47. #define CONFIG_SYS_HRCW_LOW (\
  48. HRCWL_CSB_TO_CLKIN_4X1 | \
  49. HRCWL_CORE_TO_CSB_2X1 | \
  50. HRCWL_CE_PLL_VCO_DIV_2 | \
  51. HRCWL_CE_TO_PLL_1X6 )
  52. #define CONFIG_SYS_HRCW_HIGH (\
  53. HRCWH_CORE_ENABLE | \
  54. HRCWH_FROM_0X00000100 | \
  55. HRCWH_BOOTSEQ_DISABLE | \
  56. HRCWH_SW_WATCHDOG_DISABLE | \
  57. HRCWH_ROM_LOC_LOCAL_16BIT | \
  58. HRCWH_BIG_ENDIAN | \
  59. HRCWH_LALE_EARLY | \
  60. HRCWH_LDP_CLEAR )
  61. /*
  62. * System IO Config
  63. */
  64. #define CONFIG_SYS_SICRH 0x00000006
  65. #define CONFIG_SYS_SICRL 0x00000000
  66. /*
  67. * IMMR new address
  68. */
  69. #define CONFIG_SYS_IMMR 0xE0000000
  70. /*
  71. * Bus Arbitration Configuration Register (ACR)
  72. */
  73. #define CONFIG_SYS_ACR_PIPE_DEP 3 /* pipeline depth 4 transactions */
  74. #define CONFIG_SYS_ACR_RPTCNT 3 /* 4 consecutive transactions */
  75. #define CONFIG_SYS_ACR_APARK 0 /* park bus to master (below) */
  76. #define CONFIG_SYS_ACR_PARKM 3 /* parking master = QuiccEngine */
  77. /*
  78. * DDR Setup
  79. */
  80. #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
  81. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
  82. #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
  83. #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN | \
  84. DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  85. #define CFG_83XX_DDR_USES_CS0
  86. #undef CONFIG_DDR_ECC
  87. /*
  88. * DDRCDR - DDR Control Driver Register
  89. */
  90. #undef CONFIG_SPD_EEPROM /* Do not use SPD EEPROM for DDR setup */
  91. /*
  92. * Manually set up DDR parameters
  93. */
  94. #define CONFIG_DDR_II
  95. #define CONFIG_SYS_DDR_SIZE 2048 /* MB */
  96. #define CONFIG_SYS_DDR_CS0_BNDS 0x0000007f
  97. #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN | CSCONFIG_AP | \
  98. CSCONFIG_ROW_BIT_13 | \
  99. CSCONFIG_COL_BIT_10 | CSCONFIG_ODT_WR_ACS)
  100. #define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SDRAM_TYPE_DDR2 | \
  101. SDRAM_CFG_SREN)
  102. #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000
  103. #define CONFIG_SYS_DDR_CLK_CNTL (DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05)
  104. #define CONFIG_SYS_DDR_INTERVAL ((0x080 << SDRAM_INTERVAL_BSTOPRE_SHIFT) | \
  105. (0x3cf << SDRAM_INTERVAL_REFINT_SHIFT))
  106. #define CONFIG_SYS_DDRCDR 0x40000001
  107. #define CONFIG_SYS_DDR_MODE 0x47860452
  108. #define CONFIG_SYS_DDR_MODE2 0x8080c000
  109. #define CONFIG_SYS_DDR_TIMING_0 ((2 << TIMING_CFG0_MRS_CYC_SHIFT) | \
  110. (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) | \
  111. (6 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) | \
  112. (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) | \
  113. (0 << TIMING_CFG0_WWT_SHIFT) | \
  114. (0 << TIMING_CFG0_RRT_SHIFT) | \
  115. (0 << TIMING_CFG0_WRT_SHIFT) | \
  116. (0 << TIMING_CFG0_RWT_SHIFT))
  117. #define CONFIG_SYS_DDR_TIMING_1 (( TIMING_CFG1_CASLAT_50) | \
  118. ( 2 << TIMING_CFG1_WRTORD_SHIFT) | \
  119. ( 2 << TIMING_CFG1_ACTTOACT_SHIFT) | \
  120. ( 3 << TIMING_CFG1_WRREC_SHIFT) | \
  121. ( 7 << TIMING_CFG1_REFREC_SHIFT) | \
  122. ( 3 << TIMING_CFG1_ACTTORW_SHIFT) | \
  123. ( 8 << TIMING_CFG1_ACTTOPRE_SHIFT) | \
  124. ( 3 << TIMING_CFG1_PRETOACT_SHIFT))
  125. #define CONFIG_SYS_DDR_TIMING_2 ((8 << TIMING_CFG2_FOUR_ACT_SHIFT) | \
  126. (3 << TIMING_CFG2_CKE_PLS_SHIFT) | \
  127. (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) | \
  128. (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) | \
  129. (4 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) | \
  130. (0 << TIMING_CFG2_ADD_LAT_SHIFT) | \
  131. (5 << TIMING_CFG2_CPO_SHIFT))
  132. #define CONFIG_SYS_DDR_TIMING_3 0x00000000
  133. /*
  134. * The reserved memory
  135. */
  136. #define CONFIG_SYS_MONITOR_BASE TEXT_BASE /* start of monitor */
  137. #define CONFIG_SYS_FLASH_BASE 0xF0000000
  138. #define CONFIG_SYS_PIGGY_BASE 0xE8000000
  139. #define CONFIG_SYS_PIGGY_SIZE 128
  140. #define CONFIG_SYS_PAXE_BASE 0xA0000000
  141. #define CONFIG_SYS_PAXE_SIZE 512
  142. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  143. #define CONFIG_SYS_RAMBOOT
  144. #else
  145. #undef CONFIG_SYS_RAMBOOT
  146. #endif
  147. #define CONFIG_SYS_MONITOR_LEN (384 * 1024) /* Reserve 384 kB for Mon */
  148. /*
  149. * Initial RAM Base Address Setup
  150. */
  151. #define CONFIG_SYS_INIT_RAM_LOCK 1
  152. #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
  153. #define CONFIG_SYS_INIT_RAM_END 0x1000 /* End of used area in RAM */
  154. #define CONFIG_SYS_GBL_DATA_SIZE 0x100 /* num bytes initial data */
  155. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
  156. /*
  157. * Local Bus Configuration & Clock Setup
  158. */
  159. #define CONFIG_SYS_LCRR_DBYP LCRR_DBYP
  160. #define CONFIG_SYS_LCRR_EADC LCRR_EADC_2
  161. #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4
  162. /*
  163. * Init Local Bus Memory Controller:
  164. *
  165. * Bank Bus Machine PortSz Size Device
  166. * ---- --- ------- ------ ----- ------
  167. * 0 Local GPCM 16 bit 256MB FLASH
  168. * 1 Local GPCM 8 bit 128MB GPIO/PIGGY
  169. * 3 Local GPCM 8 bit 512MB PAXE
  170. *
  171. */
  172. /*
  173. * FLASH on the Local Bus
  174. */
  175. #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
  176. #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
  177. #define CONFIG_SYS_FLASH_SIZE 256 /* max FLASH size is 256M */
  178. #define CONFIG_SYS_FLASH_PROTECTION 1
  179. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
  180. #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE /* Window base at flash base */
  181. #define CONFIG_SYS_LBLAWAR0_PRELIM 0x8000001b /* 256MB window size */
  182. #define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | \
  183. (2 << BR_PS_SHIFT) | /* 16 bit port size */ \
  184. BR_V)
  185. #define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) | \
  186. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  187. OR_GPCM_SCY_5 | \
  188. OR_GPCM_TRLX | OR_GPCM_EAD)
  189. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of flash banks */
  190. #define CONFIG_SYS_MAX_FLASH_SECT 512 /* max num of sects on one chip */
  191. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  192. #undef CONFIG_SYS_FLASH_CHECKSUM
  193. /*
  194. * PRIO1/PIGGY on the local bus CS1
  195. */
  196. #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_PIGGY_BASE /* Window base at flash base */
  197. #define CONFIG_SYS_LBLAWAR1_PRELIM 0x8000001A /* 128MB window size */
  198. #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_PIGGY_BASE | \
  199. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  200. BR_V)
  201. #define CONFIG_SYS_OR1_PRELIM (MEG_TO_AM(CONFIG_SYS_PIGGY_SIZE) | /* 128MB */ \
  202. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  203. OR_GPCM_SCY_2 | \
  204. OR_GPCM_TRLX | OR_GPCM_EAD)
  205. /*
  206. * PAXE on the local bus CS3
  207. */
  208. #define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_PAXE_BASE /* Window base at flash base */
  209. #define CONFIG_SYS_LBLAWAR3_PRELIM 0x8000001C /* 512MB window size */
  210. #define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_PAXE_BASE | \
  211. (1 << BR_PS_SHIFT) | /* 8 bit port size */ \
  212. BR_V)
  213. #define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_PAXE_SIZE) | \
  214. OR_GPCM_CSNT | OR_GPCM_ACS_DIV2 | \
  215. OR_GPCM_SCY_2 | \
  216. OR_GPCM_TRLX | OR_GPCM_EAD)
  217. /*
  218. * Serial Port
  219. */
  220. #define CONFIG_CONS_INDEX 1
  221. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  222. #define CONFIG_SYS_NS16550
  223. #define CONFIG_SYS_NS16550_SERIAL
  224. #define CONFIG_SYS_NS16550_REG_SIZE 1
  225. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  226. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
  227. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
  228. /* Pass open firmware flat tree */
  229. #define CONFIG_OF_LIBFDT 1
  230. #define CONFIG_OF_BOARD_SETUP 1
  231. #define CONFIG_OF_STDOUT_VIA_ALIAS
  232. /*
  233. * General PCI
  234. * Addresses are mapped 1-1.
  235. */
  236. #undef CONFIG_PCI /* No PCI */
  237. #ifndef CONFIG_NET_MULTI
  238. #define CONFIG_NET_MULTI 1
  239. #endif
  240. /*
  241. * QE UEC ethernet configuration
  242. */
  243. #define CONFIG_UEC_ETH
  244. #define CONFIG_ETHPRIME "FSL UEC0"
  245. #define CONFIG_UEC_ETH1 /* GETH1 */
  246. #define UEC_VERBOSE_DEBUG 1
  247. #ifdef CONFIG_UEC_ETH1
  248. #define CONFIG_SYS_UEC1_UCC_NUM 3 /* UCC4 */
  249. #define CONFIG_SYS_UEC1_RX_CLK QE_CLK_NONE /* not used in RMII Mode */
  250. #define CONFIG_SYS_UEC1_TX_CLK QE_CLK17
  251. #define CONFIG_SYS_UEC1_ETH_TYPE FAST_ETH
  252. #define CONFIG_SYS_UEC1_PHY_ADDR 0
  253. #define CONFIG_SYS_UEC1_INTERFACE_MODE ENET_100_RMII
  254. #endif
  255. /*
  256. * Environment
  257. */
  258. #ifndef CONFIG_SYS_RAMBOOT
  259. #define CONFIG_ENV_IS_IN_FLASH 1
  260. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
  261. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
  262. #define CONFIG_ENV_OFFSET (CONFIG_SYS_MONITOR_LEN)
  263. /* Address and size of Redundant Environment Sector */
  264. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET+CONFIG_ENV_SECT_SIZE)
  265. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  266. #else /* CFG_RAMBOOT */
  267. #define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */
  268. #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
  269. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
  270. #define CONFIG_ENV_SIZE 0x2000
  271. #endif /* CFG_RAMBOOT */
  272. /* I2C */
  273. #define CONFIG_HARD_I2C /* I2C with hardware support */
  274. #undef CONFIG_SOFT_I2C /* I2C bit-banged */
  275. #define CONFIG_FSL_I2C
  276. #define CONFIG_SYS_I2C_SPEED 200000 /* I2C speed and slave address */
  277. #define CONFIG_SYS_I2C_SLAVE 0x7F
  278. #define CONFIG_SYS_I2C_OFFSET 0x3000
  279. #define CONFIG_I2C_MULTI_BUS 1
  280. #define CONFIG_I2C_MUX 1
  281. /* EEprom support */
  282. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
  283. /* I2C SYSMON (LM75, AD7414 is almost compatible) */
  284. #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */
  285. #define CONFIG_DTT_SENSORS {0, 1, 2, 3} /* Sensor addresses */
  286. #define CONFIG_SYS_DTT_MAX_TEMP 70
  287. #define CONFIG_SYS_DTT_LOW_TEMP -30
  288. #define CONFIG_SYS_DTT_HYSTERESIS 3
  289. #define CONFIG_SYS_DTT_BUS_NUM (CONFIG_SYS_MAX_I2C_BUS)
  290. #if defined(CONFIG_CMD_NAND)
  291. #define CONFIG_NAND_KMETER1
  292. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  293. #define CONFIG_SYS_NAND_BASE CONFIG_SYS_PIGGY_BASE
  294. #endif
  295. #if defined(CONFIG_PCI)
  296. #define CONFIG_CMD_PCI
  297. #endif
  298. #if defined(CFG_RAMBOOT)
  299. #undef CONFIG_CMD_SAVEENV
  300. #undef CONFIG_CMD_LOADS
  301. #endif
  302. /*
  303. * For booting Linux, the board info and command line data
  304. * have to be in the first 8 MB of memory, since this is
  305. * the maximum mapped by the Linux kernel during initialization.
  306. */
  307. #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
  308. /*
  309. * Core HID Setup
  310. */
  311. #define CONFIG_SYS_HID0_INIT 0x000000000
  312. #define CONFIG_SYS_HID0_FINAL HID0_ENABLE_MACHINE_CHECK
  313. #define CONFIG_SYS_HID2 HID2_HBE
  314. /*
  315. * MMU Setup
  316. */
  317. #define CONFIG_HIGH_BATS 1 /* High BATs supported */
  318. /* DDR: cache cacheable */
  319. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | \
  320. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  321. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  322. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  323. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  324. /* IMMRBAR & PCI IO: cache-inhibit and guarded */
  325. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR | BATL_PP_10 | \
  326. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  327. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR | BATU_BL_4M | BATU_VS | BATU_VP)
  328. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  329. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  330. /* PRIO1, PIGGY: icache cacheable, but dcache-inhibit and guarded */
  331. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PIGGY_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  332. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PIGGY_BASE | BATU_BL_128M | BATU_VS | BATU_VP)
  333. #define CONFIG_SYS_DBAT2L (CONFIG_SYS_PIGGY_BASE | BATL_PP_10 | \
  334. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  335. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  336. /* FLASH: icache cacheable, but dcache-inhibit and guarded */
  337. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  338. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_FLASH_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  339. #define CONFIG_SYS_DBAT3L (CONFIG_SYS_FLASH_BASE | BATL_PP_10 | \
  340. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  341. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  342. /* Stack in dcache: cacheable, no memory coherence */
  343. #define CONFIG_SYS_IBAT4L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10)
  344. #define CONFIG_SYS_IBAT4U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
  345. #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
  346. #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
  347. /* PAXE: icache cacheable, but dcache-inhibit and guarded */
  348. #define CONFIG_SYS_IBAT5L (CONFIG_SYS_PAXE_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
  349. #define CONFIG_SYS_IBAT5U (CONFIG_SYS_PAXE_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
  350. #define CONFIG_SYS_DBAT5L (CONFIG_SYS_PAXE_BASE | BATL_PP_10 | \
  351. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  352. #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
  353. #ifdef CONFIG_PCI
  354. /* PCI MEM space: cacheable */
  355. #define CFG_IBAT6L (CFG_PCI1_MEM_PHYS | BATL_PP_10 | BATL_MEMCOHERENCE)
  356. #define CFG_IBAT6U (CFG_PCI1_MEM_PHYS | BATU_BL_256M | BATU_VS | BATU_VP)
  357. #define CFG_DBAT6L CFG_IBAT6L
  358. #define CFG_DBAT6U CFG_IBAT6U
  359. /* PCI MMIO space: cache-inhibit and guarded */
  360. #define CFG_IBAT7L (CFG_PCI1_MMIO_PHYS | BATL_PP_10 | \
  361. BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
  362. #define CFG_IBAT7U (CFG_PCI1_MMIO_PHYS | BATU_BL_256M | BATU_VS | BATU_VP)
  363. #define CFG_DBAT7L CFG_IBAT7L
  364. #define CFG_DBAT7U CFG_IBAT7U
  365. #else /* CONFIG_PCI */
  366. #define CONFIG_SYS_IBAT6L (0)
  367. #define CONFIG_SYS_IBAT6U (0)
  368. #define CONFIG_SYS_IBAT7L (0)
  369. #define CONFIG_SYS_IBAT7U (0)
  370. #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
  371. #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
  372. #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
  373. #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
  374. #endif /* CONFIG_PCI */
  375. /*
  376. * Internal Definitions
  377. *
  378. * Boot Flags
  379. */
  380. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  381. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  382. #define BOOTFLASH_START F0000000
  383. #define CONFIG_PRAM 512 /* protected RAM [KBytes] */
  384. /*
  385. * Environment Configuration
  386. */
  387. #define CONFIG_ENV_OVERWRITE
  388. #ifndef CONFIG_KM_DEF_ENV /* if not set by keymile-common.h */
  389. #define CONFIG_KM_DEF_ENV "km-common=empty\0"
  390. #endif
  391. #define CONFIG_EXTRA_ENV_SETTINGS \
  392. CONFIG_KM_DEF_ENV \
  393. "rootpath=/opt/eldk/ppc_82xx\0" \
  394. "addcon=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"\
  395. "ramdisk_file=/tftpboot/kmeter1/uRamdisk\0" \
  396. "loadram=tftp ${ramdisk_addr_r} ${ramdisk_file}\0" \
  397. "loadfdt=tftp ${fdt_addr_r} ${fdt_file}\0" \
  398. "loadkernel=tftp ${kernel_addr_r} ${bootfile}\0" \
  399. "unlock=yes\0" \
  400. "fdt_addr=F0080000\0" \
  401. "kernel_addr=F00a0000\0" \
  402. "ramdisk_addr=F03a0000\0" \
  403. "ramdisk_addr_r=F10000\0" \
  404. "EEprom_ivm=pca9547:70:9\0" \
  405. "dtt_bus=pca9547:70:a\0" \
  406. "mtdids=nor0=app \0" \
  407. "mtdparts=" MK_STR(MTDPARTS_DEFAULT) "\0" \
  408. ""
  409. #if defined(CONFIG_UEC_ETH)
  410. #define CONFIG_HAS_ETH0
  411. #endif
  412. #endif /* __CONFIG_H */