blob: ca9792c45163ff3f7835bf8896363b96019c5dcc [file] [log] [blame]
wdenk80885a92004-02-26 23:46:20 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk80885a92004-02-26 23:46:20 +00006 */
7
8/* ------------------------------------------------------------------------- */
9
10/*
11 * board/config.h - configuration options, board specific
12 */
13
14#ifndef __CONFIG_H
15#define __CONFIG_H
16
17/*
18 * High Level Configuration Options
19 * (easy to change)
20 */
21
22#define CONFIG_MPC824X 1
23/* #define CONFIG_MPC8240 1 */
24#define CONFIG_MPC8245 1
25#define CONFIG_EXALION 1
26
Wolfgang Denk2ae18242010-10-06 09:05:45 +020027#define CONFIG_SYS_TEXT_BASE 0xFFF00000
28
wdenk80885a92004-02-26 23:46:20 +000029#if defined (CONFIG_MPC8240)
30 /* #warning ---------- eXalion with MPC8240 --------------- */
31#elif defined (CONFIG_MPC8245)
32 /* #warning ++++++++++ eXalion with MPC8245 +++++++++++++++ */
33#elif defined (CONFIG_MPC8245) && defined (CONFIG_MPC8245)
34#error #### Both types of MPC824x defined (CONFIG_8240 and CONFIG_8245)
35#else
36#error #### Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240)
37#endif
38/* older kernels need clock in MHz newer in Hz */
wdenk132ba5f2004-02-27 08:20:54 +000039 /* #define CONFIG_CLOCKS_IN_MHZ 1 */ /* clocks passsed to Linux in MHz */
wdenk80885a92004-02-26 23:46:20 +000040#undef CONFIG_CLOCKS_IN_MHZ
41
42#define CONFIG_BOOTDELAY 10
43
44
wdenk132ba5f2004-02-27 08:20:54 +000045 /*#define CONFIG_DRAM_SPEED 66 */ /* MHz */
wdenk80885a92004-02-26 23:46:20 +000046
Jon Loeliger1bec3d32007-07-04 22:32:10 -050047/*
Jon Loeliger80ff4f92007-07-10 09:29:01 -050048 * BOOTP options
49 */
50#define CONFIG_BOOTP_BOOTFILESIZE
51#define CONFIG_BOOTP_BOOTPATH
52#define CONFIG_BOOTP_GATEWAY
53#define CONFIG_BOOTP_HOSTNAME
54
55
56/*
Jon Loeliger1bec3d32007-07-04 22:32:10 -050057 * Command line configuration.
58 */
59#include <config_cmd_default.h>
wdenk80885a92004-02-26 23:46:20 +000060
Jon Loeliger1bec3d32007-07-04 22:32:10 -050061#define CONFIG_CMD_FLASH
62#define CONFIG_CMD_SDRAM
63#define CONFIG_CMD_I2C
64#define CONFIG_CMD_IDE
65#define CONFIG_CMD_FAT
Mike Frysingerbdab39d2009-01-28 19:08:14 -050066#define CONFIG_CMD_SAVEENV
Jon Loeliger1bec3d32007-07-04 22:32:10 -050067#define CONFIG_CMD_PCI
wdenk80885a92004-02-26 23:46:20 +000068
69
70/*-----------------------------------------------------------------------
71 * Miscellaneous configurable options
72 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073#define CONFIG_SYS_LONGHELP 1 /* undef to save memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
75#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
76#define CONFIG_SYS_MAXARGS 8 /* max number of command args */
77#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
78#define CONFIG_SYS_LOAD_ADDR 0x00100000 /* default load address */
wdenk80885a92004-02-26 23:46:20 +000079#define CONFIG_MISC_INIT_R 1
80
81/*-----------------------------------------------------------------------
82 * Start addresses for the final memory configuration
83 * (Set up by the startup code)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
wdenk80885a92004-02-26 23:46:20 +000085 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086#define CONFIG_SYS_SDRAM_BASE 0x00000000
87#define CONFIG_SYS_MAX_RAM_SIZE 0x10000000 /* 1 GBytes - initdram() will */
wdenk80885a92004-02-26 23:46:20 +000088 /* return real value. */
89
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090#define CONFIG_SYS_RESET_ADDRESS 0xFFF00100
wdenk80885a92004-02-26 23:46:20 +000091
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092#undef CONFIG_SYS_RAMBOOT
93#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
Wolfgang Denk14d0a022010-10-07 21:51:12 +020094#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
wdenk80885a92004-02-26 23:46:20 +000095
96/*-----------------------------------------------------------------------
97 * Definitions for initial stack pointer and data area
98 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099#define CONFIG_SYS_INIT_DATA_SIZE 128
wdenk80885a92004-02-26 23:46:20 +0000100
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200101#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
Wolfgang Denk553f0982010-10-26 13:32:32 +0200102#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
103#define CONFIG_SYS_INIT_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - CONFIG_SYS_INIT_DATA_SIZE)
wdenk80885a92004-02-26 23:46:20 +0000104
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200105#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
wdenk80885a92004-02-26 23:46:20 +0000107
108
109#if defined (CONFIG_MPC8240)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110#define CONFIG_SYS_FLASH_BASE 0xFFE00000
111#define CONFIG_SYS_FLASH_SIZE (2 * 1024 * 1024) /* onboard 2MByte flash */
wdenk80885a92004-02-26 23:46:20 +0000112#elif defined (CONFIG_MPC8245)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113#define CONFIG_SYS_FLASH_BASE 0xFFC00000
114#define CONFIG_SYS_FLASH_SIZE (4 * 1024 * 1024) /* onboard 4MByte flash */
wdenk80885a92004-02-26 23:46:20 +0000115#else
116#error Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240)
117#endif
118
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200119#define CONFIG_ENV_IS_IN_FLASH 1
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200120#define CONFIG_ENV_SECT_SIZE 0x20000 /* Size of one Flash sector */
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -0400121#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE /* Use one Flash sector for environment */
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200122#define CONFIG_ENV_ADDR 0xFFFC0000
123#define CONFIG_ENV_OFFSET 0 /* starting right at the beginning */
wdenk80885a92004-02-26 23:46:20 +0000124
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200125#define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserve 128 kB for malloc() */
wdenk80885a92004-02-26 23:46:20 +0000126
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127#define CONFIG_SYS_ALT_MEMTEST 1 /* use real memory test */
128#define CONFIG_SYS_MEMTEST_START 0x00004000 /* memtest works on */
129#define CONFIG_SYS_MEMTEST_END 0x02000000 /* 0 ... 32 MB in DRAM */
wdenk80885a92004-02-26 23:46:20 +0000130
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131#define CONFIG_SYS_EUMB_ADDR 0xFC000000
wdenk80885a92004-02-26 23:46:20 +0000132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133/* #define CONFIG_SYS_ISA_MEM 0xFD000000 */
134#define CONFIG_SYS_ISA_IO 0xFE000000
wdenk80885a92004-02-26 23:46:20 +0000135
136/*-----------------------------------------------------------------------
137 * FLASH organization
138 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200139#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max number of flash banks */
140#define CONFIG_SYS_MAX_FLASH_SECT 64 /* Max number of sectors per flash */
wdenk80885a92004-02-26 23:46:20 +0000141
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200142#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
143#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
wdenk80885a92004-02-26 23:46:20 +0000144
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145#define FLASH_BASE0_PRELIM CONFIG_SYS_FLASH_BASE
wdenk80885a92004-02-26 23:46:20 +0000146#define FLASH_BASE1_PRELIM 0
147
148
149/*-----------------------------------------------------------------------
150 * FLASH and environment organization
151 */
152
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153#define CONFIG_SYS_FLASH_CFI 1 /* Flash is CFI conformant */
Jean-Christophe PLAGNIOL-VILLARD00b18832008-08-13 01:40:42 +0200154#define CONFIG_FLASH_CFI_DRIVER 1 /* Use the common driver */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200155#define CONFIG_SYS_MAX_FLASH_SECT 64 /* max number of sectors on one chip */
156#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
157#define CONFIG_SYS_FLASH_INCREMENT 0 /* there is only one bank */
158#define CONFIG_SYS_FLASH_PROTECTION 1 /* use hardware protection */
159#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
wdenk80885a92004-02-26 23:46:20 +0000160
161
162/*-----------------------------------------------------------------------
163 * PCI stuff
164 */
165#define CONFIG_PCI 1 /* include pci support */
Gabor Juhos842033e2013-05-30 07:06:12 +0000166#define CONFIG_PCI_INDIRECT_BRIDGE 1 /* indirect PCI bridge support */
wdenk80885a92004-02-26 23:46:20 +0000167#undef CONFIG_PCI_PNP
168
wdenk80885a92004-02-26 23:46:20 +0000169
170#define CONFIG_EEPRO100 1
171
172#define PCI_ENET0_MEMADDR 0x80000000 /* Intel 82559ER */
173#define PCI_ENET0_IOADDR 0x80000000
174#define PCI_ENET1_MEMADDR 0x81000000 /* Intel 82559ER */
175#define PCI_ENET1_IOADDR 0x81000000
176#define PCI_ENET2_MEMADDR 0x82000000 /* Broadcom BCM569xx */
177#define PCI_ENET2_IOADDR 0x82000000
178#define PCI_ENET3_MEMADDR 0x83000000 /* Broadcom BCM56xx */
179#define PCI_ENET3_IOADDR 0x83000000
180
181/*-----------------------------------------------------------------------
182 * NS16550 Configuration
183 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184#define CONFIG_SYS_NS16550 1
185#define CONFIG_SYS_NS16550_SERIAL 1
wdenk80885a92004-02-26 23:46:20 +0000186
187#define CONFIG_CONS_INDEX 1
188#define CONFIG_BAUDRATE 38400
189
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#define CONFIG_SYS_NS16550_REG_SIZE 1
wdenk80885a92004-02-26 23:46:20 +0000191
192#if (CONFIG_CONS_INDEX == 1)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200193#define CONFIG_SYS_NS16550_CLK 1843200 /* COM1 only ! */
wdenk80885a92004-02-26 23:46:20 +0000194#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195#define CONFIG_SYS_NS16550_CLK ({ extern ulong get_bus_freq (ulong); get_bus_freq (0); })
wdenk80885a92004-02-26 23:46:20 +0000196#endif
197
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_ISA_IO + 0x3F8)
199#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_EUMB_ADDR + 0x4500)
200#define CONFIG_SYS_NS16550_COM3 (CONFIG_SYS_EUMB_ADDR + 0x4600)
wdenk80885a92004-02-26 23:46:20 +0000201
202/*-----------------------------------------------------------------------
203 * select i2c support configuration
204 *
205 * Supported configurations are {none, software, hardware} drivers.
206 * If the software driver is chosen, there are some additional
207 * configuration items that the driver uses to drive the port pins.
208 */
209#define CONFIG_HARD_I2C 1 /* To enable I2C support */
Heiko Schocherea818db2013-01-29 08:53:15 +0100210#undef CONFIG_SYS_I2C_SOFT /* I2C bit-banged */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200211#define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
212#define CONFIG_SYS_I2C_SLAVE 0x7F
wdenk80885a92004-02-26 23:46:20 +0000213
214/*-----------------------------------------------------------------------
215 * Low Level Configuration Settings
216 * (address mappings, register initial values, etc.)
217 * You should know what you are doing if you make changes here.
218 */
wdenk80885a92004-02-26 23:46:20 +0000219
220#define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */
221#define CONFIG_PLL_PCI_TO_MEM_MULTIPLIER 2 /* for MPC8240 only */
222
wdenk132ba5f2004-02-27 08:20:54 +0000223 /*#define CONFIG_133MHZ_DRAM 1 */ /* For 133 MHZ DRAM only !!!!!!!!!!! */
wdenk80885a92004-02-26 23:46:20 +0000224
225#if defined (CONFIG_MPC8245)
226/* Bit-field values for PMCR2. */
227#if defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228#define CONFIG_SYS_DLL_EXTEND 0x80 /* use DLL extended range - 133MHz only */
229#define CONFIG_SYS_PCI_HOLD_DEL 0x20 /* delay and hold timing - 133MHz only */
wdenk80885a92004-02-26 23:46:20 +0000230#endif
231
232/* Bit-field values for MIOCR1. */
233#if !defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200234#define CONFIG_SYS_DLL_MAX_DELAY 0x04 /* longer DLL delay line - 66MHz only */
wdenk80885a92004-02-26 23:46:20 +0000235#endif
236/* Bit-field values for MIOCR2. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200237#define CONFIG_SYS_SDRAM_DSCD 0x20 /* SDRAM data in sample clock delay */
wdenk80885a92004-02-26 23:46:20 +0000238 /* - note bottom 3 bits MUST be 0 */
239#endif
240
241/* Bit-field values for MCCR1. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200242#define CONFIG_SYS_ROMNAL 7 /*rom/flash next access time */
243#define CONFIG_SYS_ROMFAL 11 /*rom/flash access time */
wdenk80885a92004-02-26 23:46:20 +0000244
245/* Bit-field values for MCCR2. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200246#define CONFIG_SYS_TSWAIT 0x5 /* Transaction Start Wait States timer */
wdenk80885a92004-02-26 23:46:20 +0000247#if defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200248#define CONFIG_SYS_REFINT 1300 /* no of clock cycles between CBR */
wdenk80885a92004-02-26 23:46:20 +0000249#else /* refresh cycles */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200250#define CONFIG_SYS_REFINT 750
wdenk80885a92004-02-26 23:46:20 +0000251#endif
252
253/* Burst To Precharge. Bits of this value go to MCCR3 and MCCR4. */
254#if defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200255#define CONFIG_SYS_BSTOPRE 1023
wdenk80885a92004-02-26 23:46:20 +0000256#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200257#define CONFIG_SYS_BSTOPRE 250
wdenk80885a92004-02-26 23:46:20 +0000258#endif
259
260/* Bit-field values for MCCR3. */
261/* the following are for SDRAM only */
262
263#if defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200264#define CONFIG_SYS_REFREC 9 /* Refresh to activate interval */
wdenk80885a92004-02-26 23:46:20 +0000265#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200266#define CONFIG_SYS_REFREC 5 /* Refresh to activate interval */
wdenk80885a92004-02-26 23:46:20 +0000267#endif
268#if defined (CONFIG_MPC8240)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269#define CONFIG_SYS_RDLAT 2 /* data latency from read command */
wdenk80885a92004-02-26 23:46:20 +0000270#endif
271
272/* Bit-field values for MCCR4. */
273#if defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200274#define CONFIG_SYS_PRETOACT 3 /* Precharge to activate interval */
275#define CONFIG_SYS_ACTTOPRE 7 /* Activate to Precharge interval */
276#define CONFIG_SYS_ACTORW 5 /* Activate to R/W */
277#define CONFIG_SYS_SDMODE_CAS_LAT 3 /* SDMODE CAS latency */
wdenk80885a92004-02-26 23:46:20 +0000278#else
279#if 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200280#define CONFIG_SYS_PRETOACT 2 /* Precharge to activate interval */
281#define CONFIG_SYS_ACTTOPRE 3 /* Activate to Precharge interval */
282#define CONFIG_SYS_ACTORW 3 /* Activate to R/W */
283#define CONFIG_SYS_SDMODE_CAS_LAT 2 /* SDMODE CAS latency */
wdenk80885a92004-02-26 23:46:20 +0000284#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200285#define CONFIG_SYS_PRETOACT 2 /* Precharge to activate interval */
286#define CONFIG_SYS_ACTTOPRE 5 /* Activate to Precharge interval */
287#define CONFIG_SYS_ACTORW 3 /* Activate to R/W */
288#define CONFIG_SYS_SDMODE_CAS_LAT 3 /* SDMODE CAS latency */
wdenk80885a92004-02-26 23:46:20 +0000289#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200290#define CONFIG_SYS_SDMODE_WRAP 0 /* SDMODE wrap type */
291#define CONFIG_SYS_SDMODE_BURSTLEN 2 /* SDMODE Burst length 2=4, 3=8 */
292#define CONFIG_SYS_REGDIMM 0
wdenk80885a92004-02-26 23:46:20 +0000293#if defined (CONFIG_MPC8240)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200294#define CONFIG_SYS_REGISTERD_TYPE_BUFFER 0
wdenk80885a92004-02-26 23:46:20 +0000295#elif defined (CONFIG_MPC8245)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200296#define CONFIG_SYS_REGISTERD_TYPE_BUFFER 1
297#define CONFIG_SYS_EXTROM 0
wdenk80885a92004-02-26 23:46:20 +0000298#else
299#error Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240)
300#endif
301
302
303/*-----------------------------------------------------------------------
304 memory bank settings
305 * only bits 20-29 are actually used from these vales to set the
306 * start/end address the upper two bits will be 0, and the lower 20
307 * bits will be set to 0x00000 for a start address, or 0xfffff for an
308 * end address
309 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200310#define CONFIG_SYS_BANK0_START 0x00000000
311#define CONFIG_SYS_BANK0_END (CONFIG_SYS_MAX_RAM_SIZE - 1)
312#define CONFIG_SYS_BANK0_ENABLE 1
313#define CONFIG_SYS_BANK1_START 0x3ff00000
314#define CONFIG_SYS_BANK1_END 0x3fffffff
315#define CONFIG_SYS_BANK1_ENABLE 0
316#define CONFIG_SYS_BANK2_START 0x3ff00000
317#define CONFIG_SYS_BANK2_END 0x3fffffff
318#define CONFIG_SYS_BANK2_ENABLE 0
319#define CONFIG_SYS_BANK3_START 0x3ff00000
320#define CONFIG_SYS_BANK3_END 0x3fffffff
321#define CONFIG_SYS_BANK3_ENABLE 0
322#define CONFIG_SYS_BANK4_START 0x00000000
323#define CONFIG_SYS_BANK4_END 0x00000000
324#define CONFIG_SYS_BANK4_ENABLE 0
325#define CONFIG_SYS_BANK5_START 0x00000000
326#define CONFIG_SYS_BANK5_END 0x00000000
327#define CONFIG_SYS_BANK5_ENABLE 0
328#define CONFIG_SYS_BANK6_START 0x00000000
329#define CONFIG_SYS_BANK6_END 0x00000000
330#define CONFIG_SYS_BANK6_ENABLE 0
331#define CONFIG_SYS_BANK7_START 0x00000000
332#define CONFIG_SYS_BANK7_END 0x00000000
333#define CONFIG_SYS_BANK7_ENABLE 0
wdenk80885a92004-02-26 23:46:20 +0000334
335/*-----------------------------------------------------------------------
336 * Memory bank enable bitmask, specifying which of the banks defined above
337 are actually present. MSB is for bank #7, LSB is for bank #0.
338 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200339#define CONFIG_SYS_BANK_ENABLE 0x01
wdenk80885a92004-02-26 23:46:20 +0000340
341#if defined (CONFIG_MPC8240)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342#define CONFIG_SYS_ODCR 0xDF /* configures line driver impedances, */
wdenk80885a92004-02-26 23:46:20 +0000343 /* see 8240 book for bit definitions */
344#elif defined (CONFIG_MPC8245)
345#if defined (CONFIG_133MHZ_DRAM)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200346#define CONFIG_SYS_ODCR 0xFE /* configures line driver impedances - 133MHz */
wdenk80885a92004-02-26 23:46:20 +0000347#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200348#define CONFIG_SYS_ODCR 0xDE /* configures line driver impedances - 66MHz */
wdenk80885a92004-02-26 23:46:20 +0000349#endif
350#else
351#error Specific type of MPC824x must be defined (i.e. CONFIG_MPC8240)
352#endif
353
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200354#define CONFIG_SYS_PGMAX 0x32 /* how long the 8240 retains the */
wdenk80885a92004-02-26 23:46:20 +0000355 /* currently accessed page in memory */
356 /* see 8240 book for details */
357
358/*-----------------------------------------------------------------------
359 * Block Address Translation (BAT) register settings.
360 */
361/* SDRAM 0 - 256MB */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200362#define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
363#define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
wdenk80885a92004-02-26 23:46:20 +0000364
365/* stack in DCACHE @ 1GB (no backing mem) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200366#define CONFIG_SYS_IBAT1L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10 | BATL_MEMCOHERENCE)
367#define CONFIG_SYS_IBAT1U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
wdenk80885a92004-02-26 23:46:20 +0000368
369/* PCI memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370#define CONFIG_SYS_IBAT2L (0x80000000 | BATL_PP_10 | BATL_CACHEINHIBIT)
371#define CONFIG_SYS_IBAT2U (0x80000000 | BATU_BL_256M | BATU_VS | BATU_VP)
wdenk80885a92004-02-26 23:46:20 +0000372
373/* Flash, config addrs, etc */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200374#define CONFIG_SYS_IBAT3L (0xF0000000 | BATL_PP_10 | BATL_CACHEINHIBIT)
375#define CONFIG_SYS_IBAT3U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
wdenk80885a92004-02-26 23:46:20 +0000376
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200377#define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
378#define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
379#define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
380#define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
381#define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
382#define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
383#define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
384#define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
wdenk80885a92004-02-26 23:46:20 +0000385
386
387/*-----------------------------------------------------------------------
388 * Cache Configuration
389 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200390#define CONFIG_SYS_CACHELINE_SIZE 32
Jon Loeliger1bec3d32007-07-04 22:32:10 -0500391#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200392# define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
wdenk80885a92004-02-26 23:46:20 +0000393#endif
394
wdenk80885a92004-02-26 23:46:20 +0000395/* values according to the manual */
396#define CONFIG_DRAM_50MHZ 1
397#define CONFIG_SDRAM_50MHZ
398
399#undef NR_8259_INTS
400#define NR_8259_INTS 1
401
402/*-----------------------------------------------------------------------
403 * IDE/ATA stuff
404 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200405#define CONFIG_SYS_IDE_MAXBUS 1 /* max. 2 IDE busses */
406#define CONFIG_SYS_IDE_MAXDEVICE (CONFIG_SYS_IDE_MAXBUS*1) /* max. 2 drives per IDE bus */
wdenk80885a92004-02-26 23:46:20 +0000407
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200408#define CONFIG_SYS_ATA_BASE_ADDR CONFIG_SYS_ISA_IO /* base address */
409#define CONFIG_SYS_ATA_IDE0_OFFSET 0x01F0 /* ide0 offste */
410#define CONFIG_SYS_ATA_IDE1_OFFSET 0x0170 /* ide1 offset */
411#define CONFIG_SYS_ATA_DATA_OFFSET 0 /* data reg offset */
412#define CONFIG_SYS_ATA_REG_OFFSET 0 /* reg offset */
413#define CONFIG_SYS_ATA_ALT_OFFSET 0x200 /* alternate register offset */
wdenk80885a92004-02-26 23:46:20 +0000414
415#define CONFIG_ATAPI
416
417#undef CONFIG_IDE_8xx_DIRECT /* no pcmcia interface required */
418#undef CONFIG_IDE_LED /* no led for ide supported */
419#undef CONFIG_IDE_RESET /* reset for ide supported... */
420#undef CONFIG_IDE_RESET_ROUTINE /* with a special reset function */
421
422/*-----------------------------------------------------------------------
423 * DISK Partition support
424 */
425#define CONFIG_DOS_PARTITION
426
427/*-----------------------------------------------------------------------
428 * For booting Linux, the board info and command line data
429 * have to be in the first 8 MB of memory, since this is
430 * the maximum mapped by the Linux kernel during initialization.
431 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200432#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
wdenk80885a92004-02-26 23:46:20 +0000433
434#endif /* __CONFIG_H */