blob: 86491b41d66ac7c438e4306cc8f18bd21672e0bd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dave Liu8bd522c2008-01-11 18:48:24 +08002/*
Scott Woode8d3ca82010-08-30 18:04:52 -05003 * Copyright (C) 2007-2010 Freescale Semiconductor, Inc.
Dave Liu8bd522c2008-01-11 18:48:24 +08004 *
5 * Dave Liu <daveliu@freescale.com>
Dave Liu8bd522c2008-01-11 18:48:24 +08006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
Scott Woodf1c574d2010-11-24 13:28:40 +000011#define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
12#define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
13#define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
14#define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
15#define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
16
Scott Woodf1c574d2010-11-24 13:28:40 +000017#ifndef CONFIG_SYS_MONITOR_BASE
18#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
19#endif
20
Dave Liu8bd522c2008-01-11 18:48:24 +080021/*
22 * High Level Configuration Options
23 */
24#define CONFIG_E300 1 /* E300 family */
Dave Liu8bd522c2008-01-11 18:48:24 +080025
26/*
Dave Liu8bd522c2008-01-11 18:48:24 +080027 * System IO Config
28 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029#define CONFIG_SYS_SICRH 0x00000000
30#define CONFIG_SYS_SICRL 0x00000000 /* 3.3V, no delay */
Dave Liu8bd522c2008-01-11 18:48:24 +080031
Anton Vorontsovb8b71ff2009-06-10 00:25:36 +040032#define CONFIG_HWCONFIG
Dave Liu8bd522c2008-01-11 18:48:24 +080033
34/*
35 * IMMR new address
36 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020037#define CONFIG_SYS_IMMR 0xE0000000
Dave Liu8bd522c2008-01-11 18:48:24 +080038
39/*
40 * Arbiter Setup
41 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042#define CONFIG_SYS_ACR_PIPE_DEP 3 /* Arbiter pipeline depth is 4 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050043#define CONFIG_SYS_ACR_RPTCNT 3 /* Arbiter repeat count is 4 */
44#define CONFIG_SYS_SPCR_TSECEP 3 /* eTSEC emergency priority is highest */
Dave Liu8bd522c2008-01-11 18:48:24 +080045
46/*
47 * DDR Setup
48 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049#define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory */
50#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
51#define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
52#define CONFIG_SYS_DDR_SDRAM_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
Joe Hershberger6f681b72011-10-11 23:57:11 -050053#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
Dave Liu8bd522c2008-01-11 18:48:24 +080054 | DDRCDR_PZ_LOZ \
55 | DDRCDR_NZ_LOZ \
56 | DDRCDR_ODT \
Joe Hershberger6f681b72011-10-11 23:57:11 -050057 | DDRCDR_Q_DRN)
Dave Liu8bd522c2008-01-11 18:48:24 +080058 /* 0x7b880001 */
59/*
60 * Manually set up DDR parameters
61 * consist of two chips HY5PS12621BFP-C4 from HYNIX
62 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063#define CONFIG_SYS_DDR_SIZE 128 /* MB */
64#define CONFIG_SYS_DDR_CS0_BNDS 0x00000007
Joe Hershberger6f681b72011-10-11 23:57:11 -050065#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Joe Hershberger2fef4022011-10-11 23:57:29 -050066 | CSCONFIG_ODT_RD_NEVER \
67 | CSCONFIG_ODT_WR_ONLY_CURRENT \
Joe Hershberger6f681b72011-10-11 23:57:11 -050068 | CSCONFIG_ROW_BIT_13 \
69 | CSCONFIG_COL_BIT_10)
Dave Liu8bd522c2008-01-11 18:48:24 +080070 /* 0x80010102 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020071#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Joe Hershberger6f681b72011-10-11 23:57:11 -050072#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
73 | (0 << TIMING_CFG0_WRT_SHIFT) \
74 | (0 << TIMING_CFG0_RRT_SHIFT) \
75 | (0 << TIMING_CFG0_WWT_SHIFT) \
76 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
77 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
78 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
79 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
Dave Liu8bd522c2008-01-11 18:48:24 +080080 /* 0x00220802 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050081#define CONFIG_SYS_DDR_TIMING_1 ((2 << TIMING_CFG1_PRETOACT_SHIFT) \
82 | (7 << TIMING_CFG1_ACTTOPRE_SHIFT) \
83 | (2 << TIMING_CFG1_ACTTORW_SHIFT) \
84 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
85 | (6 << TIMING_CFG1_REFREC_SHIFT) \
86 | (2 << TIMING_CFG1_WRREC_SHIFT) \
87 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
88 | (2 << TIMING_CFG1_WRTORD_SHIFT))
Howard Gregory2f2a5c32008-11-04 14:55:33 +080089 /* 0x27256222 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050090#define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
91 | (4 << TIMING_CFG2_CPO_SHIFT) \
92 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
93 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
94 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
95 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
96 | (5 << TIMING_CFG2_FOUR_ACT_SHIFT))
Howard Gregory2f2a5c32008-11-04 14:55:33 +080097 /* 0x121048c5 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050098#define CONFIG_SYS_DDR_INTERVAL ((0x0360 << SDRAM_INTERVAL_REFINT_SHIFT) \
99 | (0x0100 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
Dave Liu8bd522c2008-01-11 18:48:24 +0800100 /* 0x03600100 */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500101#define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SREN \
Dave Liu8bd522c2008-01-11 18:48:24 +0800102 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershberger2fef4022011-10-11 23:57:29 -0500103 | SDRAM_CFG_DBW_32)
Dave Liu8bd522c2008-01-11 18:48:24 +0800104 /* 0x43080000 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105#define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 /* 1 posted refresh */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500106#define CONFIG_SYS_DDR_MODE ((0x0448 << SDRAM_MODE_ESD_SHIFT) \
107 | (0x0232 << SDRAM_MODE_SD_SHIFT))
Dave Liu8bd522c2008-01-11 18:48:24 +0800108 /* ODT 150ohm CL=3, AL=1 on SDRAM */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500109#define CONFIG_SYS_DDR_MODE2 0x00000000
Dave Liu8bd522c2008-01-11 18:48:24 +0800110
111/*
112 * Memory test
113 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114#undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */
115#define CONFIG_SYS_MEMTEST_START 0x00040000 /* memtest region */
116#define CONFIG_SYS_MEMTEST_END 0x00140000
Dave Liu8bd522c2008-01-11 18:48:24 +0800117
118/*
119 * The reserved memory
120 */
Kevin Hao16c8c172016-07-08 11:25:14 +0800121#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500122#define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
Dave Liu8bd522c2008-01-11 18:48:24 +0800123
124/*
125 * Initial RAM Base Address Setup
126 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127#define CONFIG_SYS_INIT_RAM_LOCK 1
128#define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200129#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500130#define CONFIG_SYS_GBL_DATA_OFFSET \
131 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Dave Liu8bd522c2008-01-11 18:48:24 +0800132
133/*
134 * Local Bus Configuration & Clock Setup
135 */
Kim Phillipsc7190f02009-09-25 18:19:44 -0500136#define CONFIG_SYS_LCRR_DBYP LCRR_DBYP
137#define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138#define CONFIG_SYS_LBC_LBCR 0x00040000
Becky Bruce0914f482010-06-17 11:37:18 -0500139#define CONFIG_FSL_ELBC 1
Dave Liu8bd522c2008-01-11 18:48:24 +0800140
141/*
142 * FLASH on the Local Bus
143 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200144#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
Dave Liu8bd522c2008-01-11 18:48:24 +0800145
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200146#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500147#define CONFIG_SYS_FLASH_SIZE 8 /* FLASH size is 8M */
Dave Liu8bd522c2008-01-11 18:48:24 +0800148
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500150/* 127 64KB sectors and 8 8KB top sectors per device */
151#define CONFIG_SYS_MAX_FLASH_SECT 135
Dave Liu8bd522c2008-01-11 18:48:24 +0800152
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153#undef CONFIG_SYS_FLASH_CHECKSUM
154#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
155#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
Dave Liu8bd522c2008-01-11 18:48:24 +0800156
157/*
158 * NAND Flash on the Local Bus
159 */
Anton Vorontsov2e950042009-11-24 20:12:12 +0300160
161#ifdef CONFIG_NAND_SPL
162#define CONFIG_SYS_NAND_BASE 0xFFF00000
163#else
164#define CONFIG_SYS_NAND_BASE 0xE0600000
165#endif
166
Scott Woode8d3ca82010-08-30 18:04:52 -0500167#define CONFIG_MTD_PARTITION
Scott Woode8d3ca82010-08-30 18:04:52 -0500168
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169#define CONFIG_SYS_MAX_NAND_DEVICE 1
Dave Liu1ac57442008-11-04 14:55:06 +0800170#define CONFIG_NAND_FSL_ELBC 1
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500171#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
172#define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024) /* 0x00008000 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800173
Anton Vorontsov2e950042009-11-24 20:12:12 +0300174#define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
175#define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
176#define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
177#define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
178#define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
179
Mario Six7577cb12019-01-21 09:17:41 +0100180#define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE \
181 | BR_PS_16 /* 16 bit port */ \
182 | BR_MS_GPCM /* MSEL = GPCM */ \
183 | BR_V) /* valid */
184#define CONFIG_SYS_OR0_PRELIM (OR_AM_8MB \
185 | OR_UPM_XAM \
186 | OR_GPCM_CSNT \
187 | OR_GPCM_ACS_DIV2 \
188 | OR_GPCM_XACS \
189 | OR_GPCM_SCY_15 \
190 | OR_GPCM_TRLX_SET \
191 | OR_GPCM_EHTR_SET \
192 | OR_GPCM_EAD)
193#define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_NAND_BASE \
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500194 | BR_DECC_CHK_GEN /* Use HW ECC */ \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500195 | BR_PS_8 /* 8 bit port */ \
Dave Liu8bd522c2008-01-11 18:48:24 +0800196 | BR_MS_FCM /* MSEL = FCM */ \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500197 | BR_V) /* valid */
Mario Six7577cb12019-01-21 09:17:41 +0100198#define CONFIG_SYS_OR1_PRELIM \
199 (OR_AM_32KB \
Dave Liu8bd522c2008-01-11 18:48:24 +0800200 | OR_FCM_CSCT \
201 | OR_FCM_CST \
202 | OR_FCM_CHT \
203 | OR_FCM_SCY_1 \
204 | OR_FCM_TRLX \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500205 | OR_FCM_EHTR)
Dave Liu8bd522c2008-01-11 18:48:24 +0800206 /* 0xFFFF8396 */
207
Mario Six7577cb12019-01-21 09:17:41 +0100208/* Still needed for spl_minimal.c */
209#define CONFIG_SYS_NAND_BR_PRELIM CONFIG_SYS_BR1_PRELIM
210#define CONFIG_SYS_NAND_OR_PRELIM CONFIG_SYS_OR1_PRELIM
Anton Vorontsov2e950042009-11-24 20:12:12 +0300211
Anton Vorontsov2e950042009-11-24 20:12:12 +0300212#if CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE && \
213 !defined(CONFIG_NAND_SPL)
214#define CONFIG_SYS_RAMBOOT
215#else
216#undef CONFIG_SYS_RAMBOOT
217#endif
218
Dave Liu8bd522c2008-01-11 18:48:24 +0800219/*
220 * Serial Port
221 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200222#define CONFIG_SYS_NS16550_SERIAL
223#define CONFIG_SYS_NS16550_REG_SIZE 1
Mario Six0f06f572019-01-21 09:17:52 +0100224#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0))
Dave Liu8bd522c2008-01-11 18:48:24 +0800225
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200226#define CONFIG_SYS_BAUDRATE_TABLE \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500227 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
Dave Liu8bd522c2008-01-11 18:48:24 +0800228
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200229#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
230#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
Dave Liu8bd522c2008-01-11 18:48:24 +0800231
Dave Liu8bd522c2008-01-11 18:48:24 +0800232/* I2C */
Heiko Schocher00f792e2012-10-24 13:48:22 +0200233#define CONFIG_SYS_I2C
234#define CONFIG_SYS_I2C_FSL
235#define CONFIG_SYS_FSL_I2C_SPEED 400000
236#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
237#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
238#define CONFIG_SYS_I2C_NOPROBES { {0, 0x51} }
Dave Liu8bd522c2008-01-11 18:48:24 +0800239
240/*
241 * Board info - revision and where boot from
242 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200243#define CONFIG_SYS_I2C_PCF8574A_ADDR 0x39
Dave Liu8bd522c2008-01-11 18:48:24 +0800244
245/*
246 * Config on-board RTC
247 */
248#define CONFIG_RTC_DS1337 /* ds1339 on board, use ds1337 rtc via i2c */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200249#define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800250
251/*
252 * General PCI
253 * Addresses are mapped 1-1.
254 */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500255#define CONFIG_SYS_PCI_MEM_BASE 0x80000000
256#define CONFIG_SYS_PCI_MEM_PHYS CONFIG_SYS_PCI_MEM_BASE
257#define CONFIG_SYS_PCI_MEM_SIZE 0x10000000 /* 256M */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200258#define CONFIG_SYS_PCI_MMIO_BASE 0x90000000
259#define CONFIG_SYS_PCI_MMIO_PHYS CONFIG_SYS_PCI_MMIO_BASE
260#define CONFIG_SYS_PCI_MMIO_SIZE 0x10000000 /* 256M */
261#define CONFIG_SYS_PCI_IO_BASE 0x00000000
262#define CONFIG_SYS_PCI_IO_PHYS 0xE0300000
263#define CONFIG_SYS_PCI_IO_SIZE 0x100000 /* 1M */
Dave Liu8bd522c2008-01-11 18:48:24 +0800264
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200265#define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE
266#define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000
267#define CONFIG_SYS_PCI_SLV_MEM_SIZE 0x80000000
Dave Liu8bd522c2008-01-11 18:48:24 +0800268
Anton Vorontsov8f11e342009-01-08 04:26:17 +0300269#define CONFIG_SYS_PCIE1_BASE 0xA0000000
270#define CONFIG_SYS_PCIE1_MEM_BASE 0xA0000000
271#define CONFIG_SYS_PCIE1_MEM_PHYS 0xA0000000
272#define CONFIG_SYS_PCIE1_MEM_SIZE 0x10000000
273#define CONFIG_SYS_PCIE1_CFG_BASE 0xB0000000
274#define CONFIG_SYS_PCIE1_CFG_SIZE 0x01000000
275#define CONFIG_SYS_PCIE1_IO_BASE 0x00000000
276#define CONFIG_SYS_PCIE1_IO_PHYS 0xB1000000
277#define CONFIG_SYS_PCIE1_IO_SIZE 0x00800000
278
279#define CONFIG_SYS_PCIE2_BASE 0xC0000000
280#define CONFIG_SYS_PCIE2_MEM_BASE 0xC0000000
281#define CONFIG_SYS_PCIE2_MEM_PHYS 0xC0000000
282#define CONFIG_SYS_PCIE2_MEM_SIZE 0x10000000
283#define CONFIG_SYS_PCIE2_CFG_BASE 0xD0000000
284#define CONFIG_SYS_PCIE2_CFG_SIZE 0x01000000
285#define CONFIG_SYS_PCIE2_IO_BASE 0x00000000
286#define CONFIG_SYS_PCIE2_IO_PHYS 0xD1000000
287#define CONFIG_SYS_PCIE2_IO_SIZE 0x00800000
288
Gabor Juhos842033e2013-05-30 07:06:12 +0000289#define CONFIG_PCI_INDIRECT_BRIDGE
Kim Phillipsbe9b56d2009-07-23 14:09:38 -0500290#define CONFIG_PCIE
Dave Liu8bd522c2008-01-11 18:48:24 +0800291
Dave Liu8bd522c2008-01-11 18:48:24 +0800292#define CONFIG_EEPRO100
293#undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200294#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */
Dave Liu8bd522c2008-01-11 18:48:24 +0800295
Anton Vorontsov25f5f0d2008-07-08 21:00:04 +0400296#define CONFIG_HAS_FSL_DR_USB
Vivek Mahajan6823e9b2009-05-25 17:23:17 +0530297#define CONFIG_SYS_SCCR_USBDRCM 3
298
Vivek Mahajan6823e9b2009-05-25 17:23:17 +0530299#define CONFIG_USB_EHCI_FSL
Joe Hershberger6f681b72011-10-11 23:57:11 -0500300#define CONFIG_USB_PHY_TYPE "utmi"
Vivek Mahajan6823e9b2009-05-25 17:23:17 +0530301#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
Anton Vorontsov25f5f0d2008-07-08 21:00:04 +0400302
Dave Liu8bd522c2008-01-11 18:48:24 +0800303/*
304 * TSEC
305 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200306#define CONFIG_SYS_TSEC1_OFFSET 0x24000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500307#define CONFIG_SYS_TSEC1 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC1_OFFSET)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200308#define CONFIG_SYS_TSEC2_OFFSET 0x25000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500309#define CONFIG_SYS_TSEC2 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC2_OFFSET)
Dave Liu8bd522c2008-01-11 18:48:24 +0800310
311/*
312 * TSEC ethernet configuration
313 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800314#define CONFIG_TSEC1 1
315#define CONFIG_TSEC1_NAME "eTSEC0"
316#define CONFIG_TSEC2 1
317#define CONFIG_TSEC2_NAME "eTSEC1"
318#define TSEC1_PHY_ADDR 0
319#define TSEC2_PHY_ADDR 1
320#define TSEC1_PHYIDX 0
321#define TSEC2_PHYIDX 0
322#define TSEC1_FLAGS TSEC_GIGABIT
323#define TSEC2_FLAGS TSEC_GIGABIT
324
325/* Options are: eTSEC[0-1] */
326#define CONFIG_ETHPRIME "eTSEC1"
327
328/*
Kim Phillips730e7922008-03-28 14:31:23 -0500329 * SATA
330 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200331#define CONFIG_SYS_SATA_MAX_DEVICE 2
Kim Phillips730e7922008-03-28 14:31:23 -0500332#define CONFIG_SATA1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200333#define CONFIG_SYS_SATA1_OFFSET 0x18000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500334#define CONFIG_SYS_SATA1 (CONFIG_SYS_IMMR + CONFIG_SYS_SATA1_OFFSET)
335#define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA
Kim Phillips730e7922008-03-28 14:31:23 -0500336#define CONFIG_SATA2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200337#define CONFIG_SYS_SATA2_OFFSET 0x19000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500338#define CONFIG_SYS_SATA2 (CONFIG_SYS_IMMR + CONFIG_SYS_SATA2_OFFSET)
339#define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA
Kim Phillips730e7922008-03-28 14:31:23 -0500340
341#ifdef CONFIG_FSL_SATA
342#define CONFIG_LBA48
Kim Phillips730e7922008-03-28 14:31:23 -0500343#endif
344
345/*
Dave Liu8bd522c2008-01-11 18:48:24 +0800346 * Environment
347 */
Masahiro Yamadad0fb0fc2014-06-04 10:26:51 +0900348#if !defined(CONFIG_SYS_RAMBOOT)
Joe Hershberger6f681b72011-10-11 23:57:11 -0500349 #define CONFIG_ENV_ADDR \
350 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200351 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K(one sector) for env */
352 #define CONFIG_ENV_SIZE 0x2000
Dave Liu8bd522c2008-01-11 18:48:24 +0800353#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200354 #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200355 #define CONFIG_ENV_SIZE 0x2000
Dave Liu8bd522c2008-01-11 18:48:24 +0800356#endif
357
358#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200359#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Dave Liu8bd522c2008-01-11 18:48:24 +0800360
361/*
362 * BOOTP options
363 */
364#define CONFIG_BOOTP_BOOTFILESIZE
Dave Liu8bd522c2008-01-11 18:48:24 +0800365
366/*
367 * Command line configuration.
368 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800369
Dave Liu8bd522c2008-01-11 18:48:24 +0800370#undef CONFIG_WATCHDOG /* watchdog disabled */
371
372/*
373 * Miscellaneous configurable options
374 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200375#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Dave Liu8bd522c2008-01-11 18:48:24 +0800376
Dave Liu8bd522c2008-01-11 18:48:24 +0800377/*
378 * For booting Linux, the board info and command line data
Ira W. Snyder9f530d52010-09-10 15:42:32 -0700379 * have to be in the first 256 MB of memory, since this is
Dave Liu8bd522c2008-01-11 18:48:24 +0800380 * the maximum mapped by the Linux kernel during initialization.
381 */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500382#define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */
Kevin Hao63865272016-07-08 11:25:15 +0800383#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Dave Liu8bd522c2008-01-11 18:48:24 +0800384
385/*
386 * Core HID Setup
387 */
Kim Phillips1a2e2032010-04-20 19:37:54 -0500388#define CONFIG_SYS_HID0_INIT 0x000000000
389#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
390 HID0_ENABLE_INSTRUCTION_CACHE | \
Dave Liu8bd522c2008-01-11 18:48:24 +0800391 HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200392#define CONFIG_SYS_HID2 HID2_HBE
Dave Liu8bd522c2008-01-11 18:48:24 +0800393
394/*
395 * MMU Setup
396 */
397
Dave Liu8bd522c2008-01-11 18:48:24 +0800398#if defined(CONFIG_CMD_KGDB)
399#define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
Dave Liu8bd522c2008-01-11 18:48:24 +0800400#endif
401
402/*
403 * Environment Configuration
404 */
405
406#define CONFIG_ENV_OVERWRITE
407
408#if defined(CONFIG_TSEC_ENET)
409#define CONFIG_HAS_ETH0
Dave Liu8bd522c2008-01-11 18:48:24 +0800410#define CONFIG_HAS_ETH1
Dave Liu8bd522c2008-01-11 18:48:24 +0800411#endif
412
Kim Phillips79f516b2009-08-21 16:34:38 -0500413#define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */
Dave Liu8bd522c2008-01-11 18:48:24 +0800414
Dave Liu8bd522c2008-01-11 18:48:24 +0800415#define CONFIG_EXTRA_ENV_SETTINGS \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500416 "netdev=eth0\0" \
417 "consoledev=ttyS0\0" \
418 "ramdiskaddr=1000000\0" \
419 "ramdiskfile=ramfs.83xx\0" \
420 "fdtaddr=780000\0" \
421 "fdtfile=mpc8315erdb.dtb\0" \
422 "usb_phy_type=utmi\0" \
423 ""
Dave Liu8bd522c2008-01-11 18:48:24 +0800424
425#define CONFIG_NFSBOOTCOMMAND \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500426 "setenv bootargs root=/dev/nfs rw " \
427 "nfsroot=$serverip:$rootpath " \
428 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:" \
429 "$netdev:off " \
430 "console=$consoledev,$baudrate $othbootargs;" \
431 "tftp $loadaddr $bootfile;" \
432 "tftp $fdtaddr $fdtfile;" \
433 "bootm $loadaddr - $fdtaddr"
Dave Liu8bd522c2008-01-11 18:48:24 +0800434
435#define CONFIG_RAMBOOTCOMMAND \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500436 "setenv bootargs root=/dev/ram rw " \
437 "console=$consoledev,$baudrate $othbootargs;" \
438 "tftp $ramdiskaddr $ramdiskfile;" \
439 "tftp $loadaddr $bootfile;" \
440 "tftp $fdtaddr $fdtfile;" \
441 "bootm $loadaddr $ramdiskaddr $fdtaddr"
Dave Liu8bd522c2008-01-11 18:48:24 +0800442
Dave Liu8bd522c2008-01-11 18:48:24 +0800443#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
444
445#endif /* __CONFIG_H */