blob: a915b1a2efafd7d6700201d80bd35fe6ca93881e [file] [log] [blame]
Mike Frysinger62d2a232008-06-01 09:09:48 -04001/*
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
Sonic Zhang9e469b42012-08-16 12:08:31 +080012# ifdef ADI_CMDS_NETWORK
Robin Getza6969e12009-08-11 14:20:13 +000013# 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
Mike Frysinger62d2a232008-06-01 09:09:48 -040019# ifdef CONFIG_BFIN_MAC
Mike Frysinger62d2a232008-06-01 09:09:48 -040020# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040021# endif
22# ifdef CONFIG_LIBATA
Mike Frysinger62d2a232008-06-01 09:09:48 -040023# define CONFIG_CMD_SATA
Mike Frysinger62d2a232008-06-01 09:09:48 -040024# endif
25# ifdef CONFIG_MMC
Sonic Zhangb2f5f6d2014-08-15 17:08:50 +080026# define CONFIG_SYS_MMC_MAX_BLK_COUNT 127
Mike Frysinger62d2a232008-06-01 09:09:48 -040027# endif
Mike Frysingeraa5e9222010-12-24 12:53:47 -050028# ifdef CONFIG_MMC_SPI
29# define CONFIG_CMD_MMC_SPI
30# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040031# ifdef CONFIG_USB
Mike Frysinger62d2a232008-06-01 09:09:48 -040032# define CONFIG_CMD_USB_STORAGE
Mike Frysinger62d2a232008-06-01 09:09:48 -040033# endif
Mike Frysinger93441392009-11-11 17:29:35 -050034# if defined(CONFIG_NAND_PLAT) || defined(CONFIG_DRIVER_NAND_BFIN)
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -040035# define CONFIG_CMD_NAND
Mike Frysinger8bbfce82010-09-21 19:33:53 -040036# define CONFIG_CMD_NAND_LOCK_UNLOCK
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -040037# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040038# ifdef CONFIG_POST
39# define CONFIG_CMD_DIAG
40# endif
41# ifdef CONFIG_RTC_BFIN
42# define CONFIG_CMD_DATE
Sonic Zhang9e469b42012-08-16 12:08:31 +080043# ifdef ADI_CMDS_NETWORK
Robin Getza6969e12009-08-11 14:20:13 +000044# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040045# endif
46# ifdef CONFIG_SPI
47# define CONFIG_CMD_EEPROM
48# endif
Scott Jiang80d27fa2014-11-13 15:30:55 +080049# if defined(CONFIG_SYS_I2C) || defined(CONFIG_SYS_I2C_SOFT)
Mike Frysingerd86e9a72010-06-08 16:22:44 -040050# define CONFIG_SOFT_I2C_READ_REPEATED_START
Mike Frysinger62d2a232008-06-01 09:09:48 -040051# endif
Masahiro Yamada8cea9b52017-02-11 22:43:54 +090052# ifdef CONFIG_MTD_NOR_FLASH
Mike Frysinger62d2a232008-06-01 09:09:48 -040053# define CONFIG_CMD_JFFS2
54# endif
Mike Frysinger0b30edc2010-01-08 07:56:17 -050055# ifdef CONFIG_CMD_JFFS2
56# define CONFIG_JFFS2_SUMMARY
57# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040058# define CONFIG_CMD_BOOTLDR
Mike Frysinger62d2a232008-06-01 09:09:48 -040059# define CONFIG_CMD_CPLBINFO
Robin Getz230d0012009-12-21 16:35:48 -050060# define CONFIG_CMD_KGDB
Mike Frysinger47c3a492010-12-26 12:35:21 -050061# define CONFIG_CMD_LDRINFO
Mike Frysinger62d2a232008-06-01 09:09:48 -040062# define CONFIG_CMD_REGINFO
63# define CONFIG_CMD_STRINGS
64# if defined(__ADSPBF51x__) || defined(__ADSPBF52x__) || defined(__ADSPBF54x__)
65# define CONFIG_CMD_OTP
Mike Frysinger7c8e97f2008-11-27 16:50:32 -050066# define CONFIG_CMD_SPIBOOTLDR
Mike Frysinger62d2a232008-06-01 09:09:48 -040067# 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
Sonic Zhang95aad8a2013-04-07 19:04:14 +080078#ifdef CONFIG_UART_CONSOLE
79# define CONFIG_BFIN_SERIAL
80#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040081
82/*
83 * Debug Settings
84 */
85#define CONFIG_ENV_OVERWRITE 1
86#define CONFIG_DEBUG_DUMP 1
Mike Frysingera46fbba2009-05-20 04:35:14 -040087#define CONFIG_KALLSYMS 1
Mike Frysinger62d2a232008-06-01 09:09:48 -040088#define CONFIG_PANIC_HANG 1
89
90/*
91 * Env Settings
92 */
Mike Frysingera76bd0d2009-04-13 05:52:45 -040093#ifndef CONFIG_BOOTCOMMAND
94# define CONFIG_BOOTCOMMAND "run ramboot"
95#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -040096#ifdef CONFIG_VIDEO
97# define CONFIG_BOOTARGS_VIDEO "console=tty0 "
98#else
99# define CONFIG_BOOTARGS_VIDEO ""
100#endif
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400101#ifndef CONFIG_BOOTARGS_ROOT
102# define CONFIG_BOOTARGS_ROOT "/dev/mtdblock0 rw"
103#endif
Harald Krapfenbauer2bdd9192009-10-14 08:37:32 -0400104#ifndef FLASHBOOT_ENV_SETTINGS
105# define FLASHBOOT_ENV_SETTINGS "flashboot=bootm 0x20100000\0"
106#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400107#define CONFIG_BOOTARGS \
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400108 "root=" CONFIG_BOOTARGS_ROOT " " \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200109 "clkin_hz=" __stringify(CONFIG_CLKIN_HZ) " " \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400110 "earlyprintk=" \
111 "serial," \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200112 "uart" __stringify(CONFIG_UART_CONSOLE) "," \
113 __stringify(CONFIG_BAUDRATE) " " \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400114 CONFIG_BOOTARGS_VIDEO \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200115 "console=ttyBF" __stringify(CONFIG_UART_CONSOLE) "," \
116 __stringify(CONFIG_BAUDRATE)
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400117#if defined(CONFIG_CMD_NAND)
118# define NAND_ENV_SETTINGS \
119 "nandargs=set bootargs " CONFIG_BOOTARGS "\0" \
120 "nandboot=" \
121 "nand read $(loadaddr) 0x20000 0x100000;" \
122 "run nandargs;" \
123 "bootm" \
124 "\0"
125#else
126# define NAND_ENV_SETTINGS
127#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400128#if defined(CONFIG_CMD_NET)
129# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS)
130# define UBOOT_ENV_FILE "u-boot.bin"
131# else
132# define UBOOT_ENV_FILE "u-boot.ldr"
133# endif
134# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_SPI_MASTER)
135# ifdef CONFIG_SPI
136# define UBOOT_ENV_UPDATE \
137 "eeprom write $(loadaddr) 0x0 $(filesize)"
138# else
Mike Frysinger55c5d712010-09-29 20:24:16 +0000139# ifndef CONFIG_BFIN_SPI_IMG_SIZE
140# define CONFIG_BFIN_SPI_IMG_SIZE 0x40000
141# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400142# define UBOOT_ENV_UPDATE \
Marek Vasut0b3176c2012-09-23 17:41:24 +0200143 "sf probe " __stringify(BFIN_BOOT_SPI_SSEL) ";" \
144 "sf erase 0 " __stringify(CONFIG_BFIN_SPI_IMG_SIZE) ";" \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400145 "sf write $(loadaddr) 0 $(filesize)"
146# endif
147# elif (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_NAND)
148# define UBOOT_ENV_UPDATE \
149 "nand unlock 0 0x40000;" \
150 "nand erase 0 0x40000;" \
151 "nand write $(loadaddr) 0 0x40000"
152# else
Sonic Zhang9e469b42012-08-16 12:08:31 +0800153# ifndef UBOOT_ENV_UPDATE
154# define UBOOT_ENV_UPDATE \
Robin Getz09bbcb32009-07-10 18:37:15 +0000155 "protect off 0x20000000 +$(filesize);" \
156 "erase 0x20000000 +$(filesize);" \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400157 "cp.b $(loadaddr) 0x20000000 $(filesize)"
Sonic Zhang9e469b42012-08-16 12:08:31 +0800158# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400159# endif
Robin Getz18576a62009-12-21 15:31:08 -0500160# ifdef CONFIG_NETCONSOLE
161# define NETCONSOLE_ENV \
162 "nc=" \
163 "set ncip ${serverip};" \
164 "set stdin nc;" \
Mike Frysinger5b44c612011-06-24 20:58:13 -0400165 "set stdout nc;" \
166 "set stderr nc" \
Robin Getz18576a62009-12-21 15:31:08 -0500167 "\0"
168# else
169# define NETCONSOLE_ENV
170# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400171# define NETWORK_ENV_SETTINGS \
Robin Getz18576a62009-12-21 15:31:08 -0500172 NETCONSOLE_ENV \
173 \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400174 "ubootfile=" UBOOT_ENV_FILE "\0" \
175 "update=" \
176 "tftp $(loadaddr) $(ubootfile);" \
177 UBOOT_ENV_UPDATE \
178 "\0" \
179 "addip=set bootargs $(bootargs) " \
180 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):" \
181 "$(hostname):eth0:off" \
182 "\0" \
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400183 \
184 "ramfile=uImage\0" \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400185 "ramargs=set bootargs " CONFIG_BOOTARGS "\0" \
186 "ramboot=" \
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400187 "tftp $(loadaddr) $(ramfile);" \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400188 "run ramargs;" \
189 "run addip;" \
190 "bootm" \
191 "\0" \
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400192 \
193 "nfsfile=vmImage\0" \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400194 "nfsargs=set bootargs " \
195 "root=/dev/nfs rw " \
196 "nfsroot=$(serverip):$(rootpath),tcp,nfsvers=3" \
197 "\0" \
198 "nfsboot=" \
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400199 "tftp $(loadaddr) $(nfsfile);" \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400200 "run nfsargs;" \
201 "run addip;" \
202 "bootm" \
203 "\0"
204#else
205# define NETWORK_ENV_SETTINGS
206#endif
Mike Frysingerdc173e02010-09-19 16:27:24 -0400207#ifndef BOARD_ENV_SETTINGS
208# define BOARD_ENV_SETTINGS
209#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400210#define CONFIG_EXTRA_ENV_SETTINGS \
Mike Frysingera76bd0d2009-04-13 05:52:45 -0400211 NAND_ENV_SETTINGS \
Mike Frysinger62d2a232008-06-01 09:09:48 -0400212 NETWORK_ENV_SETTINGS \
Mike Frysingerdc173e02010-09-19 16:27:24 -0400213 FLASHBOOT_ENV_SETTINGS \
214 BOARD_ENV_SETTINGS
Mike Frysinger62d2a232008-06-01 09:09:48 -0400215
216/*
217 * Network Settings
218 */
219#ifdef CONFIG_CMD_NET
Mike Frysinger62d2a232008-06-01 09:09:48 -0400220# define CONFIG_NETMASK 255.255.255.0
Mike Frysinger7c9a4612010-09-20 15:14:58 -0400221# ifndef CONFIG_IPADDR
222# define CONFIG_IPADDR 192.168.0.15
223# define CONFIG_GATEWAYIP 192.168.0.1
224# define CONFIG_SERVERIP 192.168.0.2
225# endif
226# ifndef CONFIG_ROOTPATH
Joe Hershberger257ff782011-10-13 13:03:47 +0000227# define CONFIG_ROOTPATH "/romfs"
Mike Frysinger7c9a4612010-09-20 15:14:58 -0400228# endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400229# ifdef CONFIG_CMD_DHCP
230# ifndef CONFIG_SYS_AUTOLOAD
231# define CONFIG_SYS_AUTOLOAD "no"
232# endif
233# endif
Mike Frysinger06c3c802010-06-13 12:47:52 -0400234# define CONFIG_IP_DEFRAG
Mike Frysinger62d2a232008-06-01 09:09:48 -0400235# define CONFIG_NET_RETRY_COUNT 20
236#endif
237
Mike Frysinger07145b42009-04-24 17:11:47 -0400238/*
Mike Frysingerb86dd602011-06-05 20:18:43 -0400239 * Flash Settings
240 */
241#define CONFIG_FLASH_SHOW_PROGRESS 45
242
243/*
Mike Frysingercf01ec92010-09-19 16:26:55 -0400244 * SPI Settings
245 */
246#ifdef CONFIG_SPI_FLASH_ALL
Mike Frysingercf01ec92010-09-19 16:26:55 -0400247#endif
248
249/*
Mike Frysinger8bb1a0e2010-06-08 16:18:00 -0400250 * I2C Settings
251 */
Scott Jiang80d27fa2014-11-13 15:30:55 +0800252#if defined(CONFIG_SYS_I2C) || defined(CONFIG_SYS_I2C_SOFT)
Mike Frysinger8bb1a0e2010-06-08 16:18:00 -0400253# ifndef CONFIG_SYS_I2C_SPEED
254# define CONFIG_SYS_I2C_SPEED 50000
255# endif
256# ifndef CONFIG_SYS_I2C_SLAVE
257# define CONFIG_SYS_I2C_SLAVE 0
258# endif
259#endif
260
261/*
Mike Frysinger07145b42009-04-24 17:11:47 -0400262 * Misc Settings
263 */
Mike Frysingercc64ba62010-10-19 18:02:43 -0400264#ifndef CONFIG_BOARD_SIZE_LIMIT
265# define CONFIG_BOARD_SIZE_LIMIT $$(( 256 * 1024 ))
266#endif
Mike Frysinger9c7c6152010-06-02 06:13:50 -0400267#define CONFIG_BFIN_SPI_GPIO_CS /* Only matters if BFIN_SPI is enabled */
Mike Frysinger07145b42009-04-24 17:11:47 -0400268#define CONFIG_LZMA
Mike Frysinger6b10ac22011-01-10 00:19:47 -0500269#define CONFIG_MONITOR_IS_IN_RAM
Sonic Zhangcde8cef2013-04-07 18:02:37 +0800270#ifdef CONFIG_HW_WATCHDOG
271# define CONFIG_BFIN_WATCHDOG
272# ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS
273# define CONFIG_WATCHDOG_TIMEOUT_MSECS 5000
274# endif
275#endif
Sonic Zhang3edc3f32013-05-02 13:46:21 +0800276#ifndef CONFIG_ADI_GPIO2
277# define CONFIG_ADI_GPIO1
278#endif
Mike Frysinger62d2a232008-06-01 09:09:48 -0400279#endif