add SDHC support in mmc driver
[u-boot-openmoko/mini2440.git] / include / configs / lpd7a404.h
blob11ede968180822bea92f7397e38d895e74009f72
1 /*
2 * See file CREDITS for list of people who contributed to this
3 * project.
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.
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.
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
21 #ifndef __LPD7A404_H_
22 #define __LPD7A404_H_
24 #define CONFIG_LPD7A404 /* Logic LH7A400 SDK */
26 #undef CONFIG_USE_IRQ
29 * This board uses the logic LH7A404-10 card engine
31 #include <configs/lpd7a404-10.h>
33 #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
34 #define CONFIG_SETUP_MEMORY_TAGS 1
35 #define CONFIG_INITRD_TAG 1
38 * Size of malloc() pool
40 #define CFG_MALLOC_LEN (CFG_ENV_SIZE + 128*1024)
41 #define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
44 * select serial console configuration
46 #define CONFIG_CONSOLE_UART2 /* UART2 LH7A40x for console */
48 /* allow to overwrite serial and ethaddr */
49 #define CONFIG_ENV_OVERWRITE
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
56 #define CONFIG_TIMESTAMP 1 /* Print timestamp info for images */
60 * BOOTP options
62 #define CONFIG_BOOTP_BOOTFILESIZE
63 #define CONFIG_BOOTP_BOOTPATH
64 #define CONFIG_BOOTP_GATEWAY
65 #define CONFIG_BOOTP_HOSTNAME
69 * Command line configuration.
71 #include <config_cmd_default.h>
73 #ifndef USE_920T_MMU
74 #define CONFIG_CMD_PING)
75 #undef CONFIG_CMD_CACHE
76 #else
77 #define CONFIG_CMD_DATE
78 #endif
81 #define CONFIG_BOOTDELAY 3
83 #if defined(CONFIG_CMD_KGDB)
84 #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
90 * Miscellaneous configurable options
92 #define CFG_LONGHELP /* undef to save memory */
93 #define CFG_PROMPT "LPD7A404> " /* Monitor Command Prompt */
94 #define CFG_CBSIZE 256 /* Console I/O Buffer Size */
95 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
96 #define CFG_MAXARGS 16 /* max number of command args */
97 #define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
99 #define CFG_MEMTEST_START 0xc0300000 /* memtest works on */
100 #define CFG_MEMTEST_END 0xc0500000 /* 2 MB in DRAM */
102 #undef CFG_CLKS_IN_HZ /* everything, incl board info, in Hz */
104 #define CFG_LOAD_ADDR 0xc0f00000 /* default load address */
106 /* valid baudrates */
107 #define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
109 /* size and location of u-boot in flash */
110 #define CFG_MONITOR_BASE CFG_FLASH_BASE
111 #define CFG_MONITOR_LEN (256<<10)
113 #define CFG_ENV_IS_IN_FLASH 1
115 /* Address and size of Primary Environment Sector */
116 #define CFG_ENV_ADDR (CFG_FLASH_BASE + 0xFC0000)
117 #define CFG_ENV_SIZE 0x40000
119 #endif /* __LPD7A404_H_ */