ve8313.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. /*
  2. * Copyright (C) Freescale Semiconductor, Inc. 2006.
  3. *
  4. * (C) Copyright 2010
  5. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. /*
  26. * ve8313 board configuration file
  27. */
  28. #ifndef __CONFIG_H
  29. #define __CONFIG_H
  30. /*
  31. * High Level Configuration Options
  32. */
  33. #define CONFIG_E300 1
  34. #define CONFIG_MPC83xx 1
  35. #define CONFIG_MPC831x 1
  36. #define CONFIG_MPC8313 1
  37. #define CONFIG_VE8313 1
  38. #ifndef CONFIG_SYS_TEXT_BASE
  39. #define CONFIG_SYS_TEXT_BASE 0xfe000000
  40. #endif
  41. #define CONFIG_PCI 1
  42. #define CONFIG_FSL_ELBC 1
  43. #define CONFIG_BOARD_EARLY_INIT_F 1
  44. /*
  45. * On-board devices
  46. *
  47. */
  48. #define CONFIG_83XX_CLKIN 32000000 /* in Hz */
  49. #define CONFIG_SYS_CLK_FREQ CONFIG_83XX_CLKIN
  50. #define CONFIG_SYS_IMMR 0xE0000000
  51. #define CONFIG_SYS_MEMTEST_START 0x00001000
  52. #define CONFIG_SYS_MEMTEST_END 0x07000000
  53. #define CONFIG_SYS_ACR_PIPE_DEP 3 /* Arbiter pipeline depth */
  54. #define CONFIG_SYS_ACR_RPTCNT 3 /* Arbiter repeat count */
  55. /*
  56. * Device configurations
  57. */
  58. /*
  59. * DDR Setup
  60. */
  61. #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory*/
  62. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
  63. #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
  64. /*
  65. * Manually set up DDR parameters, as this board does not
  66. * have the SPD connected to I2C.
  67. */
  68. #define CONFIG_SYS_DDR_SIZE 128 /* MB */
  69. #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
  70. | CSCONFIG_AP \
  71. | CSCONFIG_ODT_RD_NEVER \
  72. | CSCONFIG_ODT_WR_ALL \
  73. | CSCONFIG_ROW_BIT_13 \
  74. | CSCONFIG_COL_BIT_10)
  75. /* 0x80840102 */
  76. #define CONFIG_SYS_DDR_TIMING_3 0x00000000
  77. #define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
  78. | (0 << TIMING_CFG0_WRT_SHIFT) \
  79. | (3 << TIMING_CFG0_RRT_SHIFT) \
  80. | (2 << TIMING_CFG0_WWT_SHIFT) \
  81. | (7 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
  82. | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
  83. | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
  84. | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
  85. /* 0x0e720802 */
  86. #define CONFIG_SYS_DDR_TIMING_1 ((2 << TIMING_CFG1_PRETOACT_SHIFT) \
  87. | (6 << TIMING_CFG1_ACTTOPRE_SHIFT) \
  88. | (2 << TIMING_CFG1_ACTTORW_SHIFT) \
  89. | (5 << TIMING_CFG1_CASLAT_SHIFT) \
  90. | (6 << TIMING_CFG1_REFREC_SHIFT) \
  91. | (2 << TIMING_CFG1_WRREC_SHIFT) \
  92. | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
  93. | (2 << TIMING_CFG1_WRTORD_SHIFT))
  94. /* 0x26256222 */
  95. #define CONFIG_SYS_DDR_TIMING_2 ((0 << TIMING_CFG2_ADD_LAT_SHIFT) \
  96. | (5 << TIMING_CFG2_CPO_SHIFT) \
  97. | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
  98. | (1 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
  99. | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
  100. | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
  101. | (7 << TIMING_CFG2_FOUR_ACT_SHIFT))
  102. /* 0x029028c7 */
  103. #define CONFIG_SYS_DDR_INTERVAL ((0x320 << SDRAM_INTERVAL_REFINT_SHIFT) \
  104. | (0x2000 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
  105. /* 0x03202000 */
  106. #define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
  107. | SDRAM_CFG_SDRAM_TYPE_DDR2 \
  108. | SDRAM_CFG_DBW_32)
  109. /* 0x43080000 */
  110. #define CONFIG_SYS_SDRAM_CFG2 0x00401000
  111. #define CONFIG_SYS_DDR_MODE ((0x4440 << SDRAM_MODE_ESD_SHIFT) \
  112. | (0x0232 << SDRAM_MODE_SD_SHIFT))
  113. /* 0x44400232 */
  114. #define CONFIG_SYS_DDR_MODE_2 0x8000C000
  115. #define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
  116. /*0x02000000*/
  117. #define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
  118. | DDRCDR_PZ_NOMZ \
  119. | DDRCDR_NZ_NOMZ \
  120. | DDRCDR_M_ODR)
  121. /* 0x73000002 */
  122. /*
  123. * FLASH on the Local Bus
  124. */
  125. #define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
  126. #define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
  127. #define CONFIG_SYS_FLASH_BASE 0xFE000000
  128. #define CONFIG_SYS_FLASH_SIZE 32 /* size in MB */
  129. #define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */
  130. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE /* buffer up multiple bytes */
  131. #define CONFIG_SYS_NOR_BR_PRELIM (CONFIG_SYS_FLASH_BASE \
  132. | BR_PS_16 /* 16 bit */ \
  133. | BR_MS_GPCM /* MSEL = GPCM */ \
  134. | BR_V) /* valid */
  135. #define CONFIG_SYS_NOR_OR_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \
  136. | OR_GPCM_CSNT \
  137. | OR_GPCM_ACS_DIV4 \
  138. | OR_GPCM_SCY_5 \
  139. | OR_GPCM_TRLX_SET \
  140. | OR_GPCM_EAD)
  141. /* 0xfe000c55 */
  142. #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE
  143. #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_32MB)
  144. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
  145. #define CONFIG_SYS_MAX_FLASH_SECT 256 /* sectors per dev */
  146. #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
  147. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
  148. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
  149. #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
  150. #define CONFIG_SYS_RAMBOOT
  151. #endif
  152. #define CONFIG_SYS_INIT_RAM_LOCK 1
  153. #define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM address */
  154. #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
  155. #define CONFIG_SYS_GBL_DATA_OFFSET \
  156. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  157. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  158. /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
  159. #define CONFIG_SYS_MONITOR_LEN (384 * 1024)
  160. #define CONFIG_SYS_MALLOC_LEN (512 * 1024)
  161. /*
  162. * Local Bus LCRR and LBCR regs
  163. */
  164. #define CONFIG_SYS_LCRR_EADC LCRR_EADC_3
  165. #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_2
  166. #define CONFIG_SYS_LBC_LBCR 0x00040000
  167. #define CONFIG_SYS_LBC_MRTPR 0x20000000
  168. /*
  169. * NAND settings
  170. */
  171. #define CONFIG_SYS_NAND_BASE 0x61000000
  172. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  173. #define CONFIG_MTD_NAND_VERIFY_WRITE
  174. #define CONFIG_CMD_NAND 1
  175. #define CONFIG_NAND_FSL_ELBC 1
  176. #define CONFIG_SYS_NAND_BLOCK_SIZE 16384
  177. #define CONFIG_SYS_NAND_BR_PRELIM (CONFIG_SYS_NAND_BASE \
  178. | BR_PS_8 \
  179. | BR_DECC_CHK_GEN \
  180. | BR_MS_FCM \
  181. | BR_V) /* valid */
  182. /* 0x61000c21 */
  183. #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_32KB \
  184. | OR_FCM_BCTLD \
  185. | OR_FCM_CHT \
  186. | OR_FCM_SCY_2 \
  187. | OR_FCM_RST \
  188. | OR_FCM_TRLX)
  189. /* 0xffff90ac */
  190. #define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NOR_BR_PRELIM
  191. #define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NOR_OR_PRELIM
  192. #define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM
  193. #define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM
  194. #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_NAND_BASE
  195. #define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_32KB)
  196. #define CONFIG_SYS_NAND_LBLAWBAR_PRELIM CONFIG_SYS_LBLAWBAR1_PRELIM
  197. #define CONFIG_SYS_NAND_LBLAWAR_PRELIM CONFIG_SYS_LBLAWAR1_PRELIM
  198. /* CS2 NvRAM */
  199. #define CONFIG_SYS_BR2_PRELIM (0x60000000 \
  200. | BR_PS_8 \
  201. | BR_V)
  202. /* 0x60000801 */
  203. #define CONFIG_SYS_OR2_PRELIM (OR_AM_128KB \
  204. | OR_GPCM_CSNT \
  205. | OR_GPCM_XACS \
  206. | OR_GPCM_SCY_3 \
  207. | OR_GPCM_TRLX_SET \
  208. | OR_GPCM_EHTR_SET \
  209. | OR_GPCM_EAD)
  210. /* 0xfffe0937 */
  211. /* local bus read write buffer mapping SRAM@0x64000000 */
  212. #define CONFIG_SYS_BR3_PRELIM (0x62000000 \
  213. | BR_PS_16 \
  214. | BR_V)
  215. /* 0x62001001 */
  216. #define CONFIG_SYS_OR3_PRELIM (OR_AM_32MB \
  217. | OR_GPCM_CSNT \
  218. | OR_GPCM_XACS \
  219. | OR_GPCM_SCY_15 \
  220. | OR_GPCM_TRLX_SET \
  221. | OR_GPCM_EHTR_SET \
  222. | OR_GPCM_EAD)
  223. /* 0xfe0009f7 */
  224. /* pass open firmware flat tree */
  225. #define CONFIG_OF_LIBFDT 1
  226. #define CONFIG_OF_BOARD_SETUP 1
  227. #define CONFIG_OF_STDOUT_VIA_ALIAS 1
  228. /*
  229. * Serial Port
  230. */
  231. #define CONFIG_CONS_INDEX 1
  232. #define CONFIG_SYS_NS16550
  233. #define CONFIG_SYS_NS16550_SERIAL
  234. #define CONFIG_SYS_NS16550_REG_SIZE 1
  235. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  236. #define CONFIG_SYS_BAUDRATE_TABLE \
  237. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
  238. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
  239. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
  240. /* Use the HUSH parser */
  241. #define CONFIG_SYS_HUSH_PARSER
  242. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  243. #if defined(CONFIG_PCI)
  244. /*
  245. * General PCI
  246. * Addresses are mapped 1-1.
  247. */
  248. #define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
  249. #define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
  250. #define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
  251. #define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
  252. #define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
  253. #define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
  254. #define CONFIG_SYS_PCI1_IO_BASE 0x00000000
  255. #define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
  256. #define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
  257. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  258. #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */
  259. #endif
  260. /*
  261. * TSEC
  262. */
  263. #define CONFIG_TSEC_ENET /* TSEC ethernet support */
  264. #define CONFIG_TSEC1
  265. #ifdef CONFIG_TSEC1
  266. #define CONFIG_HAS_ETH0
  267. #define CONFIG_TSEC1_NAME "TSEC1"
  268. #define CONFIG_SYS_TSEC1_OFFSET 0x24000
  269. #define TSEC1_PHY_ADDR 0x01
  270. #define TSEC1_FLAGS 0
  271. #define TSEC1_PHYIDX 0
  272. #endif
  273. /* Options are: TSEC[0-1] */
  274. #define CONFIG_ETHPRIME "TSEC1"
  275. /*
  276. * Environment
  277. */
  278. #define CONFIG_ENV_IS_IN_FLASH 1
  279. #define CONFIG_ENV_ADDR \
  280. (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
  281. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K(one sector) for env */
  282. #define CONFIG_ENV_SIZE 0x4000
  283. /* Address and size of Redundant Environment Sector */
  284. #define CONFIG_ENV_OFFSET_REDUND \
  285. (CONFIG_ENV_OFFSET + CONFIG_ENV_SECT_SIZE)
  286. #define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
  287. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  288. #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
  289. /*
  290. * BOOTP options
  291. */
  292. #define CONFIG_BOOTP_BOOTFILESIZE
  293. #define CONFIG_BOOTP_BOOTPATH
  294. #define CONFIG_BOOTP_GATEWAY
  295. #define CONFIG_BOOTP_HOSTNAME
  296. /*
  297. * Command line configuration.
  298. */
  299. #include <config_cmd_default.h>
  300. #define CONFIG_CMD_DHCP
  301. #define CONFIG_CMD_MII
  302. #define CONFIG_CMD_PING
  303. #define CONFIG_CMD_PCI
  304. #define CONFIG_CMDLINE_EDITING 1
  305. #define CONFIG_AUTO_COMPLETE /* add autocompletion support */
  306. /*
  307. * Miscellaneous configurable options
  308. */
  309. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  310. #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
  311. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  312. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  313. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  314. #define CONFIG_SYS_MAXARGS 16 /* max number of cmd args */
  315. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot arg Buffer size */
  316. #define CONFIG_SYS_HZ 1000 /* 1ms ticks */
  317. /*
  318. * For booting Linux, the board info and command line data
  319. * have to be in the first 256 MB of memory, since this is
  320. * the maximum mapped by the Linux kernel during initialization.
  321. */
  322. /* Initial Memory map for Linux*/
  323. #define CONFIG_SYS_BOOTMAPSZ (256 << 20)
  324. /* 0x64050000 */
  325. #define CONFIG_SYS_HRCW_LOW (\
  326. 0x20000000 /* reserved, must be set */ |\
  327. HRCWL_DDRCM |\
  328. HRCWL_CSB_TO_CLKIN_4X1 | \
  329. HRCWL_CORE_TO_CSB_2_5X1)
  330. /* 0xa0600004 */
  331. #define CONFIG_SYS_HRCW_HIGH (HRCWH_PCI_HOST | \
  332. HRCWH_PCI_ARBITER_ENABLE | \
  333. HRCWH_CORE_ENABLE | \
  334. HRCWH_FROM_0X00000100 | \
  335. HRCWH_BOOTSEQ_DISABLE |\
  336. HRCWH_SW_WATCHDOG_DISABLE |\
  337. HRCWH_ROM_LOC_LOCAL_16BIT | \
  338. HRCWH_TSEC1M_IN_MII | \
  339. HRCWH_BIG_ENDIAN | \
  340. HRCWH_LALE_EARLY)
  341. /* System IO Config */
  342. #define CONFIG_SYS_SICRH (0x01000000 | \
  343. SICRH_ETSEC2_B | \
  344. SICRH_ETSEC2_C | \
  345. SICRH_ETSEC2_D | \
  346. SICRH_ETSEC2_E | \
  347. SICRH_ETSEC2_F | \
  348. SICRH_ETSEC2_G | \
  349. SICRH_TSOBI1 | \
  350. SICRH_TSOBI2)
  351. /* 0x010fff03 */
  352. #define CONFIG_SYS_SICRL (SICRL_LBC | \
  353. SICRL_SPI_A | \
  354. SICRL_SPI_B | \
  355. SICRL_SPI_C | \
  356. SICRL_SPI_D | \
  357. SICRL_ETSEC2_A)
  358. /* 0x33fc0003) */
  359. #define CONFIG_SYS_HID0_INIT 0x000000000
  360. #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
  361. HID0_ENABLE_INSTRUCTION_CACHE)
  362. #define CONFIG_SYS_HID2 HID2_HBE
  363. #define CONFIG_HIGH_BATS 1 /* High BATs supported */
  364. /* DDR @ 0x00000000 */
  365. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_RW)
  366. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \
  367. | BATU_BL_256M \
  368. | BATU_VS \
  369. | BATU_VP)
  370. #if defined(CONFIG_PCI)
  371. /* PCI @ 0x80000000 */
  372. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_PCI1_MEM_BASE | BATL_PP_RW)
  373. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_PCI1_MEM_BASE \
  374. | BATU_BL_256M \
  375. | BATU_VS \
  376. | BATU_VP)
  377. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_PCI1_MMIO_BASE \
  378. | BATL_PP_RW \
  379. | BATL_CACHEINHIBIT \
  380. | BATL_GUARDEDSTORAGE)
  381. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_PCI1_MMIO_BASE \
  382. | BATU_BL_256M \
  383. | BATU_VS \
  384. | BATU_VP)
  385. #else
  386. #define CONFIG_SYS_IBAT1L (0)
  387. #define CONFIG_SYS_IBAT1U (0)
  388. #define CONFIG_SYS_IBAT2L (0)
  389. #define CONFIG_SYS_IBAT2U (0)
  390. #endif
  391. /* PCI2 not supported on 8313 */
  392. #define CONFIG_SYS_IBAT3L (0)
  393. #define CONFIG_SYS_IBAT3U (0)
  394. #define CONFIG_SYS_IBAT4L (0)
  395. #define CONFIG_SYS_IBAT4U (0)
  396. /* IMMRBAR @ 0xE0000000, PCI IO @ 0xE2000000 & BCSR @ 0xE2400000 */
  397. #define CONFIG_SYS_IBAT5L (CONFIG_SYS_IMMR \
  398. | BATL_PP_RW \
  399. | BATL_CACHEINHIBIT \
  400. | BATL_GUARDEDSTORAGE)
  401. #define CONFIG_SYS_IBAT5U (CONFIG_SYS_IMMR \
  402. | BATU_BL_256M \
  403. | BATU_VS \
  404. | BATU_VP)
  405. /* stack in DCACHE 0xFDF00000 & FLASH @ 0xFE000000 */
  406. #define CONFIG_SYS_IBAT6L (0xF0000000 | BATL_PP_RW | BATL_GUARDEDSTORAGE)
  407. #define CONFIG_SYS_IBAT6U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
  408. /* FPGA, SRAM, NAND @ 0x60000000 */
  409. #define CONFIG_SYS_IBAT7L (0x60000000 | BATL_PP_RW | BATL_GUARDEDSTORAGE)
  410. #define CONFIG_SYS_IBAT7U (0x60000000 | BATU_BL_256M | BATU_VS | BATU_VP)
  411. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  412. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  413. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  414. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  415. #define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
  416. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  417. #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
  418. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  419. #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
  420. #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
  421. #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L
  422. #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
  423. #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
  424. #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
  425. #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
  426. #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
  427. #define CONFIG_NETDEV eth0
  428. #define CONFIG_HOSTNAME ve8313
  429. #define CONFIG_UBOOTPATH ve8313/u-boot.bin
  430. #define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */
  431. #define CONFIG_BAUDRATE 115200
  432. #define XMK_STR(x) #x
  433. #define MK_STR(x) XMK_STR(x)
  434. #define CONFIG_EXTRA_ENV_SETTINGS \
  435. "netdev=" MK_STR(CONFIG_NETDEV) "\0" \
  436. "ethprime=" MK_STR(CONFIG_TSEC1_NAME) "\0" \
  437. "u-boot=" MK_STR(CONFIG_UBOOTPATH) "\0" \
  438. "u-boot_addr_r=100000\0" \
  439. "load=tftp ${u-boot_addr_r} ${u-boot}\0" \
  440. "update=protect off " MK_STR(CONFIG_SYS_FLASH_BASE) " +${filesize};" \
  441. "erase " MK_STR(CONFIG_SYS_FLASH_BASE) " +${filesize};" \
  442. "cp.b ${u-boot_addr_r} " MK_STR(CONFIG_SYS_FLASH_BASE) \
  443. " ${filesize};" \
  444. "protect on " MK_STR(CONFIG_SYS_FLASH_BASE) " +${filesize}\0" \
  445. #undef MK_STR
  446. #undef XMK_STR
  447. #endif /* __CONFIG_H */