]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/bfin_adi_common.h
POST cleanup.
[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
12# include <config_cmd_default.h>
13# if ADI_CMDS_NETWORK
14# define CONFIG_CMD_DHCP
574b70df
RG
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
cf6f469e
MF
22# define CONFIG_CMD_PING
23# ifdef CONFIG_BFIN_MAC
24# define CONFIG_CMD_MII
25# endif
26# else
27# undef CONFIG_CMD_BOOTD
28# undef CONFIG_CMD_NET
29# undef CONFIG_CMD_NFS
30# endif
31# ifdef CONFIG_LIBATA
32# define CONFIG_CMD_FAT
33# define CONFIG_CMD_SATA
34# define CONFIG_DOS_PARTITION
35# endif
36# ifdef CONFIG_MMC
37# define CONFIG_CMD_FAT
38# define CONFIG_CMD_MMC
39# define CONFIG_DOS_PARTITION
40# endif
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
MF
49# define CONFIG_CMD_NAND
50# endif
cf6f469e
MF
51# ifdef CONFIG_POST
52# define CONFIG_CMD_DIAG
800eb096 53# define CONFIG_POST_ALT_LIST
cf6f469e
MF
54# endif
55# ifdef CONFIG_RTC_BFIN
56# define CONFIG_CMD_DATE
574b70df
RG
57# if ADI_CMDS_NETWORK
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
70# if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
71# define CONFIG_CMD_I2C
beb60e77 72# define CONFIG_SOFT_I2C_READ_REPEATED_START
cf6f469e
MF
73# endif
74# ifdef CONFIG_SYS_NO_FLASH
75# undef CONFIG_CMD_FLASH
76# undef CONFIG_CMD_IMLS
77# else
78# define CONFIG_CMD_JFFS2
79# endif
c46a0ebf
MF
80# ifdef CONFIG_CMD_JFFS2
81# define CONFIG_JFFS2_SUMMARY
82# endif
cf6f469e
MF
83# define CONFIG_CMD_BOOTLDR
84# define CONFIG_CMD_CACHE
85# define CONFIG_CMD_CPLBINFO
86# define CONFIG_CMD_ELF
87# define CONFIG_ELF_SIMPLE_LOAD
c5530555 88# define CONFIG_CMD_GPIO
f19fd87e 89# define CONFIG_CMD_KGDB
cf6f469e
MF
90# define CONFIG_CMD_REGINFO
91# define CONFIG_CMD_STRINGS
92# if defined(__ADSPBF51x__) || defined(__ADSPBF52x__) || defined(__ADSPBF54x__)
93# define CONFIG_CMD_OTP
dd14af76 94# define CONFIG_CMD_SPIBOOTLDR
cf6f469e
MF
95# endif
96#endif
97
98/*
99 * Console Settings
100 */
101#define CONFIG_SYS_LONGHELP 1
102#define CONFIG_CMDLINE_EDITING 1
103#define CONFIG_AUTO_COMPLETE 1
104#define CONFIG_LOADS_ECHO 1
105#define CONFIG_JTAG_CONSOLE
16ada4f6 106#define CONFIG_SILENT_CONSOLE
cf6f469e
MF
107#ifndef CONFIG_BAUDRATE
108# define CONFIG_BAUDRATE 57600
109#endif
110
111/*
112 * Debug Settings
113 */
114#define CONFIG_ENV_OVERWRITE 1
115#define CONFIG_DEBUG_DUMP 1
ecb1dc89 116#define CONFIG_KALLSYMS 1
cf6f469e
MF
117#define CONFIG_PANIC_HANG 1
118
119/*
120 * Env Settings
121 */
122#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART)
123# define CONFIG_BOOTDELAY -1
124#else
125# define CONFIG_BOOTDELAY 5
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 " " \
88f9faff 143 "clkin_hz=" MK_STR(CONFIG_CLKIN_HZ) " " \
cf6f469e
MF
144 "earlyprintk=" \
145 "serial," \
146 "uart" MK_STR(CONFIG_UART_CONSOLE) "," \
147 MK_STR(CONFIG_BAUDRATE) " " \
148 CONFIG_BOOTARGS_VIDEO \
46a88794 149 "console=ttyBF" MK_STR(CONFIG_UART_CONSOLE) "," MK_STR(CONFIG_BAUDRATE)
0e63dc06
MF
150#if defined(CONFIG_CMD_NAND)
151# define NAND_ENV_SETTINGS \
152 "nandargs=set bootargs " CONFIG_BOOTARGS "\0" \
153 "nandboot=" \
154 "nand read $(loadaddr) 0x20000 0x100000;" \
155 "run nandargs;" \
156 "bootm" \
157 "\0"
158#else
159# define NAND_ENV_SETTINGS
160#endif
cf6f469e
MF
161#if defined(CONFIG_CMD_NET)
162# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
163# define UBOOT_ENV_FILE "u-boot.bin"
164# else
165# define UBOOT_ENV_FILE "u-boot.ldr"
166# endif
167# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
168# ifdef CONFIG_SPI
169# define UBOOT_ENV_UPDATE \
170 "eeprom write $(loadaddr) 0x0 $(filesize)"
171# else
172# define UBOOT_ENV_UPDATE \
173 "sf probe " MK_STR(BFIN_BOOT_SPI_SSEL) ";" \
174 "sf erase 0 0x40000;" \
175 "sf write $(loadaddr) 0 $(filesize)"
176# endif
177# elif (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_NAND)
178# define UBOOT_ENV_UPDATE \
179 "nand unlock 0 0x40000;" \
180 "nand erase 0 0x40000;" \
181 "nand write $(loadaddr) 0 0x40000"
182# else
183# define UBOOT_ENV_UPDATE \
69c6d268
RG
184 "protect off 0x20000000 +$(filesize);" \
185 "erase 0x20000000 +$(filesize);" \
cf6f469e
MF
186 "cp.b $(loadaddr) 0x20000000 $(filesize)"
187# endif
0097870e
RG
188# ifdef CONFIG_NETCONSOLE
189# define NETCONSOLE_ENV \
190 "nc=" \
191 "set ncip ${serverip};" \
192 "set stdin nc;" \
193 "set stdout nc" \
194 "\0"
195# else
196# define NETCONSOLE_ENV
197# endif
cf6f469e 198# define NETWORK_ENV_SETTINGS \
0097870e
RG
199 NETCONSOLE_ENV \
200 \
cf6f469e
MF
201 "ubootfile=" UBOOT_ENV_FILE "\0" \
202 "update=" \
203 "tftp $(loadaddr) $(ubootfile);" \
204 UBOOT_ENV_UPDATE \
205 "\0" \
206 "addip=set bootargs $(bootargs) " \
207 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):" \
208 "$(hostname):eth0:off" \
209 "\0" \
0e63dc06
MF
210 \
211 "ramfile=uImage\0" \
cf6f469e
MF
212 "ramargs=set bootargs " CONFIG_BOOTARGS "\0" \
213 "ramboot=" \
0e63dc06 214 "tftp $(loadaddr) $(ramfile);" \
cf6f469e
MF
215 "run ramargs;" \
216 "run addip;" \
217 "bootm" \
218 "\0" \
0e63dc06
MF
219 \
220 "nfsfile=vmImage\0" \
cf6f469e
MF
221 "nfsargs=set bootargs " \
222 "root=/dev/nfs rw " \
223 "nfsroot=$(serverip):$(rootpath),tcp,nfsvers=3" \
224 "\0" \
225 "nfsboot=" \
0e63dc06 226 "tftp $(loadaddr) $(nfsfile);" \
cf6f469e
MF
227 "run nfsargs;" \
228 "run addip;" \
229 "bootm" \
230 "\0"
231#else
232# define NETWORK_ENV_SETTINGS
233#endif
234#define CONFIG_EXTRA_ENV_SETTINGS \
0e63dc06 235 NAND_ENV_SETTINGS \
cf6f469e 236 NETWORK_ENV_SETTINGS \
fd04a05b 237 FLASHBOOT_ENV_SETTINGS
cf6f469e
MF
238
239/*
240 * Network Settings
241 */
242#ifdef CONFIG_CMD_NET
243# define CONFIG_IPADDR 192.168.0.15
244# define CONFIG_NETMASK 255.255.255.0
245# define CONFIG_GATEWAYIP 192.168.0.1
246# define CONFIG_SERVERIP 192.168.0.2
247# define CONFIG_ROOTPATH /romfs
248# ifdef CONFIG_CMD_DHCP
249# ifndef CONFIG_SYS_AUTOLOAD
250# define CONFIG_SYS_AUTOLOAD "no"
251# endif
252# endif
8278b870 253# define CONFIG_IP_DEFRAG
cf6f469e
MF
254# define CONFIG_NET_RETRY_COUNT 20
255#endif
256
787e343b
MF
257/*
258 * I2C Settings
259 */
260#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
261# ifndef CONFIG_SYS_I2C_SPEED
262# define CONFIG_SYS_I2C_SPEED 50000
263# endif
264# ifndef CONFIG_SYS_I2C_SLAVE
265# define CONFIG_SYS_I2C_SLAVE 0
266# endif
267#endif
268
7c7503ee
MF
269/*
270 * Misc Settings
271 */
37a4b75d 272#define CONFIG_BFIN_SPI_GPIO_CS /* Only matters if BFIN_SPI is enabled */
7c7503ee
MF
273#define CONFIG_LZMA
274
cf6f469e 275#endif