xref: /OK3568_Linux_fs/u-boot/include/configs/omap3_beagle.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * (C) Copyright 2006-2008
3  * Texas Instruments.
4  * Richard Woodruff <r-woodruff2@ti.com>
5  * Syed Mohammed Khasim <x0khasim@ti.com>
6  *
7  * Configuration settings for the TI OMAP3530 Beagle board.
8  *
9  * SPDX-License-Identifier:	GPL-2.0+
10  */
11 
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14 
15 #define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
16 
17 /*
18  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
19  * 64 bytes before this address should be set aside for u-boot.img's
20  * header. That is 0x800FFFC0--0x80100000 should not be used for any
21  * other needs.  We use this rather than the inherited defines from
22  * ti_armv7_common.h for backwards compatibility.
23  */
24 #define CONFIG_SYS_TEXT_BASE		0x80100000
25 #define CONFIG_SPL_BSS_START_ADDR	0x80000000
26 #define CONFIG_SPL_BSS_MAX_SIZE		(512 << 10)	/* 512 KB */
27 #define CONFIG_SYS_SPL_MALLOC_START	0x80208000
28 #define CONFIG_SYS_SPL_MALLOC_SIZE	0x100000
29 
30 #include <configs/ti_omap3_common.h>
31 
32 #define CONFIG_MISC_INIT_R
33 
34 #define CONFIG_REVISION_TAG		1
35 #define CONFIG_ENV_OVERWRITE
36 /* NAND: SPL falcon mode configs */
37 #if defined(CONFIG_SPL_OS_BOOT)
38 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000
39 #endif /* CONFIG_SPL_OS_BOOT */
40 #endif /* CONFIG_NAND */
41 
42 /* Status LED */
43 
44 /* Enable Multi Bus support for I2C */
45 #define CONFIG_I2C_MULTI_BUS		1
46 
47 /* Probe all devices */
48 #define CONFIG_SYS_I2C_NOPROBES		{{0x0, 0x0}}
49 
50 /* USB */
51 #define CONFIG_USB_MUSB_OMAP2PLUS
52 #define CONFIG_USB_MUSB_PIO_ONLY
53 #define CONFIG_TWL4030_USB		1
54 
55 /* USB EHCI */
56 
57 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO	147
58 
59 /* commands to include */
60 
61 #define MTDIDS_DEFAULT			"nand0=nand"
62 #define MTDPARTS_DEFAULT		"mtdparts=nand:512k(x-loader),"\
63 					"1920k(u-boot),128k(u-boot-env),"\
64 					"4m(kernel),-(fs)"
65 
66 #define CONFIG_VIDEO_OMAP3	/* DSS Support			*/
67 
68 /*
69  * TWL4030
70  */
71 #define CONFIG_TWL4030_LED		1
72 
73 /*
74  * Board NAND Info.
75  */
76 #define CONFIG_SYS_MAX_NAND_DEVICE	1		/* Max number of NAND */
77 							/* devices */
78 
79 #define BOOT_TARGET_DEVICES(func) \
80 	func(MMC, mmc, 0)
81 
82 #define CONFIG_BOOTCOMMAND \
83 	"run findfdt; " \
84 	"run distro_bootcmd; " \
85 	"mmc dev ${mmcdev}; if mmc rescan; then " \
86 		"if run userbutton; then " \
87 			"setenv bootenv uEnv.txt;" \
88 		"else " \
89 			"setenv bootenv user.txt;" \
90 		"fi;" \
91 		"echo SD/MMC found on device ${mmcdev};" \
92 		"if run loadbootenv; then " \
93 			"echo Loaded environment from ${bootenv};" \
94 			"run importbootenv;" \
95 		"fi;" \
96 		"if test -n $uenvcmd; then " \
97 			"echo Running uenvcmd ...;" \
98 			"run uenvcmd;" \
99 		"fi;" \
100 		"if run loadbootscript; then " \
101 			"run bootscript; " \
102 		"else " \
103 			"if run loadimage; then " \
104 				"run mmcboot;" \
105 			"fi;" \
106 		"fi; " \
107 	"fi;" \
108 	"run nandboot;" \
109 	"setenv bootfile zImage;" \
110 	"if run loadimage; then " \
111 		"run loadfdt;" \
112 		"run mmcbootz; " \
113 	"fi; " \
114 
115 #include <config_distro_bootcmd.h>
116 
117 #define CONFIG_EXTRA_ENV_SETTINGS \
118 	"loadaddr=0x80200000\0" \
119 	"kernel_addr_r=0x80200000\0" \
120 	"rdaddr=0x81000000\0" \
121 	"initrd_addr_r=0x81000000\0" \
122 	"fdt_high=0xffffffff\0" \
123 	"fdtaddr=0x80f80000\0" \
124 	"fdt_addr_r=0x80f80000\0" \
125 	"usbtty=cdc_acm\0" \
126 	"bootfile=uImage\0" \
127 	"ramdisk=ramdisk.gz\0" \
128 	"bootdir=/boot\0" \
129 	"bootpart=0:2\0" \
130 	"console=ttyO2,115200n8\0" \
131 	"mpurate=auto\0" \
132 	"buddy=none\0" \
133 	"optargs=\0" \
134 	"camera=none\0" \
135 	"vram=12M\0" \
136 	"dvimode=640x480MR-16@60\0" \
137 	"defaultdisplay=dvi\0" \
138 	"mmcdev=0\0" \
139 	"mmcroot=/dev/mmcblk0p2 rw\0" \
140 	"mmcrootfstype=ext3 rootwait\0" \
141 	"nandroot=ubi0:rootfs ubi.mtd=4\0" \
142 	"nandrootfstype=ubifs\0" \
143 	"ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=0x81000000,64M\0" \
144 	"ramrootfstype=ext2\0" \
145 	"mmcargs=setenv bootargs console=${console} " \
146 		"${optargs} " \
147 		"mpurate=${mpurate} " \
148 		"buddy=${buddy} "\
149 		"camera=${camera} "\
150 		"vram=${vram} " \
151 		"omapfb.mode=dvi:${dvimode} " \
152 		"omapdss.def_disp=${defaultdisplay} " \
153 		"root=${mmcroot} " \
154 		"rootfstype=${mmcrootfstype}\0" \
155 	"nandargs=setenv bootargs console=${console} " \
156 		"${optargs} " \
157 		"mpurate=${mpurate} " \
158 		"buddy=${buddy} "\
159 		"camera=${camera} "\
160 		"vram=${vram} " \
161 		"omapfb.mode=dvi:${dvimode} " \
162 		"omapdss.def_disp=${defaultdisplay} " \
163 		"root=${nandroot} " \
164 		"rootfstype=${nandrootfstype}\0" \
165 	"findfdt=" \
166 		"if test $beaglerev = AxBx; then " \
167 			"setenv fdtfile omap3-beagle.dtb; fi; " \
168 		"if test $beaglerev = Cx; then " \
169 			"setenv fdtfile omap3-beagle.dtb; fi; " \
170 		"if test $beaglerev = C4; then " \
171 			"setenv fdtfile omap3-beagle.dtb; fi; " \
172 		"if test $beaglerev = xMAB; then " \
173 			"setenv fdtfile omap3-beagle-xm-ab.dtb; fi; " \
174 		"if test $beaglerev = xMC; then " \
175 			"setenv fdtfile omap3-beagle-xm.dtb; fi; " \
176 		"if test $fdtfile = undefined; then " \
177 			"echo WARNING: Could not determine device tree to use; fi; \0" \
178 	"validatefdt=" \
179 		"if test $beaglerev = xMAB; then " \
180 			"if test ! -e mmc ${bootpart} ${bootdir}/${fdtfile}; then " \
181 				"setenv fdtfile omap3-beagle-xm.dtb; " \
182 			"fi; " \
183 		"fi; \0" \
184 	"bootenv=uEnv.txt\0" \
185 	"loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
186 	"importbootenv=echo Importing environment from mmc ...; " \
187 		"env import -t -r $loadaddr $filesize\0" \
188 	"ramargs=setenv bootargs console=${console} " \
189 		"${optargs} " \
190 		"mpurate=${mpurate} " \
191 		"buddy=${buddy} "\
192 		"vram=${vram} " \
193 		"omapfb.mode=dvi:${dvimode} " \
194 		"omapdss.def_disp=${defaultdisplay} " \
195 		"root=${ramroot} " \
196 		"rootfstype=${ramrootfstype}\0" \
197 	"loadramdisk=load mmc ${bootpart} ${rdaddr} ${bootdir}/${ramdisk}\0" \
198 	"loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
199 	"loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
200 	"bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
201 		"source ${loadaddr}\0" \
202 	"loadfdt=run validatefdt; load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
203 	"mmcboot=echo Booting from mmc ...; " \
204 		"run mmcargs; " \
205 		"bootm ${loadaddr}\0" \
206 	"mmcbootz=echo Booting with DT from mmc${mmcdev} ...; " \
207 		"run mmcargs; " \
208 		"bootz ${loadaddr} - ${fdtaddr}\0" \
209 	"nandboot=echo Booting from nand ...; " \
210 		"run nandargs; " \
211 		"nand read ${loadaddr} 280000 400000; " \
212 		"bootm ${loadaddr}\0" \
213 	"ramboot=echo Booting from ramdisk ...; " \
214 		"run ramargs; " \
215 		"bootm ${loadaddr}\0" \
216 	"userbutton=if gpio input 173; then run userbutton_xm; " \
217 		"else run userbutton_nonxm; fi;\0" \
218 	"userbutton_xm=gpio input 4;\0" \
219 	"userbutton_nonxm=gpio input 7;\0" \
220 	BOOTENV
221 
222 /*
223  * OMAP3 has 12 GP timers, they can be driven by the system clock
224  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
225  * This rate is divided by a local divisor.
226  */
227 #define CONFIG_SYS_PTV			2       /* Divisor: 2^(PTV+1) => 8 */
228 
229 /*-----------------------------------------------------------------------
230  * FLASH and environment organization
231  */
232 
233 /* **** PISMO SUPPORT *** */
234 #if defined(CONFIG_CMD_NAND)
235 #define CONFIG_SYS_FLASH_BASE		NAND_BASE
236 #endif
237 
238 /* Monitor at start of flash */
239 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE
240 #define CONFIG_SYS_ONENAND_BASE		ONENAND_MAP
241 
242 #define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB */
243 #define ONENAND_ENV_OFFSET		0x260000 /* environment starts here */
244 #define SMNAND_ENV_OFFSET		0x260000 /* environment starts here */
245 
246 #define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
247 #define CONFIG_ENV_OFFSET		SMNAND_ENV_OFFSET
248 #define CONFIG_ENV_ADDR			SMNAND_ENV_OFFSET
249 
250 /* Defines for SPL */
251 
252 /* NAND boot config */
253 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
254 #define CONFIG_SYS_NAND_PAGE_COUNT	64
255 #define CONFIG_SYS_NAND_PAGE_SIZE	2048
256 #define CONFIG_SYS_NAND_OOBSIZE		64
257 #define CONFIG_SYS_NAND_BLOCK_SIZE	(128*1024)
258 #define CONFIG_SYS_NAND_BAD_BLOCK_POS	0
259 #define CONFIG_SYS_NAND_ECCPOS		{2, 3, 4, 5, 6, 7, 8, 9,\
260 						10, 11, 12, 13}
261 #define CONFIG_SYS_NAND_ECCSIZE		512
262 #define CONFIG_SYS_NAND_ECCBYTES	3
263 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_HAM1_CODE_HW
264 #define CONFIG_SYS_NAND_U_BOOT_OFFS	0x80000
265 /* NAND: SPL falcon mode configs */
266 #ifdef CONFIG_SPL_OS_BOOT
267 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS	0x280000
268 #endif
269 
270 #endif /* __CONFIG_H */
271