1 /*
2  * (C) Copyright 2011 Logic Product Development <www.logicpd.com>
3  *	Peter Barada <peter.barada@logicpd.com>
4  *
5  * Configuration settings for the Logic OMAP35x/DM37x SOM LV/Torpedo
6  * reference boards.
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13 
14 /* High Level Configuration Options */
15 
16 #define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
17 
18 #include <configs/ti_omap3_common.h>
19 
20 #ifdef CONFIG_SPL_BUILD
21 /*
22  * Disable MMC DM for SPL build and can be re-enabled after adding
23  * DM support in SPL
24  */
25 #undef CONFIG_DM_MMC
26 #undef OMAP_HSMMC_USE_GPIO
27 
28 /* select serial console configuration for SPL */
29 #undef CONFIG_CONS_INDEX
30 #define CONFIG_CONS_INDEX              1
31 #define CONFIG_SYS_NS16550_COM1                OMAP34XX_UART1
32 #endif
33 
34 
35 /*
36  * We are only ever GP parts and will utilize all of the "downloaded image"
37  * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB) in
38  * order to allow for BCH8 to fit in.
39  */
40 #undef CONFIG_SPL_TEXT_BASE
41 #define CONFIG_SPL_FRAMEWORK
42 #define CONFIG_SPL_TEXT_BASE		0x40200000
43 
44 #define CONFIG_MISC_INIT_R		/* misc_init_r dumps the die id */
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 /* Hardware drivers */
51 
52 #define CONFIG_USB_OMAP3
53 
54 /* I2C */
55 #define CONFIG_SYS_I2C_EEPROM_ADDR	0x50	/* EEPROM AT24C64      */
56 
57 /* USB */
58 #define CONFIG_USB_MUSB_OMAP2PLUS
59 #define CONFIG_USB_MUSB_PIO_ONLY
60 #define CONFIG_USB_ETHER
61 #define CONFIG_USB_ETHER_RNDIS
62 #define CONFIG_USB_FUNCTION_FASTBOOT
63 #define CONFIG_CMD_FASTBOOT
64 #define CONFIG_ANDROID_BOOT_IMAGE
65 #define CONFIG_FASTBOOT_BUF_ADDR	CONFIG_SYS_LOAD_ADDR
66 #define CONFIG_FASTBOOT_BUF_SIZE	0x07000000
67 
68 /* TWL4030 */
69 #define CONFIG_TWL4030_USB
70 
71 /* Board NAND Info. */
72 #ifdef CONFIG_NAND
73 #define CONFIG_NAND_OMAP_GPMC
74 
75 #define CONFIG_SYS_NAND_ADDR		NAND_BASE /* physical address */
76 						  /* to access nand */
77 #define CONFIG_SYS_MAX_NAND_DEVICE	1	  /* Max number of */
78 						  /* NAND devices */
79 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
80 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
81 #define CONFIG_SYS_NAND_PAGE_COUNT	64
82 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
83 #define CONFIG_SYS_NAND_OOBSIZE		64
84 #define CONFIG_SYS_NAND_BLOCK_SIZE	(128 * 1024)
85 #define CONFIG_SYS_NAND_BAD_BLOCK_POS	NAND_LARGE_BADBLOCK_POS
86 #define CONFIG_SYS_NAND_ECCPOS		{2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, \
87 					 13, 14, 16, 17, 18, 19, 20, 21, 22, \
88 					 23, 24, 25, 26, 27, 28, 30, 31, 32, \
89 					 33, 34, 35, 36, 37, 38, 39, 40, 41, \
90 					 42, 44, 45, 46, 47, 48, 49, 50, 51, \
91 					 52, 53, 54, 55, 56}
92 
93 #define CONFIG_SYS_NAND_ECCSIZE		512
94 #define CONFIG_SYS_NAND_ECCBYTES	13
95 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
96 #define CONFIG_BCH
97 #define CONFIG_SYS_NAND_MAX_OOBFREE	2
98 #define CONFIG_SYS_NAND_MAX_ECCPOS	56
99 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
100 #define CONFIG_MTD_DEVICE		/* needed for mtdparts commands */
101 #define CONFIG_MTD_PARTITIONS		/* required for UBI partition support */
102 #define MTDIDS_DEFAULT			"nand0=omap2-nand.0"
103 #define MTDPARTS_DEFAULT	"mtdparts=omap2-nand.0:"\
104 							"512k(MLO),"\
105 							"1792k(u-boot),"\
106 							"128k(spl-os)," \
107 							"128k(u-boot-env),"\
108 							"6m(kernel),-(fs)"
109 #endif
110 
111 /* Environment information */
112 
113 #define CONFIG_PREBOOT \
114 	"setenv preboot;"						\
115 	"nand unlock;"							\
116 	"saveenv;"
117 
118 #define CONFIG_EXTRA_ENV_SETTINGS \
119 	DEFAULT_LINUX_BOOT_ENV \
120 	"mtdids=" MTDIDS_DEFAULT "\0"	\
121 	"mtdparts=" MTDPARTS_DEFAULT "\0" \
122 	"mmcdev=0\0" \
123 	"mmcroot=/dev/mmcblk0p2 rw\0" \
124 	"mmcrootfstype=ext4 rootwait\0" \
125 	"nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
126 	"nandrootfstype=ubifs rootwait\0" \
127 	"autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
128 			"if run loadbootscript; then " \
129 				"run bootscript; " \
130 			"else " \
131 				"run defaultboot;" \
132 			"fi; " \
133 		"else run defaultboot; fi\0" \
134 	"defaultboot=run mmcramboot\0" \
135 	"consoledevice=ttyO0\0" \
136 	"setconsole=setenv console ${consoledevice},${baudrate}n8\0" \
137 	"dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \
138 	"rotation=0\0" \
139 	"vrfb_arg=if itest ${rotation} -ne 0; then " \
140 		"setenv bootargs ${bootargs} omapfb.vrfb=y " \
141 		"omapfb.rotate=${rotation}; " \
142 		"fi\0" \
143 	"optargs=ignore_loglevel early_printk no_console_suspend\0" \
144 	"common_bootargs=run setconsole; setenv bootargs " \
145 		"${bootargs} "\
146 		"console=${console} " \
147 		"${mtdparts} "\
148 		"${optargs}; " \
149 		"run vrfb_arg\0" \
150 	"loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
151 	"bootscript=echo 'Running bootscript from mmc ...'; " \
152 		"source ${loadaddr}\0" \
153 	"loadimage=mmc rescan; " \
154 		"load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
155 	"ramdisksize=64000\0" \
156 	"ramdiskimage=rootfs.ext2.gz.uboot\0" \
157 	"loadramdisk=mmc rescan; " \
158 		"load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
159 	"ramargs=setenv bootargs "\
160 		"root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
161 	"mmcargs=setenv bootargs "\
162 		"root=${mmcroot} rootfstype=${mmcrootfstype}\0" \
163 	"nandargs=setenv bootargs "\
164 		"root=${nandroot} " \
165 		"rootfstype=${nandrootfstype}\0" \
166 	"nfsargs=setenv serverip ${tftpserver}; " \
167 		"setenv bootargs root=/dev/nfs " \
168 		"nfsroot=${nfsrootpath} " \
169 		"ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
170 	"nfsrootpath=/opt/nfs-exports/omap\0" \
171 	"autoload=no\0" \
172 	"loadfdt=mmc rescan; " \
173 		"load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
174 	"mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
175 		"run mmcargs; " \
176 		"run common_bootargs; " \
177 		"run dump_bootargs; " \
178 		"run loadimage; " \
179 		"run loadfdt;\0 " \
180 	"mmcbootz=setenv bootfile zImage; " \
181 		"run mmcbootcommon; "\
182 		"bootz ${loadaddr} - ${fdtaddr}\0" \
183 	"mmcboot=setenv bootfile uImage; "\
184 		"run mmcbootcommon; "\
185 		"bootm ${loadaddr} - ${fdtaddr}\0" \
186 	"mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
187 		"run ramargs; " \
188 		"run common_bootargs; " \
189 		"run dump_bootargs; " \
190 		"run loadimage; " \
191 		"run loadfdt; " \
192 		"run loadramdisk\0" \
193 	"mmcramboot=setenv bootfile uImage; " \
194 		"run mmcrambootcommon; " \
195 		"bootm ${loadaddr} ${rdaddr} ${fdtimage}\0" \
196 	"mmcrambootz=setenv bootfile zImage; " \
197 		"run mmcrambootcommon; " \
198 		"bootz ${loadaddr} ${rdaddr} ${fdtimage}\0" \
199 	"tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
200 		"run ramargs; " \
201 		"run common_bootargs; " \
202 		"run dump_bootargs; " \
203 		"tftpboot ${loadaddr} ${zimage}; " \
204 		"tftpboot ${rdaddr} ${ramdiskimage}; " \
205 		"bootm ${loadaddr} ${rdaddr}\0" \
206 	"tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
207 		"dhcp;" \
208 		"run nfsargs;" \
209 		"run common_bootargs;" \
210 		"run dump_bootargs;" \
211 		"tftpboot $loadaddr zImage;" \
212 		"bootz $loadaddr\0" \
213 	"nandbootcommon=echo 'Booting kernel from NAND...';" \
214 		"nand unlock;" \
215 		"run nandargs;" \
216 		"run common_bootargs;" \
217 		"run dump_bootargs;" \
218 		"nand read ${loadaddr} kernel;" \
219 		"nand read ${fdtaddr} spl-os;\0" \
220 	"nandbootz=run nandbootcommon; "\
221 		"bootz ${loadaddr} - ${fdtaddr}\0"\
222 	"nandboot=run nandbootcommon; "\
223 		"bootm ${loadaddr} - ${fdtaddr}\0"\
224 
225 #define CONFIG_BOOTCOMMAND \
226 	"run autoboot"
227 
228 /* Miscellaneous configurable options */
229 
230 /* memtest works on */
231 #define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
232 #define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + \
233 					0x01F00000) /* 31MB */
234 
235 /* FLASH and environment organization */
236 
237 /* **** PISMO SUPPORT *** */
238 #if defined(CONFIG_CMD_NAND)
239 #define CONFIG_SYS_FLASH_BASE		NAND_BASE
240 #endif
241 
242 /* Monitor at start of flash */
243 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE
244 
245 #define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB */
246 #define SMNAND_ENV_OFFSET		0x260000 /* environment starts here */
247 
248 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
249 #define CONFIG_ENV_OFFSET		SMNAND_ENV_OFFSET
250 #define CONFIG_ENV_ADDR			SMNAND_ENV_OFFSET
251 
252 /* SMSC922x Ethernet */
253 #if defined(CONFIG_CMD_NET)
254 #define CONFIG_SMC911X
255 #define CONFIG_SMC911X_32_BIT
256 #define CONFIG_SMC911X_BASE	0x08000000
257 #endif /* (CONFIG_CMD_NET) */
258 
259 /* Defines for SPL */
260 
261 #define CONFIG_SPL_OMAP3_ID_NAND
262 
263 /* NAND: SPL falcon mode configs */
264 #ifdef CONFIG_SPL_OS_BOOT
265 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS	0x280000
266 #endif
267 
268 #endif /* __CONFIG_H */
269