blob: d5b6e37a38fd882adef40f1d70c36b1a310da98d [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
Anatolij Gustschin5db75232015-03-28 16:49:47 +010013#define CONFIG_SYS_GENERIC_BOARD
14
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020015#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* _must_ be 0 */
Wolfgang Denk14d0a022010-10-07 21:51:12 +020016#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* Start of U-Boot */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020017#define CONFIG_SYS_MONITOR_LEN (0xFFFFFFFF - CONFIG_SYS_MONITOR_BASE + 1)
18#define CONFIG_SYS_MALLOC_LEN (1 << 20) /* Reserved for malloc */
Stefan Roesea8a11a92008-06-06 15:54:31 +020019
20/*
21 * UART
22 */
Stefan Roese550650d2010-09-20 16:05:31 +020023#define CONFIG_SYS_NS16550
24#define CONFIG_SYS_NS16550_SERIAL
Simon Glass0e7806d2015-02-07 11:51:46 -070025#ifndef CONFIG_DM_SERIAL
Stefan Roese550650d2010-09-20 16:05:31 +020026#define CONFIG_SYS_NS16550_REG_SIZE 1
27#define CONFIG_SYS_NS16550_CLK get_serial_clock()
Simon Glass0e7806d2015-02-07 11:51:46 -070028#endif
Stefan Roese550650d2010-09-20 16:05:31 +020029#define CONFIG_BAUDRATE 115200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020030#define CONFIG_SYS_BAUDRATE_TABLE \
Stefan Roesea8a11a92008-06-06 15:54:31 +020031 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
32
33/*
34 * I2C
35 */
Dirk Eibach880540d2013-04-25 02:40:01 +000036#define CONFIG_SYS_I2C
37#define CONFIG_SYS_I2C_PPC4XX
38#define CONFIG_SYS_I2C_PPC4XX_CH0
39#define CONFIG_SYS_I2C_PPC4XX_SLAVE_0 0x7F
Stefan Roesea8a11a92008-06-06 15:54:31 +020040
41/*
42 * Ethernet/EMAC/PHY
43 */
Ben Warren96e21f82008-10-27 23:50:15 -070044#define CONFIG_PPC4xx_EMAC
Stefan Roesea8a11a92008-06-06 15:54:31 +020045#define CONFIG_MII /* MII PHY management */
Stefan Roesea8a11a92008-06-06 15:54:31 +020046#define CONFIG_NETCONSOLE /* include NetConsole support */
47#if defined(CONFIG_440)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#define CONFIG_SYS_RX_ETH_BUFFER 32 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020049#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050#define CONFIG_SYS_RX_ETH_BUFFER 16 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020051#endif
52
53/*
54 * Commands
55 */
56#include <config_cmd_default.h>
57
58#define CONFIG_CMD_ASKENV
59#if defined(CONFIG_440)
60#define CONFIG_CMD_CACHE
61#endif
62#define CONFIG_CMD_DHCP
63#define CONFIG_CMD_DIAG
64#define CONFIG_CMD_EEPROM
65#define CONFIG_CMD_ELF
Wolfgang Denk3f9315c2013-03-23 23:50:38 +000066#define CONFIG_CMD_GREPENV
Stefan Roesea8a11a92008-06-06 15:54:31 +020067#define CONFIG_CMD_I2C
68#define CONFIG_CMD_IRQ
69#define CONFIG_CMD_MII
70#define CONFIG_CMD_NET
71#define CONFIG_CMD_NFS
72#define CONFIG_CMD_PING
73#define CONFIG_CMD_REGINFO
Wolfgang Denk3f9315c2013-03-23 23:50:38 +000074#define CONFIG_CMD_SETEXPR
Stefan Roesea8a11a92008-06-06 15:54:31 +020075
76/*
77 * Miscellaneous configurable options
78 */
79#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080#define CONFIG_SYS_LONGHELP /* undef to save memory */
Stefan Roesea8a11a92008-06-06 15:54:31 +020081#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020083#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020085#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
87#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
88#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020089
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
91#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
Stefan Roesea8a11a92008-06-06 15:54:31 +020092
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
94#define CONFIG_SYS_EXTBDINFO /* To use extended board_into (bd_t) */
Stefan Roesea8a11a92008-06-06 15:54:31 +020095
Stefan Roesea8a11a92008-06-06 15:54:31 +020096#define CONFIG_CMDLINE_EDITING /* add command line history */
97#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
98#define CONFIG_LOOPW /* enable loopw command */
99#define CONFIG_MX_CYCLIC /* enable mdc/mwc commands */
100#define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
101#define CONFIG_VERSION_VARIABLE /* include version env variable */
Wolfgang Denkc88840a2013-03-23 23:50:37 +0000102#define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup*/
Stefan Roesea8a11a92008-06-06 15:54:31 +0200103
Wolfgang Denkc88840a2013-03-23 23:50:37 +0000104#define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200105
106#define CONFIG_LOADS_ECHO /* echo on for serial download */
Wolfgang Denkc88840a2013-03-23 23:50:37 +0000107#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200108
Wolfgang Denk3f9315c2013-03-23 23:50:38 +0000109#define CONFIG_REGEX /* Enable regular expression support */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200110/*
111 * BOOTP options
112 */
113#define CONFIG_BOOTP_BOOTFILESIZE
114#define CONFIG_BOOTP_BOOTPATH
115#define CONFIG_BOOTP_GATEWAY
116#define CONFIG_BOOTP_HOSTNAME
117#define CONFIG_BOOTP_SUBNETMASK
118
119/*
120 * For booting Linux, the board info and command line data
Stefan Roese6942efc2009-07-28 10:50:32 +0200121 * have to be in the first 16 MB of memory, since this is
122 * the maximum mapped by the 40x Linux kernel during initialization.
Stefan Roesea8a11a92008-06-06 15:54:31 +0200123 */
Stefan Roese6942efc2009-07-28 10:50:32 +0200124#define CONFIG_SYS_BOOTMAPSZ (16 << 20) /* Initial Memory map for Linux */
125#define CONFIG_SYS_BOOTM_LEN (16 << 20) /* Increase max gunzip size */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200126
127/*
128 * Internal Definitions
129 */
130#if defined(CONFIG_CMD_KGDB)
131#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/
Stefan Roesea8a11a92008-06-06 15:54:31 +0200132#endif
133
134/*
135 * Pass open firmware flat tree
136 */
137#define CONFIG_OF_LIBFDT
138#define CONFIG_OF_BOARD_SETUP
Stefan Roese92b89642009-10-16 10:01:09 +0200139/* Update size in "reg" property of NOR FLASH device tree nodes */
140#define CONFIG_FDT_FIXUP_NOR_FLASH_SIZE
Stefan Roesea8a11a92008-06-06 15:54:31 +0200141
142/*
143 * Booting and default environment
144 */
145#define CONFIG_PREBOOT "echo;" \
146 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
147 "echo"
148#define CONFIG_BOOTCOMMAND "run flash_self"
149
150/*
151 * Only very few boards have default console not on ttyS0 (like Taishan)
152 */
153#if !defined(CONFIG_USE_TTY)
154#define CONFIG_USE_TTY ttyS0
155#endif
156
157/*
Adam Grahamf09f09d2008-10-08 10:12:53 -0700158 * Only very few boards have default netdev not set to eth0 (like Arches)
159 */
160#if !defined(CONFIG_USE_NETDEV)
161#define CONFIG_USE_NETDEV eth0
162#endif
163
164/*
Stefan Roesea8a11a92008-06-06 15:54:31 +0200165 * Only some 4xx PPC's are equipped with an FPU
166 */
167#if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
168 defined(CONFIG_460EX) || defined(CONFIG_460GT)
169#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xxFP\0"
170#else
171#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xx\0"
172#endif
173
174/*
175 * Only some boards need to extend the bootargs by some additional
176 * parameters (like Makalu)
177 */
178#if !defined(CONFIG_ADDMISC)
179#define CONFIG_ADDMISC "addmisc=setenv bootargs ${bootargs}\0"
180#endif
181
Stefan Roesea8a11a92008-06-06 15:54:31 +0200182/*
183 * General common environment variables shared on all AMCC eval boards
184 */
185#define CONFIG_AMCC_DEF_ENV \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200186 "netdev=" __stringify(CONFIG_USE_NETDEV) "\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200187 "nfsargs=setenv bootargs root=/dev/nfs rw " \
188 "nfsroot=${serverip}:${rootpath}\0" \
189 "ramargs=setenv bootargs root=/dev/ram rw\0" \
190 "addip=setenv bootargs ${bootargs} " \
191 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
192 ":${hostname}:${netdev}:off panic=1\0" \
193 "addtty=setenv bootargs ${bootargs}" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200194 " console=" __stringify(CONFIG_USE_TTY) ",${baudrate}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200195 CONFIG_ADDMISC \
196 "initrd_high=30000000\0" \
Stefan Roese27dd5f82009-07-28 10:56:03 +0200197 "kernel_addr_r=1000000\0" \
198 "fdt_addr_r=1800000\0" \
199 "ramdisk_addr_r=1900000\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200200 "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
201 "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
202 "ramdisk_file=" __stringify(CONFIG_HOSTNAME) "/uRamdisk\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200203 CONFIG_AMCC_DEF_ENV_ROOTPATH
204
205/*
206 * Default environment for arch/powerpc booting
207 * for boards that are ported to arch/powerpc
208 */
209#define CONFIG_AMCC_DEF_ENV_POWERPC \
210 "flash_self=run ramargs addip addtty addmisc;" \
211 "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
212 "flash_nfs=run nfsargs addip addtty addmisc;" \
213 "bootm ${kernel_addr} - ${fdt_addr}\0" \
214 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
215 "tftp ${fdt_addr_r} ${fdt_file}; " \
216 "run nfsargs addip addtty addmisc;" \
217 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700218 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
219 "tftp ${fdt_addr_r} ${fdt_file};" \
220 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
221 "net_self=run net_self_load;" \
222 "run ramargs addip addtty addmisc;" \
223 "bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200224 "fdt_file=" __stringify(CONFIG_HOSTNAME) "/" __stringify(CONFIG_HOSTNAME) ".dtb\0"
Stefan Roesea8a11a92008-06-06 15:54:31 +0200225
226/*
227 * Default environment for arch/ppc booting,
228 * for boards that are not ported to arch/powerpc yet
229 */
230#define CONFIG_AMCC_DEF_ENV_PPC \
231 "flash_self=run ramargs addip addtty addmisc;" \
232 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
233 "flash_nfs=run nfsargs addip addtty addmisc;" \
234 "bootm ${kernel_addr}\0" \
235 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
236 "run nfsargs addip addtty addmisc;" \
237 "bootm ${kernel_addr_r}\0"
238
239/*
240 * Default environment for arch/ppc booting (old version),
241 * for boards that are ported to arch/ppc and arch/powerpc
242 */
243#define CONFIG_AMCC_DEF_ENV_PPC_OLD \
244 "flash_self_old=run ramargs addip addtty addmisc;" \
245 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
246 "flash_nfs_old=run nfsargs addip addtty addmisc;" \
247 "bootm ${kernel_addr}\0" \
248 "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \
249 "run nfsargs addip addtty addmisc;" \
250 "bootm ${kernel_addr_r}\0"
251
252#define CONFIG_AMCC_DEF_ENV_NOR_UPD \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200253 "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Detlev Zundelc8355b92009-09-02 17:24:57 +0200254 "load=tftp 200000 ${u-boot}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200255 "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
256 "era " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
257 "cp.b ${fileaddr} " __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200258 "upd=run load update\0" \
259
Stefan Roesea8a11a92008-06-06 15:54:31 +0200260#endif /* __AMCC_COMMON_H */