blob: c0179150c2b6b38489de236efe73395ce9b614fc [file] [log] [blame]
wdenke2211742002-11-02 23:30:20 +00001/*
2 * (C) Copyright 2001
3 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.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 * board/config.h - configuration options, board specific
26 */
27
28#ifndef __CONFIG_H
29#define __CONFIG_H
30
31/*
32 * High Level Configuration Options
33 * (easy to change)
34 */
35
36#define CONFIG_405GP 1 /* This is a PPC405GP CPU */
37#define CONFIG_4xx 1 /* ...member of PPC405 family */
38#define CONFIG_W7O 1 /* ...on a Wave 7 Optics board */
39#define CONFIG_W7OLMC 1 /* ...specifically an LMC */
40
wdenkc837dcb2004-01-20 23:12:12 +000041#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
42#define CONFIG_MISC_INIT_F 1 /* and misc_init_f() */
Peter Tyser3a8f28d2009-09-16 22:03:07 -050043#define CONFIG_MISC_INIT_R 1 /* and misc_init_r() */
wdenke2211742002-11-02 23:30:20 +000044
45#define CONFIG_SYS_CLK_FREQ 33333333 /* external frequency to pll */
46
47#define CONFIG_BAUDRATE 9600
48#define CONFIG_BOOTDELAY 3 /* autoboot after 3 seconds */
49
50#if 1
51#define CONFIG_BOOTCOMMAND "bootvx" /* VxWorks boot command */
52#else
53#define CONFIG_BOOTCOMMAND "bootp" /* autoboot command */
54#endif
55
56#undef CONFIG_BOOTARGS
57
58#define CONFIG_LOADADDR F0080000
59
60#define CONFIG_ETHADDR 00:06:0D:00:00:00 /* Default, overridden at boot */
61#define CONFIG_OVERWRITE_ETHADDR_ONCE
62#define CONFIG_IPADDR 192.168.1.1
63#define CONFIG_NETMASK 255.255.255.0
64#define CONFIG_SERVERIP 192.168.1.2
65
66#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067#undef CONFIG_SYS_LOADS_BAUD_CHANGE /* disallow baudrate change */
wdenke2211742002-11-02 23:30:20 +000068
Ben Warren96e21f82008-10-27 23:50:15 -070069#define CONFIG_PPC4xx_EMAC
wdenke2211742002-11-02 23:30:20 +000070#define CONFIG_MII 1 /* MII PHY management */
71#define CONFIG_PHY_ADDR 0 /* PHY address */
Ben Warren18cc7af2009-04-28 16:50:53 -070072#define CONFIG_NET_MULTI
wdenke2211742002-11-02 23:30:20 +000073
74#define CONFIG_RTC_M48T35A 1 /* ST Electronics M48 timekeeper */
75
Jon Loeligera5562902007-07-08 15:31:57 -050076/*
Jon Loeligera1aa0bb2007-07-10 09:22:23 -050077 * BOOTP options
78 */
79#define CONFIG_BOOTP_BOOTFILESIZE
80#define CONFIG_BOOTP_BOOTPATH
81#define CONFIG_BOOTP_GATEWAY
82#define CONFIG_BOOTP_HOSTNAME
83
84
85/*
Jon Loeligera5562902007-07-08 15:31:57 -050086 * Command line configuration.
87 */
88#include <config_cmd_default.h>
wdenke2211742002-11-02 23:30:20 +000089
Jon Loeligera5562902007-07-08 15:31:57 -050090#define CONFIG_CMD_PCI
91#define CONFIG_CMD_IRQ
92#define CONFIG_CMD_ASKENV
93#define CONFIG_CMD_DHCP
94#define CONFIG_CMD_BEDBUG
95#define CONFIG_CMD_DATE
96#define CONFIG_CMD_I2C
97#define CONFIG_CMD_EEPROM
98#define CONFIG_CMD_ELF
99#define CONFIG_CMD_BSP
100#define CONFIG_CMD_REGINFO
wdenke2211742002-11-02 23:30:20 +0000101
102#undef CONFIG_WATCHDOG /* watchdog disabled */
103#define CONFIG_HW_WATCHDOG /* HW Watchdog, board specific */
104
105#define CONFIG_SPD_EEPROM /* SPD EEPROM for SDRAM param. */
wdenkdb2f721f2003-03-06 00:58:30 +0000106#define CONFIG_SPDDRAM_SILENT /* No output if spd fails */
wdenke2211742002-11-02 23:30:20 +0000107/*
108 * Miscellaneous configurable options
109 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110#define CONFIG_SYS_LONGHELP /* undef to save memory */
111#define CONFIG_SYS_PROMPT "Wave7Optics> " /* Monitor Command Prompt */
112#undef CONFIG_SYS_HUSH_PARSER /* No hush parse for U-Boot */
113#ifdef CONFIG_SYS_HUSH_PARSER
114#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
wdenke2211742002-11-02 23:30:20 +0000115#endif
Jon Loeligera5562902007-07-08 15:31:57 -0500116#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200117#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
wdenke2211742002-11-02 23:30:20 +0000118#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200119#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
wdenke2211742002-11-02 23:30:20 +0000120#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
122#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
123#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
wdenke2211742002-11-02 23:30:20 +0000124
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200125#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
126#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
wdenke2211742002-11-02 23:30:20 +0000127
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200128#undef CONFIG_SYS_EXT_SERIAL_CLOCK /* external serial clock */
129#define CONFIG_SYS_405_UART_ERRATA_59 /* 405GP/CR Rev. D silicon */
130#define CONFIG_SYS_BASE_BAUD 384000
wdenke2211742002-11-02 23:30:20 +0000131
132
133/* The following table includes the supported baudrates */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200134#define CONFIG_SYS_BAUDRATE_TABLE {9600}
wdenke2211742002-11-02 23:30:20 +0000135
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200136#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
137#define CONFIG_SYS_EXTBDINFO 1 /* use extended board_info (bd_t) */
wdenke2211742002-11-02 23:30:20 +0000138
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200139#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
wdenke2211742002-11-02 23:30:20 +0000140
141/*-----------------------------------------------------------------------
142 * PCI stuff
143 *-----------------------------------------------------------------------
144 */
145#define PCI_HOST_ADAPTER 0 /* configure as pci adapter */
146#define PCI_HOST_FORCE 1 /* configure as pci host */
147#define PCI_HOST_AUTO 2 /* detected via arbiter enable */
148
149
150#define CONFIG_PCI /* include pci support */
151#define CONFIG_PCI_HOST PCI_HOST_AUTO /* select pci host function */
152#define CONFIG_PCI_PNP /* pci plug-and-play */
153/* resource configuration */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1014 /* PCI Vendor ID: IBM */
155#define CONFIG_SYS_PCI_SUBSYS_DEVICEID 0x0156 /* PCI Device ID: 405GP */
156#define CONFIG_SYS_PCI_PTM1LA 0x00000000 /* point to sdram */
157#define CONFIG_SYS_PCI_PTM1MS 0x80000001 /* 2GB, enable hard-wired to 1 */
158#define CONFIG_SYS_PCI_PTM1PCI 0x00000000 /* Host: use this pci address */
159#define CONFIG_SYS_PCI_PTM2LA 0x00000000 /* disabled */
160#define CONFIG_SYS_PCI_PTM2MS 0x00000000 /* disabled */
161#define CONFIG_SYS_PCI_PTM2PCI 0x00000000 /* Host: use this pci address */
wdenke2211742002-11-02 23:30:20 +0000162
163/*-----------------------------------------------------------------------
164 * Set up values for external bus controller
165 * used by cpu_init.c
166 *-----------------------------------------------------------------------
167 */
168 /* Don't use PerWE instead of PCI_INT ( these functions share a pin ) */
169#undef CONFIG_USE_PERWE
170
171/* use on chip memory ( OCM ) for temperary stack until sdram is tested */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172#define CONFIG_SYS_TEMP_STACK_OCM 1
wdenke2211742002-11-02 23:30:20 +0000173
174/* bank 0 is boot flash */
175/* BME=0,TWT=6,CSN=1,OEN=1,WBN=0,WBF=0,TH=2,RE=0,SOR=0,BEM=1,PEN=0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176#define CONFIG_SYS_W7O_EBC_PB0AP 0x03050440
wdenke2211742002-11-02 23:30:20 +0000177/* BAS=0xFFE,BS=0x1(2MB),BU=0x3(R/W),BW=0x0(8 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178#define CONFIG_SYS_W7O_EBC_PB0CR 0xFFE38000
wdenke2211742002-11-02 23:30:20 +0000179
180/* bank 1 is main flash */
181/* BME=0,TWT=11,CSN=1,OEN=1,WBN=0,WBF=0,TH=1,RE=0,SOR=0,BEM=1,PEN=0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200182#define CONFIG_SYS_EBC_PB1AP 0x05850240
wdenke2211742002-11-02 23:30:20 +0000183/* BAS=0xF00,BS=0x7(128MB),BU=0x3(R/W),BW=0x10(32 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184#define CONFIG_SYS_EBC_PB1CR 0xF00FC000
wdenke2211742002-11-02 23:30:20 +0000185
186/* bank 2 is RTC/NVRAM */
187/* BME=0,TWT=6,CSN=0,OEN=0,WBN=0,WBF=0,TH=2,RE=0,SOR=0,BEM=1,PEN=0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200188#define CONFIG_SYS_EBC_PB2AP 0x03000440
wdenke2211742002-11-02 23:30:20 +0000189/* BAS=0xFC0,BS=0x0(1MB),BU=0x3(R/W),BW=0x0(8 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#define CONFIG_SYS_EBC_PB2CR 0xFC018000
wdenke2211742002-11-02 23:30:20 +0000191
192/* bank 3 is FPGA 0 */
193/* BME=0,TWT=4,CSN=0,OEN=0,WBN=0,WBF=0,TH=2,RE=0,SOR=0,BEM=0,PEN=0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200194#define CONFIG_SYS_EBC_PB3AP 0x02000400
wdenke2211742002-11-02 23:30:20 +0000195/* BAS=0xFD0,BS=0x0(1MB),BU=0x3(R/W),BW=0x1(16 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196#define CONFIG_SYS_EBC_PB3CR 0xFD01A000
wdenke2211742002-11-02 23:30:20 +0000197
198/* bank 4 is FPGA 1 */
199/* BME=,TWT=,CSN=,OEN=,WBN=,WBF=,TH=,RE=,SOR=,BEM=,PEN= */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200200#define CONFIG_SYS_EBC_PB4AP 0x02000400
wdenke2211742002-11-02 23:30:20 +0000201/* BAS=,BS=,BU=0x3(R/W),BW=0x0(8 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200202#define CONFIG_SYS_EBC_PB4CR 0xFD11A000
wdenke2211742002-11-02 23:30:20 +0000203
204/* bank 5 is FPGA 2 */
205/* BME=,TWT=,CSN=,OEN=,WBN=,WBF=,TH=,RE=,SOR=,BEM=,PEN= */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200206#define CONFIG_SYS_EBC_PB5AP 0x02000400
wdenke2211742002-11-02 23:30:20 +0000207/* BAS=,BS=,BU=0x3(R/W),BW=0x1(16 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200208#define CONFIG_SYS_EBC_PB5CR 0xFD21A000
wdenke2211742002-11-02 23:30:20 +0000209
210/* bank 6 is unused */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200211/* PB6AP = 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200212#define CONFIG_SYS_EBC_PB6AP 0x00000000
Stefan Roesed1c3b272009-09-09 16:25:29 +0200213/* PB6CR = 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200214#define CONFIG_SYS_EBC_PB6CR 0x00000000
wdenke2211742002-11-02 23:30:20 +0000215
216/* bank 7 is LED register */
217/* BME=0,TWT=6,CSN=1,OEN=1,WBN=0,WBF=0,TH=2,RE=0,SOR=0,BEM=1,PEN=0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200218#define CONFIG_SYS_W7O_EBC_PB7AP 0x03050440
wdenke2211742002-11-02 23:30:20 +0000219/* BAS=0xFE0,BS=0x0(1MB),BU=0x3(R/W),BW=0x2(32 bits) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200220#define CONFIG_SYS_W7O_EBC_PB7CR 0xFE01C000
wdenke2211742002-11-02 23:30:20 +0000221
222/*-----------------------------------------------------------------------
223 * Start addresses for the final memory configuration
224 * (Set up by the startup code)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
wdenke2211742002-11-02 23:30:20 +0000226 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227#define CONFIG_SYS_SDRAM_BASE 0x00000000
228#define CONFIG_SYS_FLASH_BASE 0xFFFC0000
229#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
230#define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256 kB for Monitor */
231#define CONFIG_SYS_MALLOC_LEN (128 * 1024) /* Reserve 128 kB for malloc() */
wdenke2211742002-11-02 23:30:20 +0000232
233/*
234 * For booting Linux, the board info and command line data
235 * have to be in the first 8 MB of memory, since this is
236 * the maximum mapped by the Linux kernel during initialization.
237 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200238#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
wdenke2211742002-11-02 23:30:20 +0000239/*-----------------------------------------------------------------------
240 * FLASH organization
241 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200242#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of memory banks */
243#define CONFIG_SYS_MAX_FLASH_SECT 256 /* max number of sec on 1 chip */
wdenke2211742002-11-02 23:30:20 +0000244
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200245#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout, Flash Erase, in ms */
246#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout, Flash Write, in ms */
247#define CONFIG_SYS_FLASH_PROTECTION 1 /* Use real Flash protection */
wdenke2211742002-11-02 23:30:20 +0000248
249#if 1 /* Use NVRAM for environment variables */
250/*-----------------------------------------------------------------------
251 * NVRAM organization
252 */
Jean-Christophe PLAGNIOL-VILLARD9314cee2008-09-10 22:47:59 +0200253#define CONFIG_ENV_IS_IN_NVRAM 1 /* use NVRAM for env vars */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200254#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfc000000 /* NVRAM base address */
255#define CONFIG_SYS_NVRAM_SIZE (32*1024) /* NVRAM size */
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200256#define CONFIG_ENV_SIZE 0x1000 /* Size of Environment vars */
257/*define CONFIG_ENV_ADDR \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200258 (CONFIG_SYS_NVRAM_BASE_ADDR+CONFIG_SYS_NVRAM_SIZE-CONFIG_ENV_SIZE) Env */
259#define CONFIG_ENV_ADDR CONFIG_SYS_NVRAM_BASE_ADDR
wdenke2211742002-11-02 23:30:20 +0000260
261#else /* Use Boot Flash for environment variables */
262/*-----------------------------------------------------------------------
263 * Flash EEPROM for environment
264 */
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200265#define CONFIG_ENV_IS_IN_FLASH 1
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200266#define CONFIG_ENV_OFFSET 0x00040000 /* Offset of Environment Sector */
267#define CONFIG_ENV_SIZE 0x10000 /* Total Size of env. sector */
wdenke2211742002-11-02 23:30:20 +0000268
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200269#define CONFIG_ENV_SECT_SIZE 0x10000 /* see README - env sec tot sze */
wdenke2211742002-11-02 23:30:20 +0000270#endif
271
272/*-----------------------------------------------------------------------
273 * I2C EEPROM (CAT24WC08) for environment
274 */
275#define CONFIG_HARD_I2C /* I2c with hardware support */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200276#define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
277#define CONFIG_SYS_I2C_SLAVE 0x7F
wdenke2211742002-11-02 23:30:20 +0000278
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200279#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* EEPROM CAT28WC08 */
280#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 /* Bytes of address */
wdenke2211742002-11-02 23:30:20 +0000281/* mask of address bits that overflow into the "EEPROM chip address" */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200282#define CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW 0x07
283#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4 /* The Catalyst CAT24WC08 has */
wdenke2211742002-11-02 23:30:20 +0000284 /* 16 byte page write mode using*/
285 /* last 4 bits of the address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200286#define CONFIG_SYS_I2C_MULTI_EEPROMS
wdenke2211742002-11-02 23:30:20 +0000287/*-----------------------------------------------------------------------
288 * Definitions for Serial Presence Detect EEPROM address
289 * (to get SDRAM settings)
290 */
291#define SPD_EEPROM_ADDRESS 0x50 /* XXX conflicting address!!! XXX */
292
wdenke2211742002-11-02 23:30:20 +0000293/*
294 * Init Memory Controller:
295 */
296#define FLASH_BASE0_PRELIM 0xFFE00000 /* FLASH bank #0 */
297#define FLASH_BASE1_PRELIM 0xF0000000 /* FLASH bank #1 */
298
299/* On Chip Memory location */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200300#define CONFIG_SYS_OCM_DATA_ADDR 0xF8000000
301#define CONFIG_SYS_OCM_DATA_SIZE 0x1000
wdenke2211742002-11-02 23:30:20 +0000302
303/*-----------------------------------------------------------------------
304 * Definitions for initial stack pointer and data area (in RAM)
305 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200306#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_DATA_ADDR /* inside of SDRAM */
307#define CONFIG_SYS_INIT_RAM_END CONFIG_SYS_OCM_DATA_SIZE /* End of used area in RAM */
308#define CONFIG_SYS_GBL_DATA_SIZE 64 /* size in bytes reserved for initial data */
309#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
310#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
wdenke2211742002-11-02 23:30:20 +0000311
312
313/*
314 * Internal Definitions
315 *
316 * Boot Flags
317 */
318#define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
319#define BOOTFLAG_WARM 0x02 /* Software reboot */
320
Jon Loeligera5562902007-07-08 15:31:57 -0500321#if defined(CONFIG_CMD_KGDB)
wdenke2211742002-11-02 23:30:20 +0000322#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */
323#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
324#endif
325
326/*
327 * FPGA(s) configuration
328 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200329#define CONFIG_SYS_FPGA_IMAGE_LEN 0x80000 /* 512KB FPGA image */
wdenke2211742002-11-02 23:30:20 +0000330#define CONFIG_NUM_FPGAS 3 /* Number of FPGAs on board */
331#define CONFIG_MAX_FPGAS 6 /* Maximum number of FPGAs */
332#define CONFIG_FPGAS_BASE 0xFD000000L /* Base address of FPGAs */
333#define CONFIG_FPGAS_BANK_SIZE 0x00100000L /* FPGAs' mmap bank size */
334
335#endif /* __CONFIG_H */