]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/bfin_adi_common.h
common: bootdelay: move CONFIG_BOOTDELAY into a Kconfig option
[people/ms/u-boot.git] / include / configs / bfin_adi_common.h
CommitLineData
cf6f469e
MF
1/*
2 * U-Boot - Common settings for Analog Devices boards
3 */
4
5#ifndef __CONFIG_BFIN_ADI_COMMON_H__
6#define __CONFIG_BFIN_ADI_COMMON_H__
7
8/*
9 * Command Settings
10 */
11#ifndef _CONFIG_CMD_DEFAULT_H
320ec9df 12# ifdef ADI_CMDS_NETWORK
574b70df
RG
13# define CONFIG_BOOTP_SUBNETMASK
14# define CONFIG_BOOTP_GATEWAY
15# define CONFIG_BOOTP_DNS
16# define CONFIG_BOOTP_NTPSERVER
17# define CONFIG_BOOTP_RANDOM_DELAY
18# define CONFIG_KEEP_SERVERADDR
cf6f469e 19# ifdef CONFIG_BFIN_MAC
cf6f469e 20# endif
cf6f469e
MF
21# endif
22# ifdef CONFIG_LIBATA
cf6f469e
MF
23# define CONFIG_CMD_SATA
24# define CONFIG_DOS_PARTITION
25# endif
26# ifdef CONFIG_MMC
cf6f469e 27# define CONFIG_DOS_PARTITION
6721bb5a 28# define CONFIG_SYS_MMC_MAX_BLK_COUNT 127
cf6f469e 29# endif
14dda9df
MF
30# ifdef CONFIG_MMC_SPI
31# define CONFIG_CMD_MMC_SPI
32# endif
cf6f469e 33# ifdef CONFIG_USB
cf6f469e
MF
34# define CONFIG_CMD_USB_STORAGE
35# define CONFIG_DOS_PARTITION
36# endif
b7659ef2 37# if defined(CONFIG_NAND_PLAT) || defined(CONFIG_DRIVER_NAND_BFIN)
cd84423a 38# define CONFIG_CMD_NAND
4cd4c2d2 39# define CONFIG_CMD_NAND_LOCK_UNLOCK
cd84423a 40# endif
cf6f469e
MF
41# ifdef CONFIG_POST
42# define CONFIG_CMD_DIAG
43# endif
44# ifdef CONFIG_RTC_BFIN
45# define CONFIG_CMD_DATE
320ec9df 46# ifdef ADI_CMDS_NETWORK
574b70df 47# endif
cf6f469e
MF
48# endif
49# ifdef CONFIG_SPI
50# define CONFIG_CMD_EEPROM
51# endif
c469703b 52# if defined(CONFIG_SYS_I2C) || defined(CONFIG_SYS_I2C_SOFT)
beb60e77 53# define CONFIG_SOFT_I2C_READ_REPEATED_START
cf6f469e 54# endif
ef0f2f57 55# ifndef CONFIG_SYS_NO_FLASH
cf6f469e
MF
56# define CONFIG_CMD_JFFS2
57# endif
c46a0ebf
MF
58# ifdef CONFIG_CMD_JFFS2
59# define CONFIG_JFFS2_SUMMARY
60# endif
cf6f469e 61# define CONFIG_CMD_BOOTLDR
cf6f469e 62# define CONFIG_CMD_CPLBINFO
f19fd87e 63# define CONFIG_CMD_KGDB
d633b2db 64# define CONFIG_CMD_LDRINFO
cf6f469e
MF
65# define CONFIG_CMD_REGINFO
66# define CONFIG_CMD_STRINGS
67# if defined(__ADSPBF51x__) || defined(__ADSPBF52x__) || defined(__ADSPBF54x__)
68# define CONFIG_CMD_OTP
dd14af76 69# define CONFIG_CMD_SPIBOOTLDR
cf6f469e
MF
70# endif
71#endif
72
73/*
74 * Console Settings
75 */
76#define CONFIG_SYS_LONGHELP 1
77#define CONFIG_CMDLINE_EDITING 1
78#define CONFIG_AUTO_COMPLETE 1
79#define CONFIG_LOADS_ECHO 1
80#define CONFIG_JTAG_CONSOLE
16ada4f6 81#define CONFIG_SILENT_CONSOLE
cf6f469e
MF
82#ifndef CONFIG_BAUDRATE
83# define CONFIG_BAUDRATE 57600
84#endif
9d803fc8
SZ
85#ifdef CONFIG_UART_CONSOLE
86# define CONFIG_BFIN_SERIAL
87#endif
cf6f469e
MF
88
89/*
90 * Debug Settings
91 */
92#define CONFIG_ENV_OVERWRITE 1
93#define CONFIG_DEBUG_DUMP 1
ecb1dc89 94#define CONFIG_KALLSYMS 1
cf6f469e
MF
95#define CONFIG_PANIC_HANG 1
96
97/*
98 * Env Settings
99 */
56f0c57b
MF
100#ifndef CONFIG_BOOTDELAY
101# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART)
56f0c57b 102# else
56f0c57b 103# endif
cf6f469e 104#endif
0e63dc06
MF
105#ifndef CONFIG_BOOTCOMMAND
106# define CONFIG_BOOTCOMMAND "run ramboot"
107#endif
cf6f469e
MF
108#ifdef CONFIG_VIDEO
109# define CONFIG_BOOTARGS_VIDEO "console=tty0 "
110#else
111# define CONFIG_BOOTARGS_VIDEO ""
112#endif
0e63dc06
MF
113#ifndef CONFIG_BOOTARGS_ROOT
114# define CONFIG_BOOTARGS_ROOT "/dev/mtdblock0 rw"
115#endif
fd04a05b
HK
116#ifndef FLASHBOOT_ENV_SETTINGS
117# define FLASHBOOT_ENV_SETTINGS "flashboot=bootm 0x20100000\0"
118#endif
cf6f469e 119#define CONFIG_BOOTARGS \
0e63dc06 120 "root=" CONFIG_BOOTARGS_ROOT " " \
5368c55d 121 "clkin_hz=" __stringify(CONFIG_CLKIN_HZ) " " \
cf6f469e
MF
122 "earlyprintk=" \
123 "serial," \
5368c55d
MV
124 "uart" __stringify(CONFIG_UART_CONSOLE) "," \
125 __stringify(CONFIG_BAUDRATE) " " \
cf6f469e 126 CONFIG_BOOTARGS_VIDEO \
5368c55d
MV
127 "console=ttyBF" __stringify(CONFIG_UART_CONSOLE) "," \
128 __stringify(CONFIG_BAUDRATE)
0e63dc06
MF
129#if defined(CONFIG_CMD_NAND)
130# define NAND_ENV_SETTINGS \
131 "nandargs=set bootargs " CONFIG_BOOTARGS "\0" \
132 "nandboot=" \
133 "nand read $(loadaddr) 0x20000 0x100000;" \
134 "run nandargs;" \
135 "bootm" \
136 "\0"
137#else
138# define NAND_ENV_SETTINGS
139#endif
cf6f469e
MF
140#if defined(CONFIG_CMD_NET)
141# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
142# define UBOOT_ENV_FILE "u-boot.bin"
143# else
144# define UBOOT_ENV_FILE "u-boot.ldr"
145# endif
146# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
147# ifdef CONFIG_SPI
148# define UBOOT_ENV_UPDATE \
149 "eeprom write $(loadaddr) 0x0 $(filesize)"
150# else
abaa5ba4
MF
151# ifndef CONFIG_BFIN_SPI_IMG_SIZE
152# define CONFIG_BFIN_SPI_IMG_SIZE 0x40000
153# endif
cf6f469e 154# define UBOOT_ENV_UPDATE \
5368c55d
MV
155 "sf probe " __stringify(BFIN_BOOT_SPI_SSEL) ";" \
156 "sf erase 0 " __stringify(CONFIG_BFIN_SPI_IMG_SIZE) ";" \
cf6f469e
MF
157 "sf write $(loadaddr) 0 $(filesize)"
158# endif
159# elif (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_NAND)
160# define UBOOT_ENV_UPDATE \
161 "nand unlock 0 0x40000;" \
162 "nand erase 0 0x40000;" \
163 "nand write $(loadaddr) 0 0x40000"
164# else
320ec9df
SZ
165# ifndef UBOOT_ENV_UPDATE
166# define UBOOT_ENV_UPDATE \
69c6d268
RG
167 "protect off 0x20000000 +$(filesize);" \
168 "erase 0x20000000 +$(filesize);" \
cf6f469e 169 "cp.b $(loadaddr) 0x20000000 $(filesize)"
320ec9df 170# endif
cf6f469e 171# endif
0097870e
RG
172# ifdef CONFIG_NETCONSOLE
173# define NETCONSOLE_ENV \
174 "nc=" \
175 "set ncip ${serverip};" \
176 "set stdin nc;" \
fd48d591
MF
177 "set stdout nc;" \
178 "set stderr nc" \
0097870e
RG
179 "\0"
180# else
181# define NETCONSOLE_ENV
182# endif
cf6f469e 183# define NETWORK_ENV_SETTINGS \
0097870e
RG
184 NETCONSOLE_ENV \
185 \
cf6f469e
MF
186 "ubootfile=" UBOOT_ENV_FILE "\0" \
187 "update=" \
188 "tftp $(loadaddr) $(ubootfile);" \
189 UBOOT_ENV_UPDATE \
190 "\0" \
191 "addip=set bootargs $(bootargs) " \
192 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):" \
193 "$(hostname):eth0:off" \
194 "\0" \
0e63dc06
MF
195 \
196 "ramfile=uImage\0" \
cf6f469e
MF
197 "ramargs=set bootargs " CONFIG_BOOTARGS "\0" \
198 "ramboot=" \
0e63dc06 199 "tftp $(loadaddr) $(ramfile);" \
cf6f469e
MF
200 "run ramargs;" \
201 "run addip;" \
202 "bootm" \
203 "\0" \
0e63dc06
MF
204 \
205 "nfsfile=vmImage\0" \
cf6f469e
MF
206 "nfsargs=set bootargs " \
207 "root=/dev/nfs rw " \
208 "nfsroot=$(serverip):$(rootpath),tcp,nfsvers=3" \
209 "\0" \
210 "nfsboot=" \
0e63dc06 211 "tftp $(loadaddr) $(nfsfile);" \
cf6f469e
MF
212 "run nfsargs;" \
213 "run addip;" \
214 "bootm" \
215 "\0"
216#else
217# define NETWORK_ENV_SETTINGS
218#endif
c2d8b965
MF
219#ifndef BOARD_ENV_SETTINGS
220# define BOARD_ENV_SETTINGS
221#endif
cf6f469e 222#define CONFIG_EXTRA_ENV_SETTINGS \
0e63dc06 223 NAND_ENV_SETTINGS \
cf6f469e 224 NETWORK_ENV_SETTINGS \
c2d8b965
MF
225 FLASHBOOT_ENV_SETTINGS \
226 BOARD_ENV_SETTINGS
cf6f469e
MF
227
228/*
229 * Network Settings
230 */
231#ifdef CONFIG_CMD_NET
cf6f469e 232# define CONFIG_NETMASK 255.255.255.0
56f0c57b
MF
233# ifndef CONFIG_IPADDR
234# define CONFIG_IPADDR 192.168.0.15
235# define CONFIG_GATEWAYIP 192.168.0.1
236# define CONFIG_SERVERIP 192.168.0.2
237# endif
238# ifndef CONFIG_ROOTPATH
8b3637c6 239# define CONFIG_ROOTPATH "/romfs"
56f0c57b 240# endif
cf6f469e
MF
241# ifdef CONFIG_CMD_DHCP
242# ifndef CONFIG_SYS_AUTOLOAD
243# define CONFIG_SYS_AUTOLOAD "no"
244# endif
245# endif
8278b870 246# define CONFIG_IP_DEFRAG
cf6f469e
MF
247# define CONFIG_NET_RETRY_COUNT 20
248#endif
249
27575587
MF
250/*
251 * Flash Settings
252 */
253#define CONFIG_FLASH_SHOW_PROGRESS 45
254
f453220c
MF
255/*
256 * SPI Settings
257 */
258#ifdef CONFIG_SPI_FLASH_ALL
f453220c
MF
259#endif
260
787e343b
MF
261/*
262 * I2C Settings
263 */
c469703b 264#if defined(CONFIG_SYS_I2C) || defined(CONFIG_SYS_I2C_SOFT)
787e343b
MF
265# ifndef CONFIG_SYS_I2C_SPEED
266# define CONFIG_SYS_I2C_SPEED 50000
267# endif
268# ifndef CONFIG_SYS_I2C_SLAVE
269# define CONFIG_SYS_I2C_SLAVE 0
270# endif
271#endif
272
7c7503ee
MF
273/*
274 * Misc Settings
275 */
58d7570c
MF
276#ifndef CONFIG_BOARD_SIZE_LIMIT
277# define CONFIG_BOARD_SIZE_LIMIT $$(( 256 * 1024 ))
278#endif
37a4b75d 279#define CONFIG_BFIN_SPI_GPIO_CS /* Only matters if BFIN_SPI is enabled */
7c7503ee 280#define CONFIG_LZMA
a91eb2c5 281#define CONFIG_MONITOR_IS_IN_RAM
e9a389a1
SZ
282#ifdef CONFIG_HW_WATCHDOG
283# define CONFIG_BFIN_WATCHDOG
284# ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS
285# define CONFIG_WATCHDOG_TIMEOUT_MSECS 5000
286# endif
287#endif
da34aae5
SZ
288#ifndef CONFIG_ADI_GPIO2
289# define CONFIG_ADI_GPIO1
290#endif
cf6f469e 291#endif