blob: 521c5ca6eec5f3b1ac8e6bc2de0519814a9cd9d0 [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
Dave Liu8bd522c2008-01-11 18:48:24 +080034/*
35 * DDR Setup
36 */
Mario Six8a81bfd2019-01-21 09:18:15 +010037#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038#define CONFIG_SYS_DDR_SDRAM_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
Joe Hershberger6f681b72011-10-11 23:57:11 -050039#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
Dave Liu8bd522c2008-01-11 18:48:24 +080040 | DDRCDR_PZ_LOZ \
41 | DDRCDR_NZ_LOZ \
42 | DDRCDR_ODT \
Joe Hershberger6f681b72011-10-11 23:57:11 -050043 | DDRCDR_Q_DRN)
Dave Liu8bd522c2008-01-11 18:48:24 +080044 /* 0x7b880001 */
45/*
46 * Manually set up DDR parameters
47 * consist of two chips HY5PS12621BFP-C4 from HYNIX
48 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049#define CONFIG_SYS_DDR_SIZE 128 /* MB */
50#define CONFIG_SYS_DDR_CS0_BNDS 0x00000007
Joe Hershberger6f681b72011-10-11 23:57:11 -050051#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Joe Hershberger2fef4022011-10-11 23:57:29 -050052 | CSCONFIG_ODT_RD_NEVER \
53 | CSCONFIG_ODT_WR_ONLY_CURRENT \
Joe Hershberger6f681b72011-10-11 23:57:11 -050054 | CSCONFIG_ROW_BIT_13 \
55 | CSCONFIG_COL_BIT_10)
Dave Liu8bd522c2008-01-11 18:48:24 +080056 /* 0x80010102 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057#define CONFIG_SYS_DDR_TIMING_3 0x00000000
Joe Hershberger6f681b72011-10-11 23:57:11 -050058#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
59 | (0 << TIMING_CFG0_WRT_SHIFT) \
60 | (0 << TIMING_CFG0_RRT_SHIFT) \
61 | (0 << TIMING_CFG0_WWT_SHIFT) \
62 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
63 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
64 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
65 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
Dave Liu8bd522c2008-01-11 18:48:24 +080066 /* 0x00220802 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050067#define CONFIG_SYS_DDR_TIMING_1 ((2 << TIMING_CFG1_PRETOACT_SHIFT) \
68 | (7 << TIMING_CFG1_ACTTOPRE_SHIFT) \
69 | (2 << TIMING_CFG1_ACTTORW_SHIFT) \
70 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
71 | (6 << TIMING_CFG1_REFREC_SHIFT) \
72 | (2 << TIMING_CFG1_WRREC_SHIFT) \
73 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
74 | (2 << TIMING_CFG1_WRTORD_SHIFT))
Howard Gregory2f2a5c32008-11-04 14:55:33 +080075 /* 0x27256222 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050076#define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
77 | (4 << TIMING_CFG2_CPO_SHIFT) \
78 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
79 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
80 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
81 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
82 | (5 << TIMING_CFG2_FOUR_ACT_SHIFT))
Howard Gregory2f2a5c32008-11-04 14:55:33 +080083 /* 0x121048c5 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050084#define CONFIG_SYS_DDR_INTERVAL ((0x0360 << SDRAM_INTERVAL_REFINT_SHIFT) \
85 | (0x0100 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
Dave Liu8bd522c2008-01-11 18:48:24 +080086 /* 0x03600100 */
Joe Hershberger6f681b72011-10-11 23:57:11 -050087#define CONFIG_SYS_DDR_SDRAM_CFG (SDRAM_CFG_SREN \
Dave Liu8bd522c2008-01-11 18:48:24 +080088 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
Joe Hershberger2fef4022011-10-11 23:57:29 -050089 | SDRAM_CFG_DBW_32)
Dave Liu8bd522c2008-01-11 18:48:24 +080090 /* 0x43080000 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020091#define CONFIG_SYS_DDR_SDRAM_CFG2 0x00401000 /* 1 posted refresh */
Joe Hershberger6f681b72011-10-11 23:57:11 -050092#define CONFIG_SYS_DDR_MODE ((0x0448 << SDRAM_MODE_ESD_SHIFT) \
93 | (0x0232 << SDRAM_MODE_SD_SHIFT))
Dave Liu8bd522c2008-01-11 18:48:24 +080094 /* ODT 150ohm CL=3, AL=1 on SDRAM */
Joe Hershberger6f681b72011-10-11 23:57:11 -050095#define CONFIG_SYS_DDR_MODE2 0x00000000
Dave Liu8bd522c2008-01-11 18:48:24 +080096
97/*
98 * Memory test
99 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100#undef CONFIG_SYS_DRAM_TEST /* memory test, takes time */
101#define CONFIG_SYS_MEMTEST_START 0x00040000 /* memtest region */
102#define CONFIG_SYS_MEMTEST_END 0x00140000
Dave Liu8bd522c2008-01-11 18:48:24 +0800103
104/*
105 * The reserved memory
106 */
Kevin Hao16c8c172016-07-08 11:25:14 +0800107#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500108#define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
Dave Liu8bd522c2008-01-11 18:48:24 +0800109
110/*
111 * Initial RAM Base Address Setup
112 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113#define CONFIG_SYS_INIT_RAM_LOCK 1
114#define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
Wolfgang Denk553f0982010-10-26 13:32:32 +0200115#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500116#define CONFIG_SYS_GBL_DATA_OFFSET \
117 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Dave Liu8bd522c2008-01-11 18:48:24 +0800118
Mario Six42c9a492019-01-21 09:18:17 +0100119#define CONFIG_FSL_ELBC
Dave Liu8bd522c2008-01-11 18:48:24 +0800120
121/*
122 * FLASH on the Local Bus
123 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200124#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
Dave Liu8bd522c2008-01-11 18:48:24 +0800125
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500127#define CONFIG_SYS_FLASH_SIZE 8 /* FLASH size is 8M */
Dave Liu8bd522c2008-01-11 18:48:24 +0800128
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500130/* 127 64KB sectors and 8 8KB top sectors per device */
131#define CONFIG_SYS_MAX_FLASH_SECT 135
Dave Liu8bd522c2008-01-11 18:48:24 +0800132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133#undef CONFIG_SYS_FLASH_CHECKSUM
134#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
135#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
Dave Liu8bd522c2008-01-11 18:48:24 +0800136
137/*
138 * NAND Flash on the Local Bus
139 */
Anton Vorontsov2e950042009-11-24 20:12:12 +0300140
141#ifdef CONFIG_NAND_SPL
142#define CONFIG_SYS_NAND_BASE 0xFFF00000
143#else
144#define CONFIG_SYS_NAND_BASE 0xE0600000
145#endif
146
Scott Woode8d3ca82010-08-30 18:04:52 -0500147#define CONFIG_MTD_PARTITION
Scott Woode8d3ca82010-08-30 18:04:52 -0500148
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149#define CONFIG_SYS_MAX_NAND_DEVICE 1
Dave Liu1ac57442008-11-04 14:55:06 +0800150#define CONFIG_NAND_FSL_ELBC 1
Joe Hershberger7d6a0982011-10-11 23:57:30 -0500151#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
152#define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024) /* 0x00008000 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800153
Anton Vorontsov2e950042009-11-24 20:12:12 +0300154#define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
155#define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
156#define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
157#define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
158#define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
159
Mario Sixa8f97532019-01-21 09:18:01 +0100160
Dave Liu8bd522c2008-01-11 18:48:24 +0800161
Mario Six7577cb12019-01-21 09:17:41 +0100162/* Still needed for spl_minimal.c */
163#define CONFIG_SYS_NAND_BR_PRELIM CONFIG_SYS_BR1_PRELIM
164#define CONFIG_SYS_NAND_OR_PRELIM CONFIG_SYS_OR1_PRELIM
Anton Vorontsov2e950042009-11-24 20:12:12 +0300165
Anton Vorontsov2e950042009-11-24 20:12:12 +0300166#if CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE && \
167 !defined(CONFIG_NAND_SPL)
168#define CONFIG_SYS_RAMBOOT
169#else
170#undef CONFIG_SYS_RAMBOOT
171#endif
172
Dave Liu8bd522c2008-01-11 18:48:24 +0800173/*
174 * Serial Port
175 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176#define CONFIG_SYS_NS16550_SERIAL
177#define CONFIG_SYS_NS16550_REG_SIZE 1
Mario Six0f06f572019-01-21 09:17:52 +0100178#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0))
Dave Liu8bd522c2008-01-11 18:48:24 +0800179
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180#define CONFIG_SYS_BAUDRATE_TABLE \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500181 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
Dave Liu8bd522c2008-01-11 18:48:24 +0800182
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200183#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
184#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
Dave Liu8bd522c2008-01-11 18:48:24 +0800185
Dave Liu8bd522c2008-01-11 18:48:24 +0800186/* I2C */
Heiko Schocher00f792e2012-10-24 13:48:22 +0200187#define CONFIG_SYS_I2C
188#define CONFIG_SYS_I2C_FSL
189#define CONFIG_SYS_FSL_I2C_SPEED 400000
190#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
191#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
192#define CONFIG_SYS_I2C_NOPROBES { {0, 0x51} }
Dave Liu8bd522c2008-01-11 18:48:24 +0800193
194/*
195 * Board info - revision and where boot from
196 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200197#define CONFIG_SYS_I2C_PCF8574A_ADDR 0x39
Dave Liu8bd522c2008-01-11 18:48:24 +0800198
199/*
200 * Config on-board RTC
201 */
202#define CONFIG_RTC_DS1337 /* ds1339 on board, use ds1337 rtc via i2c */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200203#define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* at address 0x68 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800204
205/*
206 * General PCI
207 * Addresses are mapped 1-1.
208 */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500209#define CONFIG_SYS_PCI_MEM_BASE 0x80000000
210#define CONFIG_SYS_PCI_MEM_PHYS CONFIG_SYS_PCI_MEM_BASE
211#define CONFIG_SYS_PCI_MEM_SIZE 0x10000000 /* 256M */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200212#define CONFIG_SYS_PCI_MMIO_BASE 0x90000000
213#define CONFIG_SYS_PCI_MMIO_PHYS CONFIG_SYS_PCI_MMIO_BASE
214#define CONFIG_SYS_PCI_MMIO_SIZE 0x10000000 /* 256M */
215#define CONFIG_SYS_PCI_IO_BASE 0x00000000
216#define CONFIG_SYS_PCI_IO_PHYS 0xE0300000
217#define CONFIG_SYS_PCI_IO_SIZE 0x100000 /* 1M */
Dave Liu8bd522c2008-01-11 18:48:24 +0800218
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200219#define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE
220#define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000
221#define CONFIG_SYS_PCI_SLV_MEM_SIZE 0x80000000
Dave Liu8bd522c2008-01-11 18:48:24 +0800222
Anton Vorontsov8f11e342009-01-08 04:26:17 +0300223#define CONFIG_SYS_PCIE1_BASE 0xA0000000
224#define CONFIG_SYS_PCIE1_MEM_BASE 0xA0000000
225#define CONFIG_SYS_PCIE1_MEM_PHYS 0xA0000000
226#define CONFIG_SYS_PCIE1_MEM_SIZE 0x10000000
227#define CONFIG_SYS_PCIE1_CFG_BASE 0xB0000000
228#define CONFIG_SYS_PCIE1_CFG_SIZE 0x01000000
229#define CONFIG_SYS_PCIE1_IO_BASE 0x00000000
230#define CONFIG_SYS_PCIE1_IO_PHYS 0xB1000000
231#define CONFIG_SYS_PCIE1_IO_SIZE 0x00800000
232
233#define CONFIG_SYS_PCIE2_BASE 0xC0000000
234#define CONFIG_SYS_PCIE2_MEM_BASE 0xC0000000
235#define CONFIG_SYS_PCIE2_MEM_PHYS 0xC0000000
236#define CONFIG_SYS_PCIE2_MEM_SIZE 0x10000000
237#define CONFIG_SYS_PCIE2_CFG_BASE 0xD0000000
238#define CONFIG_SYS_PCIE2_CFG_SIZE 0x01000000
239#define CONFIG_SYS_PCIE2_IO_BASE 0x00000000
240#define CONFIG_SYS_PCIE2_IO_PHYS 0xD1000000
241#define CONFIG_SYS_PCIE2_IO_SIZE 0x00800000
242
Gabor Juhos842033e2013-05-30 07:06:12 +0000243#define CONFIG_PCI_INDIRECT_BRIDGE
Kim Phillipsbe9b56d2009-07-23 14:09:38 -0500244#define CONFIG_PCIE
Dave Liu8bd522c2008-01-11 18:48:24 +0800245
Dave Liu8bd522c2008-01-11 18:48:24 +0800246#define CONFIG_EEPRO100
247#undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200248#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1957 /* Freescale */
Dave Liu8bd522c2008-01-11 18:48:24 +0800249
Anton Vorontsov25f5f0d2008-07-08 21:00:04 +0400250#define CONFIG_HAS_FSL_DR_USB
Vivek Mahajan6823e9b2009-05-25 17:23:17 +0530251#define CONFIG_SYS_SCCR_USBDRCM 3
252
Vivek Mahajan6823e9b2009-05-25 17:23:17 +0530253#define CONFIG_USB_EHCI_FSL
Joe Hershberger6f681b72011-10-11 23:57:11 -0500254#define CONFIG_USB_PHY_TYPE "utmi"
Vivek Mahajan6823e9b2009-05-25 17:23:17 +0530255#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
Anton Vorontsov25f5f0d2008-07-08 21:00:04 +0400256
Dave Liu8bd522c2008-01-11 18:48:24 +0800257/*
258 * TSEC
259 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200260#define CONFIG_SYS_TSEC1_OFFSET 0x24000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500261#define CONFIG_SYS_TSEC1 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC1_OFFSET)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262#define CONFIG_SYS_TSEC2_OFFSET 0x25000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500263#define CONFIG_SYS_TSEC2 (CONFIG_SYS_IMMR+CONFIG_SYS_TSEC2_OFFSET)
Dave Liu8bd522c2008-01-11 18:48:24 +0800264
265/*
266 * TSEC ethernet configuration
267 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800268#define CONFIG_TSEC1 1
269#define CONFIG_TSEC1_NAME "eTSEC0"
270#define CONFIG_TSEC2 1
271#define CONFIG_TSEC2_NAME "eTSEC1"
272#define TSEC1_PHY_ADDR 0
273#define TSEC2_PHY_ADDR 1
274#define TSEC1_PHYIDX 0
275#define TSEC2_PHYIDX 0
276#define TSEC1_FLAGS TSEC_GIGABIT
277#define TSEC2_FLAGS TSEC_GIGABIT
278
279/* Options are: eTSEC[0-1] */
280#define CONFIG_ETHPRIME "eTSEC1"
281
282/*
Kim Phillips730e7922008-03-28 14:31:23 -0500283 * SATA
284 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200285#define CONFIG_SYS_SATA_MAX_DEVICE 2
Kim Phillips730e7922008-03-28 14:31:23 -0500286#define CONFIG_SATA1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200287#define CONFIG_SYS_SATA1_OFFSET 0x18000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500288#define CONFIG_SYS_SATA1 (CONFIG_SYS_IMMR + CONFIG_SYS_SATA1_OFFSET)
289#define CONFIG_SYS_SATA1_FLAGS FLAGS_DMA
Kim Phillips730e7922008-03-28 14:31:23 -0500290#define CONFIG_SATA2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200291#define CONFIG_SYS_SATA2_OFFSET 0x19000
Joe Hershberger6f681b72011-10-11 23:57:11 -0500292#define CONFIG_SYS_SATA2 (CONFIG_SYS_IMMR + CONFIG_SYS_SATA2_OFFSET)
293#define CONFIG_SYS_SATA2_FLAGS FLAGS_DMA
Kim Phillips730e7922008-03-28 14:31:23 -0500294
295#ifdef CONFIG_FSL_SATA
296#define CONFIG_LBA48
Kim Phillips730e7922008-03-28 14:31:23 -0500297#endif
298
299/*
Dave Liu8bd522c2008-01-11 18:48:24 +0800300 * Environment
301 */
Masahiro Yamadad0fb0fc2014-06-04 10:26:51 +0900302#if !defined(CONFIG_SYS_RAMBOOT)
Joe Hershberger6f681b72011-10-11 23:57:11 -0500303 #define CONFIG_ENV_ADDR \
304 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200305 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K(one sector) for env */
306 #define CONFIG_ENV_SIZE 0x2000
Dave Liu8bd522c2008-01-11 18:48:24 +0800307#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200308 #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200309 #define CONFIG_ENV_SIZE 0x2000
Dave Liu8bd522c2008-01-11 18:48:24 +0800310#endif
311
312#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200313#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Dave Liu8bd522c2008-01-11 18:48:24 +0800314
315/*
316 * BOOTP options
317 */
318#define CONFIG_BOOTP_BOOTFILESIZE
Dave Liu8bd522c2008-01-11 18:48:24 +0800319
320/*
321 * Command line configuration.
322 */
Dave Liu8bd522c2008-01-11 18:48:24 +0800323
Dave Liu8bd522c2008-01-11 18:48:24 +0800324#undef CONFIG_WATCHDOG /* watchdog disabled */
325
326/*
327 * Miscellaneous configurable options
328 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200329#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Dave Liu8bd522c2008-01-11 18:48:24 +0800330
Dave Liu8bd522c2008-01-11 18:48:24 +0800331/*
332 * For booting Linux, the board info and command line data
Ira W. Snyder9f530d52010-09-10 15:42:32 -0700333 * have to be in the first 256 MB of memory, since this is
Dave Liu8bd522c2008-01-11 18:48:24 +0800334 * the maximum mapped by the Linux kernel during initialization.
335 */
Joe Hershberger6f681b72011-10-11 23:57:11 -0500336#define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */
Kevin Hao63865272016-07-08 11:25:15 +0800337#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Dave Liu8bd522c2008-01-11 18:48:24 +0800338
339/*
Dave Liu8bd522c2008-01-11 18:48:24 +0800340 * MMU Setup
341 */
342
Dave Liu8bd522c2008-01-11 18:48:24 +0800343#if defined(CONFIG_CMD_KGDB)
344#define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
Dave Liu8bd522c2008-01-11 18:48:24 +0800345#endif
346
347/*
348 * Environment Configuration
349 */
350
351#define CONFIG_ENV_OVERWRITE
352
353#if defined(CONFIG_TSEC_ENET)
354#define CONFIG_HAS_ETH0
Dave Liu8bd522c2008-01-11 18:48:24 +0800355#define CONFIG_HAS_ETH1
Dave Liu8bd522c2008-01-11 18:48:24 +0800356#endif
357
Kim Phillips79f516b2009-08-21 16:34:38 -0500358#define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */
Dave Liu8bd522c2008-01-11 18:48:24 +0800359
Dave Liu8bd522c2008-01-11 18:48:24 +0800360#define CONFIG_EXTRA_ENV_SETTINGS \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500361 "netdev=eth0\0" \
362 "consoledev=ttyS0\0" \
363 "ramdiskaddr=1000000\0" \
364 "ramdiskfile=ramfs.83xx\0" \
365 "fdtaddr=780000\0" \
366 "fdtfile=mpc8315erdb.dtb\0" \
367 "usb_phy_type=utmi\0" \
368 ""
Dave Liu8bd522c2008-01-11 18:48:24 +0800369
370#define CONFIG_NFSBOOTCOMMAND \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500371 "setenv bootargs root=/dev/nfs rw " \
372 "nfsroot=$serverip:$rootpath " \
373 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:" \
374 "$netdev:off " \
375 "console=$consoledev,$baudrate $othbootargs;" \
376 "tftp $loadaddr $bootfile;" \
377 "tftp $fdtaddr $fdtfile;" \
378 "bootm $loadaddr - $fdtaddr"
Dave Liu8bd522c2008-01-11 18:48:24 +0800379
380#define CONFIG_RAMBOOTCOMMAND \
Joe Hershberger6f681b72011-10-11 23:57:11 -0500381 "setenv bootargs root=/dev/ram rw " \
382 "console=$consoledev,$baudrate $othbootargs;" \
383 "tftp $ramdiskaddr $ramdiskfile;" \
384 "tftp $loadaddr $bootfile;" \
385 "tftp $fdtaddr $fdtfile;" \
386 "bootm $loadaddr $ramdiskaddr $fdtaddr"
Dave Liu8bd522c2008-01-11 18:48:24 +0800387
Dave Liu8bd522c2008-01-11 18:48:24 +0800388#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
389
390#endif /* __CONFIG_H */