Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 1 | /* |
| 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-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | #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 Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 30 | |
| 31 | /* |
| 32 | * UART |
| 33 | */ |
| 34 | #define CONFIG_BAUDRATE 115200 |
| 35 | #define CONFIG_SERIAL_MULTI |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 36 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 37 | {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-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 43 | #define CONFIG_SYS_I2C_SLAVE 0x7F |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 44 | |
| 45 | /* |
| 46 | * Ethernet/EMAC/PHY |
| 47 | */ |
Ben Warren | 96e21f8 | 2008-10-27 23:50:15 -0700 | [diff] [blame] | 48 | #define CONFIG_PPC4xx_EMAC |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 49 | #define CONFIG_MII /* MII PHY management */ |
| 50 | #define CONFIG_NET_MULTI |
| 51 | #define CONFIG_NETCONSOLE /* include NetConsole support */ |
| 52 | #if defined(CONFIG_440) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 53 | #define CONFIG_SYS_RX_ETH_BUFFER 32 /* number of eth rx buffers */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 54 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 55 | #define CONFIG_SYS_RX_ETH_BUFFER 16 /* number of eth rx buffers */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 56 | #endif |
| 57 | |
| 58 | /* |
| 59 | * Commands |
| 60 | */ |
| 61 | #include <config_cmd_default.h> |
| 62 | |
| 63 | #define CONFIG_CMD_ASKENV |
| 64 | #if defined(CONFIG_440) |
| 65 | #define CONFIG_CMD_CACHE |
| 66 | #endif |
| 67 | #define CONFIG_CMD_DHCP |
| 68 | #define CONFIG_CMD_DIAG |
| 69 | #define CONFIG_CMD_EEPROM |
| 70 | #define CONFIG_CMD_ELF |
| 71 | #define CONFIG_CMD_I2C |
| 72 | #define CONFIG_CMD_IRQ |
| 73 | #define CONFIG_CMD_MII |
| 74 | #define CONFIG_CMD_NET |
| 75 | #define CONFIG_CMD_NFS |
| 76 | #define CONFIG_CMD_PING |
| 77 | #define CONFIG_CMD_REGINFO |
| 78 | |
Stefan Roese | d873133 | 2009-05-11 13:46:14 +0200 | [diff] [blame] | 79 | #if defined(CONFIG_SYS_RAMBOOT) |
| 80 | /* |
| 81 | * Disable NOR FLASH commands on RAM-booting version. One main reason for this |
| 82 | * RAM-booting version is boards with NAND and without NOR. This image can |
| 83 | * be used for initial NAND programming. |
| 84 | */ |
| 85 | #define CONFIG_SYS_NO_FLASH |
| 86 | #undef CONFIG_CMD_FLASH |
| 87 | #undef CONFIG_CMD_IMLS |
| 88 | #endif |
| 89 | |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 90 | /* |
| 91 | * Miscellaneous configurable options |
| 92 | */ |
| 93 | #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 95 | #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 96 | #if defined(CONFIG_CMD_KGDB) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 97 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 98 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 99 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 100 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) |
| 102 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |
| 103 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 104 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */ |
| 106 | #define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 107 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 108 | #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */ |
| 109 | #define CONFIG_SYS_EXTBDINFO /* To use extended board_into (bd_t) */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 110 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 111 | #define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 112 | |
| 113 | #define CONFIG_CMDLINE_EDITING /* add command line history */ |
| 114 | #define CONFIG_AUTO_COMPLETE /* add autocompletion support */ |
| 115 | #define CONFIG_LOOPW /* enable loopw command */ |
| 116 | #define CONFIG_MX_CYCLIC /* enable mdc/mwc commands */ |
| 117 | #define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */ |
| 118 | #define CONFIG_VERSION_VARIABLE /* include version env variable */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 119 | #define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup*/ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 120 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 121 | #define CONFIG_SYS_HUSH_PARSER /* Use the HUSH parser */ |
| 122 | #ifdef CONFIG_SYS_HUSH_PARSER |
| 123 | #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 124 | #endif |
| 125 | |
| 126 | #define CONFIG_LOADS_ECHO /* echo on for serial download */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 128 | |
| 129 | /* |
| 130 | * BOOTP options |
| 131 | */ |
| 132 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 133 | #define CONFIG_BOOTP_BOOTPATH |
| 134 | #define CONFIG_BOOTP_GATEWAY |
| 135 | #define CONFIG_BOOTP_HOSTNAME |
| 136 | #define CONFIG_BOOTP_SUBNETMASK |
| 137 | |
| 138 | /* |
| 139 | * For booting Linux, the board info and command line data |
| 140 | * have to be in the first 8 MB of memory, since this is |
| 141 | * the maximum mapped by the Linux kernel during initialization. |
| 142 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 143 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Internal Definitions |
| 147 | */ |
| 148 | #if defined(CONFIG_CMD_KGDB) |
| 149 | #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port*/ |
| 150 | #define CONFIG_KGDB_SER_INDEX 2 /* which serial port to use */ |
| 151 | #endif |
| 152 | |
| 153 | /* |
| 154 | * Pass open firmware flat tree |
| 155 | */ |
| 156 | #define CONFIG_OF_LIBFDT |
| 157 | #define CONFIG_OF_BOARD_SETUP |
| 158 | |
| 159 | /* |
| 160 | * Booting and default environment |
| 161 | */ |
| 162 | #define CONFIG_PREBOOT "echo;" \ |
| 163 | "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \ |
| 164 | "echo" |
| 165 | #define CONFIG_BOOTCOMMAND "run flash_self" |
| 166 | |
| 167 | /* |
| 168 | * Only very few boards have default console not on ttyS0 (like Taishan) |
| 169 | */ |
| 170 | #if !defined(CONFIG_USE_TTY) |
| 171 | #define CONFIG_USE_TTY ttyS0 |
| 172 | #endif |
| 173 | |
| 174 | /* |
Adam Graham | f09f09d | 2008-10-08 10:12:53 -0700 | [diff] [blame] | 175 | * Only very few boards have default netdev not set to eth0 (like Arches) |
| 176 | */ |
| 177 | #if !defined(CONFIG_USE_NETDEV) |
| 178 | #define CONFIG_USE_NETDEV eth0 |
| 179 | #endif |
| 180 | |
| 181 | /* |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 182 | * Only some 4xx PPC's are equipped with an FPU |
| 183 | */ |
| 184 | #if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \ |
| 185 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 186 | #define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xxFP\0" |
| 187 | #else |
| 188 | #define CONFIG_AMCC_DEF_ENV_ROOTPATH "rootpath=/opt/eldk/ppc_4xx\0" |
| 189 | #endif |
| 190 | |
| 191 | /* |
| 192 | * Only some boards need to extend the bootargs by some additional |
| 193 | * parameters (like Makalu) |
| 194 | */ |
| 195 | #if !defined(CONFIG_ADDMISC) |
| 196 | #define CONFIG_ADDMISC "addmisc=setenv bootargs ${bootargs}\0" |
| 197 | #endif |
| 198 | |
| 199 | #define xstr(s) str(s) |
| 200 | #define str(s) #s |
| 201 | |
| 202 | /* |
| 203 | * General common environment variables shared on all AMCC eval boards |
| 204 | */ |
| 205 | #define CONFIG_AMCC_DEF_ENV \ |
Adam Graham | f09f09d | 2008-10-08 10:12:53 -0700 | [diff] [blame] | 206 | "netdev=" xstr(CONFIG_USE_NETDEV) "\0" \ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 207 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ |
| 208 | "nfsroot=${serverip}:${rootpath}\0" \ |
| 209 | "ramargs=setenv bootargs root=/dev/ram rw\0" \ |
| 210 | "addip=setenv bootargs ${bootargs} " \ |
| 211 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ |
| 212 | ":${hostname}:${netdev}:off panic=1\0" \ |
| 213 | "addtty=setenv bootargs ${bootargs}" \ |
| 214 | " console=" xstr(CONFIG_USE_TTY) ",${baudrate}\0" \ |
| 215 | CONFIG_ADDMISC \ |
| 216 | "initrd_high=30000000\0" \ |
| 217 | "kernel_addr_r=400000\0" \ |
| 218 | "fdt_addr_r=800000\0" \ |
Adam Graham | f09f09d | 2008-10-08 10:12:53 -0700 | [diff] [blame] | 219 | "ramdisk_addr_r=C00000\0" \ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 220 | "hostname=" xstr(CONFIG_HOSTNAME) "\0" \ |
| 221 | "bootfile=" xstr(CONFIG_HOSTNAME) "/uImage\0" \ |
Adam Graham | f09f09d | 2008-10-08 10:12:53 -0700 | [diff] [blame] | 222 | "ramdisk_file=" xstr(CONFIG_HOSTNAME) "/uRamdisk\0" \ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 223 | CONFIG_AMCC_DEF_ENV_ROOTPATH |
| 224 | |
| 225 | /* |
| 226 | * Default environment for arch/powerpc booting |
| 227 | * for boards that are ported to arch/powerpc |
| 228 | */ |
| 229 | #define CONFIG_AMCC_DEF_ENV_POWERPC \ |
| 230 | "flash_self=run ramargs addip addtty addmisc;" \ |
| 231 | "bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ |
| 232 | "flash_nfs=run nfsargs addip addtty addmisc;" \ |
| 233 | "bootm ${kernel_addr} - ${fdt_addr}\0" \ |
| 234 | "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \ |
| 235 | "tftp ${fdt_addr_r} ${fdt_file}; " \ |
| 236 | "run nfsargs addip addtty addmisc;" \ |
| 237 | "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \ |
Adam Graham | f09f09d | 2008-10-08 10:12:53 -0700 | [diff] [blame] | 238 | "net_self_load=tftp ${kernel_addr_r} ${bootfile};" \ |
| 239 | "tftp ${fdt_addr_r} ${fdt_file};" \ |
| 240 | "tftp ${ramdisk_addr_r} ${ramdisk_file};\0" \ |
| 241 | "net_self=run net_self_load;" \ |
| 242 | "run ramargs addip addtty addmisc;" \ |
| 243 | "bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}\0" \ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 244 | "fdt_file=" xstr(CONFIG_HOSTNAME) "/" xstr(CONFIG_HOSTNAME) ".dtb\0" |
| 245 | |
| 246 | /* |
| 247 | * Default environment for arch/ppc booting, |
| 248 | * for boards that are not ported to arch/powerpc yet |
| 249 | */ |
| 250 | #define CONFIG_AMCC_DEF_ENV_PPC \ |
| 251 | "flash_self=run ramargs addip addtty addmisc;" \ |
| 252 | "bootm ${kernel_addr} ${ramdisk_addr}\0" \ |
| 253 | "flash_nfs=run nfsargs addip addtty addmisc;" \ |
| 254 | "bootm ${kernel_addr}\0" \ |
| 255 | "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \ |
| 256 | "run nfsargs addip addtty addmisc;" \ |
| 257 | "bootm ${kernel_addr_r}\0" |
| 258 | |
| 259 | /* |
| 260 | * Default environment for arch/ppc booting (old version), |
| 261 | * for boards that are ported to arch/ppc and arch/powerpc |
| 262 | */ |
| 263 | #define CONFIG_AMCC_DEF_ENV_PPC_OLD \ |
| 264 | "flash_self_old=run ramargs addip addtty addmisc;" \ |
| 265 | "bootm ${kernel_addr} ${ramdisk_addr}\0" \ |
| 266 | "flash_nfs_old=run nfsargs addip addtty addmisc;" \ |
| 267 | "bootm ${kernel_addr}\0" \ |
| 268 | "net_nfs_old=tftp ${kernel_addr_r} ${bootfile};" \ |
| 269 | "run nfsargs addip addtty addmisc;" \ |
| 270 | "bootm ${kernel_addr_r}\0" |
| 271 | |
| 272 | #define CONFIG_AMCC_DEF_ENV_NOR_UPD \ |
| 273 | "load=tftp 200000 " xstr(CONFIG_HOSTNAME) "/u-boot.bin\0" \ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 274 | "update=protect off " xstr(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \ |
| 275 | "era " xstr(CONFIG_SYS_MONITOR_BASE) " FFFFFFFF;" \ |
| 276 | "cp.b ${fileaddr} " xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize};" \ |
Stefan Roese | a8a11a9 | 2008-06-06 15:54:31 +0200 | [diff] [blame] | 277 | "setenv filesize;saveenv\0" \ |
| 278 | "upd=run load update\0" \ |
| 279 | |
| 280 | #define CONFIG_AMCC_DEF_ENV_NAND_UPD \ |
| 281 | "nload=tftp 200000 " xstr(CONFIG_HOSTNAME) "/u-boot-nand.bin\0" \ |
| 282 | "nupdate=nand erase 0 100000;nand write 200000 0 100000;" \ |
| 283 | "setenv filesize;saveenv\0" \ |
| 284 | "nupd=run nload nupdate\0" |
| 285 | |
| 286 | #endif /* __AMCC_COMMON_H */ |