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