blob: c9e9a038d4ffc5d1961e5527a983f849b1506e37 [file] [log] [blame]
Stefan Roesea8a11a92008-06-06 15:54:31 +02001/*
Detlev Zundelc8355b92009-09-02 17:24:57 +02002 * (C) Copyright 2008, 2009
Stefan Roesea8a11a92008-06-06 15:54:31 +02003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * Common configuration options for all AMCC boards
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Stefan Roesea8a11a92008-06-06 15:54:31 +02008 */
9
10#ifndef __AMCC_COMMON_H
11#define __AMCC_COMMON_H
12
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020013#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* _must_ be 0 */
Wolfgang Denk14d0a022010-10-07 21:51:12 +020014#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* Start of U-Boot */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020015#define CONFIG_SYS_MONITOR_LEN (0xFFFFFFFF - CONFIG_SYS_MONITOR_BASE + 1)
16#define CONFIG_SYS_MALLOC_LEN (1 << 20) /* Reserved for malloc */
Stefan Roesea8a11a92008-06-06 15:54:31 +020017
18/*
19 * UART
20 */
Stefan Roese550650d2010-09-20 16:05:31 +020021#define CONFIG_SYS_NS16550
22#define CONFIG_SYS_NS16550_SERIAL
23#define CONFIG_SYS_NS16550_REG_SIZE 1
24#define CONFIG_SYS_NS16550_CLK get_serial_clock()
25#define CONFIG_BAUDRATE 115200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020026#define CONFIG_SYS_BAUDRATE_TABLE \
Stefan Roesea8a11a92008-06-06 15:54:31 +020027 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
28
29/*
30 * I2C
31 */
Dirk Eibach880540d2013-04-25 02:40:01 +000032#define CONFIG_SYS_I2C
33#define CONFIG_SYS_I2C_PPC4XX
34#define CONFIG_SYS_I2C_PPC4XX_CH0
35#define CONFIG_SYS_I2C_PPC4XX_SLAVE_0 0x7F
Stefan Roesea8a11a92008-06-06 15:54:31 +020036
37/*
38 * Ethernet/EMAC/PHY
39 */
Ben Warren96e21f82008-10-27 23:50:15 -070040#define CONFIG_PPC4xx_EMAC
Stefan Roesea8a11a92008-06-06 15:54:31 +020041#define CONFIG_MII /* MII PHY management */
Stefan Roesea8a11a92008-06-06 15:54:31 +020042#define CONFIG_NETCONSOLE /* include NetConsole support */
43#if defined(CONFIG_440)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044#define CONFIG_SYS_RX_ETH_BUFFER 32 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020045#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046#define CONFIG_SYS_RX_ETH_BUFFER 16 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020047#endif
48
49/*
50 * Commands
51 */
52#include <config_cmd_default.h>
53
54#define CONFIG_CMD_ASKENV
55#if defined(CONFIG_440)
56#define CONFIG_CMD_CACHE
57#endif
58#define CONFIG_CMD_DHCP
59#define CONFIG_CMD_DIAG
60#define CONFIG_CMD_EEPROM
61#define CONFIG_CMD_ELF
Wolfgang Denk3f9315c2013-03-23 23:50:38 +000062#define CONFIG_CMD_GREPENV
Stefan Roesea8a11a92008-06-06 15:54:31 +020063#define CONFIG_CMD_I2C
64#define CONFIG_CMD_IRQ
65#define CONFIG_CMD_MII
66#define CONFIG_CMD_NET
67#define CONFIG_CMD_NFS
68#define CONFIG_CMD_PING
69#define CONFIG_CMD_REGINFO
Wolfgang Denk3f9315c2013-03-23 23:50:38 +000070#define CONFIG_CMD_SETEXPR
Stefan Roesea8a11a92008-06-06 15:54:31 +020071
72/*
73 * Miscellaneous configurable options
74 */
75#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#define CONFIG_SYS_LONGHELP /* undef to save memory */
Stefan Roesea8a11a92008-06-06 15:54:31 +020077#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020079#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020081#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
83#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
84#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020085
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
87#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
Stefan Roesea8a11a92008-06-06 15:54:31 +020088
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
90#define CONFIG_SYS_EXTBDINFO /* To use extended board_into (bd_t) */
Stefan Roesea8a11a92008-06-06 15:54:31 +020091
Stefan Roesea8a11a92008-06-06 15:54:31 +020092#define CONFIG_CMDLINE_EDITING /* add command line history */
93#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
94#define CONFIG_LOOPW /* enable loopw command */
95#define CONFIG_MX_CYCLIC /* enable mdc/mwc commands */
96#define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
97#define CONFIG_VERSION_VARIABLE /* include version env variable */
Wolfgang Denkc88840a2013-03-23 23:50:37 +000098#define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup*/
Stefan Roesea8a11a92008-06-06 15:54:31 +020099
Wolfgang Denkc88840a2013-03-23 23:50:37 +0000100#define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200101
102#define CONFIG_LOADS_ECHO /* echo on for serial download */
Wolfgang Denkc88840a2013-03-23 23:50:37 +0000103#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200104
Wolfgang Denk3f9315c2013-03-23 23:50:38 +0000105#define CONFIG_REGEX /* Enable regular expression support */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200106/*
107 * BOOTP options
108 */
109#define CONFIG_BOOTP_BOOTFILESIZE
110#define CONFIG_BOOTP_BOOTPATH
111#define CONFIG_BOOTP_GATEWAY
112#define CONFIG_BOOTP_HOSTNAME
113#define CONFIG_BOOTP_SUBNETMASK
114
115/*
116 * For booting Linux, the board info and command line data
Stefan Roese6942efc2009-07-28 10:50:32 +0200117 * have to be in the first 16 MB of memory, since this is
118 * the maximum mapped by the 40x Linux kernel during initialization.
Stefan Roesea8a11a92008-06-06 15:54:31 +0200119 */
Stefan Roese6942efc2009-07-28 10:50:32 +0200120#define CONFIG_SYS_BOOTMAPSZ (16 << 20) /* Initial Memory map for Linux */
121#define CONFIG_SYS_BOOTM_LEN (16 << 20) /* Increase max gunzip size */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200122
123/*
124 * Internal Definitions
125 */
126#if defined(CONFIG_CMD_KGDB)
127#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/
128#define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */
129#endif
130
131/*
132 * Pass open firmware flat tree
133 */
134#define CONFIG_OF_LIBFDT
135#define CONFIG_OF_BOARD_SETUP
Stefan Roese92b89642009-10-16 10:01:09 +0200136/* Update size in "reg" property of NOR FLASH device tree nodes */
137#define CONFIG_FDT_FIXUP_NOR_FLASH_SIZE
Stefan Roesea8a11a92008-06-06 15:54:31 +0200138
139/*
140 * Booting and default environment
141 */
142#define CONFIG_PREBOOT "echo;" \
143 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
144 "echo"
145#define CONFIG_BOOTCOMMAND "run flash_self"
146
147/*
148 * Only very few boards have default console not on ttyS0 (like Taishan)
149 */
150#if !defined(CONFIG_USE_TTY)
151#define CONFIG_USE_TTY ttyS0
152#endif
153
154/*
Adam Grahamf09f09d2008-10-08 10:12:53 -0700155 * Only very few boards have default netdev not set to eth0 (like Arches)
156 */
157#if !defined(CONFIG_USE_NETDEV)
158#define CONFIG_USE_NETDEV eth0
159#endif
160
161/*
Stefan Roesea8a11a92008-06-06 15:54:31 +0200162 * Only some 4xx PPC's are equipped with an FPU
163 */
164#if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
165 defined(CONFIG_460EX) || defined(CONFIG_460GT)
166#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xxFP\0"
167#else
168#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xx\0"
169#endif
170
171/*
172 * Only some boards need to extend the bootargs by some additional
173 * parameters (like Makalu)
174 */
175#if !defined(CONFIG_ADDMISC)
176#define CONFIG_ADDMISC "addmisc=setenv bootargs ${bootargs}\0"
177#endif
178
Stefan Roesea8a11a92008-06-06 15:54:31 +0200179/*
180 * General common environment variables shared on all AMCC eval boards
181 */
182#define CONFIG_AMCC_DEF_ENV \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200183 "netdev=" __stringify(CONFIG_USE_NETDEV) "\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200184 "nfsargs=setenv bootargs root=/dev/nfs rw " \
185 "nfsroot=${serverip}:${rootpath}\0" \
186 "ramargs=setenv bootargs root=/dev/ram rw\0" \
187 "addip=setenv bootargs ${bootargs} " \
188 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
189 ":${hostname}:${netdev}:off panic=1\0" \
190 "addtty=setenv bootargs ${bootargs}" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200191 " console=" __stringify(CONFIG_USE_TTY) ",${baudrate}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200192 CONFIG_ADDMISC \
193 "initrd_high=30000000\0" \
Stefan Roese27dd5f82009-07-28 10:56:03 +0200194 "kernel_addr_r=1000000\0" \
195 "fdt_addr_r=1800000\0" \
196 "ramdisk_addr_r=1900000\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200197 "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
198 "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
199 "ramdisk_file=" __stringify(CONFIG_HOSTNAME) "/uRamdisk\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200200 CONFIG_AMCC_DEF_ENV_ROOTPATH
201
202/*
203 * Default environment for arch/powerpc booting
204 * for boards that are ported to arch/powerpc
205 */
206#define CONFIG_AMCC_DEF_ENV_POWERPC \
207 "flash_self=run ramargs addip addtty addmisc;" \
208 "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
209 "flash_nfs=run nfsargs addip addtty addmisc;" \
210 "bootm ${kernel_addr} - ${fdt_addr}\0" \
211 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
212 "tftp ${fdt_addr_r} ${fdt_file}; " \
213 "run nfsargs addip addtty addmisc;" \
214 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700215 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
216 "tftp ${fdt_addr_r} ${fdt_file};" \
217 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
218 "net_self=run net_self_load;" \
219 "run ramargs addip addtty addmisc;" \
220 "bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200221 "fdt_file=" __stringify(CONFIG_HOSTNAME) "/" __stringify(CONFIG_HOSTNAME) ".dtb\0"
Stefan Roesea8a11a92008-06-06 15:54:31 +0200222
223/*
224 * Default environment for arch/ppc booting,
225 * for boards that are not ported to arch/powerpc yet
226 */
227#define CONFIG_AMCC_DEF_ENV_PPC \
228 "flash_self=run ramargs addip addtty addmisc;" \
229 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
230 "flash_nfs=run nfsargs addip addtty addmisc;" \
231 "bootm ${kernel_addr}\0" \
232 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
233 "run nfsargs addip addtty addmisc;" \
234 "bootm ${kernel_addr_r}\0"
235
236/*
237 * Default environment for arch/ppc booting (old version),
238 * for boards that are ported to arch/ppc and arch/powerpc
239 */
240#define CONFIG_AMCC_DEF_ENV_PPC_OLD \
241 "flash_self_old=run ramargs addip addtty addmisc;" \
242 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
243 "flash_nfs_old=run nfsargs addip addtty addmisc;" \
244 "bootm ${kernel_addr}\0" \
245 "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \
246 "run nfsargs addip addtty addmisc;" \
247 "bootm ${kernel_addr_r}\0"
248
249#define CONFIG_AMCC_DEF_ENV_NOR_UPD \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200250 "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Detlev Zundelc8355b92009-09-02 17:24:57 +0200251 "load=tftp 200000 ${u-boot}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200252 "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
253 "era " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
254 "cp.b ${fileaddr} " __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200255 "upd=run load update\0" \
256
257#define CONFIG_AMCC_DEF_ENV_NAND_UPD \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200258 "u-boot-nand=" __stringify(CONFIG_HOSTNAME) "/u-boot-nand.bin\0"\
Detlev Zundelc8355b92009-09-02 17:24:57 +0200259 "nload=tftp 200000 ${u-boot-nand}\0" \
Stefan Roeseacfbbb92010-10-15 08:41:01 +0200260 "nupdate=nand erase 0 100000;nand write 200000 0 100000\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200261 "nupd=run nload nupdate\0"
262
263#endif /* __AMCC_COMMON_H */