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