xref: /rk3399_rockchip-uboot/include/configs/omap3_logic.h (revision 5e8564cf419797f9095431e6eb6f0c00dfa423d2)
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 
62 /* TWL4030 */
63 #define CONFIG_TWL4030_USB
64 
65 /* Board NAND Info. */
66 #ifdef CONFIG_NAND
67 #define CONFIG_SYS_NAND_ADDR		NAND_BASE /* physical address */
68 						  /* to access nand */
69 #define CONFIG_SYS_MAX_NAND_DEVICE	1	  /* Max number of */
70 						  /* NAND devices */
71 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
72 #define CONFIG_SYS_NAND_PAGE_COUNT	64
73 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
74 #define CONFIG_SYS_NAND_OOBSIZE		64
75 #define CONFIG_SYS_NAND_BLOCK_SIZE	(128 * 1024)
76 #define CONFIG_SYS_NAND_BAD_BLOCK_POS	NAND_LARGE_BADBLOCK_POS
77 #define CONFIG_SYS_NAND_ECCPOS		{2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, \
78 					 13, 14, 16, 17, 18, 19, 20, 21, 22, \
79 					 23, 24, 25, 26, 27, 28, 30, 31, 32, \
80 					 33, 34, 35, 36, 37, 38, 39, 40, 41, \
81 					 42, 44, 45, 46, 47, 48, 49, 50, 51, \
82 					 52, 53, 54, 55, 56}
83 
84 #define CONFIG_SYS_NAND_ECCSIZE		512
85 #define CONFIG_SYS_NAND_ECCBYTES	13
86 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
87 #define CONFIG_SYS_NAND_MAX_OOBFREE	2
88 #define CONFIG_SYS_NAND_MAX_ECCPOS	56
89 #define CONFIG_MTD_DEVICE		/* needed for mtdparts commands */
90 #define CONFIG_MTD_PARTITIONS		/* required for UBI partition support */
91 #define MTDIDS_DEFAULT			"nand0=omap2-nand.0"
92 #define MTDPARTS_DEFAULT	"mtdparts=omap2-nand.0:"\
93 							"512k(MLO),"\
94 							"1792k(u-boot),"\
95 							"128k(spl-os)," \
96 							"128k(u-boot-env),"\
97 							"6m(kernel),-(fs)"
98 #endif
99 
100 /* Environment information */
101 
102 #define CONFIG_PREBOOT \
103 	"setenv preboot;"						\
104 	"nand unlock;"							\
105 	"saveenv;"
106 
107 #define CONFIG_EXTRA_ENV_SETTINGS \
108 	DEFAULT_LINUX_BOOT_ENV \
109 	"mtdids=" MTDIDS_DEFAULT "\0"	\
110 	"mtdparts=" MTDPARTS_DEFAULT "\0" \
111 	"mmcdev=0\0" \
112 	"mmcroot=/dev/mmcblk0p2 rw\0" \
113 	"mmcrootfstype=ext4 rootwait\0" \
114 	"nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
115 	"nandrootfstype=ubifs rootwait\0" \
116 	"autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
117 			"if run loadbootscript; then " \
118 				"run bootscript; " \
119 			"else " \
120 				"run defaultboot;" \
121 			"fi; " \
122 		"else run defaultboot; fi\0" \
123 	"defaultboot=run mmcramboot\0" \
124 	"consoledevice=ttyO0\0" \
125 	"setconsole=setenv console ${consoledevice},${baudrate}n8\0" \
126 	"dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \
127 	"rotation=0\0" \
128 	"vrfb_arg=if itest ${rotation} -ne 0; then " \
129 		"setenv bootargs ${bootargs} omapfb.vrfb=y " \
130 		"omapfb.rotate=${rotation}; " \
131 		"fi\0" \
132 	"optargs=ignore_loglevel early_printk no_console_suspend\0" \
133 	"common_bootargs=run setconsole; setenv bootargs " \
134 		"${bootargs} "\
135 		"console=${console} " \
136 		"${mtdparts} "\
137 		"${optargs}; " \
138 		"run vrfb_arg\0" \
139 	"loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
140 	"bootscript=echo 'Running bootscript from mmc ...'; " \
141 		"source ${loadaddr}\0" \
142 	"loadimage=mmc rescan; " \
143 		"load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
144 	"ramdisksize=64000\0" \
145 	"ramdiskimage=rootfs.ext2.gz.uboot\0" \
146 	"loadramdisk=mmc rescan; " \
147 		"load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
148 	"ramargs=setenv bootargs "\
149 		"root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
150 	"mmcargs=setenv bootargs "\
151 		"root=${mmcroot} rootfstype=${mmcrootfstype}\0" \
152 	"nandargs=setenv bootargs "\
153 		"root=${nandroot} " \
154 		"rootfstype=${nandrootfstype}\0" \
155 	"nfsargs=setenv serverip ${tftpserver}; " \
156 		"setenv bootargs root=/dev/nfs " \
157 		"nfsroot=${nfsrootpath} " \
158 		"ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
159 	"nfsrootpath=/opt/nfs-exports/omap\0" \
160 	"autoload=no\0" \
161 	"loadfdt=mmc rescan; " \
162 		"load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
163 	"mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
164 		"run mmcargs; " \
165 		"run common_bootargs; " \
166 		"run dump_bootargs; " \
167 		"run loadimage; " \
168 		"run loadfdt;\0 " \
169 	"mmcbootz=setenv bootfile zImage; " \
170 		"run mmcbootcommon; "\
171 		"bootz ${loadaddr} - ${fdtaddr}\0" \
172 	"mmcboot=setenv bootfile uImage; "\
173 		"run mmcbootcommon; "\
174 		"bootm ${loadaddr} - ${fdtaddr}\0" \
175 	"mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
176 		"run ramargs; " \
177 		"run common_bootargs; " \
178 		"run dump_bootargs; " \
179 		"run loadimage; " \
180 		"run loadfdt; " \
181 		"run loadramdisk\0" \
182 	"mmcramboot=setenv bootfile uImage; " \
183 		"run mmcrambootcommon; " \
184 		"bootm ${loadaddr} ${rdaddr} ${fdtimage}\0" \
185 	"mmcrambootz=setenv bootfile zImage; " \
186 		"run mmcrambootcommon; " \
187 		"bootz ${loadaddr} ${rdaddr} ${fdtimage}\0" \
188 	"tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
189 		"run ramargs; " \
190 		"run common_bootargs; " \
191 		"run dump_bootargs; " \
192 		"tftpboot ${loadaddr} ${zimage}; " \
193 		"tftpboot ${rdaddr} ${ramdiskimage}; " \
194 		"bootm ${loadaddr} ${rdaddr}\0" \
195 	"tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
196 		"dhcp;" \
197 		"run nfsargs;" \
198 		"run common_bootargs;" \
199 		"run dump_bootargs;" \
200 		"tftpboot $loadaddr zImage;" \
201 		"bootz $loadaddr\0" \
202 	"nandbootcommon=echo 'Booting kernel from NAND...';" \
203 		"nand unlock;" \
204 		"run nandargs;" \
205 		"run common_bootargs;" \
206 		"run dump_bootargs;" \
207 		"nand read ${loadaddr} kernel;" \
208 		"nand read ${fdtaddr} spl-os;\0" \
209 	"nandbootz=run nandbootcommon; "\
210 		"bootz ${loadaddr} - ${fdtaddr}\0"\
211 	"nandboot=run nandbootcommon; "\
212 		"bootm ${loadaddr} - ${fdtaddr}\0"\
213 
214 #define CONFIG_BOOTCOMMAND \
215 	"run autoboot"
216 
217 /* Miscellaneous configurable options */
218 
219 /* memtest works on */
220 #define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
221 #define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + \
222 					0x01F00000) /* 31MB */
223 
224 /* FLASH and environment organization */
225 
226 /* **** PISMO SUPPORT *** */
227 #if defined(CONFIG_CMD_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_ENV_SIZE			(128 << 10)	/* 128 KiB */
235 #define SMNAND_ENV_OFFSET		0x260000 /* environment starts here */
236 
237 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
238 #define CONFIG_ENV_OFFSET		SMNAND_ENV_OFFSET
239 #define CONFIG_ENV_ADDR			SMNAND_ENV_OFFSET
240 
241 /* SMSC922x Ethernet */
242 #if defined(CONFIG_CMD_NET)
243 #define CONFIG_SMC911X
244 #define CONFIG_SMC911X_32_BIT
245 #define CONFIG_SMC911X_BASE	0x08000000
246 #endif /* (CONFIG_CMD_NET) */
247 
248 /* Defines for SPL */
249 
250 /* NAND: SPL falcon mode configs */
251 #ifdef CONFIG_SPL_OS_BOOT
252 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS	0x280000
253 #endif
254 
255 #endif /* __CONFIG_H */
256