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