P1010RDB.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. /*
  2. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. /*
  23. * P010 RDB board configuration file
  24. */
  25. #ifndef __CONFIG_H
  26. #define __CONFIG_H
  27. #ifdef CONFIG_36BIT
  28. #define CONFIG_PHYS_64BIT
  29. #endif
  30. #ifdef CONFIG_P1010RDB
  31. #define CONFIG_P1010
  32. #endif
  33. #ifdef CONFIG_SDCARD
  34. #define CONFIG_RAMBOOT_SDCARD
  35. #define CONFIG_SYS_TEXT_BASE 0x11000000
  36. #define CONFIG_RESET_VECTOR_ADDRESS 0x1107fffc
  37. #endif
  38. #ifdef CONFIG_SPIFLASH
  39. #define CONFIG_RAMBOOT_SPIFLASH
  40. #define CONFIG_SYS_TEXT_BASE 0x11000000
  41. #define CONFIG_RESET_VECTOR_ADDRESS 0x1107fffc
  42. #endif
  43. #ifndef CONFIG_SYS_TEXT_BASE
  44. #define CONFIG_SYS_TEXT_BASE 0xeff80000
  45. #endif
  46. #ifndef CONFIG_RESET_VECTOR_ADDRESS
  47. #define CONFIG_RESET_VECTOR_ADDRESS 0xeffffffc
  48. #endif
  49. #ifndef CONFIG_SYS_MONITOR_BASE
  50. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
  51. #endif
  52. /* High Level Configuration Options */
  53. #define CONFIG_BOOKE /* BOOKE */
  54. #define CONFIG_E500 /* BOOKE e500 family */
  55. #define CONFIG_MPC85xx
  56. #define CONFIG_FSL_IFC /* Enable IFC Support */
  57. #define CONFIG_SYS_HAS_SERDES /* common SERDES init code */
  58. #define CONFIG_PCI /* Enable PCI/PCIE */
  59. #if defined(CONFIG_PCI)
  60. #define CONFIG_PCIE1 /* PCIE controler 1 (slot 1) */
  61. #define CONFIG_PCIE2 /* PCIE controler 2 (slot 2) */
  62. #define CONFIG_FSL_PCI_INIT /* Use common FSL init code */
  63. #define CONFIG_FSL_PCIE_RESET /* need PCIe reset errata */
  64. #define CONFIG_SYS_PCI_64BIT /* enable 64-bit PCI resources */
  65. #define CONFIG_CMD_NET
  66. #define CONFIG_CMD_PCI
  67. #define CONFIG_E1000 /* E1000 pci Ethernet card*/
  68. /*
  69. * PCI Windows
  70. * Memory space is mapped 1-1, but I/O space must start from 0.
  71. */
  72. /* controller 1, Slot 1, tgtid 1, Base address a000 */
  73. #define CONFIG_SYS_PCIE1_NAME "mini PCIe Slot"
  74. #define CONFIG_SYS_PCIE1_MEM_VIRT 0x80000000
  75. #ifdef CONFIG_PHYS_64BIT
  76. #define CONFIG_SYS_PCIE1_MEM_BUS 0x80000000
  77. #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc00000000ull
  78. #else
  79. #define CONFIG_SYS_PCIE1_MEM_BUS 0x80000000
  80. #define CONFIG_SYS_PCIE1_MEM_PHYS 0x80000000
  81. #endif
  82. #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */
  83. #define CONFIG_SYS_PCIE1_IO_VIRT 0xffc00000
  84. #define CONFIG_SYS_PCIE1_IO_BUS 0x00000000
  85. #define CONFIG_SYS_PCIE1_IO_SIZE 0x00010000 /* 64k */
  86. #ifdef CONFIG_PHYS_64BIT
  87. #define CONFIG_SYS_PCIE1_IO_PHYS 0xfffc00000ull
  88. #else
  89. #define CONFIG_SYS_PCIE1_IO_PHYS 0xffc00000
  90. #endif
  91. /* controller 2, Slot 2, tgtid 2, Base address 9000 */
  92. #define CONFIG_SYS_PCIE2_NAME "PCIe Slot"
  93. #define CONFIG_SYS_PCIE2_MEM_VIRT 0xa0000000
  94. #ifdef CONFIG_PHYS_64BIT
  95. #define CONFIG_SYS_PCIE2_MEM_BUS 0xc0000000
  96. #define CONFIG_SYS_PCIE2_MEM_PHYS 0xc20000000ull
  97. #else
  98. #define CONFIG_SYS_PCIE2_MEM_BUS 0xa0000000
  99. #define CONFIG_SYS_PCIE2_MEM_PHYS 0xa0000000
  100. #endif
  101. #define CONFIG_SYS_PCIE2_MEM_SIZE 0x20000000 /* 512M */
  102. #define CONFIG_SYS_PCIE2_IO_VIRT 0xffc10000
  103. #define CONFIG_SYS_PCIE2_IO_BUS 0x00000000
  104. #define CONFIG_SYS_PCIE2_IO_SIZE 0x00010000 /* 64k */
  105. #ifdef CONFIG_PHYS_64BIT
  106. #define CONFIG_SYS_PCIE2_IO_PHYS 0xfffc10000ull
  107. #else
  108. #define CONFIG_SYS_PCIE2_IO_PHYS 0xffc10000
  109. #endif
  110. #define CONFIG_PCI_PNP /* do pci plug-and-play */
  111. #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  112. #define CONFIG_DOS_PARTITION
  113. #endif
  114. #define CONFIG_FSL_LAW /* Use common FSL init code */
  115. #define CONFIG_TSEC_ENET
  116. #define CONFIG_ENV_OVERWRITE
  117. #define CONFIG_DDR_CLK_FREQ 66666666 /* DDRCLK on P1010 RDB */
  118. #define CONFIG_SYS_CLK_FREQ 66666666 /* SYSCLK for P1010 RDB */
  119. #ifndef CONFIG_SDCARD
  120. #define CONFIG_MISC_INIT_R
  121. #endif
  122. #define CONFIG_HWCONFIG
  123. /*
  124. * These can be toggled for performance analysis, otherwise use default.
  125. */
  126. #define CONFIG_L2_CACHE /* toggle L2 cache */
  127. #define CONFIG_BTB /* toggle branch predition */
  128. #define CONFIG_ADDR_STREAMING /* toggle addr streaming */
  129. #define CONFIG_ENABLE_36BIT_PHYS
  130. #ifdef CONFIG_PHYS_64BIT
  131. #define CONFIG_ADDR_MAP 1
  132. #define CONFIG_SYS_NUM_ADDR_MAP 16 /* number of TLB1 entries */
  133. #endif
  134. #define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest works on */
  135. #define CONFIG_SYS_MEMTEST_END 0x1fffffff
  136. #define CONFIG_PANIC_HANG /* do not reset board on panic */
  137. /* DDR Setup */
  138. #define CONFIG_FSL_DDR3
  139. #define CONFIG_DDR_RAW_TIMING
  140. #define CONFIG_DDR_SPD
  141. #define CONFIG_SYS_SPD_BUS_NUM 1
  142. #define SPD_EEPROM_ADDRESS 0x52
  143. #define CONFIG_MEM_INIT_VALUE 0xDeadBeef
  144. #ifndef __ASSEMBLY__
  145. extern unsigned long get_sdram_size(void);
  146. #endif
  147. #define CONFIG_SYS_SDRAM_SIZE get_sdram_size() /* DDR size */
  148. #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000
  149. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
  150. #define CONFIG_DIMM_SLOTS_PER_CTLR 1
  151. #define CONFIG_CHIP_SELECTS_PER_CTRL 1
  152. /* DDR3 Controller Settings */
  153. #define CONFIG_SYS_DDR_CS0_BNDS 0x0000003f
  154. #define CONFIG_SYS_DDR_CS0_CONFIG 0x80014302
  155. #define CONFIG_SYS_DDR_CS0_CONFIG_2 0x00000000
  156. #define CONFIG_SYS_DDR_DATA_INIT 0xdeadbeef
  157. #define CONFIG_SYS_DDR_INIT_ADDR 0x00000000
  158. #define CONFIG_SYS_DDR_INIT_EXT_ADDR 0x00000000
  159. #define CONFIG_SYS_DDR_MODE_CONTROL 0x00000000
  160. #define CONFIG_SYS_DDR_ZQ_CONTROL 0x89080600
  161. #define CONFIG_SYS_DDR_SR_CNTR 0x00000000
  162. #define CONFIG_SYS_DDR_RCW_1 0x00000000
  163. #define CONFIG_SYS_DDR_RCW_2 0x00000000
  164. #define CONFIG_SYS_DDR_CONTROL 0x470C0000 /* Type = DDR3 */
  165. #define CONFIG_SYS_DDR_CONTROL_2 0x04401010
  166. #define CONFIG_SYS_DDR_TIMING_4 0x00000001
  167. #define CONFIG_SYS_DDR_TIMING_5 0x03402400
  168. #define CONFIG_SYS_DDR_TIMING_3_800 0x00020000
  169. #define CONFIG_SYS_DDR_TIMING_0_800 0x00330004
  170. #define CONFIG_SYS_DDR_TIMING_1_800 0x6f6B4644
  171. #define CONFIG_SYS_DDR_TIMING_2_800 0x0FA888CF
  172. #define CONFIG_SYS_DDR_CLK_CTRL_800 0x03000000
  173. #define CONFIG_SYS_DDR_MODE_1_800 0x40461520
  174. #define CONFIG_SYS_DDR_MODE_2_800 0x8000c000
  175. #define CONFIG_SYS_DDR_INTERVAL_800 0x0C300100
  176. #define CONFIG_SYS_DDR_WRLVL_CONTROL_800 0x8655A608
  177. /* settings for DDR3 at 667MT/s */
  178. #define CONFIG_SYS_DDR_TIMING_3_667 0x00010000
  179. #define CONFIG_SYS_DDR_TIMING_0_667 0x00110004
  180. #define CONFIG_SYS_DDR_TIMING_1_667 0x5d59e544
  181. #define CONFIG_SYS_DDR_TIMING_2_667 0x0FA890CD
  182. #define CONFIG_SYS_DDR_CLK_CTRL_667 0x03000000
  183. #define CONFIG_SYS_DDR_MODE_1_667 0x00441210
  184. #define CONFIG_SYS_DDR_MODE_2_667 0x00000000
  185. #define CONFIG_SYS_DDR_INTERVAL_667 0x0a280000
  186. #define CONFIG_SYS_DDR_WRLVL_CONTROL_667 0x8675F608
  187. #define CONFIG_SYS_CCSRBAR 0xffe00000
  188. #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR
  189. /*
  190. * Memory map
  191. *
  192. * 0x0000_0000 0x3fff_ffff DDR 1G cacheable
  193. * 0x8000_0000 0xbfff_ffff PCI Express Mem 1.5G non-cacheable
  194. * 0xffc0_0000 0xffc3_ffff PCI IO range 256k non-cacheable
  195. *
  196. * Localbus non-cacheable
  197. * 0xff80_0000 0xff8f_ffff NAND Flash 1M non-cacheable
  198. * 0xffb0_0000 0xffbf_ffff Board CPLD 1M non-cacheable
  199. * 0xffd0_0000 0xffd0_3fff L1 for stack 16K Cacheable TLB0
  200. * 0xffe0_0000 0xffef_ffff CCSR 1M non-cacheable
  201. */
  202. /* In case of SD card boot, IFC interface is not available because of muxing */
  203. #ifdef CONFIG_SDCARD
  204. #define CONFIG_SYS_NO_FLASH
  205. #else
  206. /*
  207. * IFC Definitions
  208. */
  209. /* NOR Flash on IFC */
  210. #define CONFIG_SYS_FLASH_BASE 0xee000000
  211. #define CONFIG_SYS_MAX_FLASH_SECT 256 /* 32M */
  212. #ifdef CONFIG_PHYS_64BIT
  213. #define CONFIG_SYS_FLASH_BASE_PHYS (0xf00000000ull | CONFIG_SYS_FLASH_BASE)
  214. #else
  215. #define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE
  216. #endif
  217. #define CONFIG_SYS_NOR_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_FLASH_BASE_PHYS) | \
  218. CSPR_PORT_SIZE_16 | \
  219. CSPR_MSEL_NOR | \
  220. CSPR_V)
  221. #define CONFIG_SYS_NOR_AMASK IFC_AMASK(32*1024*1024)
  222. #define CONFIG_SYS_NOR_CSOR CSOR_NOR_ADM_SHIFT(7)
  223. /* NOR Flash Timing Params */
  224. #define CONFIG_SYS_NOR_FTIM0 FTIM0_NOR_TACSE(0x4) | \
  225. FTIM0_NOR_TEADC(0x5) | \
  226. FTIM0_NOR_TEAHC(0x5)
  227. #define CONFIG_SYS_NOR_FTIM1 FTIM1_NOR_TACO(0x1e) | \
  228. FTIM1_NOR_TRAD_NOR(0x0f)
  229. #define CONFIG_SYS_NOR_FTIM2 FTIM2_NOR_TCS(0x4) | \
  230. FTIM2_NOR_TCH(0x4) | \
  231. FTIM2_NOR_TWP(0x1c)
  232. #define CONFIG_SYS_NOR_FTIM3 0x0
  233. #define CONFIG_SYS_FLASH_BANKS_LIST {CONFIG_SYS_FLASH_BASE_PHYS}
  234. #define CONFIG_SYS_FLASH_QUIET_TEST
  235. #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */
  236. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
  237. #undef CONFIG_SYS_FLASH_CHECKSUM
  238. #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
  239. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
  240. /* CFI for NOR Flash */
  241. #define CONFIG_FLASH_CFI_DRIVER
  242. #define CONFIG_SYS_FLASH_CFI
  243. #define CONFIG_SYS_FLASH_EMPTY_INFO
  244. #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
  245. /* NAND Flash on IFC */
  246. #define CONFIG_SYS_NAND_BASE 0xff800000
  247. #ifdef CONFIG_PHYS_64BIT
  248. #define CONFIG_SYS_NAND_BASE_PHYS 0xfff800000ull
  249. #else
  250. #define CONFIG_SYS_NAND_BASE_PHYS CONFIG_SYS_NAND_BASE
  251. #endif
  252. #define CONFIG_SYS_NAND_CSPR (CSPR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \
  253. | CSPR_PORT_SIZE_8 \
  254. | CSPR_MSEL_NAND \
  255. | CSPR_V)
  256. #define CONFIG_SYS_NAND_AMASK IFC_AMASK(64*1024)
  257. #define CONFIG_SYS_NAND_CSOR (CSOR_NAND_ECC_ENC_EN /* ECC on encode */ \
  258. | CSOR_NAND_ECC_DEC_EN /* ECC on decode */ \
  259. | CSOR_NAND_ECC_MODE_4 /* 4-bit ECC */ \
  260. | CSOR_NAND_RAL_2 /* RAL = 2 Bytes */ \
  261. | CSOR_NAND_PGS_512 /* Page Size = 512b */ \
  262. | CSOR_NAND_SPRZ_16 /* Spare size = 16 */ \
  263. | CSOR_NAND_PB(32)) /* 32 Pages Per Block */
  264. /* NAND Flash Timing Params */
  265. #define CONFIG_SYS_NAND_FTIM0 FTIM0_NAND_TCCST(0x01) | \
  266. FTIM0_NAND_TWP(0x0C) | \
  267. FTIM0_NAND_TWCHT(0x04) | \
  268. FTIM0_NAND_TWH(0x05)
  269. #define CONFIG_SYS_NAND_FTIM1 FTIM1_NAND_TADLE(0x1d) | \
  270. FTIM1_NAND_TWBE(0x1d) | \
  271. FTIM1_NAND_TRR(0x07) | \
  272. FTIM1_NAND_TRP(0x0c)
  273. #define CONFIG_SYS_NAND_FTIM2 FTIM2_NAND_TRAD(0x0c) | \
  274. FTIM2_NAND_TREH(0x05) | \
  275. FTIM2_NAND_TWHRE(0x0f)
  276. #define CONFIG_SYS_NAND_FTIM3 FTIM3_NAND_TWW(0x04)
  277. #define CONFIG_SYS_NAND_DDR_LAW 11
  278. /* Set up IFC registers for boot location NOR/NAND */
  279. #define CONFIG_SYS_CSPR0 CONFIG_SYS_NOR_CSPR
  280. #define CONFIG_SYS_AMASK0 CONFIG_SYS_NOR_AMASK
  281. #define CONFIG_SYS_CSOR0 CONFIG_SYS_NOR_CSOR
  282. #define CONFIG_SYS_CS0_FTIM0 CONFIG_SYS_NOR_FTIM0
  283. #define CONFIG_SYS_CS0_FTIM1 CONFIG_SYS_NOR_FTIM1
  284. #define CONFIG_SYS_CS0_FTIM2 CONFIG_SYS_NOR_FTIM2
  285. #define CONFIG_SYS_CS0_FTIM3 CONFIG_SYS_NOR_FTIM3
  286. #define CONFIG_SYS_CSPR1 CONFIG_SYS_NAND_CSPR
  287. #define CONFIG_SYS_AMASK1 CONFIG_SYS_NAND_AMASK
  288. #define CONFIG_SYS_CSOR1 CONFIG_SYS_NAND_CSOR
  289. #define CONFIG_SYS_CS1_FTIM0 CONFIG_SYS_NAND_FTIM0
  290. #define CONFIG_SYS_CS1_FTIM1 CONFIG_SYS_NAND_FTIM1
  291. #define CONFIG_SYS_CS1_FTIM2 CONFIG_SYS_NAND_FTIM2
  292. #define CONFIG_SYS_CS1_FTIM3 CONFIG_SYS_NAND_FTIM3
  293. /* CPLD on IFC */
  294. #define CONFIG_SYS_CPLD_BASE 0xffb00000
  295. #ifdef CONFIG_PHYS_64BIT
  296. #define CONFIG_SYS_CPLD_BASE_PHYS 0xfffb00000ull
  297. #else
  298. #define CONFIG_SYS_CPLD_BASE_PHYS CONFIG_SYS_CPLD_BASE
  299. #endif
  300. #define CONFIG_SYS_CSPR3 (CSPR_PHYS_ADDR(CONFIG_SYS_CPLD_BASE_PHYS) \
  301. | CSPR_PORT_SIZE_8 \
  302. | CSPR_MSEL_GPCM \
  303. | CSPR_V)
  304. #define CONFIG_SYS_AMASK3 IFC_AMASK(64*1024)
  305. #define CONFIG_SYS_CSOR3 0x0
  306. /* CPLD Timing parameters for IFC CS3 */
  307. #define CONFIG_SYS_CS3_FTIM0 (FTIM0_GPCM_TACSE(0x0e) | \
  308. FTIM0_GPCM_TEADC(0x0e) | \
  309. FTIM0_GPCM_TEAHC(0x0e))
  310. #define CONFIG_SYS_CS3_FTIM1 (FTIM1_GPCM_TACO(0x0e) | \
  311. FTIM1_GPCM_TRAD(0x1f))
  312. #define CONFIG_SYS_CS3_FTIM2 (FTIM2_GPCM_TCS(0x0e) | \
  313. FTIM2_GPCM_TCH(0x0) | \
  314. FTIM2_GPCM_TWP(0x1f))
  315. #define CONFIG_SYS_CS3_FTIM3 0x0
  316. #endif /* CONFIG_SDCARD */
  317. #if defined(CONFIG_RAMBOOT_SDCARD) || defined(CONFIG_RAMBOOT_SPIFLASH) || \
  318. defined(CONFIG_RAMBOOT_NAND)
  319. #define CONFIG_SYS_RAMBOOT
  320. #define CONFIG_SYS_EXTRA_ENV_RELOC
  321. #else
  322. #undef CONFIG_SYS_RAMBOOT
  323. #endif
  324. #define CONFIG_BOARD_EARLY_INIT_F /* Call board_pre_init */
  325. #define CONFIG_BOARD_EARLY_INIT_R
  326. #define CONFIG_SYS_INIT_RAM_LOCK
  327. #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* stack in RAM */
  328. #define CONFIG_SYS_INIT_RAM_END 0x00004000 /* End of used area in RAM */
  329. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END \
  330. - GENERATED_GBL_DATA_SIZE)
  331. #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
  332. #define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon*/
  333. #define CONFIG_SYS_MALLOC_LEN (1024 * 1024) /* Reserved for malloc*/
  334. /* Serial Port */
  335. #define CONFIG_CONS_INDEX 1
  336. #undef CONFIG_SERIAL_SOFTWARE_FIFO
  337. #define CONFIG_SYS_NS16550
  338. #define CONFIG_SYS_NS16550_SERIAL
  339. #define CONFIG_SYS_NS16550_REG_SIZE 1
  340. #define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
  341. #define CONFIG_SERIAL_MULTI /* Enable both serial ports */
  342. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
  343. #define CONFIG_SYS_BAUDRATE_TABLE \
  344. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
  345. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500)
  346. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600)
  347. /* Use the HUSH parser */
  348. #define CONFIG_SYS_HUSH_PARSER
  349. #ifdef CONFIG_SYS_HUSH_PARSER
  350. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  351. #endif
  352. /*
  353. * Pass open firmware flat tree
  354. */
  355. #define CONFIG_OF_LIBFDT
  356. #define CONFIG_OF_BOARD_SETUP
  357. #define CONFIG_OF_STDOUT_VIA_ALIAS
  358. /* new uImage format support */
  359. #define CONFIG_FIT
  360. #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */
  361. #define CONFIG_FSL_I2C /* Use FSL common I2C driver */
  362. #define CONFIG_HARD_I2C /* I2C with hardware support */
  363. #undef CONFIG_SOFT_I2C /* I2C bit-banged */
  364. #define CONFIG_I2C_MULTI_BUS
  365. #define CONFIG_I2C_CMD_TREE
  366. #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address*/
  367. #define CONFIG_SYS_I2C_SLAVE 0x7F
  368. #define CONFIG_SYS_I2C_OFFSET 0x3000
  369. #define CONFIG_SYS_I2C2_OFFSET 0x3100
  370. /* I2C EEPROM */
  371. #undef CONFIG_ID_EEPROM
  372. /* enable read and write access to EEPROM */
  373. #define CONFIG_CMD_EEPROM
  374. #define CONFIG_SYS_I2C_MULTI_EEPROMS
  375. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
  376. #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
  377. #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5
  378. /* RTC */
  379. #define CONFIG_RTC_PT7C4338
  380. #define CONFIG_SYS_I2C_RTC_ADDR 0x68
  381. #define CONFIG_CMD_I2C
  382. /*
  383. * SPI interface will not be available in case of NAND boot SPI CS0 will be
  384. * used for SLIC
  385. */
  386. /* eSPI - Enhanced SPI */
  387. #define CONFIG_FSL_ESPI
  388. #define CONFIG_SPI_FLASH
  389. #define CONFIG_SPI_FLASH_SPANSION
  390. #define CONFIG_CMD_SF
  391. #define CONFIG_SF_DEFAULT_SPEED 10000000
  392. #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
  393. #if defined(CONFIG_TSEC_ENET)
  394. #ifndef CONFIG_NET_MULTI
  395. #define CONFIG_NET_MULTI
  396. #endif
  397. #define CONFIG_MII /* MII PHY management */
  398. #define CONFIG_MII_DEFAULT_TSEC 1 /* Allow unregistered phys */
  399. #define CONFIG_TSEC1 1
  400. #define CONFIG_TSEC1_NAME "eTSEC1"
  401. #define CONFIG_TSEC2 1
  402. #define CONFIG_TSEC2_NAME "eTSEC2"
  403. #define CONFIG_TSEC3 1
  404. #define CONFIG_TSEC3_NAME "eTSEC3"
  405. #define TSEC1_PHY_ADDR 1
  406. #define TSEC2_PHY_ADDR 0
  407. #define TSEC3_PHY_ADDR 2
  408. #define TSEC1_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  409. #define TSEC2_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  410. #define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
  411. #define TSEC1_PHYIDX 0
  412. #define TSEC2_PHYIDX 0
  413. #define TSEC3_PHYIDX 0
  414. #define CONFIG_ETHPRIME "eTSEC1"
  415. #define CONFIG_PHY_GIGE /* Include GbE speed/duplex detection */
  416. /* TBI PHY configuration for SGMII mode */
  417. #define CONFIG_TSEC_TBICR_SETTINGS ( \
  418. TBICR_PHY_RESET \
  419. | TBICR_ANEG_ENABLE \
  420. | TBICR_FULL_DUPLEX \
  421. | TBICR_SPEED1_SET \
  422. )
  423. #endif /* CONFIG_TSEC_ENET */
  424. /* SATA */
  425. #define CONFIG_FSL_SATA
  426. #define CONFIG_LIBATA
  427. #ifdef CONFIG_FSL_SATA
  428. #define CONFIG_SYS_SATA_MAX_DEVICE 2
  429. #define CONFIG_SATA1
  430. #define CONFIG_SYS_SATA1 CONFIG_SYS_MPC85xx_SATA1_ADDR
  431. #define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA
  432. #define CONFIG_SATA2
  433. #define CONFIG_SYS_SATA2 CONFIG_SYS_MPC85xx_SATA2_ADDR
  434. #define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA
  435. #define CONFIG_CMD_SATA
  436. #define CONFIG_LBA48
  437. #endif /* #ifdef CONFIG_FSL_SATA */
  438. /* SD interface will only be available in case of SD boot */
  439. #ifdef CONFIG_SDCARD
  440. #define CONFIG_MMC
  441. #define CONFIG_DEF_HWCONFIG esdhc
  442. #endif
  443. #ifdef CONFIG_MMC
  444. #define CONFIG_CMD_MMC
  445. #define CONFIG_DOS_PARTITION
  446. #define CONFIG_FSL_ESDHC
  447. #define CONFIG_GENERIC_MMC
  448. #define CONFIG_SYS_FSL_ESDHC_ADDR CONFIG_SYS_MPC85xx_ESDHC_ADDR
  449. #endif
  450. #define CONFIG_HAS_FSL_DR_USB
  451. #if defined(CONFIG_HAS_FSL_DR_USB)
  452. #define CONFIG_USB_EHCI
  453. #ifdef CONFIG_USB_EHCI
  454. #define CONFIG_CMD_USB
  455. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  456. #define CONFIG_USB_EHCI_FSL
  457. #define CONFIG_USB_STORAGE
  458. #endif
  459. #endif
  460. /*
  461. * Environment
  462. */
  463. #if defined(CONFIG_SYS_RAMBOOT)
  464. #if defined(CONFIG_RAMBOOT_SDCARD)
  465. #define CONFIG_ENV_IS_IN_MMC
  466. #define CONFIG_SYS_MMC_ENV_DEV 0
  467. #define CONFIG_ENV_SIZE 0x2000
  468. #elif defined(CONFIG_RAMBOOT_SPIFLASH)
  469. #define CONFIG_ENV_IS_IN_SPI_FLASH
  470. #define CONFIG_ENV_SPI_BUS 0
  471. #define CONFIG_ENV_SPI_CS 0
  472. #define CONFIG_ENV_SPI_MAX_HZ 10000000
  473. #define CONFIG_ENV_SPI_MODE 0
  474. #define CONFIG_ENV_OFFSET 0x100000 /* 1MB */
  475. #define CONFIG_ENV_SECT_SIZE 0x10000
  476. #define CONFIG_ENV_SIZE 0x2000
  477. #else
  478. #define CONFIG_ENV_IS_NOWHERE /* Store ENV in memory only */
  479. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
  480. #define CONFIG_ENV_SIZE 0x2000
  481. #endif
  482. #else
  483. #define CONFIG_ENV_IS_IN_FLASH
  484. #if CONFIG_SYS_MONITOR_BASE > 0xfff80000
  485. #define CONFIG_ENV_ADDR 0xfff80000
  486. #else
  487. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE)
  488. #endif
  489. #define CONFIG_ENV_SIZE 0x2000
  490. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K (one sector) */
  491. #endif
  492. #define CONFIG_LOADS_ECHO /* echo on for serial download */
  493. #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
  494. /*
  495. * Command line configuration.
  496. */
  497. #include <config_cmd_default.h>
  498. #define CONFIG_CMD_DATE
  499. #define CONFIG_CMD_ERRATA
  500. #define CONFIG_CMD_ELF
  501. #define CONFIG_CMD_IRQ
  502. #define CONFIG_CMD_MII
  503. #define CONFIG_CMD_PING
  504. #define CONFIG_CMD_SETEXPR
  505. #define CONFIG_CMD_REGINFO
  506. #undef CONFIG_WATCHDOG /* watchdog disabled */
  507. #if defined(CONFIG_MMC) || defined(CONFIG_USB_EHCI) \
  508. || defined(CONFIG_FSL_SATA)
  509. #define CONFIG_CMD_EXT2
  510. #define CONFIG_CMD_FAT
  511. #define CONFIG_DOS_PARTITION
  512. #endif
  513. /*
  514. * Miscellaneous configurable options
  515. */
  516. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  517. #define CONFIG_CMDLINE_EDITING /* Command-line editing */
  518. #define CONFIG_AUTO_COMPLETE /* add autocompletion support */
  519. #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
  520. #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
  521. #if defined(CONFIG_CMD_KGDB)
  522. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  523. #else
  524. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  525. #endif
  526. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  527. /* Print Buffer Size */
  528. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  529. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE/* Boot Argument Buffer Size */
  530. #define CONFIG_SYS_HZ 1000 /* dec freq: 1ms ticks */
  531. /*
  532. * Internal Definitions
  533. *
  534. * Boot Flags
  535. */
  536. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  537. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  538. /*
  539. * For booting Linux, the board info and command line data
  540. * have to be in the first 64 MB of memory, since this is
  541. * the maximum mapped by the Linux kernel during initialization.
  542. */
  543. #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory map for Linux */
  544. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
  545. #if defined(CONFIG_CMD_KGDB)
  546. #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
  547. #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
  548. #endif
  549. /*
  550. * Environment Configuration
  551. */
  552. #if defined(CONFIG_TSEC_ENET)
  553. #define CONFIG_HAS_ETH0
  554. #define CONFIG_HAS_ETH1
  555. #define CONFIG_HAS_ETH2
  556. #endif
  557. #define CONFIG_HOSTNAME P1010RDB
  558. #define CONFIG_ROOTPATH /opt/nfsroot
  559. #define CONFIG_BOOTFILE uImage
  560. #define CONFIG_UBOOTPATH u-boot.bin/* U-Boot image on TFTP server */
  561. /* default location for tftp and bootm */
  562. #define CONFIG_LOADADDR 1000000
  563. #define CONFIG_BOOTDELAY 10 /* -1 disables auto-boot */
  564. #undef CONFIG_BOOTARGS /* the boot command will set bootargs */
  565. #define CONFIG_BAUDRATE 115200
  566. #define CONFIG_EXTRA_ENV_SETTINGS \
  567. "hwconfig=" MK_STR(CONFIG_DEF_HWCONFIG) "\0" \
  568. "netdev=eth0\0" \
  569. "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \
  570. "loadaddr=1000000\0" \
  571. "consoledev=ttyS0\0" \
  572. "ramdiskaddr=2000000\0" \
  573. "ramdiskfile=rootfs.ext2.gz.uboot\0" \
  574. "fdtaddr=c00000\0" \
  575. "fdtfile=p1010rdb.dtb\0" \
  576. "bdev=sda1\0" \
  577. "hwconfig=usb1:dr_mode=host,phy_type=utmi\0" \
  578. "othbootargs=ramdisk_size=600000\0" \
  579. "usbfatboot=setenv bootargs root=/dev/ram rw " \
  580. "console=$consoledev,$baudrate $othbootargs; " \
  581. "usb start;" \
  582. "fatload usb 0:2 $loadaddr $bootfile;" \
  583. "fatload usb 0:2 $fdtaddr $fdtfile;" \
  584. "fatload usb 0:2 $ramdiskaddr $ramdiskfile;" \
  585. "bootm $loadaddr $ramdiskaddr $fdtaddr\0" \
  586. "usbext2boot=setenv bootargs root=/dev/ram rw " \
  587. "console=$consoledev,$baudrate $othbootargs; " \
  588. "usb start;" \
  589. "ext2load usb 0:4 $loadaddr $bootfile;" \
  590. "ext2load usb 0:4 $fdtaddr $fdtfile;" \
  591. "ext2load usb 0:4 $ramdiskaddr $ramdiskfile;" \
  592. "bootm $loadaddr $ramdiskaddr $fdtaddr\0" \
  593. #define CONFIG_RAMBOOTCOMMAND \
  594. "setenv bootargs root=/dev/ram rw " \
  595. "console=$consoledev,$baudrate $othbootargs; " \
  596. "tftp $ramdiskaddr $ramdiskfile;" \
  597. "tftp $loadaddr $bootfile;" \
  598. "tftp $fdtaddr $fdtfile;" \
  599. "bootm $loadaddr $ramdiskaddr $fdtaddr"
  600. #define CONFIG_BOOTCOMMAND CONFIG_RAMBOOTCOMMAND
  601. #endif /* __CONFIG_H */