blob: 9bda7faa90284dfecd1bb489610252f0cb639686 [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_SERIAL
Simon Glass0e7806d2015-02-07 11:51:46 -070022#ifndef CONFIG_DM_SERIAL
Stefan Roese550650d2010-09-20 16:05:31 +020023#define CONFIG_SYS_NS16550_REG_SIZE 1
24#define CONFIG_SYS_NS16550_CLK get_serial_clock()
Simon Glass0e7806d2015-02-07 11:51:46 -070025#endif
Stefan Roese550650d2010-09-20 16:05:31 +020026#define CONFIG_BAUDRATE 115200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020027#define CONFIG_SYS_BAUDRATE_TABLE \
Stefan Roesea8a11a92008-06-06 15:54:31 +020028 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
29
30/*
31 * I2C
32 */
Dirk Eibach880540d2013-04-25 02:40:01 +000033#define CONFIG_SYS_I2C
34#define CONFIG_SYS_I2C_PPC4XX
35#define CONFIG_SYS_I2C_PPC4XX_CH0
36#define CONFIG_SYS_I2C_PPC4XX_SLAVE_0 0x7F
Stefan Roesea8a11a92008-06-06 15:54:31 +020037
38/*
39 * Ethernet/EMAC/PHY
40 */
Ben Warren96e21f82008-10-27 23:50:15 -070041#define CONFIG_PPC4xx_EMAC
Stefan Roesea8a11a92008-06-06 15:54:31 +020042#define CONFIG_MII /* MII PHY management */
Stefan Roesea8a11a92008-06-06 15:54:31 +020043#define CONFIG_NETCONSOLE /* include NetConsole support */
44#if defined(CONFIG_440)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#define CONFIG_SYS_RX_ETH_BUFFER 32 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020046#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047#define CONFIG_SYS_RX_ETH_BUFFER 16 /* number of eth rx buffers */
Stefan Roesea8a11a92008-06-06 15:54:31 +020048#endif
49
50/*
51 * Commands
52 */
Stefan Roesea8a11a92008-06-06 15:54:31 +020053#if defined(CONFIG_440)
Stefan Roesea8a11a92008-06-06 15:54:31 +020054#endif
Stefan Roesea8a11a92008-06-06 15:54:31 +020055#define CONFIG_CMD_DIAG
56#define CONFIG_CMD_EEPROM
Stefan Roesea8a11a92008-06-06 15:54:31 +020057#define CONFIG_CMD_IRQ
Stefan Roesea8a11a92008-06-06 15:54:31 +020058#define CONFIG_CMD_REGINFO
59
60/*
61 * Miscellaneous configurable options
62 */
Stefan Roesea8a11a92008-06-06 15:54:31 +020063#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020065#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020067#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
69#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
70#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
Stefan Roesea8a11a92008-06-06 15:54:31 +020071
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020072#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
73#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
Stefan Roesea8a11a92008-06-06 15:54:31 +020074
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
76#define CONFIG_SYS_EXTBDINFO /* To use extended board_into (bd_t) */
Stefan Roesea8a11a92008-06-06 15:54:31 +020077
Stefan Roesea8a11a92008-06-06 15:54:31 +020078#define CONFIG_CMDLINE_EDITING /* add command line history */
79#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
Stefan Roesea8a11a92008-06-06 15:54:31 +020080#define CONFIG_MX_CYCLIC /* enable mdc/mwc commands */
Stefan Roesea8a11a92008-06-06 15:54:31 +020081#define CONFIG_VERSION_VARIABLE /* include version env variable */
Wolfgang Denkc88840a2013-03-23 23:50:37 +000082#define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup*/
Stefan Roesea8a11a92008-06-06 15:54:31 +020083
Stefan Roesea8a11a92008-06-06 15:54:31 +020084#define CONFIG_LOADS_ECHO /* echo on for serial download */
Wolfgang Denkc88840a2013-03-23 23:50:37 +000085#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
Stefan Roesea8a11a92008-06-06 15:54:31 +020086
87/*
88 * BOOTP options
89 */
90#define CONFIG_BOOTP_BOOTFILESIZE
91#define CONFIG_BOOTP_BOOTPATH
92#define CONFIG_BOOTP_GATEWAY
93#define CONFIG_BOOTP_HOSTNAME
94#define CONFIG_BOOTP_SUBNETMASK
95
96/*
97 * For booting Linux, the board info and command line data
Stefan Roese6942efc2009-07-28 10:50:32 +020098 * have to be in the first 16 MB of memory, since this is
99 * the maximum mapped by the 40x Linux kernel during initialization.
Stefan Roesea8a11a92008-06-06 15:54:31 +0200100 */
Stefan Roese6942efc2009-07-28 10:50:32 +0200101#define CONFIG_SYS_BOOTMAPSZ (16 << 20) /* Initial Memory map for Linux */
102#define CONFIG_SYS_BOOTM_LEN (16 << 20) /* Increase max gunzip size */
Stefan Roesea8a11a92008-06-06 15:54:31 +0200103
104/*
105 * Internal Definitions
106 */
107#if defined(CONFIG_CMD_KGDB)
108#define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/
Stefan Roesea8a11a92008-06-06 15:54:31 +0200109#endif
110
Stefan Roese92b89642009-10-16 10:01:09 +0200111/* Update size in "reg" property of NOR FLASH device tree nodes */
112#define CONFIG_FDT_FIXUP_NOR_FLASH_SIZE
Stefan Roesea8a11a92008-06-06 15:54:31 +0200113
114/*
115 * Booting and default environment
116 */
117#define CONFIG_PREBOOT "echo;" \
118 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
119 "echo"
120#define CONFIG_BOOTCOMMAND "run flash_self"
121
122/*
123 * Only very few boards have default console not on ttyS0 (like Taishan)
124 */
125#if !defined(CONFIG_USE_TTY)
126#define CONFIG_USE_TTY ttyS0
127#endif
128
129/*
Adam Grahamf09f09d2008-10-08 10:12:53 -0700130 * Only very few boards have default netdev not set to eth0 (like Arches)
131 */
132#if !defined(CONFIG_USE_NETDEV)
133#define CONFIG_USE_NETDEV eth0
134#endif
135
136/*
Stefan Roesea8a11a92008-06-06 15:54:31 +0200137 * Only some 4xx PPC's are equipped with an FPU
138 */
139#if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
140 defined(CONFIG_460EX) || defined(CONFIG_460GT)
141#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xxFP\0"
142#else
143#define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xx\0"
144#endif
145
146/*
147 * Only some boards need to extend the bootargs by some additional
148 * parameters (like Makalu)
149 */
150#if !defined(CONFIG_ADDMISC)
151#define CONFIG_ADDMISC "addmisc=setenv bootargs ${bootargs}\0"
152#endif
153
Stefan Roesea8a11a92008-06-06 15:54:31 +0200154/*
155 * General common environment variables shared on all AMCC eval boards
156 */
157#define CONFIG_AMCC_DEF_ENV \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200158 "netdev=" __stringify(CONFIG_USE_NETDEV) "\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200159 "nfsargs=setenv bootargs root=/dev/nfs rw " \
160 "nfsroot=${serverip}:${rootpath}\0" \
161 "ramargs=setenv bootargs root=/dev/ram rw\0" \
162 "addip=setenv bootargs ${bootargs} " \
163 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
164 ":${hostname}:${netdev}:off panic=1\0" \
165 "addtty=setenv bootargs ${bootargs}" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200166 " console=" __stringify(CONFIG_USE_TTY) ",${baudrate}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200167 CONFIG_ADDMISC \
168 "initrd_high=30000000\0" \
Stefan Roese27dd5f82009-07-28 10:56:03 +0200169 "kernel_addr_r=1000000\0" \
170 "fdt_addr_r=1800000\0" \
171 "ramdisk_addr_r=1900000\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200172 "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
173 "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
174 "ramdisk_file=" __stringify(CONFIG_HOSTNAME) "/uRamdisk\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200175 CONFIG_AMCC_DEF_ENV_ROOTPATH
176
177/*
178 * Default environment for arch/powerpc booting
179 * for boards that are ported to arch/powerpc
180 */
181#define CONFIG_AMCC_DEF_ENV_POWERPC \
182 "flash_self=run ramargs addip addtty addmisc;" \
183 "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
184 "flash_nfs=run nfsargs addip addtty addmisc;" \
185 "bootm ${kernel_addr} - ${fdt_addr}\0" \
186 "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
187 "tftp ${fdt_addr_r} ${fdt_file}; " \
188 "run nfsargs addip addtty addmisc;" \
189 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
Adam Grahamf09f09d2008-10-08 10:12:53 -0700190 "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \
191 "tftp ${fdt_addr_r} ${fdt_file};" \
192 "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \
193 "net_self=run net_self_load;" \
194 "run ramargs addip addtty addmisc;" \
195 "bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200196 "fdt_file=" __stringify(CONFIG_HOSTNAME) "/" __stringify(CONFIG_HOSTNAME) ".dtb\0"
Stefan Roesea8a11a92008-06-06 15:54:31 +0200197
198/*
199 * Default environment for arch/ppc booting,
200 * for boards that are not ported to arch/powerpc yet
201 */
202#define CONFIG_AMCC_DEF_ENV_PPC \
203 "flash_self=run ramargs addip addtty addmisc;" \
204 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
205 "flash_nfs=run nfsargs addip addtty addmisc;" \
206 "bootm ${kernel_addr}\0" \
207 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
208 "run nfsargs addip addtty addmisc;" \
209 "bootm ${kernel_addr_r}\0"
210
211/*
212 * Default environment for arch/ppc booting (old version),
213 * for boards that are ported to arch/ppc and arch/powerpc
214 */
215#define CONFIG_AMCC_DEF_ENV_PPC_OLD \
216 "flash_self_old=run ramargs addip addtty addmisc;" \
217 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
218 "flash_nfs_old=run nfsargs addip addtty addmisc;" \
219 "bootm ${kernel_addr}\0" \
220 "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \
221 "run nfsargs addip addtty addmisc;" \
222 "bootm ${kernel_addr_r}\0"
223
224#define CONFIG_AMCC_DEF_ENV_NOR_UPD \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200225 "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.bin\0" \
Detlev Zundelc8355b92009-09-02 17:24:57 +0200226 "load=tftp 200000 ${u-boot}\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200227 "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
228 "era " __stringify(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \
229 "cp.b ${fileaddr} " __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
Stefan Roesea8a11a92008-06-06 15:54:31 +0200230 "upd=run load update\0" \
231
Stefan Roesea8a11a92008-06-06 15:54:31 +0200232#endif /* __AMCC_COMMON_H */