P1022DS.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. /*
  2. * Copyright 2010-2012 Freescale Semiconductor, Inc.
  3. * Authors: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
  4. * Timur Tabi <timur@freescale.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 2 of the License, or (at your option)
  9. * any later version.
  10. */
  11. #ifndef __CONFIG_H
  12. #define __CONFIG_H
  13. #include "../board/freescale/common/ics307_clk.h"
  14. #ifdef CONFIG_36BIT
  15. #define CONFIG_PHYS_64BIT
  16. #endif
  17. #ifdef CONFIG_SDCARD
  18. #define CONFIG_RAMBOOT_SDCARD
  19. #define CONFIG_SYS_RAMBOOT
  20. #define CONFIG_SYS_EXTRA_ENV_RELOC
  21. #define CONFIG_SYS_TEXT_BASE 0x11000000
  22. #define CONFIG_RESET_VECTOR_ADDRESS 0x1107fffc
  23. #endif
  24. #ifdef CONFIG_SPIFLASH
  25. #define CONFIG_RAMBOOT_SPIFLASH
  26. #define CONFIG_SYS_RAMBOOT
  27. #define CONFIG_SYS_EXTRA_ENV_RELOC
  28. #define CONFIG_SYS_TEXT_BASE 0x11000000
  29. #define CONFIG_RESET_VECTOR_ADDRESS 0x1107fffc
  30. #endif
  31. #define CONFIG_NAND_FSL_ELBC
  32. #ifdef CONFIG_NAND
  33. #define CONFIG_SPL
  34. #define CONFIG_SPL_INIT_MINIMAL
  35. #define CONFIG_SPL_SERIAL_SUPPORT
  36. #define CONFIG_SPL_NAND_SUPPORT
  37. #define CONFIG_SPL_NAND_MINIMAL
  38. #define CONFIG_SPL_FLUSH_IMAGE
  39. #define CONFIG_SPL_TARGET "u-boot-with-spl.bin"
  40. #define CONFIG_SYS_TEXT_BASE 0x00201000
  41. #define CONFIG_SPL_TEXT_BASE 0xfffff000
  42. #define CONFIG_SPL_MAX_SIZE 4096
  43. #define CONFIG_SPL_RELOC_TEXT_BASE 0x00100000
  44. #define CONFIG_SPL_RELOC_STACK 0x00100000
  45. #define CONFIG_SYS_NAND_U_BOOT_SIZE ((512 << 10) + CONFIG_SPL_MAX_SIZE)
  46. #define CONFIG_SYS_NAND_U_BOOT_DST (0x00200000 - CONFIG_SPL_MAX_SIZE)
  47. #define CONFIG_SYS_NAND_U_BOOT_START 0x00200000
  48. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0
  49. #define CONFIG_SYS_LDSCRIPT "arch/powerpc/cpu/mpc85xx/u-boot-nand.lds"
  50. #endif
  51. /* High Level Configuration Options */
  52. #define CONFIG_BOOKE /* BOOKE */
  53. #define CONFIG_E500 /* BOOKE e500 family */
  54. #define CONFIG_MPC85xx /* MPC8540/60/55/41/48 */
  55. #define CONFIG_P1022
  56. #define CONFIG_P1022DS
  57. #define CONFIG_MP /* support multiple processors */
  58. #ifndef CONFIG_SYS_TEXT_BASE
  59. #define CONFIG_SYS_TEXT_BASE 0xeff80000
  60. #endif
  61. #ifndef CONFIG_RESET_VECTOR_ADDRESS
  62. #define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc
  63. #endif
  64. #define CONFIG_FSL_ELBC /* Has Enhanced localbus controller */
  65. #define CONFIG_PCI /* Enable PCI/PCIE */
  66. #define CONFIG_PCIE1 /* PCIE controler 1 (slot 1) */
  67. #define CONFIG_PCIE2 /* PCIE controler 2 (slot 2) */
  68. #define CONFIG_PCIE3 /* PCIE controler 3 (ULI bridge) */
  69. #define CONFIG_FSL_PCI_INIT /* Use common FSL init code */
  70. #define CONFIG_FSL_PCIE_RESET /* need PCIe reset errata */
  71. #define CONFIG_SYS_PCI_64BIT /* enable 64-bit PCI resources */
  72. #define CONFIG_ENABLE_36BIT_PHYS
  73. #ifdef CONFIG_PHYS_64BIT
  74. #define CONFIG_ADDR_MAP
  75. #define CONFIG_SYS_NUM_ADDR_MAP 16 /* number of TLB1 entries */
  76. #endif
  77. #define CONFIG_FSL_LAW /* Use common FSL init code */
  78. #define CONFIG_SYS_CLK_FREQ get_board_sys_clk()
  79. #define CONFIG_DDR_CLK_FREQ get_board_ddr_clk()
  80. #define CONFIG_ICS307_REFCLK_HZ 33333000 /* ICS307 clock chip ref freq */
  81. /*
  82. * These can be toggled for performance analysis, otherwise use default.
  83. */
  84. #define CONFIG_L2_CACHE
  85. #define CONFIG_BTB
  86. #define CONFIG_SYS_MEMTEST_START 0x00000000
  87. #define CONFIG_SYS_MEMTEST_END 0x7fffffff
  88. #define CONFIG_SYS_CCSRBAR 0xffe00000
  89. #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR
  90. /* IN case of NAND bootloader relocate CCSRBAR in RAMboot code not in the 4k
  91. SPL code*/
  92. #ifdef CONFIG_SPL_BUILD
  93. #define CONFIG_SYS_CCSR_DO_NOT_RELOCATE
  94. #endif
  95. /* DDR Setup */
  96. #define CONFIG_DDR_SPD
  97. #define CONFIG_VERY_BIG_RAM
  98. #define CONFIG_FSL_DDR3
  99. #ifdef CONFIG_DDR_ECC
  100. #define CONFIG_ECC_INIT_VIA_DDRCONTROLLER
  101. #define CONFIG_MEM_INIT_VALUE 0xdeadbeef
  102. #endif
  103. #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000
  104. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
  105. #define CONFIG_NUM_DDR_CONTROLLERS 1
  106. #define CONFIG_DIMM_SLOTS_PER_CTLR 1
  107. #define CONFIG_CHIP_SELECTS_PER_CTRL (2 * CONFIG_DIMM_SLOTS_PER_CTLR)
  108. /* I2C addresses of SPD EEPROMs */
  109. #define CONFIG_SYS_SPD_BUS_NUM 1
  110. #define SPD_EEPROM_ADDRESS 0x51 /* CTLR 0 DIMM 0 */
  111. /* These are used when DDR doesn't use SPD. */
  112. #define CONFIG_SYS_SDRAM_SIZE 2048
  113. #define CONFIG_SYS_SDRAM_SIZE_LAW LAW_SIZE_2G
  114. #define CONFIG_SYS_DDR_CS0_BNDS 0x0000003F
  115. #define CONFIG_SYS_DDR_CS0_CONFIG 0x80014202
  116. #define CONFIG_SYS_DDR_CS1_BNDS 0x0040007F
  117. #define CONFIG_SYS_DDR_CS1_CONFIG 0x80014202
  118. #define CONFIG_SYS_DDR_TIMING_3 0x00010000
  119. #define CONFIG_SYS_DDR_TIMING_0 0x40110104
  120. #define CONFIG_SYS_DDR_TIMING_1 0x5c5bd746
  121. #define CONFIG_SYS_DDR_TIMING_2 0x0fa8d4ca
  122. #define CONFIG_SYS_DDR_MODE_1 0x00441221
  123. #define CONFIG_SYS_DDR_MODE_2 0x00000000
  124. #define CONFIG_SYS_DDR_INTERVAL 0x0a280100
  125. #define CONFIG_SYS_DDR_DATA_INIT 0xdeadbeef
  126. #define CONFIG_SYS_DDR_CLK_CTRL 0x02800000
  127. #define CONFIG_SYS_DDR_CONTROL 0xc7000008
  128. #define CONFIG_SYS_DDR_CONTROL_2 0x24401041
  129. #define CONFIG_SYS_DDR_TIMING_4 0x00220001
  130. #define CONFIG_SYS_DDR_TIMING_5 0x02401400
  131. #define CONFIG_SYS_DDR_ZQ_CONTROL 0x89080600
  132. #define CONFIG_SYS_DDR_WRLVL_CONTROL 0x8675f608
  133. /*
  134. * Memory map
  135. *
  136. * 0x0000_0000 0x7fff_ffff DDR 2G Cacheable
  137. * 0x8000_0000 0xdfff_ffff PCI Express Mem 1.5G non-cacheable
  138. * 0xffc0_0000 0xffc2_ffff PCI IO range 192K non-cacheable
  139. *
  140. * Localbus cacheable (TBD)
  141. * 0xXXXX_XXXX 0xXXXX_XXXX SRAM YZ M Cacheable
  142. *
  143. * Localbus non-cacheable
  144. * 0xe000_0000 0xe80f_ffff Promjet/free 128M non-cacheable
  145. * 0xe800_0000 0xefff_ffff FLASH 128M non-cacheable
  146. * 0xff80_0000 0xff80_7fff NAND 32K non-cacheable
  147. * 0xffdf_0000 0xffdf_7fff PIXIS 32K non-cacheable TLB0
  148. * 0xffd0_0000 0xffd0_3fff L1 for stack 16K Cacheable TLB0
  149. * 0xffe0_0000 0xffef_ffff CCSR 1M non-cacheable
  150. */
  151. /*
  152. * Local Bus Definitions
  153. */
  154. #define CONFIG_SYS_FLASH_BASE 0xe8000000 /* start of FLASH 128M */
  155. #ifdef CONFIG_PHYS_64BIT
  156. #define CONFIG_SYS_FLASH_BASE_PHYS 0xfe8000000ull
  157. #else
  158. #define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE
  159. #endif
  160. #define CONFIG_FLASH_BR_PRELIM \
  161. (BR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | BR_PS_16 | BR_V)
  162. #define CONFIG_FLASH_OR_PRELIM (OR_AM_128MB | 0xff7)
  163. #ifdef CONFIG_NAND
  164. #define CONFIG_SYS_BR1_PRELIM CONFIG_FLASH_BR_PRELIM /* NOR Base Address */
  165. #define CONFIG_SYS_OR1_PRELIM CONFIG_FLASH_OR_PRELIM /* NOR Options */
  166. #else
  167. #define CONFIG_SYS_BR0_PRELIM CONFIG_FLASH_BR_PRELIM /* NOR Base Address */
  168. #define CONFIG_SYS_OR0_PRELIM CONFIG_FLASH_OR_PRELIM /* NOR Options */
  169. #endif
  170. #define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS}
  171. #define CONFIG_SYS_FLASH_QUIET_TEST
  172. #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */
  173. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  174. #define CONFIG_SYS_MAX_FLASH_SECT 1024
  175. #ifndef CONFIG_SYS_MONITOR_BASE
  176. #ifdef CONFIG_SPL_BUILD
  177. #define CONFIG_SYS_MONITOR_BASE CONFIG_SPL_TEXT_BASE
  178. #else
  179. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
  180. #endif
  181. #endif
  182. #define CONFIG_FLASH_CFI_DRIVER
  183. #define CONFIG_SYS_FLASH_CFI
  184. #define CONFIG_SYS_FLASH_EMPTY_INFO
  185. /* Nand Flash */
  186. #if defined(CONFIG_NAND_FSL_ELBC)
  187. #define CONFIG_SYS_NAND_BASE 0xff800000
  188. #ifdef CONFIG_PHYS_64BIT
  189. #define CONFIG_SYS_NAND_BASE_PHYS 0xfff800000ull
  190. #else
  191. #define CONFIG_SYS_NAND_BASE_PHYS CONFIG_SYS_NAND_BASE
  192. #endif
  193. #define CONFIG_SYS_NAND_BASE_LIST { CONFIG_SYS_NAND_BASE, }
  194. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  195. #define CONFIG_MTD_NAND_VERIFY_WRITE
  196. #define CONFIG_CMD_NAND 1
  197. #define CONFIG_SYS_NAND_BLOCK_SIZE (256 * 1024)
  198. #define CONFIG_ELBC_NAND_SPL_STATIC_PGSIZE
  199. /* NAND flash config */
  200. #define CONFIG_SYS_NAND_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \
  201. | (2<<BR_DECC_SHIFT) /* Use HW ECC */ \
  202. | BR_PS_8 /* Port Size = 8 bit */ \
  203. | BR_MS_FCM /* MSEL = FCM */ \
  204. | BR_V) /* valid */
  205. #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_32KB /* length 256K */ \
  206. | OR_FCM_PGS /* Large Page*/ \
  207. | OR_FCM_CSCT \
  208. | OR_FCM_CST \
  209. | OR_FCM_CHT \
  210. | OR_FCM_SCY_1 \
  211. | OR_FCM_TRLX \
  212. | OR_FCM_EHTR)
  213. #ifdef CONFIG_NAND
  214. #define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NAND_BR_PRELIM /* NAND Base Address */
  215. #define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NAND_OR_PRELIM /* NAND Options */
  216. #else
  217. #define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM /* NAND Base Address */
  218. #define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM /* NAND Options */
  219. #endif
  220. #endif /* CONFIG_NAND_FSL_ELBC */
  221. #define CONFIG_BOARD_EARLY_INIT_F
  222. #define CONFIG_BOARD_EARLY_INIT_R
  223. #define CONFIG_MISC_INIT_R
  224. #define CONFIG_HWCONFIG
  225. #define CONFIG_FSL_NGPIXIS
  226. #define PIXIS_BASE 0xffdf0000 /* PIXIS registers */
  227. #ifdef CONFIG_PHYS_64BIT
  228. #define PIXIS_BASE_PHYS 0xfffdf0000ull
  229. #else
  230. #define PIXIS_BASE_PHYS PIXIS_BASE
  231. #endif
  232. #define CONFIG_SYS_BR2_PRELIM (BR_PHYS_ADDR(PIXIS_BASE_PHYS) | BR_PS_8 | BR_V)
  233. #define CONFIG_SYS_OR2_PRELIM (OR_AM_32KB | 0x6ff7)
  234. #define PIXIS_LBMAP_SWITCH 7
  235. #define PIXIS_LBMAP_MASK 0xF0
  236. #define PIXIS_LBMAP_ALTBANK 0x20
  237. #define PIXIS_SPD 0x07
  238. #define PIXIS_SPD_SYSCLK_MASK 0x07
  239. #define PIXIS_ELBC_SPI_MASK 0xc0
  240. #define PIXIS_SPI 0x80
  241. #define CONFIG_SYS_INIT_RAM_LOCK
  242. #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* Initial L1 address */
  243. #define CONFIG_SYS_INIT_RAM_SIZE 0x00004000 /* Size of used area in RAM */
  244. #define CONFIG_SYS_GBL_DATA_OFFSET \
  245. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  246. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  247. #define CONFIG_SYS_MONITOR_LEN (512 * 1024)
  248. #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
  249. /*
  250. * Serial Port
  251. */
  252. #define CONFIG_CONS_INDEX 1
  253. #define CONFIG_SYS_NS16550
  254. #define CONFIG_SYS_NS16550_SERIAL
  255. #define CONFIG_SYS_NS16550_REG_SIZE 1
  256. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  257. #ifdef CONFIG_SPL_BUILD
  258. #define CONFIG_NS16550_MIN_FUNCTIONS
  259. #endif
  260. #define CONFIG_SYS_BAUDRATE_TABLE \
  261. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
  262. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500)
  263. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600)
  264. /* Use the HUSH parser */
  265. #define CONFIG_SYS_HUSH_PARSER
  266. /* Video */
  267. #ifdef CONFIG_FSL_DIU_FB
  268. #define CONFIG_SYS_DIU_ADDR (CONFIG_SYS_CCSRBAR + 0x10000)
  269. #define CONFIG_VIDEO
  270. #define CONFIG_CMD_BMP
  271. #define CONFIG_CFB_CONSOLE
  272. #define CONFIG_VIDEO_SW_CURSOR
  273. #define CONFIG_VGA_AS_SINGLE_DEVICE
  274. #define CONFIG_VIDEO_LOGO
  275. #define CONFIG_VIDEO_BMP_LOGO
  276. #define CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
  277. /*
  278. * With CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS, flash I/O is really slow, so
  279. * disable empty flash sector detection, which is I/O-intensive.
  280. */
  281. #undef CONFIG_SYS_FLASH_EMPTY_INFO
  282. #endif
  283. #ifndef CONFIG_FSL_DIU_FB
  284. #endif
  285. #ifdef CONFIG_ATI
  286. #define VIDEO_IO_OFFSET CONFIG_SYS_PCIE1_IO_VIRT
  287. #define CONFIG_VIDEO
  288. #define CONFIG_BIOSEMU
  289. #define CONFIG_VIDEO_SW_CURSOR
  290. #define CONFIG_ATI_RADEON_FB
  291. #define CONFIG_VIDEO_LOGO
  292. #define CONFIG_SYS_ISA_IO_BASE_ADDRESS VIDEO_IO_OFFSET
  293. #define CONFIG_CFB_CONSOLE
  294. #define CONFIG_VGA_AS_SINGLE_DEVICE
  295. #endif
  296. /*
  297. * Pass open firmware flat tree
  298. */
  299. #define CONFIG_OF_LIBFDT
  300. #define CONFIG_OF_BOARD_SETUP
  301. #define CONFIG_OF_STDOUT_VIA_ALIAS
  302. /* new uImage format support */
  303. #define CONFIG_FIT
  304. #define CONFIG_FIT_VERBOSE
  305. /* I2C */
  306. #define CONFIG_FSL_I2C
  307. #define CONFIG_HARD_I2C
  308. #define CONFIG_I2C_MULTI_BUS
  309. #define CONFIG_SYS_I2C_SPEED 400000
  310. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x57
  311. #define CONFIG_SYS_I2C_SLAVE 0x7F
  312. #define CONFIG_SYS_I2C_NOPROBES {{0, 0x29}}
  313. #define CONFIG_SYS_I2C_OFFSET 0x3000
  314. #define CONFIG_SYS_I2C2_OFFSET 0x3100
  315. /*
  316. * I2C2 EEPROM
  317. */
  318. #define CONFIG_ID_EEPROM
  319. #define CONFIG_SYS_I2C_EEPROM_NXID
  320. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x57
  321. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
  322. #define CONFIG_SYS_EEPROM_BUS_NUM 1
  323. /*
  324. * eSPI - Enhanced SPI
  325. */
  326. #define CONFIG_SPI_FLASH
  327. #define CONFIG_SPI_FLASH_SPANSION
  328. #define CONFIG_HARD_SPI
  329. #define CONFIG_FSL_ESPI
  330. #define CONFIG_CMD_SF
  331. #define CONFIG_SF_DEFAULT_SPEED 10000000
  332. #define CONFIG_SF_DEFAULT_MODE 0
  333. /*
  334. * General PCI
  335. * Memory space is mapped 1-1, but I/O space must start from 0.
  336. */
  337. /* controller 1, Slot 2, tgtid 1, Base address a000 */
  338. #define CONFIG_SYS_PCIE1_MEM_VIRT 0xc0000000
  339. #ifdef CONFIG_PHYS_64BIT
  340. #define CONFIG_SYS_PCIE1_MEM_BUS 0xe0000000
  341. #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc40000000ull
  342. #else
  343. #define CONFIG_SYS_PCIE1_MEM_BUS 0xc0000000
  344. #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc0000000
  345. #endif
  346. #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */
  347. #define CONFIG_SYS_PCIE1_IO_VIRT 0xffc20000
  348. #define CONFIG_SYS_PCIE1_IO_BUS 0x00000000
  349. #ifdef CONFIG_PHYS_64BIT
  350. #define CONFIG_SYS_PCIE1_IO_PHYS 0xfffc20000ull
  351. #else
  352. #define CONFIG_SYS_PCIE1_IO_PHYS 0xffc20000
  353. #endif
  354. #define CONFIG_SYS_PCIE1_IO_SIZE 0x00010000 /* 64k */
  355. /* controller 2, direct to uli, tgtid 2, Base address 9000 */
  356. #define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000
  357. #ifdef CONFIG_PHYS_64BIT
  358. #define CONFIG_SYS_PCIE2_MEM_BUS 0xe0000000
  359. #define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull
  360. #else
  361. #define CONFIG_SYS_PCIE2_MEM_BUS 0xa0000000
  362. #define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000
  363. #endif
  364. #define CONFIG_SYS_PCIE2_MEM_SIZE 0x20000000 /* 512M */
  365. #define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000
  366. #define CONFIG_SYS_PCIE2_IO_BUS 0x00000000
  367. #ifdef CONFIG_PHYS_64BIT
  368. #define CONFIG_SYS_PCIE2_IO_PHYS 0xfffc10000ull
  369. #else
  370. #define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000
  371. #endif
  372. #define CONFIG_SYS_PCIE2_IO_SIZE 0x00010000 /* 64k */
  373. /* controller 3, Slot 1, tgtid 3, Base address b000 */
  374. #define CONFIG_SYS_PCIE3_MEM_VIRT 0x80000000
  375. #ifdef CONFIG_PHYS_64BIT
  376. #define CONFIG_SYS_PCIE3_MEM_BUS 0xe0000000
  377. #define CONFIG_SYS_PCIE3_MEM_PHYS 0xc00000000ull
  378. #else
  379. #define CONFIG_SYS_PCIE3_MEM_BUS 0x80000000
  380. #define CONFIG_SYS_PCIE3_MEM_PHYS 0x80000000
  381. #endif
  382. #define CONFIG_SYS_PCIE3_MEM_SIZE 0x20000000 /* 512M */
  383. #define CONFIG_SYS_PCIE3_IO_VIRT 0xffc00000
  384. #define CONFIG_SYS_PCIE3_IO_BUS 0x00000000
  385. #ifdef CONFIG_PHYS_64BIT
  386. #define CONFIG_SYS_PCIE3_IO_PHYS 0xfffc00000ull
  387. #else
  388. #define CONFIG_SYS_PCIE3_IO_PHYS 0xffc00000
  389. #endif
  390. #define CONFIG_SYS_PCIE3_IO_SIZE 0x00010000 /* 64k */
  391. #ifdef CONFIG_PCI
  392. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  393. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  394. #define CONFIG_E1000 /* Define e1000 pci Ethernet card */
  395. #endif
  396. /* SATA */
  397. #define CONFIG_LIBATA
  398. #define CONFIG_FSL_SATA
  399. #define CONFIG_FSL_SATA_V2
  400. #define CONFIG_SYS_SATA_MAX_DEVICE 2
  401. #define CONFIG_SATA1
  402. #define CONFIG_SYS_SATA1 CONFIG_SYS_MPC85xx_SATA1_ADDR
  403. #define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA
  404. #define CONFIG_SATA2
  405. #define CONFIG_SYS_SATA2 CONFIG_SYS_MPC85xx_SATA2_ADDR
  406. #define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA
  407. #ifdef CONFIG_FSL_SATA
  408. #define CONFIG_LBA48
  409. #define CONFIG_CMD_SATA
  410. #define CONFIG_DOS_PARTITION
  411. #define CONFIG_CMD_EXT2
  412. #endif
  413. #define CONFIG_MMC
  414. #ifdef CONFIG_MMC
  415. #define CONFIG_CMD_MMC
  416. #define CONFIG_FSL_ESDHC
  417. #define CONFIG_GENERIC_MMC
  418. #define CONFIG_SYS_FSL_ESDHC_ADDR CONFIG_SYS_MPC85xx_ESDHC_ADDR
  419. #endif
  420. #if defined(CONFIG_MMC) || defined(CONFIG_USB_EHCI)
  421. #define CONFIG_CMD_EXT2
  422. #define CONFIG_CMD_FAT
  423. #define CONFIG_DOS_PARTITION
  424. #endif
  425. #define CONFIG_TSEC_ENET
  426. #ifdef CONFIG_TSEC_ENET
  427. #define CONFIG_TSECV2
  428. #define CONFIG_MII /* MII PHY management */
  429. #define CONFIG_TSEC1 1
  430. #define CONFIG_TSEC1_NAME "eTSEC1"
  431. #define CONFIG_TSEC2 1
  432. #define CONFIG_TSEC2_NAME "eTSEC2"
  433. #define TSEC1_PHY_ADDR 1
  434. #define TSEC2_PHY_ADDR 2
  435. #define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  436. #define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  437. #define TSEC1_PHYIDX 0
  438. #define TSEC2_PHYIDX 0
  439. #define CONFIG_ETHPRIME "eTSEC1"
  440. #define CONFIG_PHY_GIGE /* Include GbE speed/duplex detection */
  441. #endif
  442. /*
  443. * Environment
  444. */
  445. #ifdef CONFIG_RAMBOOT_SPIFLASH
  446. #define CONFIG_ENV_IS_IN_SPI_FLASH
  447. #define CONFIG_ENV_SPI_BUS 0
  448. #define CONFIG_ENV_SPI_CS 0
  449. #define CONFIG_ENV_SPI_MAX_HZ 10000000
  450. #define CONFIG_ENV_SPI_MODE 0
  451. #define CONFIG_ENV_SIZE 0x2000 /* 8KB */
  452. #define CONFIG_ENV_OFFSET 0x100000 /* 1MB */
  453. #define CONFIG_ENV_SECT_SIZE 0x10000
  454. #elif defined(CONFIG_RAMBOOT_SDCARD)
  455. #define CONFIG_ENV_IS_IN_MMC
  456. #define CONFIG_ENV_SIZE 0x2000
  457. #define CONFIG_SYS_MMC_ENV_DEV 0
  458. #elif defined(CONFIG_NAND)
  459. #define CONFIG_ENV_IS_IN_NAND
  460. #define CONFIG_ENV_SIZE CONFIG_SYS_NAND_BLOCK_SIZE
  461. #define CONFIG_ENV_OFFSET ((512 * 1024) + CONFIG_SYS_NAND_BLOCK_SIZE)
  462. #define CONFIG_ENV_RANGE (3 * CONFIG_ENV_SIZE)
  463. #elif defined(CONFIG_SYS_RAMBOOT)
  464. #define CONFIG_ENV_IS_NOWHERE /* Store ENV in memory only */
  465. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
  466. #define CONFIG_ENV_SIZE 0x2000
  467. #else
  468. #define CONFIG_ENV_IS_IN_FLASH
  469. #if CONFIG_SYS_MONITOR_BASE > 0xfff80000
  470. #define CONFIG_ENV_ADDR 0xfff80000
  471. #else
  472. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE)
  473. #endif
  474. #define CONFIG_ENV_SIZE 0x2000
  475. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K (one sector) */
  476. #endif
  477. #define CONFIG_LOADS_ECHO
  478. #define CONFIG_SYS_LOADS_BAUD_CHANGE
  479. /*
  480. * Command line configuration.
  481. */
  482. #include <config_cmd_default.h>
  483. #define CONFIG_CMD_ELF
  484. #define CONFIG_CMD_ERRATA
  485. #define CONFIG_CMD_IRQ
  486. #define CONFIG_CMD_I2C
  487. #define CONFIG_CMD_MII
  488. #define CONFIG_CMD_PING
  489. #define CONFIG_CMD_SETEXPR
  490. #define CONFIG_CMD_REGINFO
  491. #ifdef CONFIG_PCI
  492. #define CONFIG_CMD_PCI
  493. #define CONFIG_CMD_NET
  494. #endif
  495. /*
  496. * USB
  497. */
  498. #define CONFIG_HAS_FSL_DR_USB
  499. #ifdef CONFIG_HAS_FSL_DR_USB
  500. #define CONFIG_USB_EHCI
  501. #ifdef CONFIG_USB_EHCI
  502. #define CONFIG_CMD_USB
  503. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  504. #define CONFIG_USB_EHCI_FSL
  505. #define CONFIG_USB_STORAGE
  506. #define CONFIG_CMD_FAT
  507. #endif
  508. #endif
  509. /*
  510. * Miscellaneous configurable options
  511. */
  512. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  513. #define CONFIG_CMDLINE_EDITING /* Command-line editing */
  514. #define CONFIG_AUTO_COMPLETE /* add autocompletion support */
  515. #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
  516. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  517. #ifdef CONFIG_CMD_KGDB
  518. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  519. #else
  520. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  521. #endif
  522. /* Print Buffer Size */
  523. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  524. #define CONFIG_SYS_MAXARGS 16
  525. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  526. #define CONFIG_SYS_HZ 1000
  527. /*
  528. * For booting Linux, the board info and command line data
  529. * have to be in the first 64 MB of memory, since this is
  530. * the maximum mapped by the Linux kernel during initialization.
  531. */
  532. #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory map for Linux*/
  533. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
  534. #ifdef CONFIG_CMD_KGDB
  535. #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
  536. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  537. #endif
  538. /*
  539. * Environment Configuration
  540. */
  541. #define CONFIG_HOSTNAME p1022ds
  542. #define CONFIG_ROOTPATH "/opt/nfsroot"
  543. #define CONFIG_BOOTFILE "uImage"
  544. #define CONFIG_UBOOTPATH u-boot.bin /* U-Boot image on TFTP server */
  545. #define CONFIG_LOADADDR 1000000
  546. #define CONFIG_BOOTDELAY 10 /* -1 disables auto-boot */
  547. #define CONFIG_BAUDRATE 115200
  548. #define CONFIG_EXTRA_ENV_SETTINGS \
  549. "netdev=eth0\0" \
  550. "uboot=" __stringify(CONFIG_UBOOTPATH) "\0" \
  551. "ubootaddr=" __stringify(CONFIG_SYS_TEXT_BASE) "\0" \
  552. "tftpflash=tftpboot $loadaddr $uboot && " \
  553. "protect off $ubootaddr +$filesize && " \
  554. "erase $ubootaddr +$filesize && " \
  555. "cp.b $loadaddr $ubootaddr $filesize && " \
  556. "protect on $ubootaddr +$filesize && " \
  557. "cmp.b $loadaddr $ubootaddr $filesize\0" \
  558. "consoledev=ttyS0\0" \
  559. "ramdiskaddr=2000000\0" \
  560. "ramdiskfile=rootfs.ext2.gz.uboot\0" \
  561. "fdtaddr=c00000\0" \
  562. "fdtfile=p1022ds.dtb\0" \
  563. "bdev=sda3\0" \
  564. "hwconfig=esdhc;audclk:12\0"
  565. #define CONFIG_HDBOOT \
  566. "setenv bootargs root=/dev/$bdev rw " \
  567. "console=$consoledev,$baudrate $othbootargs $videobootargs;" \
  568. "tftp $loadaddr $bootfile;" \
  569. "tftp $fdtaddr $fdtfile;" \
  570. "bootm $loadaddr - $fdtaddr"
  571. #define CONFIG_NFSBOOTCOMMAND \
  572. "setenv bootargs root=/dev/nfs rw " \
  573. "nfsroot=$serverip:$rootpath " \
  574. "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
  575. "console=$consoledev,$baudrate $othbootargs $videobootargs;" \
  576. "tftp $loadaddr $bootfile;" \
  577. "tftp $fdtaddr $fdtfile;" \
  578. "bootm $loadaddr - $fdtaddr"
  579. #define CONFIG_RAMBOOTCOMMAND \
  580. "setenv bootargs root=/dev/ram rw " \
  581. "console=$consoledev,$baudrate $othbootargs $videobootargs;" \
  582. "tftp $ramdiskaddr $ramdiskfile;" \
  583. "tftp $loadaddr $bootfile;" \
  584. "tftp $fdtaddr $fdtfile;" \
  585. "bootm $loadaddr $ramdiskaddr $fdtaddr"
  586. #define CONFIG_BOOTCOMMAND CONFIG_RAMBOOTCOMMAND
  587. #endif