1 /* 2 * am3517_evm.h - Default configuration for AM3517 EVM board. 3 * 4 * Author: Vaibhav Hiremath <hvaibhav@ti.com> 5 * 6 * Based on omap3_evm_config.h 7 * 8 * Copyright (C) 2010 Texas Instruments Incorporated 9 * 10 * SPDX-License-Identifier: GPL-2.0+ 11 */ 12 13 #ifndef __CONFIG_H 14 #define __CONFIG_H 15 16 /* High Level Configuration Options */ 17 18 #define CONFIG_OMAP 19 #define CONFIG_OMAP_COMMON 20 21 #define CONFIG_SYS_CACHELINE_SIZE 64 22 23 #define CONFIG_SYS_NO_FLASH 24 25 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ 26 27 /* Common ARM Erratas */ 28 #define CONFIG_ARM_ERRATA_454179 29 #define CONFIG_ARM_ERRATA_430973 30 #define CONFIG_ARM_ERRATA_621766 31 32 #define CONFIG_EMIF4 /* The chip has EMIF4 controller */ 33 34 /* 35 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM 36 * 64 bytes before this address should be set aside for u-boot.img's 37 * header. That is 0x800FFFC0--0x80100000 should not be used for any 38 * other needs. 39 */ 40 #define CONFIG_SYS_TEXT_BASE 0x80100000 41 #define CONFIG_SYS_SPL_MALLOC_START 0x80208000 42 #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 43 44 #include <asm/arch/cpu.h> /* get chip and board defs */ 45 #include <asm/arch/omap.h> 46 47 /* Display CPU and Board information */ 48 #define CONFIG_DISPLAY_CPUINFO 49 #define CONFIG_DISPLAY_BOARDINFO 50 #define CONFIG_OF_LIBFDT 51 #define CONFIG_MISC_INIT_R 52 #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ 53 #define CONFIG_SETUP_MEMORY_TAGS 54 #define CONFIG_INITRD_TAG 55 #define CONFIG_REVISION_TAG 56 57 /* Clock Defines */ 58 #define V_OSCK 26000000 /* Clock output from T2 */ 59 #define V_SCLK (V_OSCK >> 1) 60 61 /* Size of malloc() pool */ 62 #define CONFIG_SYS_MALLOC_LEN (16 << 20) 63 64 /* Hardware drivers */ 65 66 /* OMAP GPIO configuration */ 67 #define CONFIG_OMAP_GPIO 68 69 /* NS16550 Configuration */ 70 #define V_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */ 71 #define CONFIG_SYS_NS16550_SERIAL 72 #define CONFIG_SYS_NS16550_REG_SIZE (-4) 73 #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK 74 75 /* select serial console configuration */ 76 #define CONFIG_CONS_INDEX 3 77 #define CONFIG_SYS_NS16550_COM3 OMAP34XX_UART3 78 #define CONFIG_SERIAL3 3 /* UART3 on AM3517 EVM */ 79 80 /* allow to overwrite serial and ethaddr */ 81 #define CONFIG_ENV_OVERWRITE 82 #define CONFIG_BAUDRATE 115200 83 #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 84 115200} 85 86 /* SD/MMC */ 87 #define CONFIG_MMC 88 #define CONFIG_GENERIC_MMC 89 #define CONFIG_OMAP_HSMMC 90 #define CONFIG_DOS_PARTITION 91 92 /* 93 * USB configuration 94 * Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard 95 * Enable CONFIG_USB_MUSB_GADGET for Device functionalities. 96 */ 97 #define CONFIG_USB_MUSB_AM35X 98 #define CONFIG_USB_MUSB_HOST 99 #define CONFIG_USB_MUSB_PIO_ONLY 100 101 #ifdef CONFIG_USB_MUSB_AM35X 102 103 #ifdef CONFIG_USB_MUSB_HOST 104 #define CONFIG_CMD_USB 105 106 #define CONFIG_USB_STORAGE 107 #define CONGIG_CMD_STORAGE 108 109 #ifdef CONFIG_USB_KEYBOARD 110 #define CONFIG_SYS_USB_EVENT_POLL 111 #define CONFIG_PREBOOT "usb start" 112 #endif /* CONFIG_USB_KEYBOARD */ 113 114 #endif /* CONFIG_USB_MUSB_HOST */ 115 116 #ifdef CONFIG_USB_MUSB_GADGET 117 #define CONFIG_USB_GADGET_DUALSPEED 118 #define CONFIG_USB_ETHER 119 #define CONFIG_USB_ETH_RNDIS 120 #endif /* CONFIG_USB_MUSB_GADGET */ 121 122 #endif /* CONFIG_USB_MUSB_AM35X */ 123 124 /* commands to include */ 125 #define CONFIG_CMD_NAND 126 #define CONFIG_CMD_CACHE 127 #define CONFIG_CMD_FAT 128 #define CONFIG_CMD_EXT2 129 #define CONFIG_CMD_EXT4 130 #define CONFIG_CMD_EXT4_WRITE 131 #define CONFIG_CMD_FS_GENERIC 132 #define CONFIG_CMD_PART 133 #define CONFIG_CMD_ASKENV 134 #define CONFIG_CMD_BOOTZ 135 #define CONFIG_CMD_I2C 136 #define CONFIG_CMD_MMC 137 #define CONFIG_CMD_DHCP 138 #define CONFIG_CMD_PING 139 #define CONFIG_CMD_MTDPARTS 140 141 /* I2C */ 142 #define CONFIG_SYS_I2C 143 #define CONFIG_SYS_OMAP24_I2C_SPEED 100000 144 #define CONFIG_SYS_OMAP24_I2C_SLAVE 1 145 #define CONFIG_SYS_I2C_OMAP34XX 146 147 /* Ethernet */ 148 #define CONFIG_DRIVER_TI_EMAC 149 #define CONFIG_DRIVER_TI_EMAC_USE_RMII 150 #define CONFIG_MII 151 #define CONFIG_BOOTP_DEFAULT 152 #define CONFIG_BOOTP_DNS 153 #define CONFIG_BOOTP_DNS2 154 #define CONFIG_BOOTP_SEND_HOSTNAME 155 #define CONFIG_NET_RETRY_COUNT 10 156 157 /* Board NAND Info. */ 158 #ifdef CONFIG_NAND 159 #define CONFIG_NAND_OMAP_GPMC 160 #define CONFIG_NAND_OMAP_GPMC_PREFETCH 161 #define CONFIG_BCH 162 #define CONFIG_CMD_UBI /* UBI-formated MTD partition support */ 163 #define CONFIG_CMD_UBIFS /* Read-only UBI volume operations */ 164 #define CONFIG_RBTREE /* required by CONFIG_CMD_UBI */ 165 #define CONFIG_LZO /* required by CONFIG_CMD_UBIFS */ 166 #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ 167 /* to access nand */ 168 #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */ 169 /* to access */ 170 /* nand at CS0 */ 171 #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */ 172 /* NAND devices */ 173 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT 174 #define CONFIG_SYS_NAND_5_ADDR_CYCLE 175 #define CONFIG_SYS_NAND_PAGE_COUNT 64 176 #define CONFIG_SYS_NAND_PAGE_SIZE 2048 177 #define CONFIG_SYS_NAND_OOBSIZE 64 178 #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) 179 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS 180 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, 10, \ 181 11, 12, 13, 14, 16, 17, 18, 19, 20, \ 182 21, 22, 23, 24, 25, 26, 27, 28, 30, \ 183 31, 32, 33, 34, 35, 36, 37, 38, 39, \ 184 40, 41, 42, 44, 45, 46, 47, 48, 49, \ 185 50, 51, 52, 53, 54, 55, 56 } 186 187 #define CONFIG_SYS_NAND_ECCSIZE 512 188 #define CONFIG_SYS_NAND_ECCBYTES 13 189 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW 190 #define CONFIG_SYS_NAND_MAX_OOBFREE 2 191 #define CONFIG_SYS_NAND_MAX_ECCPOS 56 192 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE 193 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 194 #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */ 195 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 196 /* NAND block size is 128 KiB. Synchronize these values with 197 * corresponding Device Tree entries in Linux: 198 * MLO(SPL) 4 * NAND_BLOCK_SIZE = 512 KiB @ 0x000000 199 * U-Boot 15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000 200 * U-Boot environment 2 * NAND_BLOCK_SIZE = 256 KiB @ 0x260000 201 * Kernel 64 * NAND_BLOCK_SIZE = 8 MiB @ 0x2A0000 202 * DTB 4 * NAND_BLOCK_SIZE = 512 KiB @ 0xAA0000 203 * RootFS Remaining Flash Space @ 0xB20000 204 */ 205 #define MTDIDS_DEFAULT "nand0=omap2-nand.0" 206 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:" \ 207 "512k(MLO)," \ 208 "1920k(u-boot)," \ 209 "256k(u-boot-env)," \ 210 "8m(kernel)," \ 211 "512k(dtb)," \ 212 "-(rootfs)" 213 #else 214 #define MTDIDS_DEFAULT 215 #define MTDPARTS_DEFAULT 216 #endif /* CONFIG_NAND */ 217 218 /* Environment information */ 219 #define CONFIG_BOOTDELAY 10 220 221 #define CONFIG_BOOTFILE "uImage" 222 223 #define CONFIG_EXTRA_ENV_SETTINGS \ 224 "loadaddr=0x82000000\0" \ 225 "console=ttyO2,115200n8\0" \ 226 "fdtfile=am3517-evm.dtb\0" \ 227 "fdtaddr=0x82C00000\0" \ 228 "vram=16M\0" \ 229 "bootenv=uEnv.txt\0" \ 230 "cmdline=\0" \ 231 "optargs=\0" \ 232 "mtdids=" MTDIDS_DEFAULT "\0" \ 233 "mtdparts=" MTDPARTS_DEFAULT "\0" \ 234 "mmcdev=0\0" \ 235 "mmcpart=1\0" \ 236 "mmcroot=/dev/mmcblk0p2 rw\0" \ 237 "mmcrootfstype=ext4 rootwait fixrtc\0" \ 238 "mmcargs=setenv bootargs console=${console} " \ 239 "${mtdparts} " \ 240 "${optargs} " \ 241 "root=${mmcroot} " \ 242 "rootfstype=${mmcrootfstype} " \ 243 "${cmdline}\0" \ 244 "nandargs=setenv bootargs console=${console} " \ 245 "${mtdparts} " \ 246 "${optargs} " \ 247 "root=ubi0:rootfs rw ubi.mtd=rootfs " \ 248 "rootfstype=ubifs rootwait " \ 249 "${cmdline}\0" \ 250 "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\ 251 "importbootenv=echo Importing environment from mmc ...; " \ 252 "env import -t ${loadaddr} ${filesize}\0" \ 253 "bootscript=echo Running bootscript from mmc ...; " \ 254 "source ${loadaddr}\0" \ 255 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \ 256 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \ 257 "mmcboot=echo Booting from mmc ...; " \ 258 "run mmcargs; " \ 259 "bootz ${loadaddr} - ${fdtaddr}\0" \ 260 "nandboot=echo Booting from nand ...; " \ 261 "run nandargs; " \ 262 "nand read ${loadaddr} 2a0000 800000; " \ 263 "nand read ${fdtaddr} aa0000 80000; " \ 264 "bootm ${loadaddr} - ${fdtaddr}\0" \ 265 266 #define CONFIG_BOOTCOMMAND \ 267 "mmc dev ${mmcdev}; if mmc rescan; then " \ 268 "echo SD/MMC found on device $mmcdev; " \ 269 "if run loadbootenv; then " \ 270 "run importbootenv; " \ 271 "fi; " \ 272 "echo Checking if uenvcmd is set ...; " \ 273 "if test -n $uenvcmd; then " \ 274 "echo Running uenvcmd ...; " \ 275 "run uenvcmd; " \ 276 "fi; " \ 277 "echo Running default loadimage ...; " \ 278 "setenv bootfile zImage; " \ 279 "if run loadimage; then " \ 280 "run loadfdt; " \ 281 "run mmcboot; " \ 282 "fi; " \ 283 "else run nandboot; fi" 284 285 /* Miscellaneous configurable options */ 286 #define CONFIG_AUTO_COMPLETE 287 #define CONFIG_CMDLINE_EDITING 288 #define CONFIG_VERSION_VARIABLE 289 #define CONFIG_SYS_LONGHELP 290 #define CONFIG_SYS_HUSH_PARSER 291 #define CONFIG_PARTITION_UUIDS 292 293 /* We set the max number of command args high to avoid HUSH bugs. */ 294 #define CONFIG_SYS_MAXARGS 64 295 296 /* Console I/O Buffer Size */ 297 #define CONFIG_SYS_CBSIZE 512 298 /* Print Buffer Size */ 299 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \ 300 + sizeof(CONFIG_SYS_PROMPT) + 16) 301 /* Boot Argument Buffer Size */ 302 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 303 304 /* memtest works on */ 305 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) 306 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \ 307 0x01F00000) /* 31MB */ 308 309 #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */ 310 /* address */ 311 312 /* 313 * AM3517 has 12 GP timers, they can be driven by the system clock 314 * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK). 315 * This rate is divided by a local divisor. 316 */ 317 #define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2 318 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */ 319 320 /* Physical Memory Map */ 321 #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0 322 #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1 323 #define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024) 324 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 325 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 326 #define CONFIG_SYS_INIT_RAM_SIZE 0x800 327 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ 328 CONFIG_SYS_INIT_RAM_SIZE - \ 329 GENERATED_GBL_DATA_SIZE) 330 331 /* FLASH and environment organization */ 332 333 /* **** PISMO SUPPORT *** */ 334 #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */ 335 /* on one chip */ 336 #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */ 337 #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */ 338 339 #if defined(CONFIG_NAND) 340 #define CONFIG_SYS_FLASH_BASE NAND_BASE 341 #endif 342 343 /* Monitor at start of flash */ 344 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE 345 346 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ 347 #define CONFIG_ENV_SIZE CONFIG_SYS_ENV_SECT_SIZE 348 #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */ 349 #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET 350 #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET 351 #define CONFIG_ENV_IS_IN_NAND 352 353 /* Defines for SPL */ 354 #define CONFIG_SPL_FRAMEWORK 355 #define CONFIG_SPL_BOARD_INIT 356 #define CONFIG_SPL_NAND_SIMPLE 357 #define CONFIG_SPL_TEXT_BASE 0x40200000 358 #define CONFIG_SPL_MAX_SIZE (64 * 1024) 359 360 #define CONFIG_SPL_BSS_START_ADDR 0x80000000 361 #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */ 362 363 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */ 364 #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */ 365 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 366 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" 367 368 #define CONFIG_SPL_LIBCOMMON_SUPPORT 369 #define CONFIG_SPL_LIBDISK_SUPPORT 370 #define CONFIG_SPL_I2C_SUPPORT 371 #define CONFIG_SPL_LIBGENERIC_SUPPORT 372 #define CONFIG_SPL_MMC_SUPPORT 373 #define CONFIG_SPL_FAT_SUPPORT 374 #define CONFIG_SPL_SERIAL_SUPPORT 375 #define CONFIG_SPL_NAND_SUPPORT 376 #define CONFIG_SPL_NAND_BASE 377 #define CONFIG_SPL_NAND_DRIVERS 378 #define CONFIG_SPL_NAND_ECC 379 #define CONFIG_SPL_MTD_SUPPORT 380 #define CONFIG_SPL_POWER_SUPPORT 381 #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds" 382 383 #endif /* __CONFIG_H */ 384