xref: /openbmc/u-boot/include/configs/am3517_evm.h (revision 9ec4a67e)
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 /* High Level Configuration Options */
17 
18 #define CONFIG_OMAP
19 
20 #define CONFIG_SYS_NO_FLASH
21 
22 #define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
23 
24 /* Common ARM Erratas */
25 #define CONFIG_ARM_ERRATA_454179
26 #define CONFIG_ARM_ERRATA_430973
27 #define CONFIG_ARM_ERRATA_621766
28 
29 #define CONFIG_EMIF4	/* The chip has EMIF4 controller */
30 
31 /*
32  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
33  * 64 bytes before this address should be set aside for u-boot.img's
34  * header. That is 0x800FFFC0--0x80100000 should not be used for any
35  * other needs.
36  */
37 #define CONFIG_SYS_TEXT_BASE		0x80100000
38 #define CONFIG_SYS_SPL_MALLOC_START	0x80208000
39 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000
40 
41 #include <asm/arch/cpu.h>		/* get chip and board defs */
42 #include <asm/arch/omap.h>
43 
44 #define CONFIG_MISC_INIT_R
45 #define CONFIG_CMDLINE_TAG		/* enable passing of ATAGs */
46 #define CONFIG_SETUP_MEMORY_TAGS
47 #define CONFIG_INITRD_TAG
48 #define CONFIG_REVISION_TAG
49 
50 /* Clock Defines */
51 #define V_OSCK			26000000	/* Clock output from T2 */
52 #define V_SCLK			(V_OSCK >> 1)
53 
54 /* Size of malloc() pool */
55 #define CONFIG_SYS_MALLOC_LEN		(16 << 20)
56 
57 /* Hardware drivers */
58 
59 /* OMAP GPIO configuration */
60 #define CONFIG_OMAP_GPIO
61 
62 /* NS16550 Configuration */
63 #define V_NS16550_CLK			48000000	/* 48MHz (APLL96/2) */
64 #define CONFIG_SYS_NS16550_SERIAL
65 #define CONFIG_SYS_NS16550_REG_SIZE	(-4)
66 #define CONFIG_SYS_NS16550_CLK		V_NS16550_CLK
67 
68 /* select serial console configuration */
69 #define CONFIG_CONS_INDEX		3
70 #define CONFIG_SYS_NS16550_COM3		OMAP34XX_UART3
71 #define CONFIG_SERIAL3			3	/* UART3 on AM3517 EVM */
72 
73 /* allow to overwrite serial and ethaddr */
74 #define CONFIG_ENV_OVERWRITE
75 #define CONFIG_BAUDRATE			115200
76 #define CONFIG_SYS_BAUDRATE_TABLE	{4800, 9600, 19200, 38400, 57600,\
77 					115200}
78 
79 /* SD/MMC */
80 #define CONFIG_MMC
81 #define CONFIG_GENERIC_MMC
82 #define CONFIG_OMAP_HSMMC
83 #define CONFIG_DOS_PARTITION
84 
85 /*
86  * USB configuration
87  * Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard
88  * Enable CONFIG_USB_MUSB_GADGET for Device functionalities.
89  */
90 #define CONFIG_USB_MUSB_AM35X
91 #define CONFIG_USB_MUSB_PIO_ONLY
92 
93 #ifdef CONFIG_USB_MUSB_AM35X
94 
95 #ifdef CONFIG_USB_MUSB_HOST
96 
97 #define CONGIG_CMD_STORAGE
98 
99 #ifdef CONFIG_USB_KEYBOARD
100 #define CONFIG_SYS_USB_EVENT_POLL
101 #define CONFIG_PREBOOT "usb start"
102 #endif /* CONFIG_USB_KEYBOARD */
103 
104 #endif /* CONFIG_USB_MUSB_HOST */
105 
106 #ifdef CONFIG_USB_MUSB_GADGET
107 #define CONFIG_USB_ETHER
108 #define CONFIG_USB_ETH_RNDIS
109 #endif /* CONFIG_USB_MUSB_GADGET */
110 
111 #endif /* CONFIG_USB_MUSB_AM35X */
112 
113 /* commands to include */
114 #define CONFIG_CMD_NAND
115 #define CONFIG_CMD_PART
116 #define CONFIG_CMD_MTDPARTS
117 
118 /* I2C */
119 #define CONFIG_SYS_I2C
120 #define CONFIG_SYS_OMAP24_I2C_SPEED	100000
121 #define CONFIG_SYS_OMAP24_I2C_SLAVE	1
122 #define CONFIG_SYS_I2C_OMAP34XX
123 
124 /* Ethernet */
125 #define CONFIG_DRIVER_TI_EMAC
126 #define CONFIG_DRIVER_TI_EMAC_USE_RMII
127 #define CONFIG_MII
128 #define CONFIG_BOOTP_DEFAULT
129 #define CONFIG_BOOTP_DNS
130 #define CONFIG_BOOTP_DNS2
131 #define CONFIG_BOOTP_SEND_HOSTNAME
132 #define CONFIG_NET_RETRY_COUNT		10
133 
134 /* Board NAND Info. */
135 #ifdef CONFIG_NAND
136 #define CONFIG_NAND_OMAP_GPMC
137 #define CONFIG_NAND_OMAP_GPMC_PREFETCH
138 #define CONFIG_BCH
139 #define CONFIG_CMD_UBIFS		/* Read-only UBI volume operations */
140 #define CONFIG_RBTREE			/* required by CONFIG_CMD_UBI */
141 #define CONFIG_LZO			/* required by CONFIG_CMD_UBIFS */
142 #define CONFIG_SYS_NAND_ADDR		NAND_BASE	/* physical address */
143 							/* to access nand */
144 #define CONFIG_SYS_NAND_BASE		NAND_BASE	/* physical address */
145 							/* to access */
146 							/* nand at CS0 */
147 #define CONFIG_SYS_MAX_NAND_DEVICE	1		/* Max number of */
148 							/* NAND devices */
149 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
150 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
151 #define CONFIG_SYS_NAND_PAGE_COUNT	64
152 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
153 #define CONFIG_SYS_NAND_OOBSIZE		64
154 #define CONFIG_SYS_NAND_BLOCK_SIZE	(128 * 1024)
155 #define CONFIG_SYS_NAND_BAD_BLOCK_POS	NAND_LARGE_BADBLOCK_POS
156 #define CONFIG_SYS_NAND_ECCPOS		{ 2,  3,  4,  5,  6,  7,  8,  9, 10, \
157 					 11, 12, 13, 14, 16, 17, 18, 19, 20, \
158 					 21, 22, 23, 24, 25, 26, 27, 28, 30, \
159 					 31, 32, 33, 34, 35, 36, 37, 38, 39, \
160 					 40, 41, 42, 44, 45, 46, 47, 48, 49, \
161 					 50, 51, 52, 53, 54, 55, 56 }
162 
163 #define CONFIG_SYS_NAND_ECCSIZE		512
164 #define CONFIG_SYS_NAND_ECCBYTES	13
165 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
166 #define CONFIG_SYS_NAND_MAX_OOBFREE	2
167 #define CONFIG_SYS_NAND_MAX_ECCPOS	56
168 #define CONFIG_SYS_NAND_U_BOOT_START	CONFIG_SYS_TEXT_BASE
169 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
170 #define CONFIG_MTD_PARTITIONS		/* required for UBI partition support */
171 #define CONFIG_MTD_DEVICE		/* needed for mtdparts commands */
172 /* NAND block size is 128 KiB.  Synchronize these values with
173  * corresponding Device Tree entries in Linux:
174  *  MLO(SPL)             4 * NAND_BLOCK_SIZE = 512 KiB  @ 0x000000
175  *  U-Boot              15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
176  *  U-Boot environment   2 * NAND_BLOCK_SIZE = 256 KiB  @ 0x260000
177  *  Kernel              64 * NAND_BLOCK_SIZE = 8 MiB    @ 0x2A0000
178  *  DTB                  4 * NAND_BLOCK_SIZE = 512 KiB  @ 0xAA0000
179  *  RootFS              Remaining Flash Space           @ 0xB20000
180  */
181 #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
182 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:"	\
183 	"512k(MLO),"					\
184 	"1920k(u-boot),"				\
185 	"256k(u-boot-env),"				\
186 	"8m(kernel),"					\
187 	"512k(dtb),"					\
188 	"-(rootfs)"
189 #else
190 #define MTDIDS_DEFAULT
191 #define MTDPARTS_DEFAULT
192 #endif /* CONFIG_NAND */
193 
194 /* Environment information */
195 
196 #define CONFIG_BOOTFILE		"uImage"
197 
198 #define CONFIG_EXTRA_ENV_SETTINGS \
199 	"loadaddr=0x82000000\0" \
200 	"console=ttyO2,115200n8\0" \
201 	"fdtfile=am3517-evm.dtb\0" \
202 	"fdtaddr=0x82C00000\0" \
203 	"vram=16M\0" \
204 	"bootenv=uEnv.txt\0" \
205 	"cmdline=\0" \
206 	"optargs=\0" \
207 	"mtdids=" MTDIDS_DEFAULT "\0" \
208 	"mtdparts=" MTDPARTS_DEFAULT "\0" \
209 	"mmcdev=0\0" \
210 	"mmcpart=1\0" \
211 	"mmcroot=/dev/mmcblk0p2 rw\0" \
212 	"mmcrootfstype=ext4 rootwait fixrtc\0" \
213 	"mmcargs=setenv bootargs console=${console} " \
214 		"${mtdparts} " \
215 		"${optargs} " \
216 		"root=${mmcroot} " \
217 		"rootfstype=${mmcrootfstype} " \
218 		"${cmdline}\0" \
219 	"nandargs=setenv bootargs console=${console} " \
220 		"${mtdparts} " \
221 		"${optargs} " \
222 		"root=ubi0:rootfs rw ubi.mtd=rootfs " \
223 		"rootfstype=ubifs rootwait " \
224 		"${cmdline}\0" \
225 	"loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
226 	"importbootenv=echo Importing environment from mmc ...; " \
227 		"env import -t ${loadaddr} ${filesize}\0" \
228 	"bootscript=echo Running bootscript from mmc ...; " \
229 		"source ${loadaddr}\0" \
230 	"loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
231 	"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
232 	"mmcboot=echo Booting from mmc ...; " \
233 		"run mmcargs; " \
234 		"bootz ${loadaddr} - ${fdtaddr}\0" \
235 	"nandboot=echo Booting from nand ...; " \
236 		"run nandargs; " \
237 		"nand read ${loadaddr} 2a0000 800000; " \
238 		"nand read ${fdtaddr} aa0000 80000; " \
239 		"bootm ${loadaddr} - ${fdtaddr}\0" \
240 
241 #define CONFIG_BOOTCOMMAND \
242 	"mmc dev ${mmcdev}; if mmc rescan; then " \
243 		"echo SD/MMC found on device $mmcdev; " \
244 		"if run loadbootenv; then " \
245 			"run importbootenv; " \
246 		"fi; " \
247 		"echo Checking if uenvcmd is set ...; " \
248 		"if test -n $uenvcmd; then " \
249 			"echo Running uenvcmd ...; " \
250 			"run uenvcmd; " \
251 		"fi; " \
252 		"echo Running default loadimage ...; " \
253 		"setenv bootfile zImage; " \
254 		"if run loadimage; then " \
255 			"run loadfdt; " \
256 			"run mmcboot; " \
257 		"fi; " \
258 	"else run nandboot; fi"
259 
260 /* Miscellaneous configurable options */
261 #define CONFIG_AUTO_COMPLETE
262 #define CONFIG_CMDLINE_EDITING
263 #define CONFIG_SYS_LONGHELP
264 #define CONFIG_PARTITION_UUIDS
265 
266 /* We set the max number of command args high to avoid HUSH bugs. */
267 #define CONFIG_SYS_MAXARGS		64
268 
269 /* Console I/O Buffer Size */
270 #define CONFIG_SYS_CBSIZE		512
271 /* Print Buffer Size */
272 #define CONFIG_SYS_PBSIZE		(CONFIG_SYS_CBSIZE \
273 					+ sizeof(CONFIG_SYS_PROMPT) + 16)
274 /* Boot Argument Buffer Size */
275 #define CONFIG_SYS_BARGSIZE		CONFIG_SYS_CBSIZE
276 
277 /* memtest works on */
278 #define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
279 #define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + \
280 					0x01F00000) /* 31MB */
281 
282 #define CONFIG_SYS_LOAD_ADDR		(OMAP34XX_SDRC_CS0) /* default load */
283 								/* address */
284 
285 /*
286  * AM3517 has 12 GP timers, they can be driven by the system clock
287  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
288  * This rate is divided by a local divisor.
289  */
290 #define CONFIG_SYS_TIMERBASE		OMAP34XX_GPT2
291 #define CONFIG_SYS_PTV			2	/* Divisor: 2^(PTV+1) => 8 */
292 
293 /* Physical Memory Map */
294 #define PHYS_SDRAM_1			OMAP34XX_SDRC_CS0
295 #define PHYS_SDRAM_2			OMAP34XX_SDRC_CS1
296 #define CONFIG_SYS_CS0_SIZE		(256 * 1024 * 1024)
297 #define CONFIG_SYS_SDRAM_BASE		PHYS_SDRAM_1
298 #define CONFIG_SYS_INIT_RAM_ADDR	0x4020f800
299 #define CONFIG_SYS_INIT_RAM_SIZE	0x800
300 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_INIT_RAM_ADDR + \
301 					 CONFIG_SYS_INIT_RAM_SIZE - \
302 					 GENERATED_GBL_DATA_SIZE)
303 
304 /* FLASH and environment organization */
305 
306 /* **** PISMO SUPPORT *** */
307 #define CONFIG_SYS_MAX_FLASH_SECT	520	/* max number of sectors */
308 						/* on one chip */
309 #define CONFIG_SYS_MAX_FLASH_BANKS	2	/* max number of flash banks */
310 #define CONFIG_SYS_MONITOR_LEN		(256 << 10)	/* Reserve 2 sectors */
311 
312 #if defined(CONFIG_NAND)
313 #define CONFIG_SYS_FLASH_BASE		NAND_BASE
314 #endif
315 
316 /* Monitor at start of flash */
317 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE
318 
319 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
320 #define CONFIG_ENV_SIZE			CONFIG_SYS_ENV_SECT_SIZE
321 #define SMNAND_ENV_OFFSET		0x260000 /* environment starts here */
322 #define CONFIG_ENV_OFFSET		SMNAND_ENV_OFFSET
323 #define CONFIG_ENV_ADDR			SMNAND_ENV_OFFSET
324 #define CONFIG_ENV_IS_IN_NAND
325 
326 /* Defines for SPL */
327 #define CONFIG_SPL_FRAMEWORK
328 #define CONFIG_SPL_BOARD_INIT
329 #define CONFIG_SPL_NAND_SIMPLE
330 #define CONFIG_SPL_TEXT_BASE		0x40200000
331 #define CONFIG_SPL_MAX_SIZE		(SRAM_SCRATCH_SPACE_ADDR - \
332 					 CONFIG_SPL_TEXT_BASE)
333 
334 #define CONFIG_SPL_BSS_START_ADDR	0x80000000
335 #define CONFIG_SPL_BSS_MAX_SIZE		0x80000		/* 512 KB */
336 
337 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION	1
338 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME		"u-boot.img"
339 
340 #define CONFIG_SPL_NAND_BASE
341 #define CONFIG_SPL_NAND_DRIVERS
342 #define CONFIG_SPL_NAND_ECC
343 #define CONFIG_SPL_LDSCRIPT		"arch/arm/mach-omap2/u-boot-spl.lds"
344 
345 #endif /* __CONFIG_H */
346