blob: 63e23c276e82e0985ae8c020ab3dae30dd7da1bf [file] [log] [blame]
Jon Loeliger77a4f6e2005-07-25 14:05:07 -05001/*
Kumar Galaad4e9d42011-01-04 17:57:59 -06002 * Copyright 2004, 2007, 2010-2011 Freescale Semiconductor.
Jon Loeliger77a4f6e2005-07-25 14:05:07 -05003 *
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
Ed Swarthout95ae0a02007-07-27 01:50:52 -050014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050015 * 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/*
24 * mpc8548cds board configuration file
25 *
26 * Please refer to doc/README.mpc85xxcds for more info.
27 *
28 */
29#ifndef __CONFIG_H
30#define __CONFIG_H
31
32/* High Level Configuration Options */
33#define CONFIG_BOOKE 1 /* BOOKE */
34#define CONFIG_E500 1 /* BOOKE e500 family */
35#define CONFIG_MPC85xx 1 /* MPC8540/60/55/41/48 */
36#define CONFIG_MPC8548 1 /* MPC8548 specific */
37#define CONFIG_MPC8548CDS 1 /* MPC8548CDS board specific */
38
Wolfgang Denk291ba1b2010-10-06 09:05:45 +020039#ifndef CONFIG_SYS_TEXT_BASE
40#define CONFIG_SYS_TEXT_BASE 0xfff80000
41#endif
42
Kumar Galaad4e9d42011-01-04 17:57:59 -060043#define CONFIG_SYS_SRIO
44#define CONFIG_SRIO1 /* SRIO port 1 */
45
Ed Swarthout95ae0a02007-07-27 01:50:52 -050046#define CONFIG_PCI /* enable any pci type devices */
47#define CONFIG_PCI1 /* PCI controller 1 */
48#define CONFIG_PCIE1 /* PCIE controler 1 (slot 1) */
Ed Swarthout95ae0a02007-07-27 01:50:52 -050049#undef CONFIG_PCI2
50#define CONFIG_FSL_PCI_INIT 1 /* Use common FSL init code */
Kumar Gala93166d22007-12-07 12:17:34 -060051#define CONFIG_FSL_PCIE_RESET 1 /* need PCIe reset errata */
Kumar Gala7738d5c2008-10-21 11:33:58 -050052#define CONFIG_SYS_PCI_64BIT 1 /* enable 64-bit PCI resources */
Ed Swarthout95ae0a02007-07-27 01:50:52 -050053
54#define CONFIG_TSEC_ENET /* tsec ethernet support */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050055#define CONFIG_ENV_OVERWRITE
Ed Swarthout95ae0a02007-07-27 01:50:52 -050056#define CONFIG_INTERRUPTS /* enable pci, srio, ddr interrupts */
Kumar Gala35b2b092008-01-16 01:45:10 -060057#define CONFIG_FSL_LAW 1 /* Use common FSL init code */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050058
Jon Loeliger6bcdb402008-03-19 15:02:07 -050059#define CONFIG_FSL_VIA
Jon Loeliger6bcdb402008-03-19 15:02:07 -050060
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050061#ifndef __ASSEMBLY__
62extern unsigned long get_clock_freq(void);
63#endif
64#define CONFIG_SYS_CLK_FREQ get_clock_freq() /* sysclk for MPC85xx */
65
66/*
67 * These can be toggled for performance analysis, otherwise use default.
68 */
Ed Swarthout95ae0a02007-07-27 01:50:52 -050069#define CONFIG_L2_CACHE /* toggle L2 cache */
70#define CONFIG_BTB /* toggle branch predition */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050071
72/*
73 * Only possible on E500 Version 2 or newer cores.
74 */
75#define CONFIG_ENABLE_36BIT_PHYS 1
76
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020077#define CONFIG_SYS_MEMTEST_START 0x00200000 /* memtest works on */
78#define CONFIG_SYS_MEMTEST_END 0x00400000
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050079
Timur Tabid8f341c2011-08-04 18:03:41 -050080#define CONFIG_SYS_CCSRBAR 0xe0000000
81#define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050082
Jon Loeligerc378bae2008-03-18 13:51:06 -050083/* DDR Setup */
84#define CONFIG_FSL_DDR2
85#undef CONFIG_FSL_DDR_INTERACTIVE
86#define CONFIG_SPD_EEPROM /* Use SPD EEPROM for DDR setup*/
87#define CONFIG_DDR_SPD
Jon Loeligerc378bae2008-03-18 13:51:06 -050088
Dave Liud3ca1242008-10-28 17:53:38 +080089#define CONFIG_ECC_INIT_VIA_DDRCONTROLLER /* DDR controller or DMA? */
Jon Loeligerc378bae2008-03-18 13:51:06 -050090#define CONFIG_MEM_INIT_VALUE 0xDeadBeef
91
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020092#define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 /* DDR is system memory*/
93#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050094
Jon Loeligerc378bae2008-03-18 13:51:06 -050095#define CONFIG_NUM_DDR_CONTROLLERS 1
96#define CONFIG_DIMM_SLOTS_PER_CTLR 1
97#define CONFIG_CHIP_SELECTS_PER_CTRL (2 * CONFIG_DIMM_SLOTS_PER_CTLR)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -050098
Jon Loeligerc378bae2008-03-18 13:51:06 -050099/* I2C addresses of SPD EEPROMs */
100#define SPD_EEPROM_ADDRESS 0x51 /* CTLR 0 DIMM 0 */
101
102/* Make sure required options are set */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500103#ifndef CONFIG_SPD_EEPROM
104#error ("CONFIG_SPD_EEPROM is required")
105#endif
106
107#undef CONFIG_CLOCKS_IN_MHZ
108
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500109/*
110 * Local Bus Definitions
111 */
112
113/*
114 * FLASH on the Local Bus
115 * Two banks, 8M each, using the CFI driver.
116 * Boot from BR0/OR0 bank at 0xff00_0000
117 * Alternate BR1/OR1 bank at 0xff80_0000
118 *
119 * BR0, BR1:
120 * Base address 0 = 0xff00_0000 = BR0[0:16] = 1111 1111 0000 0000 0
121 * Base address 1 = 0xff80_0000 = BR1[0:16] = 1111 1111 1000 0000 0
122 * Port Size = 16 bits = BRx[19:20] = 10
123 * Use GPCM = BRx[24:26] = 000
124 * Valid = BRx[31] = 1
125 *
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500126 * 0 4 8 12 16 20 24 28
127 * 1111 1111 1000 0000 0001 0000 0000 0001 = ff801001 BR0
128 * 1111 1111 0000 0000 0001 0000 0000 0001 = ff001001 BR1
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500129 *
130 * OR0, OR1:
131 * Addr Mask = 8M = ORx[0:16] = 1111 1111 1000 0000 0
132 * Reserved ORx[17:18] = 11, confusion here?
133 * CSNT = ORx[20] = 1
134 * ACS = half cycle delay = ORx[21:22] = 11
135 * SCY = 6 = ORx[24:27] = 0110
136 * TRLX = use relaxed timing = ORx[29] = 1
137 * EAD = use external address latch delay = OR[31] = 1
138 *
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500139 * 0 4 8 12 16 20 24 28
140 * 1111 1111 1000 0000 0110 1110 0110 0101 = ff806e65 ORx
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500141 */
142
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143#define CONFIG_SYS_BOOT_BLOCK 0xff000000 /* boot TLB block */
144#define CONFIG_SYS_FLASH_BASE CONFIG_SYS_BOOT_BLOCK /* start of FLASH 16M */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500145
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146#define CONFIG_SYS_BR0_PRELIM 0xff801001
147#define CONFIG_SYS_BR1_PRELIM 0xff001001
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500148
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200149#define CONFIG_SYS_OR0_PRELIM 0xff806e65
150#define CONFIG_SYS_OR1_PRELIM 0xff806e65
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500151
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200152#define CONFIG_SYS_FLASH_BANKS_LIST {0xff800000, CONFIG_SYS_FLASH_BASE}
153#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* number of banks */
154#define CONFIG_SYS_MAX_FLASH_SECT 128 /* sectors per device */
155#undef CONFIG_SYS_FLASH_CHECKSUM
156#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
157#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500158
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200159#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500160
Jean-Christophe PLAGNIOL-VILLARD8d94c232008-08-13 01:40:42 +0200161#define CONFIG_FLASH_CFI_DRIVER
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200162#define CONFIG_SYS_FLASH_CFI
163#define CONFIG_SYS_FLASH_EMPTY_INFO
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500164
165
166/*
167 * SDRAM on the Local Bus
168 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200169#define CONFIG_SYS_LBC_CACHE_BASE 0xf0000000 /* Localbus cacheable */
170#define CONFIG_SYS_LBC_CACHE_SIZE 64
171#define CONFIG_SYS_LBC_NONCACHE_BASE 0xf8000000 /* Localbus non-cacheable */
172#define CONFIG_SYS_LBC_NONCACHE_SIZE 64
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500173
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200174#define CONFIG_SYS_LBC_SDRAM_BASE CONFIG_SYS_LBC_CACHE_BASE /* Localbus SDRAM */
175#define CONFIG_SYS_LBC_SDRAM_SIZE 64 /* LBC SDRAM is 64MB */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500176
177/*
178 * Base Register 2 and Option Register 2 configure SDRAM.
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200179 * The SDRAM base address, CONFIG_SYS_LBC_SDRAM_BASE, is 0xf0000000.
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500180 *
181 * For BR2, need:
182 * Base address of 0xf0000000 = BR[0:16] = 1111 0000 0000 0000 0
183 * port-size = 32-bits = BR2[19:20] = 11
184 * no parity checking = BR2[21:22] = 00
185 * SDRAM for MSEL = BR2[24:26] = 011
186 * Valid = BR[31] = 1
187 *
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500188 * 0 4 8 12 16 20 24 28
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500189 * 1111 0000 0000 0000 0001 1000 0110 0001 = f0001861
190 *
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200191 * FIXME: CONFIG_SYS_LBC_SDRAM_BASE should be masked and OR'ed into
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500192 * FIXME: the top 17 bits of BR2.
193 */
194
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200195#define CONFIG_SYS_BR2_PRELIM 0xf0001861
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500196
197/*
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200198 * The SDRAM size in MB, CONFIG_SYS_LBC_SDRAM_SIZE, is 64.
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500199 *
200 * For OR2, need:
201 * 64MB mask for AM, OR2[0:7] = 1111 1100
202 * XAM, OR2[17:18] = 11
203 * 9 columns OR2[19-21] = 010
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500204 * 13 rows OR2[23-25] = 100
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500205 * EAD set for extra time OR[31] = 1
206 *
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500207 * 0 4 8 12 16 20 24 28
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500208 * 1111 1100 0000 0000 0110 1001 0000 0001 = fc006901
209 */
210
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200211#define CONFIG_SYS_OR2_PRELIM 0xfc006901
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500212
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200213#define CONFIG_SYS_LBC_LCRR 0x00030004 /* LB clock ratio reg */
214#define CONFIG_SYS_LBC_LBCR 0x00000000 /* LB config reg */
215#define CONFIG_SYS_LBC_LSRT 0x20000000 /* LB sdram refresh timer */
216#define CONFIG_SYS_LBC_MRTPR 0x00000000 /* LB refresh timer prescal*/
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500217
218/*
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500219 * Common settings for all Local Bus SDRAM commands.
220 * At run time, either BSMA1516 (for CPU 1.1)
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500221 * or BSMA1617 (for CPU 1.0) (old)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500222 * is OR'ed in too.
223 */
Kumar Gala727c6a62009-03-26 01:34:38 -0500224#define CONFIG_SYS_LBC_LSDMR_COMMON ( LSDMR_RFCR16 \
225 | LSDMR_PRETOACT7 \
226 | LSDMR_ACTTORW7 \
227 | LSDMR_BL8 \
228 | LSDMR_WRC4 \
229 | LSDMR_CL3 \
230 | LSDMR_RFEN \
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500231 )
232
233/*
234 * The CADMUS registers are connected to CS3 on CDS.
235 * The new memory map places CADMUS at 0xf8000000.
236 *
237 * For BR3, need:
238 * Base address of 0xf8000000 = BR[0:16] = 1111 1000 0000 0000 0
239 * port-size = 8-bits = BR[19:20] = 01
240 * no parity checking = BR[21:22] = 00
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500241 * GPMC for MSEL = BR[24:26] = 000
242 * Valid = BR[31] = 1
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500243 *
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500244 * 0 4 8 12 16 20 24 28
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500245 * 1111 1000 0000 0000 0000 1000 0000 0001 = f8000801
246 *
247 * For OR3, need:
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500248 * 1 MB mask for AM, OR[0:16] = 1111 1111 1111 0000 0
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500249 * disable buffer ctrl OR[19] = 0
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500250 * CSNT OR[20] = 1
251 * ACS OR[21:22] = 11
252 * XACS OR[23] = 1
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500253 * SCY 15 wait states OR[24:27] = 1111 max is suboptimal but safe
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500254 * SETA OR[28] = 0
255 * TRLX OR[29] = 1
256 * EHTR OR[30] = 1
257 * EAD extra time OR[31] = 1
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500258 *
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500259 * 0 4 8 12 16 20 24 28
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500260 * 1111 1111 1111 0000 0000 1111 1111 0111 = fff00ff7
261 */
262
Jon Loeliger6bcdb402008-03-19 15:02:07 -0500263#define CONFIG_FSL_CADMUS
264
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500265#define CADMUS_BASE_ADDR 0xf8000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200266#define CONFIG_SYS_BR3_PRELIM 0xf8000801
267#define CONFIG_SYS_OR3_PRELIM 0xfff00ff7
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500268
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200269#define CONFIG_SYS_INIT_RAM_LOCK 1
270#define CONFIG_SYS_INIT_RAM_ADDR 0xe4010000 /* Initial RAM address */
Wolfgang Denk1c2e98e2010-10-26 13:32:32 +0200271#define CONFIG_SYS_INIT_RAM_SIZE 0x4000 /* Size of used area in RAM */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500272
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200273#define CONFIG_SYS_INIT_L2_ADDR 0xf8f80000 /* relocate boot L2SRAM */
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500274
Wolfgang Denk0191e472010-10-26 14:34:52 +0200275#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200276#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500277
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200278#define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Mon */
279#define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserved for malloc */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500280
281/* Serial Port */
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500282#define CONFIG_CONS_INDEX 2
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200283#define CONFIG_SYS_NS16550
284#define CONFIG_SYS_NS16550_SERIAL
285#define CONFIG_SYS_NS16550_REG_SIZE 1
286#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500287
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200288#define CONFIG_SYS_BAUDRATE_TABLE \
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500289 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400,115200}
290
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200291#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500)
292#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500293
294/* Use the HUSH parser */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200295#define CONFIG_SYS_HUSH_PARSER
296#ifdef CONFIG_SYS_HUSH_PARSER
297#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500298#endif
299
Matthew McClintock148e26a2006-06-28 10:43:36 -0500300/* pass open firmware flat tree */
Kumar Galad28ced32007-11-29 00:11:44 -0600301#define CONFIG_OF_LIBFDT 1
302#define CONFIG_OF_BOARD_SETUP 1
303#define CONFIG_OF_STDOUT_VIA_ALIAS 1
Matthew McClintock148e26a2006-06-28 10:43:36 -0500304
Jon Loeliger43d818f2006-10-20 15:50:15 -0500305/*
306 * I2C
307 */
308#define CONFIG_FSL_I2C /* Use FSL common I2C driver */
309#define CONFIG_HARD_I2C /* I2C with hardware support*/
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500310#undef CONFIG_SOFT_I2C /* I2C bit-banged */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200311#define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
312#define CONFIG_SYS_I2C_SLAVE 0x7F
313#define CONFIG_SYS_I2C_NOPROBES {0x69} /* Don't probe these addrs */
314#define CONFIG_SYS_I2C_OFFSET 0x3000
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500315
Timur Tabi0b87d3f2008-07-18 16:52:23 +0200316/* EEPROM */
317#define CONFIG_ID_EEPROM
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200318#define CONFIG_SYS_I2C_EEPROM_CCID
319#define CONFIG_SYS_ID_EEPROM
320#define CONFIG_SYS_I2C_EEPROM_ADDR 0x57
321#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
Timur Tabi0b87d3f2008-07-18 16:52:23 +0200322
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500323/*
324 * General PCI
Sergei Shtylyov6ffad932006-12-27 22:07:15 +0300325 * Memory space is mapped 1-1, but I/O space must start from 0.
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500326 */
Kumar Galaef43b6e2008-12-02 16:08:39 -0600327#define CONFIG_SYS_PCI_VIRT 0x80000000 /* 1G PCI TLB */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200328#define CONFIG_SYS_PCI_PHYS 0x80000000 /* 1G PCI TLB */
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500329
Kumar Galaef43b6e2008-12-02 16:08:39 -0600330#define CONFIG_SYS_PCI1_MEM_VIRT 0x80000000
Kumar Gala3fe80872008-12-02 16:08:36 -0600331#define CONFIG_SYS_PCI1_MEM_BUS 0x80000000
Kumar Galaef43b6e2008-12-02 16:08:39 -0600332#define CONFIG_SYS_PCI1_MEM_PHYS 0x80000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200333#define CONFIG_SYS_PCI1_MEM_SIZE 0x20000000 /* 512M */
Kumar Gala60ff4642008-12-02 16:08:40 -0600334#define CONFIG_SYS_PCI1_IO_VIRT 0xe2000000
Kumar Gala64bb6d12008-12-02 16:08:37 -0600335#define CONFIG_SYS_PCI1_IO_BUS 0x00000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200336#define CONFIG_SYS_PCI1_IO_PHYS 0xe2000000
337#define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500338
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500339#ifdef CONFIG_PCI2
Kumar Galaef43b6e2008-12-02 16:08:39 -0600340#define CONFIG_SYS_PCI2_MEM_VIRT 0xa0000000
Kumar Gala3fe80872008-12-02 16:08:36 -0600341#define CONFIG_SYS_PCI2_MEM_BUS 0xa0000000
Kumar Galaef43b6e2008-12-02 16:08:39 -0600342#define CONFIG_SYS_PCI2_MEM_PHYS 0xa0000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200343#define CONFIG_SYS_PCI2_MEM_SIZE 0x20000000 /* 512M */
Kumar Gala60ff4642008-12-02 16:08:40 -0600344#define CONFIG_SYS_PCI2_IO_VIRT 0xe2800000
Kumar Gala64bb6d12008-12-02 16:08:37 -0600345#define CONFIG_SYS_PCI2_IO_BUS 0x00000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200346#define CONFIG_SYS_PCI2_IO_PHYS 0xe2800000
347#define CONFIG_SYS_PCI2_IO_SIZE 0x00100000 /* 1M */
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500348#endif
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500349
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500350#ifdef CONFIG_PCIE1
Kumar Galaac799852010-12-17 10:21:22 -0600351#define CONFIG_SYS_PCIE1_NAME "Slot"
Kumar Galaef43b6e2008-12-02 16:08:39 -0600352#define CONFIG_SYS_PCIE1_MEM_VIRT 0xa0000000
Kumar Gala3fe80872008-12-02 16:08:36 -0600353#define CONFIG_SYS_PCIE1_MEM_BUS 0xa0000000
Kumar Galaef43b6e2008-12-02 16:08:39 -0600354#define CONFIG_SYS_PCIE1_MEM_PHYS 0xa0000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200355#define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */
Kumar Gala60ff4642008-12-02 16:08:40 -0600356#define CONFIG_SYS_PCIE1_IO_VIRT 0xe3000000
Kumar Gala64bb6d12008-12-02 16:08:37 -0600357#define CONFIG_SYS_PCIE1_IO_BUS 0x00000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200358#define CONFIG_SYS_PCIE1_IO_PHYS 0xe3000000
359#define CONFIG_SYS_PCIE1_IO_SIZE 0x00100000 /* 1M */
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500360#endif
Zang Roy-r61911a5f77dc2006-12-14 14:14:55 +0800361
362/*
363 * RapidIO MMU
364 */
Kumar Galaad4e9d42011-01-04 17:57:59 -0600365#define CONFIG_SYS_SRIO1_MEM_VIRT 0xC0000000
366#define CONFIG_SYS_SRIO1_MEM_BUS 0xC0000000
367#define CONFIG_SYS_SRIO1_MEM_PHYS CONFIG_SYS_SRIO1_MEM_BUS
368#define CONFIG_SYS_SRIO1_MEM_SIZE 0x20000000 /* 512M */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500369
Randy Vinson1dfd6d92007-02-27 19:42:22 -0700370#ifdef CONFIG_LEGACY
371#define BRIDGE_ID 17
372#define VIA_ID 2
373#else
374#define BRIDGE_ID 28
375#define VIA_ID 4
376#endif
377
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500378#if defined(CONFIG_PCI)
379
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500380#define CONFIG_PCI_PNP /* do pci plug-and-play */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500381
382#undef CONFIG_EEPRO100
383#undef CONFIG_TULIP
384
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500385#undef CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500386
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500387#endif /* CONFIG_PCI */
388
389
390#if defined(CONFIG_TSEC_ENET)
391
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500392#define CONFIG_MII 1 /* MII PHY management */
Kim Phillips177e58f2007-05-16 16:52:19 -0500393#define CONFIG_TSEC1 1
394#define CONFIG_TSEC1_NAME "eTSEC0"
395#define CONFIG_TSEC2 1
396#define CONFIG_TSEC2_NAME "eTSEC1"
397#define CONFIG_TSEC3 1
398#define CONFIG_TSEC3_NAME "eTSEC2"
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500399#define CONFIG_TSEC4
Kim Phillips177e58f2007-05-16 16:52:19 -0500400#define CONFIG_TSEC4_NAME "eTSEC3"
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500401#undef CONFIG_MPC85XX_FEC
402
403#define TSEC1_PHY_ADDR 0
404#define TSEC2_PHY_ADDR 1
405#define TSEC3_PHY_ADDR 2
406#define TSEC4_PHY_ADDR 3
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500407
408#define TSEC1_PHYIDX 0
409#define TSEC2_PHYIDX 0
410#define TSEC3_PHYIDX 0
411#define TSEC4_PHYIDX 0
Andy Fleming09b88df2007-08-15 20:03:25 -0500412#define TSEC1_FLAGS TSEC_GIGABIT
413#define TSEC2_FLAGS TSEC_GIGABIT
414#define TSEC3_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
415#define TSEC4_FLAGS (TSEC_GIGABIT | TSEC_REDUCED)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500416
417/* Options are: eTSEC[0-3] */
418#define CONFIG_ETHPRIME "eTSEC0"
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500419#define CONFIG_PHY_GIGE 1 /* Include GbE speed/duplex detection */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500420#endif /* CONFIG_TSEC_ENET */
421
422/*
423 * Environment
424 */
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +0200425#define CONFIG_ENV_IS_IN_FLASH 1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200426#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + 0x40000)
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200427#define CONFIG_ENV_SECT_SIZE 0x40000 /* 256K(one sector) for env */
428#define CONFIG_ENV_SIZE 0x2000
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500429
430#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200431#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500432
Jon Loeligere63319f2007-06-13 13:22:08 -0500433/*
Jon Loeligered26c742007-07-10 09:10:49 -0500434 * BOOTP options
435 */
436#define CONFIG_BOOTP_BOOTFILESIZE
437#define CONFIG_BOOTP_BOOTPATH
438#define CONFIG_BOOTP_GATEWAY
439#define CONFIG_BOOTP_HOSTNAME
440
441
442/*
Jon Loeligere63319f2007-06-13 13:22:08 -0500443 * Command line configuration.
444 */
445#include <config_cmd_default.h>
446
447#define CONFIG_CMD_PING
448#define CONFIG_CMD_I2C
449#define CONFIG_CMD_MII
Kumar Gala260fac32007-12-07 12:04:30 -0600450#define CONFIG_CMD_ELF
Kumar Gala489675d2008-09-22 23:40:42 -0500451#define CONFIG_CMD_IRQ
452#define CONFIG_CMD_SETEXPR
Becky Bruceee888da2010-06-17 11:37:25 -0500453#define CONFIG_CMD_REGINFO
Jon Loeligere63319f2007-06-13 13:22:08 -0500454
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500455#if defined(CONFIG_PCI)
Jon Loeligere63319f2007-06-13 13:22:08 -0500456 #define CONFIG_CMD_PCI
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500457#endif
Jon Loeligere63319f2007-06-13 13:22:08 -0500458
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500459
460#undef CONFIG_WATCHDOG /* watchdog disabled */
461
462/*
463 * Miscellaneous configurable options
464 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200465#define CONFIG_SYS_LONGHELP /* undef to save memory */
Kim Phillipsf7758c12010-07-14 19:47:18 -0500466#define CONFIG_CMDLINE_EDITING /* Command-line editing */
467#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200468#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
469#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
Jon Loeligere63319f2007-06-13 13:22:08 -0500470#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200471#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500472#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200473#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500474#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200475#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
476#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
477#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
478#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1ms ticks */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500479
480/*
481 * For booting Linux, the board info and command line data
Kumar Gala39ffcc12011-04-28 10:13:41 -0500482 * have to be in the first 64 MB of memory, since this is
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500483 * the maximum mapped by the Linux kernel during initialization.
484 */
Kumar Gala39ffcc12011-04-28 10:13:41 -0500485#define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory map for Linux*/
486#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500487
Jon Loeligere63319f2007-06-13 13:22:08 -0500488#if defined(CONFIG_CMD_KGDB)
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500489#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
490#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
491#endif
492
493/*
494 * Environment Configuration
495 */
496
497/* The mac addresses for all ethernet interface */
498#if defined(CONFIG_TSEC_ENET)
Andy Fleming458c3892007-08-16 16:35:02 -0500499#define CONFIG_HAS_ETH0
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500500#define CONFIG_ETHADDR 00:E0:0C:00:00:FD
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500501#define CONFIG_HAS_ETH1
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500502#define CONFIG_ETH1ADDR 00:E0:0C:00:01:FD
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500503#define CONFIG_HAS_ETH2
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500504#define CONFIG_ETH2ADDR 00:E0:0C:00:02:FD
Andy Fleming239e75f2006-09-13 10:34:18 -0500505#define CONFIG_HAS_ETH3
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500506#define CONFIG_ETH3ADDR 00:E0:0C:00:03:FD
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500507#endif
508
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500509#define CONFIG_IPADDR 192.168.1.253
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500510
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500511#define CONFIG_HOSTNAME unknown
512#define CONFIG_ROOTPATH /nfsroot
513#define CONFIG_BOOTFILE 8548cds/uImage.uboot
514#define CONFIG_UBOOTPATH 8548cds/u-boot.bin /* TFTP server */
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500515
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500516#define CONFIG_SERVERIP 192.168.1.1
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500517#define CONFIG_GATEWAYIP 192.168.1.1
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500518#define CONFIG_NETMASK 255.255.255.0
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500519
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500520#define CONFIG_LOADADDR 1000000 /*default location for tftp and bootm*/
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500521
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500522#define CONFIG_BOOTDELAY 10 /* -1 disables auto-boot */
523#undef CONFIG_BOOTARGS /* the boot command will set bootargs*/
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500524
525#define CONFIG_BAUDRATE 115200
526
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500527#define CONFIG_EXTRA_ENV_SETTINGS \
528 "netdev=eth0\0" \
529 "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \
530 "tftpflash=tftpboot $loadaddr $uboot; " \
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200531 "protect off " MK_STR(CONFIG_SYS_TEXT_BASE) " +$filesize; " \
532 "erase " MK_STR(CONFIG_SYS_TEXT_BASE) " +$filesize; " \
533 "cp.b $loadaddr " MK_STR(CONFIG_SYS_TEXT_BASE) " $filesize; " \
534 "protect on " MK_STR(CONFIG_SYS_TEXT_BASE) " +$filesize; " \
535 "cmp.b $loadaddr " MK_STR(CONFIG_SYS_TEXT_BASE) " $filesize\0" \
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500536 "consoledev=ttyS1\0" \
537 "ramdiskaddr=2000000\0" \
Andy Fleming6e452622007-08-13 14:38:06 -0500538 "ramdiskfile=ramdisk.uboot\0" \
Ed Swarthoutf66cbc82007-08-21 09:38:59 -0500539 "fdtaddr=c00000\0" \
Kumar Gala99da1d92007-11-29 10:34:28 -0600540 "fdtfile=mpc8548cds.dtb\0"
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500541
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500542#define CONFIG_NFSBOOTCOMMAND \
543 "setenv bootargs root=/dev/nfs rw " \
544 "nfsroot=$serverip:$rootpath " \
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500545 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500546 "console=$consoledev,$baudrate $othbootargs;" \
547 "tftp $loadaddr $bootfile;" \
Ed Swarthoutf66cbc82007-08-21 09:38:59 -0500548 "tftp $fdtaddr $fdtfile;" \
549 "bootm $loadaddr - $fdtaddr"
Andy Fleming7243f972006-09-13 10:33:35 -0500550
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500551
552#define CONFIG_RAMBOOTCOMMAND \
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500553 "setenv bootargs root=/dev/ram rw " \
554 "console=$consoledev,$baudrate $othbootargs;" \
555 "tftp $ramdiskaddr $ramdiskfile;" \
556 "tftp $loadaddr $bootfile;" \
Ed Swarthoutf66cbc82007-08-21 09:38:59 -0500557 "tftp $fdtaddr $fdtfile;" \
558 "bootm $loadaddr $ramdiskaddr $fdtaddr"
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500559
Ed Swarthout95ae0a02007-07-27 01:50:52 -0500560#define CONFIG_BOOTCOMMAND CONFIG_NFSBOOTCOMMAND
Jon Loeliger77a4f6e2005-07-25 14:05:07 -0500561
562#endif /* __CONFIG_H */