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