blob: c0b1d8622467b91d5b7f5237d4f5d3786236dd4b [file] [log] [blame]
wdenkc3c7f862004-06-09 14:47:54 +00001/*
2 * Copyright (C) 2004 Arabella Software Ltd.
3 * Yuli Barcohen <yuli@arabellasw.com>
4 *
5 * Support for Interphase iSPAN Communications Controllers
6 * (453x and others). Tested on 4532.
7 *
8 * Derived from iSPAN 4539 port (iphase4539) by
9 * Wolfgang Grandegger <wg@denx.de>
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29#ifndef __CONFIG_H
30#define __CONFIG_H
31
32#define CONFIG_MPC8260 /* This is an MPC8260 CPU */
33#define CONFIG_ISPAN /* ...on one of Interphase iSPAN boards */
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -050034#define CONFIG_CPM2 1 /* Has a CPM2 */
wdenkc3c7f862004-06-09 14:47:54 +000035
36/*-----------------------------------------------------------------------
37 * Select serial console configuration
38 *
39 * If either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
40 * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
41 * for SCC).
42 *
43 * If CONFIG_CONS_NONE is defined, then the serial console routines must be
44 * defined elsewhere (for example, on the cogent platform, there are serial
45 * ports on the motherboard which are used for the serial console - see
46 * cogent/cma101/serial.[ch]).
47 */
48#define CONFIG_CONS_ON_SMC /* Define if console on SMC */
49#undef CONFIG_CONS_ON_SCC /* Define if console on SCC */
50#undef CONFIG_CONS_NONE /* Define if console on something else */
51#define CONFIG_CONS_INDEX 1 /* Which serial channel for console */
52
53/*-----------------------------------------------------------------------
54 * Select Ethernet configuration
55 *
56 * If either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then
57 * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3
58 * for FCC).
59 *
60 * If CONFIG_ETHER_NONE is defined, then either the Ethernet routines must
Jon Loeliger639221c2007-07-09 17:15:49 -050061 * be defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset.
wdenkc3c7f862004-06-09 14:47:54 +000062 */
63#undef CONFIG_ETHER_ON_SCC /* Define if Ethernet on SCC */
64#define CONFIG_ETHER_ON_FCC /* Define if Ethernet on FCC */
65#undef CONFIG_ETHER_NONE /* Define if Ethernet on something else */
66#define CONFIG_ETHER_INDEX 3 /* Which channel for Ethernrt */
67
68#ifdef CONFIG_ETHER_ON_FCC
69
70#if CONFIG_ETHER_INDEX == 3
71
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020072#define CONFIG_SYS_PHY_ADDR 0
73#define CONFIG_SYS_CMXFCR_VALUE (CMXFCR_RF3CS_CLK14 | CMXFCR_TF3CS_CLK16)
74#define CONFIG_SYS_CMXFCR_MASK (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | CMXFCR_TF3CS_MSK)
wdenkc3c7f862004-06-09 14:47:54 +000075
76#endif /* CONFIG_ETHER_INDEX == 3 */
77
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#define CONFIG_SYS_CPMFCR_RAMTYPE 0
79#define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
wdenkc3c7f862004-06-09 14:47:54 +000080
81#define CONFIG_MII /* MII PHY management */
82#define CONFIG_BITBANGMII /* Bit-bang MII PHY management */
83/*
84 * GPIO pins used for bit-banged MII communications
85 */
86#define MDIO_PORT 3 /* Port D */
Luigi 'Comio' Mantellinibe225442009-10-10 12:42:22 +020087#define MDIO_DECLARE volatile ioport_t *iop = ioport_addr ( \
88 (immap_t *) CONFIG_SYS_IMMR, MDIO_PORT )
89#define MDC_DECLARE MDIO_DECLARE
90
wdenkc3c7f862004-06-09 14:47:54 +000091
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092#define CONFIG_SYS_MDIO_PIN 0x00040000 /* PD13 */
93#define CONFIG_SYS_MDC_PIN 0x00080000 /* PD12 */
wdenkc3c7f862004-06-09 14:47:54 +000094
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095#define MDIO_ACTIVE (iop->pdir |= CONFIG_SYS_MDIO_PIN)
96#define MDIO_TRISTATE (iop->pdir &= ~CONFIG_SYS_MDIO_PIN)
97#define MDIO_READ ((iop->pdat & CONFIG_SYS_MDIO_PIN) != 0)
wdenkc3c7f862004-06-09 14:47:54 +000098
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099#define MDIO(bit) if(bit) iop->pdat |= CONFIG_SYS_MDIO_PIN; \
100 else iop->pdat &= ~CONFIG_SYS_MDIO_PIN
wdenkc3c7f862004-06-09 14:47:54 +0000101
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102#define MDC(bit) if(bit) iop->pdat |= CONFIG_SYS_MDC_PIN; \
103 else iop->pdat &= ~CONFIG_SYS_MDC_PIN
wdenkc3c7f862004-06-09 14:47:54 +0000104
105#define MIIDELAY udelay(1)
106
107#endif /* CONFIG_ETHER_ON_FCC */
108
109#define CONFIG_8260_CLKIN 65536000 /* in Hz */
110#define CONFIG_BAUDRATE 38400
111
wdenkc3c7f862004-06-09 14:47:54 +0000112
Jon Loeliger348f2582007-07-08 13:46:18 -0500113/*
Jon Loeliger11799432007-07-10 09:02:57 -0500114 * BOOTP options
115 */
116#define CONFIG_BOOTP_BOOTFILESIZE
117#define CONFIG_BOOTP_BOOTPATH
118#define CONFIG_BOOTP_GATEWAY
119#define CONFIG_BOOTP_HOSTNAME
120
121
122/*
Jon Loeliger348f2582007-07-08 13:46:18 -0500123 * Command line configuration.
124 */
125#include <config_cmd_default.h>
126
127#define CONFIG_CMD_ASKENV
128#define CONFIG_CMD_DHCP
129#define CONFIG_CMD_IMMAP
130#define CONFIG_CMD_MII
131#define CONFIG_CMD_PING
132#define CONFIG_CMD_REGINFO
133
wdenkc3c7f862004-06-09 14:47:54 +0000134
135#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
136#define CONFIG_BOOTCOMMAND "bootm fe010000" /* autoboot command */
137#define CONFIG_BOOTARGS "root=/dev/ram rw"
138
139#define CONFIG_BZIP2 /* Include support for bzip2 compressed images */
140#undef CONFIG_WATCHDOG /* Disable platform specific watchdog */
141
142/*-----------------------------------------------------------------------
143 * Miscellaneous configurable options
144 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
146#define CONFIG_SYS_HUSH_PARSER
147#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
148#define CONFIG_SYS_LONGHELP /* #undef to save memory */
149#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
150#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) /* Print Buffer Size */
151#define CONFIG_SYS_MAXARGS 16 /* Max number of command args */
152#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
wdenkc3c7f862004-06-09 14:47:54 +0000153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154#define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
155#define CONFIG_SYS_MEMTEST_END 0x03B00000 /* 1 ... 59 MB in SDRAM */
wdenkc3c7f862004-06-09 14:47:54 +0000156
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200157#define CONFIG_SYS_LOAD_ADDR 0x100000 /* Default load address */
wdenkc3c7f862004-06-09 14:47:54 +0000158
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200159#define CONFIG_SYS_HZ 1000 /* Decrementer freq: 1 ms ticks */
wdenkc3c7f862004-06-09 14:47:54 +0000160
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
wdenkc3c7f862004-06-09 14:47:54 +0000162
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200163#define CONFIG_SYS_RESET_ADDRESS 0x09900000
wdenkc3c7f862004-06-09 14:47:54 +0000164
165#define CONFIG_MISC_INIT_R /* We need misc_init_r() */
166
167/*-----------------------------------------------------------------------
168 * For booting Linux, the board info and command line data
169 * have to be in the first 8 MB of memory, since this is
170 * the maximum mapped by the Linux kernel during initialization.
171 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
wdenkc3c7f862004-06-09 14:47:54 +0000173
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200174#define CONFIG_SYS_MONITOR_BASE TEXT_BASE
175#define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */
wdenkc3c7f862004-06-09 14:47:54 +0000176#ifdef CONFIG_BZIP2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200177#define CONFIG_SYS_MALLOC_LEN (4096 << 10) /* Reserve 4 MB for malloc() */
wdenkc3c7f862004-06-09 14:47:54 +0000178#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200179#define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 KB for malloc() */
wdenkc3c7f862004-06-09 14:47:54 +0000180#endif /* CONFIG_BZIP2 */
181
182/*-----------------------------------------------------------------------
183 * FLASH organization
184 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185#define CONFIG_SYS_FLASH_BASE 0xFE000000
186#define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
Jean-Christophe PLAGNIOL-VILLARD00b18832008-08-13 01:40:42 +0200187#define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200188#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max num of memory banks */
189#define CONFIG_SYS_MAX_FLASH_SECT 142 /* Max num of sects on one chip */
wdenkc3c7f862004-06-09 14:47:54 +0000190
191/* Environment is in flash, there is little space left in Serial EEPROM */
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200192#define CONFIG_ENV_IS_IN_FLASH
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200193#define CONFIG_ENV_SECT_SIZE 0x10000 /* We use one complete sector */
194#define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200196#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE)
197#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
wdenkc3c7f862004-06-09 14:47:54 +0000198
199/*-----------------------------------------------------------------------
200 * Hard Reset Configuration Words
201 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200202 * If you change bits in the HRCW, you must also change the CONFIG_SYS_*
wdenkc3c7f862004-06-09 14:47:54 +0000203 * defines for the various registers affected by the HRCW e.g. changing
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200204 * HRCW_DPPCxx requires you to also change CONFIG_SYS_SIUMCR.
wdenkc3c7f862004-06-09 14:47:54 +0000205 */
206/* 0x1686B245 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200207#define CONFIG_SYS_HRCW_MASTER (HRCW_EBM | HRCW_BPS01 | HRCW_CIP |\
wdenkc3c7f862004-06-09 14:47:54 +0000208 HRCW_L2CPC10 | HRCW_ISB110 |\
209 HRCW_BMS | HRCW_MMR11 | HRCW_APPC10 |\
210 HRCW_CS10PC01 | HRCW_MODCK_H0101 \
211 )
212/* No slaves */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200213#define CONFIG_SYS_HRCW_SLAVE1 0
214#define CONFIG_SYS_HRCW_SLAVE2 0
215#define CONFIG_SYS_HRCW_SLAVE3 0
216#define CONFIG_SYS_HRCW_SLAVE4 0
217#define CONFIG_SYS_HRCW_SLAVE5 0
218#define CONFIG_SYS_HRCW_SLAVE6 0
219#define CONFIG_SYS_HRCW_SLAVE7 0
wdenkc3c7f862004-06-09 14:47:54 +0000220
221/*-----------------------------------------------------------------------
222 * Internal Memory Mapped Register
223 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200224#define CONFIG_SYS_IMMR 0xF0F00000
225#ifdef CONFIG_SYS_REV_B
226#define CONFIG_SYS_DEFAULT_IMMR 0xFF000000
227#endif /* CONFIG_SYS_REV_B */
wdenkc3c7f862004-06-09 14:47:54 +0000228/*-----------------------------------------------------------------------
229 * Definitions for initial stack pointer and data area (in DPRAM)
230 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
232#define CONFIG_SYS_INIT_RAM_END 0x4000 /* End of used area in DPRAM */
233#define CONFIG_SYS_GBL_DATA_SIZE 128 /* Size in bytes reserved for initial data */
234#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
235#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
wdenkc3c7f862004-06-09 14:47:54 +0000236
237/*-----------------------------------------------------------------------
238 * Internal Definitions
239 *
240 * Boot Flags
241 */
242#define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from flash */
243#define BOOTFLAG_WARM 0x02 /* Software reboot */
244
245/*-----------------------------------------------------------------------
246 * Cache Configuration
247 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200248#define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */
wdenkc3c7f862004-06-09 14:47:54 +0000249
250/*-----------------------------------------------------------------------
251 * HIDx - Hardware Implementation-dependent Registers 2-11
252 *-----------------------------------------------------------------------
253 * HID0 also contains cache control.
254 *
255 * HID1 has only read-only information - nothing to set.
256 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200257#define CONFIG_SYS_HID0_INIT (HID0_ICE|HID0_DCE|HID0_ICFI|HID0_DCI|\
wdenkc3c7f862004-06-09 14:47:54 +0000258 HID0_IFEM|HID0_ABE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200259#define CONFIG_SYS_HID0_FINAL (HID0_ICE|HID0_IFEM|HID0_ABE)
260#define CONFIG_SYS_HID2 0
wdenkc3c7f862004-06-09 14:47:54 +0000261
262/*-----------------------------------------------------------------------
263 * RMR - Reset Mode Register 5-5
264 *-----------------------------------------------------------------------
265 * turn on Checkstop Reset Enable
266 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200267#define CONFIG_SYS_RMR RMR_CSRE
wdenkc3c7f862004-06-09 14:47:54 +0000268
269/*-----------------------------------------------------------------------
270 * BCR - Bus Configuration 4-25
271 *-----------------------------------------------------------------------
272 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200273#define CONFIG_SYS_BCR 0xA01C0000
wdenkc3c7f862004-06-09 14:47:54 +0000274
275/*-----------------------------------------------------------------------
276 * SIUMCR - SIU Module Configuration 4-31
277 *-----------------------------------------------------------------------
278 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200279#define CONFIG_SYS_SIUMCR 0x42250000/* 0x4205C000 */
wdenkc3c7f862004-06-09 14:47:54 +0000280
281/*-----------------------------------------------------------------------
282 * SYPCR - System Protection Control 4-35
283 * SYPCR can only be written once after reset!
284 *-----------------------------------------------------------------------
285 * Watchdog & Bus Monitor Timer max, 60x Bus Monitor enable
286 */
287#if defined (CONFIG_WATCHDOG)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200288#define CONFIG_SYS_SYPCR (SYPCR_SWTC|SYPCR_BMT|SYPCR_PBME|SYPCR_LBME|\
wdenkc3c7f862004-06-09 14:47:54 +0000289 SYPCR_SWRI|SYPCR_SWP|SYPCR_SWE)
290#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200291#define CONFIG_SYS_SYPCR (SYPCR_SWTC|SYPCR_BMT|SYPCR_PBME|SYPCR_LBME|\
wdenkc3c7f862004-06-09 14:47:54 +0000292 SYPCR_SWRI|SYPCR_SWP)
293#endif /* CONFIG_WATCHDOG */
294
295/*-----------------------------------------------------------------------
296 * TMCNTSC - Time Counter Status and Control 4-40
297 * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk,
298 * and enable Time Counter
299 *-----------------------------------------------------------------------
300 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200301#define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC|TMCNTSC_ALR|TMCNTSC_TCF|TMCNTSC_TCE)
wdenkc3c7f862004-06-09 14:47:54 +0000302
303/*-----------------------------------------------------------------------
304 * PISCR - Periodic Interrupt Status and Control 4-42
305 *-----------------------------------------------------------------------
306 * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable
307 * Periodic timer
308 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200309#define CONFIG_SYS_PISCR (PISCR_PS|PISCR_PTF|PISCR_PTE)
wdenkc3c7f862004-06-09 14:47:54 +0000310
311/*-----------------------------------------------------------------------
312 * SCCR - System Clock Control 9-8
313 *-----------------------------------------------------------------------
314 * Ensure DFBRG is Divide by 16
315 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200316#define CONFIG_SYS_SCCR SCCR_DFBRG01
wdenkc3c7f862004-06-09 14:47:54 +0000317
318/*-----------------------------------------------------------------------
319 * RCCR - RISC Controller Configuration 13-7
320 *-----------------------------------------------------------------------
321 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200322#define CONFIG_SYS_RCCR 0
wdenkc3c7f862004-06-09 14:47:54 +0000323
324/*-----------------------------------------------------------------------
325 * Init Memory Controller:
326 *
327 * Bank Bus Machine PortSize Device
328 * ---- --- ------- ----------------------------- ------
329 * 0 60x GPCM 8 bit (Rev.B)/16 bit (Rev.D) Flash
330 * 1 60x SDRAM 64 bit SDRAM
331 * 2 Local SDRAM 32 bit SDRAM
332 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200333#define CONFIG_SYS_USE_FIRMWARE /* If defined - do not initialise memory
wdenkc3c7f862004-06-09 14:47:54 +0000334 controller, rely on initialisation
335 performed by the Interphase boot firmware.
336 */
337
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200338#define CONFIG_SYS_OR0_PRELIM 0xFE000882
339#ifdef CONFIG_SYS_REV_B
340#define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | BRx_PS_8 | BRx_V)
wdenkc3c7f862004-06-09 14:47:54 +0000341#else /* Rev. D */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342#define CONFIG_SYS_BR0_PRELIM (CONFIG_SYS_FLASH_BASE | BRx_PS_16 | BRx_V)
343#endif /* CONFIG_SYS_REV_B */
wdenkc3c7f862004-06-09 14:47:54 +0000344
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200345#define CONFIG_SYS_MPTPR 0x7F00
wdenkc3c7f862004-06-09 14:47:54 +0000346
347/* Please note that 60x SDRAM MUST start at 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200348#define CONFIG_SYS_SDRAM_BASE 0x00000000
349#define CONFIG_SYS_60x_BR 0x00000041
350#define CONFIG_SYS_60x_OR 0xF0002CD0
351#define CONFIG_SYS_PSDMR 0x0049929A
352#define CONFIG_SYS_PSRT 0x07
wdenkc3c7f862004-06-09 14:47:54 +0000353
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200354#define CONFIG_SYS_LSDRAM_BASE 0xF7000000
355#define CONFIG_SYS_LOC_BR 0x00001861
356#define CONFIG_SYS_LOC_OR 0xFF803280
357#define CONFIG_SYS_LSDMR 0x8285A552
358#define CONFIG_SYS_LSRT 0x07
wdenkc3c7f862004-06-09 14:47:54 +0000359
360#endif /* __CONFIG_H */