blob: 575f2a1c5eacc8913e8c172dc64ed7799ea6abba [file] [log] [blame]
wdenkf39748a2004-06-09 13:37:52 +00001/*
2 * See file CREDITS for list of people who contributed to this
3 * project.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 */
20
21#ifndef __LPD7A400_H_
22#define __LPD7A400_H_
23
wdenkf832d8a2004-06-10 21:55:33 +000024#define CONFIG_LPD7A400 /* Logic LH7A400 SDK */
25
wdenkf39748a2004-06-09 13:37:52 +000026#undef CONFIG_USE_IRQ
27
wdenkf39748a2004-06-09 13:37:52 +000028/*
29 * This board uses the logic LH7A400-10 card engine
30 */
31#include <configs/lpd7a400-10.h>
32
wdenkf39748a2004-06-09 13:37:52 +000033#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
34#define CONFIG_SETUP_MEMORY_TAGS 1
35#define CONFIG_INITRD_TAG 1
36
37/*
38 * Size of malloc() pool
39 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024)
41#define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
wdenkf39748a2004-06-09 13:37:52 +000042
43/*
44 * select serial console configuration
45 */
46#define CONFIG_CONSOLE_UART2 /* UART2 LH7A40x for console */
47
48/* allow to overwrite serial and ethaddr */
49#define CONFIG_ENV_OVERWRITE
50
51#define CONFIG_BAUDRATE 115200
52#define CONFIG_IPADDR 192.168.1.100
53#define CONFIG_NETMASK 255.255.1.0
54#define CONFIG_SERVERIP 192.168.1.1
55
56#define CONFIG_TIMESTAMP 1 /* Print timestamp info for images */
57
Jon Loeliger9bbb1c02007-07-04 22:32:57 -050058
59/*
Jon Loeliger7f5c0152007-07-10 09:38:02 -050060 * BOOTP options
61 */
62#define CONFIG_BOOTP_BOOTFILESIZE
63#define CONFIG_BOOTP_BOOTPATH
64#define CONFIG_BOOTP_GATEWAY
65#define CONFIG_BOOTP_HOSTNAME
66
67
68/*
Jon Loeliger9bbb1c02007-07-04 22:32:57 -050069 * Command line configuration.
70 */
71#include <config_cmd_default.h>
72
wdenkf39748a2004-06-09 13:37:52 +000073#ifndef USE_920T_MMU
Jon Loeliger9bbb1c02007-07-04 22:32:57 -050074 #define CONFIG_CMD_PING
75 #undef CONFIG_CMD_CACHE
wdenkf39748a2004-06-09 13:37:52 +000076#else
Jon Loeliger9bbb1c02007-07-04 22:32:57 -050077 #define CONFIG_CMD_DATE
wdenkf39748a2004-06-09 13:37:52 +000078#endif
79
80
wdenkf39748a2004-06-09 13:37:52 +000081#define CONFIG_BOOTDELAY 3
82
Jon Loeliger9bbb1c02007-07-04 22:32:57 -050083#if defined(CONFIG_CMD_KGDB)
wdenkf39748a2004-06-09 13:37:52 +000084#define CONFIG_KGDB_BAUDRATE 115200 /* speed to run kgdb serial port */
85/* what's this ? it's not used anywhere */
86#define CONFIG_KGDB_SER_INDEX 1 /* which serial port to use */
87#endif
88
89/*
90 * Miscellaneous configurable options
91 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092#define CONFIG_SYS_LONGHELP /* undef to save memory */
93#define CONFIG_SYS_PROMPT "LPD7A400> " /* Monitor Command Prompt */
94#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
95#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
96#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
97#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
wdenkf39748a2004-06-09 13:37:52 +000098
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099#define CONFIG_SYS_MEMTEST_START 0xc0300000 /* memtest works on */
100#define CONFIG_SYS_MEMTEST_END 0xc0500000 /* 2 MB in DRAM */
wdenkf39748a2004-06-09 13:37:52 +0000101
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102#undef CONFIG_SYS_CLKS_IN_HZ /* everything, incl board info, in Hz */
wdenkf39748a2004-06-09 13:37:52 +0000103
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#define CONFIG_SYS_LOAD_ADDR 0xc0f00000 /* default load address */
wdenkf39748a2004-06-09 13:37:52 +0000105
106/* valid baudrates */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
wdenkf39748a2004-06-09 13:37:52 +0000108
109/* size and location of u-boot in flash */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
111#define CONFIG_SYS_MONITOR_LEN (256<<10)
wdenkf39748a2004-06-09 13:37:52 +0000112
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200113#define CONFIG_ENV_IS_IN_FLASH 1
wdenkf39748a2004-06-09 13:37:52 +0000114
115/* Address and size of Primary Environment Sector */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0xFC0000)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200117#define CONFIG_ENV_SIZE 0x40000
wdenkf39748a2004-06-09 13:37:52 +0000118
119#endif /* __LPD7A400_H_ */