Convert CONFIG_USB_MUSB_OMAP2PLUS et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / omap3_beagle.h
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 #include <configs/ti_omap3_common.h>
18
19 /*
20  * We are only ever GP parts and will utilize all of the "downloaded image"
21  * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB).
22  */
23 #undef CONFIG_SPL_TEXT_BASE
24 #define CONFIG_SPL_TEXT_BASE            0x40200000
25
26 #define CONFIG_SPL_FRAMEWORK
27
28 #define CONFIG_MISC_INIT_R
29 #define CONFIG_CMDLINE_TAG
30 #define CONFIG_SETUP_MEMORY_TAGS
31 #define CONFIG_INITRD_TAG
32 #define CONFIG_REVISION_TAG
33
34 /* NAND */
35 #if defined(CONFIG_NAND)
36 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
37 #define CONFIG_SYS_MAX_NAND_DEVICE      1
38 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
39 #define CONFIG_SYS_NAND_PAGE_COUNT      64
40 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
41 #define CONFIG_SYS_NAND_OOBSIZE         64
42 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128*1024)
43 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
44 #define CONFIG_SYS_NAND_ECCPOS          {2, 3, 4, 5, 6, 7, 8, 9,\
45                                          10, 11, 12, 13}
46 #define CONFIG_SYS_NAND_ECCSIZE         512
47 #define CONFIG_SYS_NAND_ECCBYTES        3
48 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
49 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x80000
50 #define CONFIG_ENV_IS_IN_NAND           1
51 #define CONFIG_ENV_SIZE                 (128 << 10) /* 128 KiB */
52 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10) /* 128 KiB */
53 #define CONFIG_ENV_OFFSET               0x260000
54 #define CONFIG_ENV_ADDR                 0x260000
55 #define CONFIG_ENV_OVERWRITE
56 #define CONFIG_MTD_PARTITIONS           /* required for UBI partition support */
57 /* NAND: SPL falcon mode configs */
58 #if defined(CONFIG_SPL_OS_BOOT)
59 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
60 #endif /* CONFIG_SPL_OS_BOOT */
61 #endif /* CONFIG_NAND */
62
63 /* MUSB */
64 #define CONFIG_USB_OMAP3
65 #define CONFIG_TWL4030_USB
66
67 /* USB EHCI */
68 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO        147
69
70 /* Enable Multi Bus support for I2C */
71 #define CONFIG_I2C_MULTI_BUS
72
73 /* DSS Support */
74 #define CONFIG_VIDEO_OMAP3
75
76 /* TWL4030 LED Support */
77 #define CONFIG_TWL4030_LED
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 loadfdt;" \
105                                 "run mmcboot;" \
106                         "fi;" \
107                 "fi; " \
108         "fi;" \
109         "run nandboot;" \
110         "setenv bootfile zImage;" \
111         "if run loadimage; then " \
112                 "run loadfdt;" \
113                 "run mmcbootz; " \
114         "fi; " \
115
116 #include <config_distro_bootcmd.h>
117
118 #define CONFIG_EXTRA_ENV_SETTINGS \
119         DEFAULT_LINUX_BOOT_ENV \
120         "fdt_high=0xffffffff\0" \
121         "usbtty=cdc_acm\0" \
122         "bootfile=uImage\0" \
123         "ramdisk=ramdisk.gz\0" \
124         "bootdir=/boot\0" \
125         "bootpart=0:2\0" \
126         "console=ttyO2,115200n8\0" \
127         "mpurate=auto\0" \
128         "buddy=none\0" \
129         "optargs=\0" \
130         "camera=none\0" \
131         "vram=12M\0" \
132         "dvimode=640x480MR-16@60\0" \
133         "defaultdisplay=dvi\0" \
134         "mmcdev=0\0" \
135         "mmcroot=/dev/mmcblk0p2 rw\0" \
136         "mmcrootfstype=ext4 rootwait\0" \
137         "nandroot=ubi0:rootfs ubi.mtd=4\0" \
138         "nandrootfstype=ubifs\0" \
139         "ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=0x81000000,64M\0" \
140         "ramrootfstype=ext2\0" \
141         "mmcargs=setenv bootargs console=${console} " \
142                 "${optargs} " \
143                 "mpurate=${mpurate} " \
144                 "buddy=${buddy} "\
145                 "camera=${camera} "\
146                 "vram=${vram} " \
147                 "omapfb.mode=dvi:${dvimode} " \
148                 "omapdss.def_disp=${defaultdisplay} " \
149                 "root=${mmcroot} " \
150                 "rootfstype=${mmcrootfstype}\0" \
151         "nandargs=setenv bootargs console=${console} " \
152                 "${optargs} " \
153                 "mpurate=${mpurate} " \
154                 "buddy=${buddy} "\
155                 "camera=${camera} "\
156                 "vram=${vram} " \
157                 "omapfb.mode=dvi:${dvimode} " \
158                 "omapdss.def_disp=${defaultdisplay} " \
159                 "root=${nandroot} " \
160                 "rootfstype=${nandrootfstype}\0" \
161         "findfdt=" \
162                 "if test $beaglerev = AxBx; then " \
163                         "setenv fdtfile omap3-beagle.dtb; fi; " \
164                 "if test $beaglerev = Cx; then " \
165                         "setenv fdtfile omap3-beagle.dtb; fi; " \
166                 "if test $beaglerev = C4; then " \
167                         "setenv fdtfile omap3-beagle.dtb; fi; " \
168                 "if test $beaglerev = xMAB; then " \
169                         "setenv fdtfile omap3-beagle-xm-ab.dtb; fi; " \
170                 "if test $beaglerev = xMC; then " \
171                         "setenv fdtfile omap3-beagle-xm.dtb; fi; " \
172                 "if test $fdtfile = undefined; then " \
173                         "echo WARNING: Could not determine device tree to use; fi; \0" \
174         "validatefdt=" \
175                 "if test $beaglerev = xMAB; then " \
176                         "if test ! -e mmc ${bootpart} ${bootdir}/${fdtfile}; then " \
177                                 "setenv fdtfile omap3-beagle-xm.dtb; " \
178                         "fi; " \
179                 "fi; \0" \
180         "bootenv=uEnv.txt\0" \
181         "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
182         "importbootenv=echo Importing environment from mmc ...; " \
183                 "env import -t -r $loadaddr $filesize\0" \
184         "ramargs=setenv bootargs console=${console} " \
185                 "${optargs} " \
186                 "mpurate=${mpurate} " \
187                 "buddy=${buddy} "\
188                 "vram=${vram} " \
189                 "omapfb.mode=dvi:${dvimode} " \
190                 "omapdss.def_disp=${defaultdisplay} " \
191                 "root=${ramroot} " \
192                 "rootfstype=${ramrootfstype}\0" \
193         "loadramdisk=load mmc ${bootpart} ${rdaddr} ${bootdir}/${ramdisk}\0" \
194         "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
195         "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
196         "bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
197                 "source ${loadaddr}\0" \
198         "loadfdt=run validatefdt; load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
199         "mmcboot=echo Booting ${bootfile} with DT from mmc${mmcdev} ...; " \
200                 "run mmcargs; " \
201                 "bootm ${loadaddr} - ${fdtaddr}\0" \
202         "mmcbootz=echo Booting ${bootfile} with DT from mmc${mmcdev} ...; " \
203                 "run mmcargs; " \
204                 "bootz ${loadaddr} - ${fdtaddr}\0" \
205         "nandboot=echo Booting from nand ...; " \
206                 "run nandargs; " \
207                 "nand read ${loadaddr} 280000 400000; " \
208                 "bootm ${loadaddr}\0" \
209         "ramboot=echo Booting from ramdisk ...; " \
210                 "run ramargs; " \
211                 "bootm ${loadaddr}\0" \
212         "userbutton=if gpio input 173; then run userbutton_xm; " \
213                 "else run userbutton_nonxm; fi;\0" \
214         "userbutton_xm=gpio input 4;\0" \
215         "userbutton_nonxm=gpio input 7;\0" \
216         BOOTENV
217
218 #endif /* __CONFIG_H */