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