2 * U-Boot - Common settings for Analog Devices boards
5 #ifndef __CONFIG_BFIN_ADI_COMMON_H__
6 #define __CONFIG_BFIN_ADI_COMMON_H__
11 #ifndef _CONFIG_CMD_DEFAULT_H
12 # include <config_cmd_default.h>
14 # define CONFIG_CMD_DHCP
15 # define CONFIG_BOOTP_SUBNETMASK
16 # define CONFIG_BOOTP_GATEWAY
17 # define CONFIG_BOOTP_DNS
18 # define CONFIG_BOOTP_NTPSERVER
19 # define CONFIG_BOOTP_RANDOM_DELAY
20 # define CONFIG_KEEP_SERVERADDR
21 # define CONFIG_CMD_DNS
22 # define CONFIG_CMD_PING
23 # ifdef CONFIG_BFIN_MAC
24 # define CONFIG_CMD_MII
27 # undef CONFIG_CMD_BOOTD
28 # undef CONFIG_CMD_NET
29 # undef CONFIG_CMD_NFS
32 # define CONFIG_CMD_FAT
33 # define CONFIG_CMD_SATA
34 # define CONFIG_DOS_PARTITION
37 # define CONFIG_CMD_FAT
38 # define CONFIG_CMD_MMC
39 # define CONFIG_DOS_PARTITION
42 # define CONFIG_CMD_EXT2
43 # define CONFIG_CMD_FAT
44 # define CONFIG_CMD_USB
45 # define CONFIG_CMD_USB_STORAGE
46 # define CONFIG_DOS_PARTITION
48 # ifdef CONFIG_NAND_PLAT
49 # define CONFIG_CMD_NAND
52 # define CONFIG_CMD_DIAG
54 # ifdef CONFIG_RTC_BFIN
55 # define CONFIG_CMD_DATE
57 # define CONFIG_CMD_SNTP
61 # define CONFIG_CMD_EEPROM
63 # if defined(CONFIG_BFIN_SPI) || defined(CONFIG_SOFT_SPI)
64 # define CONFIG_CMD_SPI
66 # ifdef CONFIG_SPI_FLASH
67 # define CONFIG_CMD_SF
69 # if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
70 # define CONFIG_CMD_I2C
72 # ifdef CONFIG_SYS_NO_FLASH
73 # undef CONFIG_CMD_FLASH
74 # undef CONFIG_CMD_IMLS
76 # define CONFIG_CMD_JFFS2
78 # define CONFIG_CMD_BOOTLDR
79 # define CONFIG_CMD_CACHE
80 # define CONFIG_CMD_CPLBINFO
81 # define CONFIG_CMD_ELF
82 # define CONFIG_ELF_SIMPLE_LOAD
83 # define CONFIG_CMD_REGINFO
84 # define CONFIG_CMD_STRINGS
85 # if defined(__ADSPBF51x__) || defined(__ADSPBF52x__) || defined(__ADSPBF54x__)
86 # define CONFIG_CMD_OTP
87 # define CONFIG_CMD_SPIBOOTLDR
90 #ifdef CONFIG_CMD_NAND
91 # define CONFIG_SYS_64BIT_VSPRINTF
97 #define CONFIG_SYS_LONGHELP 1
98 #define CONFIG_CMDLINE_EDITING 1
99 #define CONFIG_AUTO_COMPLETE 1
100 #define CONFIG_LOADS_ECHO 1
101 #define CONFIG_JTAG_CONSOLE
102 #ifndef CONFIG_BAUDRATE
103 # define CONFIG_BAUDRATE 57600
109 #define CONFIG_ENV_OVERWRITE 1
110 #define CONFIG_DEBUG_DUMP 1
111 #define CONFIG_KALLSYMS 1
112 #define CONFIG_PANIC_HANG 1
117 #if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART)
118 # define CONFIG_BOOTDELAY -1
120 # define CONFIG_BOOTDELAY 5
122 #ifndef CONFIG_BOOTCOMMAND
123 # define CONFIG_BOOTCOMMAND "run ramboot"
126 # define CONFIG_BOOTARGS_VIDEO "console=tty0 "
128 # define CONFIG_BOOTARGS_VIDEO ""
130 #ifndef CONFIG_BOOTARGS_ROOT
131 # define CONFIG_BOOTARGS_ROOT "/dev/mtdblock0 rw"
133 #define CONFIG_BOOTARGS \
134 "root=" CONFIG_BOOTARGS_ROOT " " \
135 "clkin_hz=" MK_STR(CONFIG_CLKIN_HZ) " " \
138 "uart" MK_STR(CONFIG_UART_CONSOLE) "," \
139 MK_STR(CONFIG_BAUDRATE) " " \
140 CONFIG_BOOTARGS_VIDEO \
141 "console=ttyBF" MK_STR(CONFIG_UART_CONSOLE) "," MK_STR(CONFIG_BAUDRATE)
142 #if defined(CONFIG_CMD_NAND)
143 # define NAND_ENV_SETTINGS \
144 "nandargs=set bootargs " CONFIG_BOOTARGS "\0" \
146 "nand read $(loadaddr) 0x20000 0x100000;" \
151 # define NAND_ENV_SETTINGS
153 #if defined(CONFIG_CMD_NET)
154 # if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
155 # define UBOOT_ENV_FILE "u-boot.bin"
157 # define UBOOT_ENV_FILE "u-boot.ldr"
159 # if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
161 # define UBOOT_ENV_UPDATE \
162 "eeprom write $(loadaddr) 0x0 $(filesize)"
164 # define UBOOT_ENV_UPDATE \
165 "sf probe " MK_STR(BFIN_BOOT_SPI_SSEL) ";" \
166 "sf erase 0 0x40000;" \
167 "sf write $(loadaddr) 0 $(filesize)"
169 # elif (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_NAND)
170 # define UBOOT_ENV_UPDATE \
171 "nand unlock 0 0x40000;" \
172 "nand erase 0 0x40000;" \
173 "nand write $(loadaddr) 0 0x40000"
175 # define UBOOT_ENV_UPDATE \
176 "protect off 0x20000000 +$(filesize);" \
177 "erase 0x20000000 +$(filesize);" \
178 "cp.b $(loadaddr) 0x20000000 $(filesize)"
180 # define NETWORK_ENV_SETTINGS \
181 "ubootfile=" UBOOT_ENV_FILE "\0" \
183 "tftp $(loadaddr) $(ubootfile);" \
186 "addip=set bootargs $(bootargs) " \
187 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):" \
188 "$(hostname):eth0:off" \
192 "ramargs=set bootargs " CONFIG_BOOTARGS "\0" \
194 "tftp $(loadaddr) $(ramfile);" \
200 "nfsfile=vmImage\0" \
201 "nfsargs=set bootargs " \
202 "root=/dev/nfs rw " \
203 "nfsroot=$(serverip):$(rootpath),tcp,nfsvers=3" \
206 "tftp $(loadaddr) $(nfsfile);" \
212 # define NETWORK_ENV_SETTINGS
214 #define CONFIG_EXTRA_ENV_SETTINGS \
216 NETWORK_ENV_SETTINGS \
217 "flashboot=bootm 0x20100000\0"
222 #ifdef CONFIG_CMD_NET
223 # define CONFIG_IPADDR 192.168.0.15
224 # define CONFIG_NETMASK 255.255.255.0
225 # define CONFIG_GATEWAYIP 192.168.0.1
226 # define CONFIG_SERVERIP 192.168.0.2
227 # define CONFIG_ROOTPATH /romfs
228 # ifdef CONFIG_CMD_DHCP
229 # ifndef CONFIG_SYS_AUTOLOAD
230 # define CONFIG_SYS_AUTOLOAD "no"
233 # define CONFIG_NET_RETRY_COUNT 20