]> git.ipfire.org Git - people/ms/u-boot.git/blame_incremental - 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
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# ifdef ADI_CMDS_NETWORK
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
19# ifdef CONFIG_BFIN_MAC
20# endif
21# endif
22# ifdef CONFIG_LIBATA
23# define CONFIG_CMD_SATA
24# endif
25# ifdef CONFIG_MMC
26# define CONFIG_SYS_MMC_MAX_BLK_COUNT 127
27# endif
28# ifdef CONFIG_MMC_SPI
29# define CONFIG_CMD_MMC_SPI
30# endif
31# ifdef CONFIG_USB
32# define CONFIG_CMD_USB_STORAGE
33# endif
34# if defined(CONFIG_NAND_PLAT) || defined(CONFIG_DRIVER_NAND_BFIN)
35# define CONFIG_CMD_NAND
36# define CONFIG_CMD_NAND_LOCK_UNLOCK
37# endif
38# ifdef CONFIG_POST
39# define CONFIG_CMD_DIAG
40# endif
41# ifdef CONFIG_RTC_BFIN
42# define CONFIG_CMD_DATE
43# ifdef ADI_CMDS_NETWORK
44# endif
45# endif
46# ifdef CONFIG_SPI
47# define CONFIG_CMD_EEPROM
48# endif
49# if defined(CONFIG_SYS_I2C) || defined(CONFIG_SYS_I2C_SOFT)
50# define CONFIG_SOFT_I2C_READ_REPEATED_START
51# endif
52# ifndef CONFIG_SYS_NO_FLASH
53# define CONFIG_CMD_JFFS2
54# endif
55# ifdef CONFIG_CMD_JFFS2
56# define CONFIG_JFFS2_SUMMARY
57# endif
58# define CONFIG_CMD_BOOTLDR
59# define CONFIG_CMD_CPLBINFO
60# define CONFIG_CMD_KGDB
61# define CONFIG_CMD_LDRINFO
62# define CONFIG_CMD_REGINFO
63# define CONFIG_CMD_STRINGS
64# if defined(__ADSPBF51x__) || defined(__ADSPBF52x__) || defined(__ADSPBF54x__)
65# define CONFIG_CMD_OTP
66# define CONFIG_CMD_SPIBOOTLDR
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
81#ifdef CONFIG_UART_CONSOLE
82# define CONFIG_BFIN_SERIAL
83#endif
84
85/*
86 * Debug Settings
87 */
88#define CONFIG_ENV_OVERWRITE 1
89#define CONFIG_DEBUG_DUMP 1
90#define CONFIG_KALLSYMS 1
91#define CONFIG_PANIC_HANG 1
92
93/*
94 * Env Settings
95 */
96#ifndef CONFIG_BOOTCOMMAND
97# define CONFIG_BOOTCOMMAND "run ramboot"
98#endif
99#ifdef CONFIG_VIDEO
100# define CONFIG_BOOTARGS_VIDEO "console=tty0 "
101#else
102# define CONFIG_BOOTARGS_VIDEO ""
103#endif
104#ifndef CONFIG_BOOTARGS_ROOT
105# define CONFIG_BOOTARGS_ROOT "/dev/mtdblock0 rw"
106#endif
107#ifndef FLASHBOOT_ENV_SETTINGS
108# define FLASHBOOT_ENV_SETTINGS "flashboot=bootm 0x20100000\0"
109#endif
110#define CONFIG_BOOTARGS \
111 "root=" CONFIG_BOOTARGS_ROOT " " \
112 "clkin_hz=" __stringify(CONFIG_CLKIN_HZ) " " \
113 "earlyprintk=" \
114 "serial," \
115 "uart" __stringify(CONFIG_UART_CONSOLE) "," \
116 __stringify(CONFIG_BAUDRATE) " " \
117 CONFIG_BOOTARGS_VIDEO \
118 "console=ttyBF" __stringify(CONFIG_UART_CONSOLE) "," \
119 __stringify(CONFIG_BAUDRATE)
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
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
142# ifndef CONFIG_BFIN_SPI_IMG_SIZE
143# define CONFIG_BFIN_SPI_IMG_SIZE 0x40000
144# endif
145# define UBOOT_ENV_UPDATE \
146 "sf probe " __stringify(BFIN_BOOT_SPI_SSEL) ";" \
147 "sf erase 0 " __stringify(CONFIG_BFIN_SPI_IMG_SIZE) ";" \
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
156# ifndef UBOOT_ENV_UPDATE
157# define UBOOT_ENV_UPDATE \
158 "protect off 0x20000000 +$(filesize);" \
159 "erase 0x20000000 +$(filesize);" \
160 "cp.b $(loadaddr) 0x20000000 $(filesize)"
161# endif
162# endif
163# ifdef CONFIG_NETCONSOLE
164# define NETCONSOLE_ENV \
165 "nc=" \
166 "set ncip ${serverip};" \
167 "set stdin nc;" \
168 "set stdout nc;" \
169 "set stderr nc" \
170 "\0"
171# else
172# define NETCONSOLE_ENV
173# endif
174# define NETWORK_ENV_SETTINGS \
175 NETCONSOLE_ENV \
176 \
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" \
186 \
187 "ramfile=uImage\0" \
188 "ramargs=set bootargs " CONFIG_BOOTARGS "\0" \
189 "ramboot=" \
190 "tftp $(loadaddr) $(ramfile);" \
191 "run ramargs;" \
192 "run addip;" \
193 "bootm" \
194 "\0" \
195 \
196 "nfsfile=vmImage\0" \
197 "nfsargs=set bootargs " \
198 "root=/dev/nfs rw " \
199 "nfsroot=$(serverip):$(rootpath),tcp,nfsvers=3" \
200 "\0" \
201 "nfsboot=" \
202 "tftp $(loadaddr) $(nfsfile);" \
203 "run nfsargs;" \
204 "run addip;" \
205 "bootm" \
206 "\0"
207#else
208# define NETWORK_ENV_SETTINGS
209#endif
210#ifndef BOARD_ENV_SETTINGS
211# define BOARD_ENV_SETTINGS
212#endif
213#define CONFIG_EXTRA_ENV_SETTINGS \
214 NAND_ENV_SETTINGS \
215 NETWORK_ENV_SETTINGS \
216 FLASHBOOT_ENV_SETTINGS \
217 BOARD_ENV_SETTINGS
218
219/*
220 * Network Settings
221 */
222#ifdef CONFIG_CMD_NET
223# define CONFIG_NETMASK 255.255.255.0
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
230# define CONFIG_ROOTPATH "/romfs"
231# endif
232# ifdef CONFIG_CMD_DHCP
233# ifndef CONFIG_SYS_AUTOLOAD
234# define CONFIG_SYS_AUTOLOAD "no"
235# endif
236# endif
237# define CONFIG_IP_DEFRAG
238# define CONFIG_NET_RETRY_COUNT 20
239#endif
240
241/*
242 * Flash Settings
243 */
244#define CONFIG_FLASH_SHOW_PROGRESS 45
245
246/*
247 * SPI Settings
248 */
249#ifdef CONFIG_SPI_FLASH_ALL
250#endif
251
252/*
253 * I2C Settings
254 */
255#if defined(CONFIG_SYS_I2C) || defined(CONFIG_SYS_I2C_SOFT)
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
264/*
265 * Misc Settings
266 */
267#ifndef CONFIG_BOARD_SIZE_LIMIT
268# define CONFIG_BOARD_SIZE_LIMIT $$(( 256 * 1024 ))
269#endif
270#define CONFIG_BFIN_SPI_GPIO_CS /* Only matters if BFIN_SPI is enabled */
271#define CONFIG_LZMA
272#define CONFIG_MONITOR_IS_IN_RAM
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
279#ifndef CONFIG_ADI_GPIO2
280# define CONFIG_ADI_GPIO1
281#endif
282#endif