2 * (C) Copyright 2006-2008
4 * Richard Woodruff <r-woodruff2@ti.com>
5 * Syed Mohammed Khasim <x0khasim@ti.com>
7 * Configuration settings for the TI OMAP3530 Beagle board.
9 * SPDX-License-Identifier: GPL-2.0+
15 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
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.
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
30 #include <configs/ti_omap3_common.h>
32 #define CONFIG_MISC_INIT_R
34 #define CONFIG_REVISION_TAG 1
35 #define CONFIG_ENV_OVERWRITE
39 /* Enable Multi Bus support for I2C */
40 #define CONFIG_I2C_MULTI_BUS 1
42 /* Probe all devices */
43 #define CONFIG_SYS_I2C_NOPROBES {{0x0, 0x0}}
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 #define CONFIG_USB_ETHER_RNDIS
51 #define CONFIG_USB_FUNCTION_FASTBOOT
52 #define CONFIG_CMD_FASTBOOT
53 #define CONFIG_ANDROID_BOOT_IMAGE
54 #define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
55 #define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
59 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 147
61 #define CONFIG_USB_HOST_ETHER
62 #define CONFIG_USB_ETHER_ASIX
63 #define CONFIG_USB_ETHER_MCS7830
64 #define CONFIG_USB_ETHER_SMSC95XX
66 /* commands to include */
68 #define MTDIDS_DEFAULT "nand0=nand"
69 #define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\
70 "1920k(u-boot),128k(u-boot-env),"\
73 #define CONFIG_VIDEO_OMAP3 /* DSS Support */
78 #define CONFIG_TWL4030_LED 1
83 #define CONFIG_NAND_OMAP_GPMC
84 #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */
87 #define BOOT_TARGET_DEVICES(func) \
90 #define CONFIG_BOOTCOMMAND \
92 "run distro_bootcmd; " \
93 "mmc dev ${mmcdev}; if mmc rescan; then " \
94 "if run userbutton; then " \
95 "setenv bootenv uEnv.txt;" \
97 "setenv bootenv user.txt;" \
99 "echo SD/MMC found on device ${mmcdev};" \
100 "if run loadbootenv; then " \
101 "echo Loaded environment from ${bootenv};" \
102 "run importbootenv;" \
104 "if test -n $uenvcmd; then " \
105 "echo Running uenvcmd ...;" \
108 "if run loadbootscript; then " \
111 "if run loadimage; then " \
117 "setenv bootfile zImage;" \
118 "if run loadimage; then " \
123 #include <config_distro_bootcmd.h>
125 #define CONFIG_EXTRA_ENV_SETTINGS \
126 "loadaddr=0x80200000\0" \
127 "kernel_addr_r=0x80200000\0" \
128 "rdaddr=0x81000000\0" \
129 "initrd_addr_r=0x81000000\0" \
130 "fdt_high=0xffffffff\0" \
131 "fdtaddr=0x80f80000\0" \
132 "fdt_addr_r=0x80f80000\0" \
134 "bootfile=uImage\0" \
135 "ramdisk=ramdisk.gz\0" \
138 "console=ttyO2,115200n8\0" \
144 "dvimode=640x480MR-16@60\0" \
145 "defaultdisplay=dvi\0" \
147 "mmcroot=/dev/mmcblk0p2 rw\0" \
148 "mmcrootfstype=ext3 rootwait\0" \
149 "nandroot=ubi0:rootfs ubi.mtd=4\0" \
150 "nandrootfstype=ubifs\0" \
151 "ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=0x81000000,64M\0" \
152 "ramrootfstype=ext2\0" \
153 "mmcargs=setenv bootargs console=${console} " \
155 "mpurate=${mpurate} " \
159 "omapfb.mode=dvi:${dvimode} " \
160 "omapdss.def_disp=${defaultdisplay} " \
162 "rootfstype=${mmcrootfstype}\0" \
163 "nandargs=setenv bootargs console=${console} " \
165 "mpurate=${mpurate} " \
169 "omapfb.mode=dvi:${dvimode} " \
170 "omapdss.def_disp=${defaultdisplay} " \
171 "root=${nandroot} " \
172 "rootfstype=${nandrootfstype}\0" \
174 "if test $beaglerev = AxBx; then " \
175 "setenv fdtfile omap3-beagle.dtb; fi; " \
176 "if test $beaglerev = Cx; then " \
177 "setenv fdtfile omap3-beagle.dtb; fi; " \
178 "if test $beaglerev = C4; then " \
179 "setenv fdtfile omap3-beagle.dtb; fi; " \
180 "if test $beaglerev = xMAB; then " \
181 "setenv fdtfile omap3-beagle-xm-ab.dtb; fi; " \
182 "if test $beaglerev = xMC; then " \
183 "setenv fdtfile omap3-beagle-xm.dtb; fi; " \
184 "if test $fdtfile = undefined; then " \
185 "echo WARNING: Could not determine device tree to use; fi; \0" \
187 "if test $beaglerev = xMAB; then " \
188 "if test ! -e mmc ${bootpart} ${bootdir}/${fdtfile}; then " \
189 "setenv fdtfile omap3-beagle-xm.dtb; " \
192 "bootenv=uEnv.txt\0" \
193 "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
194 "importbootenv=echo Importing environment from mmc ...; " \
195 "env import -t -r $loadaddr $filesize\0" \
196 "ramargs=setenv bootargs console=${console} " \
198 "mpurate=${mpurate} " \
201 "omapfb.mode=dvi:${dvimode} " \
202 "omapdss.def_disp=${defaultdisplay} " \
204 "rootfstype=${ramrootfstype}\0" \
205 "loadramdisk=load mmc ${bootpart} ${rdaddr} ${bootdir}/${ramdisk}\0" \
206 "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
207 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
208 "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
209 "source ${loadaddr}\0" \
210 "loadfdt=run validatefdt; load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
211 "mmcboot=echo Booting from mmc ...; " \
213 "bootm ${loadaddr}\0" \
214 "mmcbootz=echo Booting with DT from mmc${mmcdev} ...; " \
216 "bootz ${loadaddr} - ${fdtaddr}\0" \
217 "nandboot=echo Booting from nand ...; " \
219 "nand read ${loadaddr} 280000 400000; " \
220 "bootm ${loadaddr}\0" \
221 "ramboot=echo Booting from ramdisk ...; " \
223 "bootm ${loadaddr}\0" \
224 "userbutton=if gpio input 173; then run userbutton_xm; " \
225 "else run userbutton_nonxm; fi;\0" \
226 "userbutton_xm=gpio input 4;\0" \
227 "userbutton_nonxm=gpio input 7;\0" \
231 * OMAP3 has 12 GP timers, they can be driven by the system clock
232 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
233 * This rate is divided by a local divisor.
235 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
237 /*-----------------------------------------------------------------------
238 * FLASH and environment organization
241 /* **** PISMO SUPPORT *** */
242 #if defined(CONFIG_CMD_NAND)
243 #define CONFIG_SYS_FLASH_BASE NAND_BASE
246 /* Monitor at start of flash */
247 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
248 #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
250 #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
251 #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */
252 #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
254 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
255 #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
256 #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
258 #define CONFIG_OMAP3_SPI
260 /* Defines for SPL */
261 #define CONFIG_SPL_OMAP3_ID_NAND
263 /* NAND boot config */
264 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
265 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
266 #define CONFIG_SYS_NAND_PAGE_COUNT 64
267 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
268 #define CONFIG_SYS_NAND_OOBSIZE 64
269 #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
270 #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
271 #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
273 #define CONFIG_SYS_NAND_ECCSIZE 512
274 #define CONFIG_SYS_NAND_ECCBYTES 3
275 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW
276 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
277 /* NAND: SPL falcon mode configs */
278 #ifdef CONFIG_SPL_OS_BOOT
279 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
282 #endif /* __CONFIG_H */