xref: /openbmc/u-boot/include/configs/am3517_evm.h (revision fb740646)
1 /*
2  * am3517_evm.h - Default configuration for AM3517 EVM board.
3  *
4  * Author: Vaibhav Hiremath <hvaibhav@ti.com>
5  *
6  * Based on omap3_evm_config.h
7  *
8  * Copyright (C) 2010 Texas Instruments Incorporated
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #ifndef __CONFIG_H
14 #define __CONFIG_H
15 
16 #define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
17 
18 /*
19  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
20  * 64 bytes before this address should be set aside for u-boot.img's
21  * header. That is 0x800FFFC0--0x80100000 should not be used for any
22  * other needs.
23  */
24 
25 #define CONFIG_SYS_TEXT_BASE		0x80100000
26 #define CONFIG_SYS_SPL_MALLOC_START	0x80208000
27 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000
28 
29 #include <configs/ti_omap3_common.h>
30 #undef CONFIG_SDRC	/* Disable SDRC since we have EMIF4 */
31 
32 #define CONFIG_MISC_INIT_R
33 #define CONFIG_REVISION_TAG
34 
35 /* Hardware drivers */
36 
37 /* allow to overwrite serial and ethaddr */
38 #define CONFIG_ENV_OVERWRITE
39 
40 /*
41  * USB configuration
42  * Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard
43  * Enable CONFIG_USB_MUSB_GADGET for Device functionalities.
44  */
45 #define CONFIG_USB_MUSB_AM35X
46 #define CONFIG_USB_MUSB_PIO_ONLY
47 
48 #ifdef CONFIG_USB_MUSB_AM35X
49 
50 #ifdef CONFIG_USB_MUSB_HOST
51 
52 #ifdef CONFIG_USB_KEYBOARD
53 #define CONFIG_PREBOOT "usb start"
54 #endif /* CONFIG_USB_KEYBOARD */
55 
56 #endif /* CONFIG_USB_MUSB_HOST */
57 
58 #ifdef CONFIG_USB_MUSB_GADGET
59 #define CONFIG_USB_ETHER
60 #define CONFIG_USB_ETH_RNDIS
61 #endif /* CONFIG_USB_MUSB_GADGET */
62 
63 #endif /* CONFIG_USB_MUSB_AM35X */
64 
65 /* I2C */
66 #define CONFIG_SYS_OMAP24_I2C_SPEED	100000
67 #define CONFIG_SYS_OMAP24_I2C_SLAVE	1
68 
69 /* Ethernet */
70 #define CONFIG_DRIVER_TI_EMAC
71 #define CONFIG_DRIVER_TI_EMAC_USE_RMII
72 #define CONFIG_MII
73 #define CONFIG_BOOTP_DEFAULT
74 #define CONFIG_BOOTP_DNS
75 #define CONFIG_BOOTP_DNS2
76 #define CONFIG_BOOTP_SEND_HOSTNAME
77 #define CONFIG_NET_RETRY_COUNT		10
78 
79 /* Board NAND Info. */
80 #ifdef CONFIG_NAND
81 #define CONFIG_NAND_OMAP_GPMC_PREFETCH
82 #define CONFIG_SYS_NAND_ADDR		NAND_BASE	/* physical address */
83 							/* to access nand */
84 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
85 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
86 #define CONFIG_SYS_NAND_PAGE_COUNT	64
87 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
88 #define CONFIG_SYS_NAND_OOBSIZE		64
89 #define CONFIG_SYS_NAND_BLOCK_SIZE	(128 * 1024)
90 #define CONFIG_SYS_NAND_BAD_BLOCK_POS	NAND_LARGE_BADBLOCK_POS
91 #define CONFIG_SYS_NAND_ECCPOS		{ 2,  3,  4,  5,  6,  7,  8,  9, 10, \
92 					 11, 12, 13, 14, 16, 17, 18, 19, 20, \
93 					 21, 22, 23, 24, 25, 26, 27, 28, 30, \
94 					 31, 32, 33, 34, 35, 36, 37, 38, 39, \
95 					 40, 41, 42, 44, 45, 46, 47, 48, 49, \
96 					 50, 51, 52, 53, 54, 55, 56 }
97 
98 #define CONFIG_SYS_NAND_ECCSIZE		512
99 #define CONFIG_SYS_NAND_ECCBYTES	13
100 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
101 #define CONFIG_SYS_NAND_MAX_OOBFREE	2
102 #define CONFIG_SYS_NAND_MAX_ECCPOS	56
103 #define CONFIG_SYS_NAND_U_BOOT_START	CONFIG_SYS_TEXT_BASE
104 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
105 #define CONFIG_MTD_PARTITIONS		/* required for UBI partition support */
106 #define CONFIG_MTD_DEVICE		/* needed for mtdparts commands */
107 /* NAND block size is 128 KiB.  Synchronize these values with
108  * corresponding Device Tree entries in Linux:
109  *  MLO(SPL)             4 * NAND_BLOCK_SIZE = 512 KiB  @ 0x000000
110  *  U-Boot              15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
111  *  U-Boot environment   2 * NAND_BLOCK_SIZE = 256 KiB  @ 0x260000
112  *  Kernel              64 * NAND_BLOCK_SIZE = 8 MiB    @ 0x2A0000
113  *  DTB                  4 * NAND_BLOCK_SIZE = 512 KiB  @ 0xAA0000
114  *  RootFS              Remaining Flash Space           @ 0xB20000
115  */
116 #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
117 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:"	\
118 	"512k(MLO),"					\
119 	"1920k(u-boot),"				\
120 	"256k(u-boot-env),"				\
121 	"8m(kernel),"					\
122 	"512k(dtb),"					\
123 	"-(rootfs)"
124 #else
125 #define MTDIDS_DEFAULT
126 #define MTDPARTS_DEFAULT
127 #endif /* CONFIG_NAND */
128 
129 /* Environment information */
130 
131 #define CONFIG_BOOTFILE		"uImage"
132 
133 #define CONFIG_EXTRA_ENV_SETTINGS \
134 	"loadaddr=0x82000000\0" \
135 	"console=ttyO2,115200n8\0" \
136 	"fdtfile=am3517-evm.dtb\0" \
137 	"fdtaddr=0x82C00000\0" \
138 	"vram=16M\0" \
139 	"bootenv=uEnv.txt\0" \
140 	"cmdline=\0" \
141 	"optargs=\0" \
142 	"mtdids=" MTDIDS_DEFAULT "\0" \
143 	"mtdparts=" MTDPARTS_DEFAULT "\0" \
144 	"mmcdev=0\0" \
145 	"mmcpart=1\0" \
146 	"mmcroot=/dev/mmcblk0p2 rw\0" \
147 	"mmcrootfstype=ext4 rootwait fixrtc\0" \
148 	"mmcargs=setenv bootargs console=${console} " \
149 		"${mtdparts} " \
150 		"${optargs} " \
151 		"root=${mmcroot} " \
152 		"rootfstype=${mmcrootfstype} " \
153 		"${cmdline}\0" \
154 	"nandargs=setenv bootargs console=${console} " \
155 		"${mtdparts} " \
156 		"${optargs} " \
157 		"root=ubi0:rootfs rw ubi.mtd=rootfs " \
158 		"rootfstype=ubifs rootwait " \
159 		"${cmdline}\0" \
160 	"loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
161 	"importbootenv=echo Importing environment from mmc ...; " \
162 		"env import -t ${loadaddr} ${filesize}\0" \
163 	"bootscript=echo Running bootscript from mmc ...; " \
164 		"source ${loadaddr}\0" \
165 	"loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
166 	"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
167 	"mmcboot=echo Booting from mmc ...; " \
168 		"run mmcargs; " \
169 		"bootz ${loadaddr} - ${fdtaddr}\0" \
170 	"nandboot=echo Booting from nand ...; " \
171 		"run nandargs; " \
172 		"nand read ${loadaddr} 2a0000 800000; " \
173 		"nand read ${fdtaddr} aa0000 80000; " \
174 		"bootm ${loadaddr} - ${fdtaddr}\0" \
175 
176 #define CONFIG_BOOTCOMMAND \
177 	"mmc dev ${mmcdev}; if mmc rescan; then " \
178 		"echo SD/MMC found on device $mmcdev; " \
179 		"if run loadbootenv; then " \
180 			"run importbootenv; " \
181 		"fi; " \
182 		"echo Checking if uenvcmd is set ...; " \
183 		"if test -n $uenvcmd; then " \
184 			"echo Running uenvcmd ...; " \
185 			"run uenvcmd; " \
186 		"fi; " \
187 		"echo Running default loadimage ...; " \
188 		"setenv bootfile zImage; " \
189 		"if run loadimage; then " \
190 			"run loadfdt; " \
191 			"run mmcboot; " \
192 		"fi; " \
193 	"else run nandboot; fi"
194 
195 /* Miscellaneous configurable options */
196 #define CONFIG_AUTO_COMPLETE
197 #define CONFIG_CMDLINE_EDITING
198 #define CONFIG_SYS_LONGHELP
199 
200 /* We set the max number of command args high to avoid HUSH bugs. */
201 #define CONFIG_SYS_MAXARGS		64
202 
203 /* Print Buffer Size */
204 #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE \
205 					+ sizeof(CONFIG_SYS_PROMPT) + 16)
206 /* Boot Argument Buffer Size */
207 #define CONFIG_SYS_BARGSIZE		CONFIG_SYS_CBSIZE
208 
209 /* memtest works on */
210 #define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
211 #define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + \
212 					0x01F00000) /* 31MB */
213 
214 /* Physical Memory Map */
215 #define CONFIG_SYS_CS0_SIZE		(256 * 1024 * 1024)
216 #define CONFIG_SYS_INIT_RAM_ADDR	0x4020f800
217 #define CONFIG_SYS_INIT_RAM_SIZE	0x800
218 
219 /* FLASH and environment organization */
220 
221 /* **** PISMO SUPPORT *** */
222 #define CONFIG_SYS_MAX_FLASH_SECT	520	/* max number of sectors */
223 						/* on one chip */
224 #define CONFIG_SYS_MAX_FLASH_BANKS	2	/* max number of flash banks */
225 #define CONFIG_SYS_MONITOR_LEN		(256 << 10)	/* Reserve 2 sectors */
226 
227 #if defined(CONFIG_NAND)
228 #define CONFIG_SYS_FLASH_BASE		NAND_BASE
229 #endif
230 
231 /* Monitor at start of flash */
232 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE
233 
234 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
235 #define CONFIG_ENV_SIZE			CONFIG_SYS_ENV_SECT_SIZE
236 #define CONFIG_ENV_OFFSET		0x260000
237 #define CONFIG_ENV_ADDR			0x260000
238 
239 /* Defines for SPL */
240 #define CONFIG_SPL_FRAMEWORK
241 #undef CONFIG_SPL_TEXT_BASE
242 #define CONFIG_SPL_TEXT_BASE		0x40200000
243 
244 #undef CONFIG_SPL_BSS_START_ADDR
245 #define CONFIG_SPL_BSS_START_ADDR	0x80000000
246 #define CONFIG_SPL_BSS_MAX_SIZE		0x80000		/* 512 KB */
247 
248 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION	1
249 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME		"u-boot.img"
250 
251 #define CONFIG_SPL_NAND_BASE
252 #define CONFIG_SPL_NAND_DRIVERS
253 #define CONFIG_SPL_NAND_ECC
254 
255 #endif /* __CONFIG_H */
256