blob: 85165710b07069a7ce817b1245bbe15fbd542bf3 [file] [log] [blame]
Stefan Roesea8a11a92008-06-06 15:54:31 +02001/*
2 * (C) Copyright 2008
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * Common configuration options for all AMCC boards
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#ifndef __AMCC_COMMON_H
24#define __AMCC_COMMON_H
25
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020026#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* _must_ be 0 */
27#define CONFIG_SYS_MONITOR_BASE TEXT_BASE /* Start of U-Boot */
28#define CONFIG_SYS_MONITOR_LEN (0xFFFFFFFF - CONFIG_SYS_MONITOR_BASE + 1)
29#define CONFIG_SYS_MALLOC_LEN (1 << 20) /* Reserved for malloc */
Stefan Roesea8a11a92008-06-06 15:54:31 +020030
31/*
32 * UART
33 */
34#define CONFIG_BAUDRATE 115200
35#define CONFIG_SERIAL_MULTI
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020036#define CONFIG_SYS_BAUDRATE_TABLE \
Stefan Roesea8a11a92008-06-06 15:54:31 +020037 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
38
39/*
40 * I2C
41 */
42#define CONFIG_HARD_I2C /* I2C with hardware support */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020043#define CONFIG_SYS_I2C_SLAVE 0x7F
Stefan Roesea8a11a92008-06-06 15:54:31 +020044
45/*
46 * Ethernet/EMAC/PHY
47 */
48#define CONFIG_MII /* MII PHY management */
49#define CONFIG_NET_MULTI
50#define CONFIG_NETCONSOLE /* include NetConsole support */
51#if defined(CONFIG_440)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#define CONFIG_SYS_RX_ETH_BUFFER 32 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020053#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054#define CONFIG_SYS_RX_ETH_BUFFER 16 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020055#endif
56
57/*
58 * Commands
59 */
60#include <config_cmd_default.h>
61
62#define CONFIG_CMD_ASKENV
63#if defined(CONFIG_440)
64#define CONFIG_CMD_CACHE
65#endif
66#define CONFIG_CMD_DHCP
67#define CONFIG_CMD_DIAG
68#define CONFIG_CMD_EEPROM
69#define CONFIG_CMD_ELF
70#define CONFIG_CMD_I2C
71#define CONFIG_CMD_IRQ
72#define CONFIG_CMD_MII
73#define CONFIG_CMD_NET
74#define CONFIG_CMD_NFS
75#define CONFIG_CMD_PING
76#define CONFIG_CMD_REGINFO
77
78/*
79 * Miscellaneous configurable options
80 */
81#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082#define CONFIG_SYS_LONGHELP /* undef to save memory */
83#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
Stefan Roesea8a11a92008-06-06 15:54:31 +020084#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020086#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020088#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
90#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
91#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020092
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
94#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
Stefan Roesea8a11a92008-06-06 15:54:31 +020095
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
97#define CONFIG_SYS_EXTBDINFO /* To use extended board_into (bd_t) */
Stefan Roesea8a11a92008-06-06 15:54:31 +020098
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200100
101#define CONFIG_CMDLINE_EDITING /* add command line history */
102#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
103#define CONFIG_LOOPW /* enable loopw command */
104#define CONFIG_MX_CYCLIC /* enable mdc/mwc commands */
105#define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
106#define CONFIG_VERSION_VARIABLE /* include version env variable */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107#define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup*/
Stefan Roesea8a11a92008-06-06 15:54:31 +0200108
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109#define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */
110#ifdef CONFIG_SYS_HUSH_PARSER
111#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
Stefan Roesea8a11a92008-06-06 15:54:31 +0200112#endif
113
114#define CONFIG_LOADS_ECHO /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200115#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200116
117/*
118 * BOOTP options
119 */
120#define CONFIG_BOOTP_BOOTFILESIZE
121#define CONFIG_BOOTP_BOOTPATH
122#define CONFIG_BOOTP_GATEWAY
123#define CONFIG_BOOTP_HOSTNAME
124#define CONFIG_BOOTP_SUBNETMASK
125
126/*
127 * For booting Linux, the board info and command line data
128 * have to be in the first 8 MB of memory, since this is
129 * the maximum mapped by the Linux kernel during initialization.
130 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200132
133/*
134 * Internal Definitions
135 */
136#if defined(CONFIG_CMD_KGDB)
137#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/
138#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
139#endif
140
141/*
142 * Pass open firmware flat tree
143 */
144#define CONFIG_OF_LIBFDT
145#define CONFIG_OF_BOARD_SETUP
146
147/*
148 * Booting and default environment
149 */
150#define CONFIG_PREBOOT "echo;" \
151 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
152 "echo"
153#define CONFIG_BOOTCOMMAND "run flash_self"
154
155/*
156 * Only very few boards have default console not on ttyS0 (like Taishan)
157 */
158#if !defined(CONFIG_USE_TTY)
159#define CONFIG_USE_TTY ttyS0
160#endif
161
162/*
Adam Grahamf09f09d2008-10-08 10:12:53 -0700163 * Only very few boards have default netdev not set to eth0 (like Arches)
164 */
165#if !defined(CONFIG_USE_NETDEV)
166#define CONFIG_USE_NETDEV eth0
167#endif
168
169/*
Stefan Roesea8a11a92008-06-06 15:54:31 +0200170 * Only some 4xx PPC's are equipped with an FPU
171 */
172#if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
173 defined(CONFIG_460EX) || defined(CONFIG_460GT)
174#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xxFP\0"
175#else
176#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xx\0"
177#endif
178
179/*
180 * Only some boards need to extend the bootargs by some additional
181 * parameters (like Makalu)
182 */
183#if !defined(CONFIG_ADDMISC)
184#define CONFIG_ADDMISC "addmisc=setenv bootargs ${bootargs}\0"
185#endif
186
187#define xstr(s) str(s)
188#define str(s) #s
189
190/*
191 * General common environment variables shared on all AMCC eval boards
192 */
193#define CONFIG_AMCC_DEF_ENV \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700194 "netdev=" xstr(CONFIG_USE_NETDEV) "\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200195 "nfsargs=setenv bootargs root=/dev/nfs rw " \
196 "nfsroot=${serverip}:${rootpath}\0" \
197 "ramargs=setenv bootargs root=/dev/ram rw\0" \
198 "addip=setenv bootargs ${bootargs} " \
199 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
200 ":${hostname}:${netdev}:off panic=1\0" \
201 "addtty=setenv bootargs ${bootargs}" \
202 " console=" xstr(CONFIG_USE_TTY) ",${baudrate}\0" \
203 CONFIG_ADDMISC \
204 "initrd_high=30000000\0" \
205 "kernel_addr_r=400000\0" \
206 "fdt_addr_r=800000\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700207 "ramdisk_addr_r=C00000\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200208 "hostname=" xstr(CONFIG_HOSTNAME) "\0" \
209 "bootfile=" xstr(CONFIG_HOSTNAME) "/uImage\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700210 "ramdisk_file=" xstr(CONFIG_HOSTNAME) "/uRamdisk\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200211 CONFIG_AMCC_DEF_ENV_ROOTPATH
212
213/*
214 * Default environment for arch/powerpc booting
215 * for boards that are ported to arch/powerpc
216 */
217#define CONFIG_AMCC_DEF_ENV_POWERPC \
218 "flash_self=run ramargs addip addtty addmisc;" \
219 "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
220 "flash_nfs=run nfsargs addip addtty addmisc;" \
221 "bootm ${kernel_addr} - ${fdt_addr}\0" \
222 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
223 "tftp ${fdt_addr_r} ${fdt_file}; " \
224 "run nfsargs addip addtty addmisc;" \
225 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700226 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
227 "tftp ${fdt_addr_r} ${fdt_file};" \
228 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
229 "net_self=run net_self_load;" \
230 "run ramargs addip addtty addmisc;" \
231 "bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200232 "fdt_file=" xstr(CONFIG_HOSTNAME) "/" xstr(CONFIG_HOSTNAME) ".dtb\0"
233
234/*
235 * Default environment for arch/ppc booting,
236 * for boards that are not ported to arch/powerpc yet
237 */
238#define CONFIG_AMCC_DEF_ENV_PPC \
239 "flash_self=run ramargs addip addtty addmisc;" \
240 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
241 "flash_nfs=run nfsargs addip addtty addmisc;" \
242 "bootm ${kernel_addr}\0" \
243 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
244 "run nfsargs addip addtty addmisc;" \
245 "bootm ${kernel_addr_r}\0"
246
247/*
248 * Default environment for arch/ppc booting (old version),
249 * for boards that are ported to arch/ppc and arch/powerpc
250 */
251#define CONFIG_AMCC_DEF_ENV_PPC_OLD \
252 "flash_self_old=run ramargs addip addtty addmisc;" \
253 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
254 "flash_nfs_old=run nfsargs addip addtty addmisc;" \
255 "bootm ${kernel_addr}\0" \
256 "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \
257 "run nfsargs addip addtty addmisc;" \
258 "bootm ${kernel_addr_r}\0"
259
260#define CONFIG_AMCC_DEF_ENV_NOR_UPD \
261 "load=tftp 200000 " xstr(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262 "update=protect off " xstr(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
263 "era " xstr(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
264 "cp.b ${fileaddr} " xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize};" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200265 "setenv filesize;saveenv\0" \
266 "upd=run load update\0" \
267
268#define CONFIG_AMCC_DEF_ENV_NAND_UPD \
269 "nload=tftp 200000 " xstr(CONFIG_HOSTNAME) "/u-boot-nand.bin\0" \
270 "nupdate=nand erase 0 100000;nand write 200000 0 100000;" \
271 "setenv filesize;saveenv\0" \
272 "nupd=run nload nupdate\0"
273
274#endif /* __AMCC_COMMON_H */