blob: 7ad36a1ce882e851d80c7f62f1a309d08a6c119f [file] [log] [blame]
wdenk15647dc2003-10-09 19:00:25 +00001/*
2 * (C) Copyright 2001, 2002
3 * Sangmoon Kim, Etin Systems, dogoil@etinsys.com.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/* ------------------------------------------------------------------------- */
25
26/*
27 * board/config.h - configuration options, board specific
28 */
29
30#ifndef __CONFIG_H
31#define __CONFIG_H
32
Wolfgang Denk2ae18242010-10-06 09:05:45 +020033#define CONFIG_SYS_TEXT_BASE 0xFFF00000
34
wdenk15647dc2003-10-09 19:00:25 +000035/* Environments */
36
37/* bootargs */
38#define CONFIG_BOOTARGS \
39 "console=ttyS0,9600 init=/linuxrc " \
40 "root=/dev/nfs rw nfsroot=192.168.0.1:" \
41 "/tftpboot/target " \
42 "ip=192.168.0.2:192.168.0.1:192.168.0.1:" \
43 "255.255.255.0:debris:eth0:none " \
44 "mtdparts=phys:12m(root),-(kernel)"
45
46/* bootcmd */
47#define CONFIG_BOOTCOMMAND \
48 "tftp 800000 pImage; " \
49 "setenv bootargs console=ttyS0,9600 init=/linuxrc " \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010050 "root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \
51 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
52 "${netmask}:${hostname}:eth0:none " \
wdenk15647dc2003-10-09 19:00:25 +000053 "mtdparts=phys:12m(root),-(kernel); " \
54 "bootm 800000"
55
56/* bootdelay */
57#define CONFIG_BOOTDELAY 5 /* autoboot 5s */
58
59/* baudrate */
60#define CONFIG_BAUDRATE 9600 /* console baudrate = 9600bps */
61
62/* loads_echo */
63#define CONFIG_LOADS_ECHO 0 /* echo off for serial download */
64
65/* ethaddr */
66#undef CONFIG_ETHADDR
67
68/* eth2addr */
69#undef CONFIG_ETH2ADDR
70
71/* eth3addr */
72#undef CONFIG_ETH3ADDR
73
74/* ipaddr */
75#define CONFIG_IPADDR 192.168.0.2
76
77/* serverip */
78#define CONFIG_SERVERIP 192.168.0.1
79
80/* autoload */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#undef CONFIG_SYS_AUTOLOAD
wdenk15647dc2003-10-09 19:00:25 +000082
83/* rootpath */
84#define CONFIG_ROOTPATH /tftpboot/target
85
86/* gatewayip */
87#define CONFIG_GATEWAYIP 192.168.0.1
88
89/* netmask */
90#define CONFIG_NETMASK 255.255.255.0
91
92/* hostname */
93#define CONFIG_HOSTNAME debris
94
95/* bootfile */
96#define CONFIG_BOOTFILE pImage
97
98/* loadaddr */
99#define CONFIG_LOADADDR 800000
100
101/* preboot */
102#undef CONFIG_PREBOOT
103
104/* clocks_in_mhz */
105#undef CONFIG_CLOCKS_IN_MHZ
106
107
108/*
109 * High Level Configuration Options
110 * (easy to change)
111 */
112
113#define CONFIG_MPC824X 1
114#define CONFIG_MPC8245 1
115#define CONFIG_DEBRIS 1
116
117#if 0
118#define USE_DINK32 1
119#else
120#undef USE_DINK32
121#endif
122
123#define CONFIG_CONS_INDEX 1
124#define CONFIG_BAUDRATE 9600
125#define CONFIG_DRAM_SPEED 100 /* MHz */
126
Jon Loeligerab999ba2007-07-04 22:32:03 -0500127
128/*
Jon Loeliger80ff4f92007-07-10 09:29:01 -0500129 * BOOTP options
130 */
131#define CONFIG_BOOTP_BOOTFILESIZE
132#define CONFIG_BOOTP_BOOTPATH
133#define CONFIG_BOOTP_GATEWAY
134#define CONFIG_BOOTP_HOSTNAME
135
136
137/*
Jon Loeligerab999ba2007-07-04 22:32:03 -0500138 * Command line configuration.
139 */
140#include <config_cmd_default.h>
141
142#define CONFIG_CMD_ASKENV
143#define CONFIG_CMD_CACHE
144#define CONFIG_CMD_DATE
145#define CONFIG_CMD_DHCP
146#define CONFIG_CMD_DIAG
147#define CONFIG_CMD_EEPROM
148#define CONFIG_CMD_ELF
149#define CONFIG_CMD_I2C
150#define CONFIG_CMD_JFFS2
151#define CONFIG_CMD_KGBD
152#define CONFIG_CMD_PCI
153#define CONFIG_CMD_PING
154#define CONFIG_CMD_SAVES
155#define CONFIG_CMD_SDRAM
wdenk15647dc2003-10-09 19:00:25 +0000156
157
158/*
159 * Miscellaneous configurable options
160 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161#define CONFIG_SYS_LONGHELP 1 /* undef to save memory */
162#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
163#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
164#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
165#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
166#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
167#define CONFIG_SYS_LOAD_ADDR 0x00100000 /* default load address */
168#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
wdenk15647dc2003-10-09 19:00:25 +0000169
170/*-----------------------------------------------------------------------
171 * PCI stuff
172 *-----------------------------------------------------------------------
173 */
174#define CONFIG_PCI /* include pci support */
175#define CONFIG_PCI_PNP
176
177#define CONFIG_NET_MULTI /* Multi ethernet cards support */
178#define CONFIG_EEPRO100
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200179#define CONFIG_SYS_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */
wdenk15647dc2003-10-09 19:00:25 +0000180#define CONFIG_EEPRO100_SROM_WRITE
181
182#define PCI_ENET0_IOADDR 0x80000000
183#define PCI_ENET0_MEMADDR 0x80000000
184#define PCI_ENET1_IOADDR 0x81000000
185#define PCI_ENET1_MEMADDR 0x81000000
186/*-----------------------------------------------------------------------
187 * Start addresses for the final memory configuration
188 * (Set up by the startup code)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200189 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
wdenk15647dc2003-10-09 19:00:25 +0000190 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191#define CONFIG_SYS_SDRAM_BASE 0x00000000
192#define CONFIG_SYS_MAX_RAM_SIZE 0x20000000
wdenk7abf0c52004-04-18 21:45:42 +0000193#define CONFIG_VERY_BIG_RAM
wdenk15647dc2003-10-09 19:00:25 +0000194
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195#define CONFIG_SYS_RESET_ADDRESS 0xFFF00100
wdenk15647dc2003-10-09 19:00:25 +0000196
197#if defined (USE_DINK32)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198#define CONFIG_SYS_MONITOR_LEN 0x00040000
199#define CONFIG_SYS_MONITOR_BASE 0x00090000
200#define CONFIG_SYS_RAMBOOT 1
201#define CONFIG_SYS_INIT_RAM_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Wolfgang Denk553f0982010-10-26 13:32:32 +0200202#define CONFIG_SYS_INIT_RAM_SIZE 0x10000
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200203#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200204#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
wdenk15647dc2003-10-09 19:00:25 +0000205#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200206#undef CONFIG_SYS_RAMBOOT
207#define CONFIG_SYS_MONITOR_LEN 0x00040000
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200208#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
wdenk15647dc2003-10-09 19:00:25 +0000209
wdenk15647dc2003-10-09 19:00:25 +0000210
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200211#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
Wolfgang Denk553f0982010-10-26 13:32:32 +0200212#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200213#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
wdenk15647dc2003-10-09 19:00:25 +0000214
215#endif
216
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200217#define CONFIG_SYS_FLASH_BASE 0x7C000000
218#define CONFIG_SYS_FLASH_SIZE (16*1024*1024) /* debris has tiny eeprom */
wdenk15647dc2003-10-09 19:00:25 +0000219
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200220#define CONFIG_SYS_MALLOC_LEN (512 << 10) /* Reserve 512 kB for malloc() */
wdenk15647dc2003-10-09 19:00:25 +0000221
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200222#define CONFIG_SYS_MEMTEST_START 0x00000000 /* memtest works on */
223#define CONFIG_SYS_MEMTEST_END 0x04000000 /* 0 ... 32 MB in DRAM */
wdenk15647dc2003-10-09 19:00:25 +0000224
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225#define CONFIG_SYS_EUMB_ADDR 0xFC000000
wdenk15647dc2003-10-09 19:00:25 +0000226
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227#define CONFIG_SYS_FLASH_RANGE_BASE 0xFF000000 /* flash memory address range */
228#define CONFIG_SYS_FLASH_RANGE_SIZE 0x01000000
wdenk15647dc2003-10-09 19:00:25 +0000229#define FLASH_BASE0_PRELIM 0x7C000000 /* debris flash */
230
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200231/*
232 * JFFS2 partitions
233 *
234 */
235/* No command line, one static partition, whole device */
Stefan Roese68d7d652009-03-19 13:30:36 +0100236#undef CONFIG_CMD_MTDPARTS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200237#define CONFIG_JFFS2_DEV "nor0"
238#define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
239#define CONFIG_JFFS2_PART_OFFSET 0x00000000
240
241/* mtdparts command line support */
242
243/* Use first bank for JFFS2, second bank contains U-Boot.
244 *
245 * Note: fake mtd_id's used, no linux mtd map file.
246 */
247/*
Stefan Roese68d7d652009-03-19 13:30:36 +0100248#define CONFIG_CMD_MTDPARTS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200249#define MTDIDS_DEFAULT "nor0=debris-0"
250#define MTDPARTS_DEFAULT "mtdparts=debris-0:-(jffs2)"
251*/
wdenk15647dc2003-10-09 19:00:25 +0000252
Jean-Christophe PLAGNIOL-VILLARD9314cee2008-09-10 22:47:59 +0200253#define CONFIG_ENV_IS_IN_NVRAM 1
wdenk15647dc2003-10-09 19:00:25 +0000254#define CONFIG_ENV_OVERWRITE 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200255#define CONFIG_SYS_NVRAM_ACCESS_ROUTINE 1
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200256#define CONFIG_ENV_ADDR 0xFF000000 /* right at the start of NVRAM */
257#define CONFIG_ENV_SIZE 0x400 /* Size of the Environment - 8K */
258#define CONFIG_ENV_OFFSET 0 /* starting right at the beginning */
wdenk15647dc2003-10-09 19:00:25 +0000259
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200260#define CONFIG_SYS_NVRAM_BASE_ADDR 0xff000000
wdenk15647dc2003-10-09 19:00:25 +0000261
262/*
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200263 * CONFIG_SYS_NVRAM_BASE_ADDR + CONFIG_SYS_NVRAM_VXWORKS_OFFS =
wdenk15647dc2003-10-09 19:00:25 +0000264 * NV_RAM_ADDRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
265 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200266#define CONFIG_SYS_NVRAM_VXWORKS_OFFS 0x6900
wdenk15647dc2003-10-09 19:00:25 +0000267
268/*
269 * select i2c support configuration
270 *
271 * Supported configurations are {none, software, hardware} drivers.
272 * If the software driver is chosen, there are some additional
273 * configuration items that the driver uses to drive the port pins.
274 */
275#define CONFIG_HARD_I2C 1 /* To enable I2C support */
276#undef CONFIG_SOFT_I2C /* I2C bit-banged */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200277#define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
278#define CONFIG_SYS_I2C_SLAVE 0x7F
wdenk15647dc2003-10-09 19:00:25 +0000279
280#ifdef CONFIG_SOFT_I2C
281#error "Soft I2C is not configured properly. Please review!"
282#define I2C_PORT 3 /* Port A=0, B=1, C=2, D=3 */
283#define I2C_ACTIVE (iop->pdir |= 0x00010000)
284#define I2C_TRISTATE (iop->pdir &= ~0x00010000)
285#define I2C_READ ((iop->pdat & 0x00010000) != 0)
286#define I2C_SDA(bit) if(bit) iop->pdat |= 0x00010000; \
287 else iop->pdat &= ~0x00010000
288#define I2C_SCL(bit) if(bit) iop->pdat |= 0x00020000; \
289 else iop->pdat &= ~0x00020000
290#define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */
291#endif /* CONFIG_SOFT_I2C */
292
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200293#define CONFIG_SYS_I2C_EEPROM_ADDR 0x57 /* EEPROM IS24C02 */
294#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 /* Bytes of address */
295#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
296#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10 /* and takes up to 10 msec */
wdenk15647dc2003-10-09 19:00:25 +0000297
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200298#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
299#define CONFIG_SYS_FLASH_BANKS { FLASH_BASE0_PRELIM }
wdenk15647dc2003-10-09 19:00:25 +0000300
301/*-----------------------------------------------------------------------
302 * Definitions for initial stack pointer and data area (in DPRAM)
303 */
304
305/*
306 * NS16550 Configuration
307 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200308#define CONFIG_SYS_NS16550
309#define CONFIG_SYS_NS16550_SERIAL
wdenk15647dc2003-10-09 19:00:25 +0000310
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200311#define CONFIG_SYS_NS16550_REG_SIZE 1
wdenk15647dc2003-10-09 19:00:25 +0000312
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200313#define CONFIG_SYS_NS16550_CLK 7372800
wdenk15647dc2003-10-09 19:00:25 +0000314
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200315#define CONFIG_SYS_NS16550_COM1 0xFF080000
316#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_NS16550_COM1 + 8)
317#define CONFIG_SYS_NS16550_COM3 (CONFIG_SYS_NS16550_COM1 + 16)
318#define CONFIG_SYS_NS16550_COM4 (CONFIG_SYS_NS16550_COM1 + 24)
wdenk15647dc2003-10-09 19:00:25 +0000319
320/*
321 * Low Level Configuration Settings
322 * (address mappings, register initial values, etc.)
323 * You should know what you are doing if you make changes here.
324 */
325
326#define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */
327#define CONFIG_PLL_PCI_TO_MEM_MULTIPLIER 3
328
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200329#define CONFIG_SYS_DLL_EXTEND 0x00
330#define CONFIG_SYS_PCI_HOLD_DEL 0x20
wdenk15647dc2003-10-09 19:00:25 +0000331
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200332#define CONFIG_SYS_ROMNAL 15 /* rom/flash next access time */
333#define CONFIG_SYS_ROMFAL 31 /* rom/flash access time */
wdenk15647dc2003-10-09 19:00:25 +0000334
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200335#define CONFIG_SYS_REFINT 430 /* # of clocks between CBR refresh cycles */
wdenk15647dc2003-10-09 19:00:25 +0000336
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200337#define CONFIG_SYS_DBUS_SIZE2 1 /* set for 8-bit RCS1, clear for 32,64 */
wdenk15647dc2003-10-09 19:00:25 +0000338
339/* the following are for SDRAM only*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200340#define CONFIG_SYS_BSTOPRE 121 /* Burst To Precharge, sets open page interval */
341#define CONFIG_SYS_REFREC 8 /* Refresh to activate interval */
342#define CONFIG_SYS_RDLAT 4 /* data latency from read command */
343#define CONFIG_SYS_PRETOACT 3 /* Precharge to activate interval */
344#define CONFIG_SYS_ACTTOPRE 5 /* Activate to Precharge interval */
345#define CONFIG_SYS_ACTORW 3 /* Activate to R/W */
346#define CONFIG_SYS_SDMODE_CAS_LAT 3 /* SDMODE CAS latency */
347#define CONFIG_SYS_SDMODE_WRAP 0 /* SDMODE wrap type */
wdenk15647dc2003-10-09 19:00:25 +0000348#if 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200349#define CONFIG_SYS_SDMODE_BURSTLEN 2 /* OBSOLETE! SDMODE Burst length 2=4, 3=8 */
wdenk15647dc2003-10-09 19:00:25 +0000350#endif
351
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200352#define CONFIG_SYS_REGISTERD_TYPE_BUFFER 1
353#define CONFIG_SYS_EXTROM 1
354#define CONFIG_SYS_REGDIMM 0
wdenk15647dc2003-10-09 19:00:25 +0000355
356
357/* memory bank settings*/
358/*
359 * only bits 20-29 are actually used from these vales to set the
360 * start/end address the upper two bits will be 0, and the lower 20
361 * bits will be set to 0x00000 for a start address, or 0xfffff for an
362 * end address
363 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200364#define CONFIG_SYS_BANK0_START 0x00000000
365#define CONFIG_SYS_BANK0_END (0x4000000 - 1)
366#define CONFIG_SYS_BANK0_ENABLE 1
367#define CONFIG_SYS_BANK1_START 0x04000000
368#define CONFIG_SYS_BANK1_END (0x8000000 - 1)
369#define CONFIG_SYS_BANK1_ENABLE 1
370#define CONFIG_SYS_BANK2_START 0x3ff00000
371#define CONFIG_SYS_BANK2_END 0x3fffffff
372#define CONFIG_SYS_BANK2_ENABLE 0
373#define CONFIG_SYS_BANK3_START 0x3ff00000
374#define CONFIG_SYS_BANK3_END 0x3fffffff
375#define CONFIG_SYS_BANK3_ENABLE 0
376#define CONFIG_SYS_BANK4_START 0x00000000
377#define CONFIG_SYS_BANK4_END 0x00000000
378#define CONFIG_SYS_BANK4_ENABLE 0
379#define CONFIG_SYS_BANK5_START 0x00000000
380#define CONFIG_SYS_BANK5_END 0x00000000
381#define CONFIG_SYS_BANK5_ENABLE 0
382#define CONFIG_SYS_BANK6_START 0x00000000
383#define CONFIG_SYS_BANK6_END 0x00000000
384#define CONFIG_SYS_BANK6_ENABLE 0
385#define CONFIG_SYS_BANK7_START 0x00000000
386#define CONFIG_SYS_BANK7_END 0x00000000
387#define CONFIG_SYS_BANK7_ENABLE 0
wdenk15647dc2003-10-09 19:00:25 +0000388/*
389 * Memory bank enable bitmask, specifying which of the banks defined above
390 are actually present. MSB is for bank #7, LSB is for bank #0.
391 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200392#define CONFIG_SYS_BANK_ENABLE 0x01
wdenk15647dc2003-10-09 19:00:25 +0000393
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200394#define CONFIG_SYS_ODCR 0x75 /* configures line driver impedances, */
wdenk15647dc2003-10-09 19:00:25 +0000395 /* see 8240 book for bit definitions */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200396#define CONFIG_SYS_PGMAX 0x32 /* how long the 8240 retains the */
wdenk15647dc2003-10-09 19:00:25 +0000397 /* currently accessed page in memory */
398 /* see 8240 book for details */
399
400/* SDRAM 0 - 256MB */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200401#define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_10 | BATL_MEMCOHERENCE)
402#define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
wdenk15647dc2003-10-09 19:00:25 +0000403
404/* stack in DCACHE @ 1GB (no backing mem) */
405#if defined(USE_DINK32)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200406#define CONFIG_SYS_IBAT1L (0x40000000 | BATL_PP_00 )
407#define CONFIG_SYS_IBAT1U (0x40000000 | BATU_BL_128K )
wdenk15647dc2003-10-09 19:00:25 +0000408#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200409#define CONFIG_SYS_IBAT1L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_10 | BATL_MEMCOHERENCE)
410#define CONFIG_SYS_IBAT1U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_128K | BATU_VS | BATU_VP)
wdenk15647dc2003-10-09 19:00:25 +0000411#endif
412
413/* PCI memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200414#define CONFIG_SYS_IBAT2L (0x80000000 | BATL_PP_10 | BATL_CACHEINHIBIT)
415#define CONFIG_SYS_IBAT2U (0x80000000 | BATU_BL_256M | BATU_VS | BATU_VP)
wdenk15647dc2003-10-09 19:00:25 +0000416
417/* Flash, config addrs, etc */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200418#define CONFIG_SYS_IBAT3L (0xF0000000 | BATL_PP_10 | BATL_CACHEINHIBIT)
419#define CONFIG_SYS_IBAT3U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
wdenk15647dc2003-10-09 19:00:25 +0000420
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200421#define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
422#define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
423#define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
424#define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
425#define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
426#define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
427#define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
428#define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
wdenk15647dc2003-10-09 19:00:25 +0000429
430/*
431 * For booting Linux, the board info and command line data
432 * have to be in the first 8 MB of memory, since this is
433 * the maximum mapped by the Linux kernel during initialization.
434 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200435#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
wdenk15647dc2003-10-09 19:00:25 +0000436/*-----------------------------------------------------------------------
437 * FLASH organization
438 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200439#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
440#define CONFIG_SYS_MAX_FLASH_SECT 256 /* max number of sectors on one chip */
wdenk15647dc2003-10-09 19:00:25 +0000441
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200442#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
443#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
wdenk15647dc2003-10-09 19:00:25 +0000444
445/*-----------------------------------------------------------------------
446 * Cache Configuration
447 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200448#define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8240 CPU */
Jon Loeligerab999ba2007-07-04 22:32:03 -0500449#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200450# define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
wdenk15647dc2003-10-09 19:00:25 +0000451#endif
452
wdenk15647dc2003-10-09 19:00:25 +0000453/* values according to the manual */
454
455#define CONFIG_DRAM_50MHZ 1
456#define CONFIG_SDRAM_50MHZ
457
458#define CONFIG_DISK_SPINUP_TIME 1000000
459
460#endif /* __CONFIG_H */