blob: f97988ce2827acd15f3796eeec6fd7a7198a2517 [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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020014#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* _must_ be 0 */
Wolfgang Denk14d0a022010-10-07 21:51:12 +020015#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* Start of U-Boot */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020016#define CONFIG_SYS_MONITOR_LEN (0xFFFFFFFF - CONFIG_SYS_MONITOR_BASE + 1)
17#define CONFIG_SYS_MALLOC_LEN (1 << 20) /* Reserved for malloc */
Stefan Roesea8a11a92008-06-06 15:54:31 +020018
19/*
20 * UART
21 */
Stefan Roese550650d2010-09-20 16:05:31 +020022#define CONFIG_SYS_NS16550_SERIAL
Simon Glass0e7806d2015-02-07 11:51:46 -070023#ifndef CONFIG_DM_SERIAL
Stefan Roese550650d2010-09-20 16:05:31 +020024#define CONFIG_SYS_NS16550_REG_SIZE 1
25#define CONFIG_SYS_NS16550_CLK get_serial_clock()
Simon Glass0e7806d2015-02-07 11:51:46 -070026#endif
Stefan Roese550650d2010-09-20 16:05:31 +020027#define CONFIG_BAUDRATE 115200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020028#define CONFIG_SYS_BAUDRATE_TABLE \
Stefan Roesea8a11a92008-06-06 15:54:31 +020029 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
30
31/*
32 * I2C
33 */
Dirk Eibach880540d2013-04-25 02:40:01 +000034#define CONFIG_SYS_I2C
35#define CONFIG_SYS_I2C_PPC4XX
36#define CONFIG_SYS_I2C_PPC4XX_CH0
37#define CONFIG_SYS_I2C_PPC4XX_SLAVE_0 0x7F
Stefan Roesea8a11a92008-06-06 15:54:31 +020038
39/*
40 * Ethernet/EMAC/PHY
41 */
Ben Warren96e21f82008-10-27 23:50:15 -070042#define CONFIG_PPC4xx_EMAC
Stefan Roesea8a11a92008-06-06 15:54:31 +020043#define CONFIG_MII /* MII PHY management */
Stefan Roesea8a11a92008-06-06 15:54:31 +020044#define CONFIG_NETCONSOLE /* include NetConsole support */
45#if defined(CONFIG_440)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046#define CONFIG_SYS_RX_ETH_BUFFER 32 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020047#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#define CONFIG_SYS_RX_ETH_BUFFER 16 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020049#endif
50
51/*
52 * Commands
53 */
Stefan Roesea8a11a92008-06-06 15:54:31 +020054#define CONFIG_CMD_ASKENV
55#if defined(CONFIG_440)
56#define CONFIG_CMD_CACHE
57#endif
Stefan Roesea8a11a92008-06-06 15:54:31 +020058#define CONFIG_CMD_DIAG
59#define CONFIG_CMD_EEPROM
Wolfgang Denk3f9315c2013-03-23 23:50:38 +000060#define CONFIG_CMD_GREPENV
Stefan Roesea8a11a92008-06-06 15:54:31 +020061#define CONFIG_CMD_IRQ
62#define CONFIG_CMD_MII
Stefan Roesea8a11a92008-06-06 15:54:31 +020063#define CONFIG_CMD_REGINFO
64
65/*
66 * Miscellaneous configurable options
67 */
68#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
Stefan Roesea8a11a92008-06-06 15:54:31 +020069#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020071#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020072#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020073#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
75#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
76#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020077
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
79#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
Stefan Roesea8a11a92008-06-06 15:54:31 +020080
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
82#define CONFIG_SYS_EXTBDINFO /* To use extended board_into (bd_t) */
Stefan Roesea8a11a92008-06-06 15:54:31 +020083
Stefan Roesea8a11a92008-06-06 15:54:31 +020084#define CONFIG_CMDLINE_EDITING /* add command line history */
85#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
Stefan Roesea8a11a92008-06-06 15:54:31 +020086#define CONFIG_MX_CYCLIC /* enable mdc/mwc commands */
87#define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
88#define CONFIG_VERSION_VARIABLE /* include version env variable */
Wolfgang Denkc88840a2013-03-23 23:50:37 +000089#define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup*/
Stefan Roesea8a11a92008-06-06 15:54:31 +020090
Stefan Roesea8a11a92008-06-06 15:54:31 +020091
92#define CONFIG_LOADS_ECHO /* echo on for serial download */
Wolfgang Denkc88840a2013-03-23 23:50:37 +000093#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
Stefan Roesea8a11a92008-06-06 15:54:31 +020094
95/*
96 * BOOTP options
97 */
98#define CONFIG_BOOTP_BOOTFILESIZE
99#define CONFIG_BOOTP_BOOTPATH
100#define CONFIG_BOOTP_GATEWAY
101#define CONFIG_BOOTP_HOSTNAME
102#define CONFIG_BOOTP_SUBNETMASK
103
104/*
105 * For booting Linux, the board info and command line data
Stefan Roese6942efc2009-07-28 10:50:32 +0200106 * have to be in the first 16 MB of memory, since this is
107 * the maximum mapped by the 40x Linux kernel during initialization.
Stefan Roesea8a11a92008-06-06 15:54:31 +0200108 */
Stefan Roese6942efc2009-07-28 10:50:32 +0200109#define CONFIG_SYS_BOOTMAPSZ (16 << 20) /* Initial Memory map for Linux */
110#define CONFIG_SYS_BOOTM_LEN (16 << 20) /* Increase max gunzip size */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200111
112/*
113 * Internal Definitions
114 */
115#if defined(CONFIG_CMD_KGDB)
116#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/
Stefan Roesea8a11a92008-06-06 15:54:31 +0200117#endif
118
Stefan Roese92b89642009-10-16 10:01:09 +0200119/* Update size in "reg" property of NOR FLASH device tree nodes */
120#define CONFIG_FDT_FIXUP_NOR_FLASH_SIZE
Stefan Roesea8a11a92008-06-06 15:54:31 +0200121
122/*
123 * Booting and default environment
124 */
125#define CONFIG_PREBOOT "echo;" \
126 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
127 "echo"
128#define CONFIG_BOOTCOMMAND "run flash_self"
129
130/*
131 * Only very few boards have default console not on ttyS0 (like Taishan)
132 */
133#if !defined(CONFIG_USE_TTY)
134#define CONFIG_USE_TTY ttyS0
135#endif
136
137/*
Adam Grahamf09f09d2008-10-08 10:12:53 -0700138 * Only very few boards have default netdev not set to eth0 (like Arches)
139 */
140#if !defined(CONFIG_USE_NETDEV)
141#define CONFIG_USE_NETDEV eth0
142#endif
143
144/*
Stefan Roesea8a11a92008-06-06 15:54:31 +0200145 * Only some 4xx PPC's are equipped with an FPU
146 */
147#if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
148 defined(CONFIG_460EX) || defined(CONFIG_460GT)
149#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xxFP\0"
150#else
151#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xx\0"
152#endif
153
154/*
155 * Only some boards need to extend the bootargs by some additional
156 * parameters (like Makalu)
157 */
158#if !defined(CONFIG_ADDMISC)
159#define CONFIG_ADDMISC "addmisc=setenv bootargs ${bootargs}\0"
160#endif
161
Stefan Roesea8a11a92008-06-06 15:54:31 +0200162/*
163 * General common environment variables shared on all AMCC eval boards
164 */
165#define CONFIG_AMCC_DEF_ENV \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200166 "netdev=" __stringify(CONFIG_USE_NETDEV) "\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200167 "nfsargs=setenv bootargs root=/dev/nfs rw " \
168 "nfsroot=${serverip}:${rootpath}\0" \
169 "ramargs=setenv bootargs root=/dev/ram rw\0" \
170 "addip=setenv bootargs ${bootargs} " \
171 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
172 ":${hostname}:${netdev}:off panic=1\0" \
173 "addtty=setenv bootargs ${bootargs}" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200174 " console=" __stringify(CONFIG_USE_TTY) ",${baudrate}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200175 CONFIG_ADDMISC \
176 "initrd_high=30000000\0" \
Stefan Roese27dd5f82009-07-28 10:56:03 +0200177 "kernel_addr_r=1000000\0" \
178 "fdt_addr_r=1800000\0" \
179 "ramdisk_addr_r=1900000\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200180 "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
181 "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
182 "ramdisk_file=" __stringify(CONFIG_HOSTNAME) "/uRamdisk\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200183 CONFIG_AMCC_DEF_ENV_ROOTPATH
184
185/*
186 * Default environment for arch/powerpc booting
187 * for boards that are ported to arch/powerpc
188 */
189#define CONFIG_AMCC_DEF_ENV_POWERPC \
190 "flash_self=run ramargs addip addtty addmisc;" \
191 "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
192 "flash_nfs=run nfsargs addip addtty addmisc;" \
193 "bootm ${kernel_addr} - ${fdt_addr}\0" \
194 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
195 "tftp ${fdt_addr_r} ${fdt_file}; " \
196 "run nfsargs addip addtty addmisc;" \
197 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700198 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
199 "tftp ${fdt_addr_r} ${fdt_file};" \
200 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
201 "net_self=run net_self_load;" \
202 "run ramargs addip addtty addmisc;" \
203 "bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200204 "fdt_file=" __stringify(CONFIG_HOSTNAME) "/" __stringify(CONFIG_HOSTNAME) ".dtb\0"
Stefan Roesea8a11a92008-06-06 15:54:31 +0200205
206/*
207 * Default environment for arch/ppc booting,
208 * for boards that are not ported to arch/powerpc yet
209 */
210#define CONFIG_AMCC_DEF_ENV_PPC \
211 "flash_self=run ramargs addip addtty addmisc;" \
212 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
213 "flash_nfs=run nfsargs addip addtty addmisc;" \
214 "bootm ${kernel_addr}\0" \
215 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
216 "run nfsargs addip addtty addmisc;" \
217 "bootm ${kernel_addr_r}\0"
218
219/*
220 * Default environment for arch/ppc booting (old version),
221 * for boards that are ported to arch/ppc and arch/powerpc
222 */
223#define CONFIG_AMCC_DEF_ENV_PPC_OLD \
224 "flash_self_old=run ramargs addip addtty addmisc;" \
225 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
226 "flash_nfs_old=run nfsargs addip addtty addmisc;" \
227 "bootm ${kernel_addr}\0" \
228 "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \
229 "run nfsargs addip addtty addmisc;" \
230 "bootm ${kernel_addr_r}\0"
231
232#define CONFIG_AMCC_DEF_ENV_NOR_UPD \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200233 "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Detlev Zundelc8355b92009-09-02 17:24:57 +0200234 "load=tftp 200000 ${u-boot}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200235 "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
236 "era " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
237 "cp.b ${fileaddr} " __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200238 "upd=run load update\0" \
239
Stefan Roesea8a11a92008-06-06 15:54:31 +0200240#endif /* __AMCC_COMMON_H */