MPC8315ERDB.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. /*
  2. * Copyright (C) 2007-2010 Freescale Semiconductor, Inc.
  3. *
  4. * Dave Liu <daveliu@freescale.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
  11. #define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
  12. #define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
  13. #define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
  14. #define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
  15. #ifndef CONFIG_SYS_TEXT_BASE
  16. #define CONFIG_SYS_TEXT_BASE 0xFE000000
  17. #endif
  18. #ifndef CONFIG_SYS_MONITOR_BASE
  19. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
  20. #endif
  21. /*
  22. * High Level Configuration Options
  23. */
  24. #define CONFIG_E300 1 /* E300 family */
  25. #define CONFIG_MPC831x 1 /* MPC831x CPU family */
  26. #define CONFIG_MPC8315 1 /* MPC8315 CPU specific */
  27. #define CONFIG_MPC8315ERDB 1 /* MPC8315ERDB board specific */
  28. /*
  29. * System Clock Setup
  30. */
  31. #define CONFIG_83XX_CLKIN 66666667 /* in Hz */
  32. #define CONFIG_SYS_CLK_FREQ CONFIG_83XX_CLKIN
  33. /*
  34. * Hardware Reset Configuration Word
  35. * if CLKIN is 66.66MHz, then
  36. * CSB = 133MHz, CORE = 400MHz, DDRC = 266MHz, LBC = 133MHz
  37. */
  38. #define CONFIG_SYS_HRCW_LOW (\
  39. HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\
  40. HRCWL_DDR_TO_SCB_CLK_2X1 |\
  41. HRCWL_SVCOD_DIV_2 |\
  42. HRCWL_CSB_TO_CLKIN_2X1 |\
  43. HRCWL_CORE_TO_CSB_3X1)
  44. #define CONFIG_SYS_HRCW_HIGH_BASE (\
  45. HRCWH_PCI_HOST |\
  46. HRCWH_PCI1_ARBITER_ENABLE |\
  47. HRCWH_CORE_ENABLE |\
  48. HRCWH_BOOTSEQ_DISABLE |\
  49. HRCWH_SW_WATCHDOG_DISABLE |\
  50. HRCWH_TSEC1M_IN_RGMII |\
  51. HRCWH_TSEC2M_IN_RGMII |\
  52. HRCWH_BIG_ENDIAN |\
  53. HRCWH_LALE_NORMAL)
  54. #ifdef CONFIG_NAND_SPL
  55. #define CONFIG_SYS_HRCW_HIGH (CONFIG_SYS_HRCW_HIGH_BASE |\
  56. HRCWH_FROM_0XFFF00100 |\
  57. HRCWH_ROM_LOC_NAND_SP_8BIT |\
  58. HRCWH_RL_EXT_NAND)
  59. #else
  60. #define CONFIG_SYS_HRCW_HIGH (CONFIG_SYS_HRCW_HIGH_BASE |\
  61. HRCWH_FROM_0X00000100 |\
  62. HRCWH_ROM_LOC_LOCAL_16BIT |\
  63. HRCWH_RL_EXT_LEGACY)
  64. #endif
  65. /*
  66. * System IO Config
  67. */
  68. #define CONFIG_SYS_SICRH 0x00000000
  69. #define CONFIG_SYS_SICRL 0x00000000 /* 3.3V, no delay */
  70. #define CONFIG_BOARD_EARLY_INIT_F /* call board_pre_init */
  71. #define CONFIG_HWCONFIG
  72. /*
  73. * IMMR new address
  74. */
  75. #define CONFIG_SYS_IMMR 0xE0000000
  76. /*
  77. * Arbiter Setup
  78. */
  79. #define CONFIG_SYS_ACR_PIPE_DEP 3 /* Arbiter pipeline depth is 4 */
  80. #define CONFIG_SYS_ACR_RPTCNT 3 /* Arbiter repeat count is 4 */
  81. #define CONFIG_SYS_SPCR_TSECEP 3 /* eTSEC emergency priority is highest */
  82. /*
  83. * DDR Setup
  84. */
  85. #define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
  86. #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
  87. #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
  88. #define CONFIG_SYS_DDR_SDRAM_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
  89. #define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
  90. | DDRCDR_PZ_LOZ \
  91. | DDRCDR_NZ_LOZ \
  92. | DDRCDR_ODT \
  93. | DDRCDR_Q_DRN)
  94. /* 0x7b880001 */
  95. /*
  96. * Manually set up DDR parameters
  97. * consist of two chips HY5PS12621BFP-C4 from HYNIX
  98. */
  99. #define CONFIG_SYS_DDR_SIZE 128 /* MB */
  100. #define CONFIG_SYS_DDR_CS0_BNDS 0x00000007
  101. #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
  102. | CSCONFIG_ODT_RD_NEVER \
  103. | CSCONFIG_ODT_WR_ONLY_CURRENT \
  104. | CSCONFIG_ROW_BIT_13 \
  105. | CSCONFIG_COL_BIT_10)
  106. /* 0x80010102 */
  107. #define CONFIG_SYS_DDR_TIMING_3 0x00000000
  108. #define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
  109. | (0 << TIMING_CFG0_WRT_SHIFT) \
  110. | (0 << TIMING_CFG0_RRT_SHIFT) \
  111. | (0 << TIMING_CFG0_WWT_SHIFT) \
  112. | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
  113. | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
  114. | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
  115. | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
  116. /* 0x00220802 */
  117. #define CONFIG_SYS_DDR_TIMING_1 ((2 << TIMING_CFG1_PRETOACT_SHIFT) \
  118. | (7 << TIMING_CFG1_ACTTOPRE_SHIFT) \
  119. | (2 << TIMING_CFG1_ACTTORW_SHIFT) \
  120. | (5 << TIMING_CFG1_CASLAT_SHIFT) \
  121. | (6 << TIMING_CFG1_REFREC_SHIFT) \
  122. | (2 << TIMING_CFG1_WRREC_SHIFT) \
  123. | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
  124. | (2 << TIMING_CFG1_WRTORD_SHIFT))
  125. /* 0x27256222 */
  126. #define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
  127. | (4 << TIMING_CFG2_CPO_SHIFT) \
  128. | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
  129. | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
  130. | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
  131. | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
  132. | (5 << TIMING_CFG2_FOUR_ACT_SHIFT))
  133. /* 0x121048c5 */
  134. #define CONFIG_SYS_DDR_INTERVAL ((0x0360 << SDRAM_INTERVAL_REFINT_SHIFT) \
  135. | (0x0100 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
  136. /* 0x03600100 */
  137. #define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SREN \
  138. | SDRAM_CFG_SDRAM_TYPE_DDR2 \
  139. | SDRAM_CFG_DBW_32)
  140. /* 0x43080000 */
  141. #define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 /* 1 posted refresh */
  142. #define CONFIG_SYS_DDR_MODE ((0x0448 << SDRAM_MODE_ESD_SHIFT) \
  143. | (0x0232 << SDRAM_MODE_SD_SHIFT))
  144. /* ODT 150ohm CL=3, AL=1 on SDRAM */
  145. #define CONFIG_SYS_DDR_MODE2 0x00000000
  146. /*
  147. * Memory test
  148. */
  149. #undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */
  150. #define CONFIG_SYS_MEMTEST_START 0x00040000 /* memtest region */
  151. #define CONFIG_SYS_MEMTEST_END 0x00140000
  152. /*
  153. * The reserved memory
  154. */
  155. #define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
  156. #define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
  157. /*
  158. * Initial RAM Base Address Setup
  159. */
  160. #define CONFIG_SYS_INIT_RAM_LOCK 1
  161. #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
  162. #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */
  163. #define CONFIG_SYS_GBL_DATA_OFFSET \
  164. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  165. /*
  166. * Local Bus Configuration & Clock Setup
  167. */
  168. #define CONFIG_SYS_LCRR_DBYP LCRR_DBYP
  169. #define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_2
  170. #define CONFIG_SYS_LBC_LBCR 0x00040000
  171. #define CONFIG_FSL_ELBC 1
  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_CFI_WIDTH FLASH_CFI_16BIT
  178. #define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */
  179. #define CONFIG_SYS_FLASH_SIZE 8 /* FLASH size is 8M */
  180. #define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */
  181. /* Window base at flash base */
  182. #define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE
  183. #define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_8MB)
  184. #define CONFIG_SYS_NOR_BR_PRELIM (CONFIG_SYS_FLASH_BASE \
  185. | BR_PS_16 /* 16 bit port */ \
  186. | BR_MS_GPCM /* MSEL = GPCM */ \
  187. | BR_V) /* valid */
  188. #define CONFIG_SYS_NOR_OR_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \
  189. | OR_UPM_XAM \
  190. | OR_GPCM_CSNT \
  191. | OR_GPCM_ACS_DIV2 \
  192. | OR_GPCM_XACS \
  193. | OR_GPCM_SCY_15 \
  194. | OR_GPCM_TRLX_SET \
  195. | OR_GPCM_EHTR_SET \
  196. | OR_GPCM_EAD)
  197. #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
  198. /* 127 64KB sectors and 8 8KB top sectors per device */
  199. #define CONFIG_SYS_MAX_FLASH_SECT 135
  200. #undef CONFIG_SYS_FLASH_CHECKSUM
  201. #define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
  202. #define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
  203. /*
  204. * NAND Flash on the Local Bus
  205. */
  206. #ifdef CONFIG_NAND_SPL
  207. #define CONFIG_SYS_NAND_BASE 0xFFF00000
  208. #else
  209. #define CONFIG_SYS_NAND_BASE 0xE0600000
  210. #endif
  211. #define CONFIG_MTD_DEVICE
  212. #define CONFIG_MTD_PARTITION
  213. #define CONFIG_CMD_MTDPARTS
  214. #define MTDIDS_DEFAULT "nand0=e0600000.flash"
  215. #define MTDPARTS_DEFAULT \
  216. "mtdparts=e0600000.flash:512k(uboot),128k(env),6m@1m(kernel),-(fs)"
  217. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  218. #define CONFIG_CMD_NAND 1
  219. #define CONFIG_NAND_FSL_ELBC 1
  220. #define CONFIG_SYS_NAND_BLOCK_SIZE 16384
  221. #define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024) /* 0x00008000 */
  222. #define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
  223. #define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
  224. #define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
  225. #define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
  226. #define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
  227. #define CONFIG_SYS_NAND_BR_PRELIM (CONFIG_SYS_NAND_BASE \
  228. | BR_DECC_CHK_GEN /* Use HW ECC */ \
  229. | BR_PS_8 /* 8 bit port */ \
  230. | BR_MS_FCM /* MSEL = FCM */ \
  231. | BR_V) /* valid */
  232. #define CONFIG_SYS_NAND_OR_PRELIM \
  233. (P2SZ_TO_AM(CONFIG_SYS_NAND_WINDOW_SIZE) \
  234. | OR_FCM_CSCT \
  235. | OR_FCM_CST \
  236. | OR_FCM_CHT \
  237. | OR_FCM_SCY_1 \
  238. | OR_FCM_TRLX \
  239. | OR_FCM_EHTR)
  240. /* 0xFFFF8396 */
  241. #define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NOR_BR_PRELIM
  242. #define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NOR_OR_PRELIM
  243. #define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM
  244. #define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM
  245. #define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_NAND_BASE
  246. #define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_32KB)
  247. #define CONFIG_SYS_NAND_LBLAWBAR_PRELIM CONFIG_SYS_LBLAWBAR1_PRELIM
  248. #define CONFIG_SYS_NAND_LBLAWAR_PRELIM CONFIG_SYS_LBLAWAR1_PRELIM
  249. #if CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE && \
  250. !defined(CONFIG_NAND_SPL)
  251. #define CONFIG_SYS_RAMBOOT
  252. #else
  253. #undef CONFIG_SYS_RAMBOOT
  254. #endif
  255. /*
  256. * Serial Port
  257. */
  258. #define CONFIG_CONS_INDEX 1
  259. #define CONFIG_SYS_NS16550_SERIAL
  260. #define CONFIG_SYS_NS16550_REG_SIZE 1
  261. #define CONFIG_SYS_NS16550_CLK (CONFIG_83XX_CLKIN * 2)
  262. #define CONFIG_SYS_BAUDRATE_TABLE \
  263. {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
  264. #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
  265. #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
  266. /* I2C */
  267. #define CONFIG_SYS_I2C
  268. #define CONFIG_SYS_I2C_FSL
  269. #define CONFIG_SYS_FSL_I2C_SPEED 400000
  270. #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
  271. #define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
  272. #define CONFIG_SYS_I2C_NOPROBES { {0, 0x51} }
  273. /*
  274. * Board info - revision and where boot from
  275. */
  276. #define CONFIG_SYS_I2C_PCF8574A_ADDR 0x39
  277. /*
  278. * Config on-board RTC
  279. */
  280. #define CONFIG_RTC_DS1337 /* ds1339 on board, use ds1337 rtc via i2c */
  281. #define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */
  282. /*
  283. * General PCI
  284. * Addresses are mapped 1-1.
  285. */
  286. #define CONFIG_SYS_PCI_MEM_BASE 0x80000000
  287. #define CONFIG_SYS_PCI_MEM_PHYS CONFIG_SYS_PCI_MEM_BASE
  288. #define CONFIG_SYS_PCI_MEM_SIZE 0x10000000 /* 256M */
  289. #define CONFIG_SYS_PCI_MMIO_BASE 0x90000000
  290. #define CONFIG_SYS_PCI_MMIO_PHYS CONFIG_SYS_PCI_MMIO_BASE
  291. #define CONFIG_SYS_PCI_MMIO_SIZE 0x10000000 /* 256M */
  292. #define CONFIG_SYS_PCI_IO_BASE 0x00000000
  293. #define CONFIG_SYS_PCI_IO_PHYS 0xE0300000
  294. #define CONFIG_SYS_PCI_IO_SIZE 0x100000 /* 1M */
  295. #define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE
  296. #define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000
  297. #define CONFIG_SYS_PCI_SLV_MEM_SIZE 0x80000000
  298. #define CONFIG_SYS_PCIE1_BASE 0xA0000000
  299. #define CONFIG_SYS_PCIE1_MEM_BASE 0xA0000000
  300. #define CONFIG_SYS_PCIE1_MEM_PHYS 0xA0000000
  301. #define CONFIG_SYS_PCIE1_MEM_SIZE 0x10000000
  302. #define CONFIG_SYS_PCIE1_CFG_BASE 0xB0000000
  303. #define CONFIG_SYS_PCIE1_CFG_SIZE 0x01000000
  304. #define CONFIG_SYS_PCIE1_IO_BASE 0x00000000
  305. #define CONFIG_SYS_PCIE1_IO_PHYS 0xB1000000
  306. #define CONFIG_SYS_PCIE1_IO_SIZE 0x00800000
  307. #define CONFIG_SYS_PCIE2_BASE 0xC0000000
  308. #define CONFIG_SYS_PCIE2_MEM_BASE 0xC0000000
  309. #define CONFIG_SYS_PCIE2_MEM_PHYS 0xC0000000
  310. #define CONFIG_SYS_PCIE2_MEM_SIZE 0x10000000
  311. #define CONFIG_SYS_PCIE2_CFG_BASE 0xD0000000
  312. #define CONFIG_SYS_PCIE2_CFG_SIZE 0x01000000
  313. #define CONFIG_SYS_PCIE2_IO_BASE 0x00000000
  314. #define CONFIG_SYS_PCIE2_IO_PHYS 0xD1000000
  315. #define CONFIG_SYS_PCIE2_IO_SIZE 0x00800000
  316. #define CONFIG_PCI_INDIRECT_BRIDGE
  317. #define CONFIG_PCIE
  318. #define CONFIG_EEPRO100
  319. #undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
  320. #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */
  321. #define CONFIG_HAS_FSL_DR_USB
  322. #define CONFIG_SYS_SCCR_USBDRCM 3
  323. #define CONFIG_USB_EHCI
  324. #define CONFIG_USB_EHCI_FSL
  325. #define CONFIG_USB_PHY_TYPE "utmi"
  326. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  327. /*
  328. * TSEC
  329. */
  330. #define CONFIG_TSEC_ENET /* TSEC ethernet support */
  331. #define CONFIG_SYS_TSEC1_OFFSET 0x24000
  332. #define CONFIG_SYS_TSEC1 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC1_OFFSET)
  333. #define CONFIG_SYS_TSEC2_OFFSET 0x25000
  334. #define CONFIG_SYS_TSEC2 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC2_OFFSET)
  335. /*
  336. * TSEC ethernet configuration
  337. */
  338. #define CONFIG_MII 1 /* MII PHY management */
  339. #define CONFIG_TSEC1 1
  340. #define CONFIG_TSEC1_NAME "eTSEC0"
  341. #define CONFIG_TSEC2 1
  342. #define CONFIG_TSEC2_NAME "eTSEC1"
  343. #define TSEC1_PHY_ADDR 0
  344. #define TSEC2_PHY_ADDR 1
  345. #define TSEC1_PHYIDX 0
  346. #define TSEC2_PHYIDX 0
  347. #define TSEC1_FLAGS TSEC_GIGABIT
  348. #define TSEC2_FLAGS TSEC_GIGABIT
  349. /* Options are: eTSEC[0-1] */
  350. #define CONFIG_ETHPRIME "eTSEC1"
  351. /*
  352. * SATA
  353. */
  354. #define CONFIG_LIBATA
  355. #define CONFIG_FSL_SATA
  356. #define CONFIG_SYS_SATA_MAX_DEVICE 2
  357. #define CONFIG_SATA1
  358. #define CONFIG_SYS_SATA1_OFFSET 0x18000
  359. #define CONFIG_SYS_SATA1 (CONFIG_SYS_IMMR + CONFIG_SYS_SATA1_OFFSET)
  360. #define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA
  361. #define CONFIG_SATA2
  362. #define CONFIG_SYS_SATA2_OFFSET 0x19000
  363. #define CONFIG_SYS_SATA2 (CONFIG_SYS_IMMR + CONFIG_SYS_SATA2_OFFSET)
  364. #define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA
  365. #ifdef CONFIG_FSL_SATA
  366. #define CONFIG_LBA48
  367. #define CONFIG_CMD_SATA
  368. #define CONFIG_DOS_PARTITION
  369. #endif
  370. /*
  371. * Environment
  372. */
  373. #if !defined(CONFIG_SYS_RAMBOOT)
  374. #define CONFIG_ENV_IS_IN_FLASH 1
  375. #define CONFIG_ENV_ADDR \
  376. (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
  377. #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K(one sector) for env */
  378. #define CONFIG_ENV_SIZE 0x2000
  379. #else
  380. #define CONFIG_SYS_NO_FLASH 1 /* Flash is not usable now */
  381. #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
  382. #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
  383. #define CONFIG_ENV_SIZE 0x2000
  384. #endif
  385. #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
  386. #define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
  387. /*
  388. * BOOTP options
  389. */
  390. #define CONFIG_BOOTP_BOOTFILESIZE
  391. #define CONFIG_BOOTP_BOOTPATH
  392. #define CONFIG_BOOTP_GATEWAY
  393. #define CONFIG_BOOTP_HOSTNAME
  394. /*
  395. * Command line configuration.
  396. */
  397. #define CONFIG_CMD_DATE
  398. #define CONFIG_CMD_PCI
  399. #define CONFIG_CMDLINE_EDITING 1 /* add command line history */
  400. #define CONFIG_AUTO_COMPLETE /* add autocompletion support */
  401. #undef CONFIG_WATCHDOG /* watchdog disabled */
  402. /*
  403. * Miscellaneous configurable options
  404. */
  405. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  406. #define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
  407. #if defined(CONFIG_CMD_KGDB)
  408. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  409. #else
  410. #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
  411. #endif
  412. /* Print Buffer Size */
  413. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
  414. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  415. /* Boot Argument Buffer Size */
  416. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  417. /*
  418. * For booting Linux, the board info and command line data
  419. * have to be in the first 256 MB of memory, since this is
  420. * the maximum mapped by the Linux kernel during initialization.
  421. */
  422. #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */
  423. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
  424. /*
  425. * Core HID Setup
  426. */
  427. #define CONFIG_SYS_HID0_INIT 0x000000000
  428. #define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
  429. HID0_ENABLE_INSTRUCTION_CACHE | \
  430. HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
  431. #define CONFIG_SYS_HID2 HID2_HBE
  432. /*
  433. * MMU Setup
  434. */
  435. #define CONFIG_HIGH_BATS 1 /* High BATs supported */
  436. /* DDR: cache cacheable */
  437. #define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE \
  438. | BATL_PP_RW \
  439. | BATL_MEMCOHERENCE)
  440. #define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \
  441. | BATU_BL_128M \
  442. | BATU_VS \
  443. | BATU_VP)
  444. #define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
  445. #define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
  446. /* IMMRBAR, PCI IO and NAND: cache-inhibit and guarded */
  447. #define CONFIG_SYS_IBAT1L (CONFIG_SYS_IMMR \
  448. | BATL_PP_RW \
  449. | BATL_CACHEINHIBIT \
  450. | BATL_GUARDEDSTORAGE)
  451. #define CONFIG_SYS_IBAT1U (CONFIG_SYS_IMMR \
  452. | BATU_BL_8M \
  453. | BATU_VS \
  454. | BATU_VP)
  455. #define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
  456. #define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
  457. /* FLASH: icache cacheable, but dcache-inhibit and guarded */
  458. #define CONFIG_SYS_IBAT2L (CONFIG_SYS_FLASH_BASE \
  459. | BATL_PP_RW \
  460. | BATL_MEMCOHERENCE)
  461. #define CONFIG_SYS_IBAT2U (CONFIG_SYS_FLASH_BASE \
  462. | BATU_BL_32M \
  463. | BATU_VS \
  464. | BATU_VP)
  465. #define CONFIG_SYS_DBAT2L (CONFIG_SYS_FLASH_BASE \
  466. | BATL_PP_RW \
  467. | BATL_CACHEINHIBIT \
  468. | BATL_GUARDEDSTORAGE)
  469. #define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
  470. /* Stack in dcache: cacheable, no memory coherence */
  471. #define CONFIG_SYS_IBAT3L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_RW)
  472. #define CONFIG_SYS_IBAT3U (CONFIG_SYS_INIT_RAM_ADDR \
  473. | BATU_BL_128K \
  474. | BATU_VS \
  475. | BATU_VP)
  476. #define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
  477. #define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
  478. /* PCI MEM space: cacheable */
  479. #define CONFIG_SYS_IBAT4L (CONFIG_SYS_PCI_MEM_PHYS \
  480. | BATL_PP_RW \
  481. | BATL_MEMCOHERENCE)
  482. #define CONFIG_SYS_IBAT4U (CONFIG_SYS_PCI_MEM_PHYS \
  483. | BATU_BL_256M \
  484. | BATU_VS \
  485. | BATU_VP)
  486. #define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
  487. #define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
  488. /* PCI MMIO space: cache-inhibit and guarded */
  489. #define CONFIG_SYS_IBAT5L (CONFIG_SYS_PCI_MMIO_PHYS \
  490. | BATL_PP_RW \
  491. | BATL_CACHEINHIBIT \
  492. | BATL_GUARDEDSTORAGE)
  493. #define CONFIG_SYS_IBAT5U (CONFIG_SYS_PCI_MMIO_PHYS \
  494. | BATU_BL_256M \
  495. | BATU_VS \
  496. | BATU_VP)
  497. #define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L
  498. #define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
  499. #define CONFIG_SYS_IBAT6L 0
  500. #define CONFIG_SYS_IBAT6U 0
  501. #define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
  502. #define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
  503. #define CONFIG_SYS_IBAT7L 0
  504. #define CONFIG_SYS_IBAT7U 0
  505. #define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
  506. #define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
  507. #if defined(CONFIG_CMD_KGDB)
  508. #define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
  509. #endif
  510. /*
  511. * Environment Configuration
  512. */
  513. #define CONFIG_ENV_OVERWRITE
  514. #if defined(CONFIG_TSEC_ENET)
  515. #define CONFIG_HAS_ETH0
  516. #define CONFIG_HAS_ETH1
  517. #endif
  518. #define CONFIG_BAUDRATE 115200
  519. #define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */
  520. #undef CONFIG_BOOTARGS /* the boot command will set bootargs */
  521. #define CONFIG_EXTRA_ENV_SETTINGS \
  522. "netdev=eth0\0" \
  523. "consoledev=ttyS0\0" \
  524. "ramdiskaddr=1000000\0" \
  525. "ramdiskfile=ramfs.83xx\0" \
  526. "fdtaddr=780000\0" \
  527. "fdtfile=mpc8315erdb.dtb\0" \
  528. "usb_phy_type=utmi\0" \
  529. ""
  530. #define CONFIG_NFSBOOTCOMMAND \
  531. "setenv bootargs root=/dev/nfs rw " \
  532. "nfsroot=$serverip:$rootpath " \
  533. "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:" \
  534. "$netdev:off " \
  535. "console=$consoledev,$baudrate $othbootargs;" \
  536. "tftp $loadaddr $bootfile;" \
  537. "tftp $fdtaddr $fdtfile;" \
  538. "bootm $loadaddr - $fdtaddr"
  539. #define CONFIG_RAMBOOTCOMMAND \
  540. "setenv bootargs root=/dev/ram rw " \
  541. "console=$consoledev,$baudrate $othbootargs;" \
  542. "tftp $ramdiskaddr $ramdiskfile;" \
  543. "tftp $loadaddr $bootfile;" \
  544. "tftp $fdtaddr $fdtfile;" \
  545. "bootm $loadaddr $ramdiskaddr $fdtaddr"
  546. #define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
  547. #endif /* __CONFIG_H */