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