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 #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ 17 18 /* 19 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM 20 * 64 bytes before this address should be set aside for u-boot.img's 21 * header. That is 0x800FFFC0--0x80100000 should not be used for any 22 * other needs. 23 */ 24 25 #define CONFIG_SYS_TEXT_BASE 0x80100000 26 #define CONFIG_SYS_SPL_MALLOC_START 0x80208000 27 #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 28 29 #include <configs/ti_omap3_common.h> 30 #undef CONFIG_SDRC /* Disable SDRC since we have EMIF4 */ 31 32 #define CONFIG_MISC_INIT_R 33 #define CONFIG_REVISION_TAG 34 35 /* Hardware drivers */ 36 37 /* allow to overwrite serial and ethaddr */ 38 #define CONFIG_ENV_OVERWRITE 39 40 /* 41 * USB configuration 42 * Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard 43 * Enable CONFIG_USB_MUSB_GADGET for Device functionalities. 44 */ 45 46 #ifdef CONFIG_USB_MUSB_AM35X 47 48 #ifdef CONFIG_USB_MUSB_HOST 49 50 #ifdef CONFIG_USB_KEYBOARD 51 #define CONFIG_PREBOOT "usb start" 52 #endif /* CONFIG_USB_KEYBOARD */ 53 54 #endif /* CONFIG_USB_MUSB_HOST */ 55 56 #endif /* CONFIG_USB_MUSB_AM35X */ 57 58 /* I2C */ 59 60 /* Ethernet */ 61 #define CONFIG_DRIVER_TI_EMAC 62 #define CONFIG_DRIVER_TI_EMAC_USE_RMII 63 #define CONFIG_MII 64 #define CONFIG_BOOTP_DEFAULT 65 #define CONFIG_BOOTP_DNS 66 #define CONFIG_BOOTP_DNS2 67 #define CONFIG_BOOTP_SEND_HOSTNAME 68 #define CONFIG_NET_RETRY_COUNT 10 69 70 /* Board NAND Info. */ 71 #ifdef CONFIG_NAND 72 #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ 73 /* to access nand */ 74 #define CONFIG_SYS_NAND_5_ADDR_CYCLE 75 #define CONFIG_SYS_NAND_PAGE_COUNT 64 76 #define CONFIG_SYS_NAND_PAGE_SIZE 2048 77 #define CONFIG_SYS_NAND_OOBSIZE 64 78 #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) 79 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS 80 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, 10, \ 81 11, 12, 13, 14, 16, 17, 18, 19, 20, \ 82 21, 22, 23, 24, 25, 26, 27, 28, 30, \ 83 31, 32, 33, 34, 35, 36, 37, 38, 39, \ 84 40, 41, 42, 44, 45, 46, 47, 48, 49, \ 85 50, 51, 52, 53, 54, 55, 56 } 86 87 #define CONFIG_SYS_NAND_ECCSIZE 512 88 #define CONFIG_SYS_NAND_ECCBYTES 13 89 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW 90 #define CONFIG_SYS_NAND_MAX_OOBFREE 2 91 #define CONFIG_SYS_NAND_MAX_ECCPOS 56 92 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE 93 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 94 #define CONFIG_MTD_PARTITIONS /* required for UBI partition support */ 95 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ 96 /* NAND block size is 128 KiB. Synchronize these values with 97 * corresponding Device Tree entries in Linux: 98 * MLO(SPL) 4 * NAND_BLOCK_SIZE = 512 KiB @ 0x000000 99 * U-Boot 15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000 100 * U-Boot environment 2 * NAND_BLOCK_SIZE = 256 KiB @ 0x260000 101 * Kernel 64 * NAND_BLOCK_SIZE = 8 MiB @ 0x2A0000 102 * DTB 4 * NAND_BLOCK_SIZE = 512 KiB @ 0xAA0000 103 * RootFS Remaining Flash Space @ 0xB20000 104 */ 105 #endif /* CONFIG_NAND */ 106 107 /* Environment information */ 108 109 #define CONFIG_BOOTFILE "uImage" 110 111 #define CONFIG_EXTRA_ENV_SETTINGS \ 112 "loadaddr=0x82000000\0" \ 113 "console=ttyO2,115200n8\0" \ 114 "fdtfile=am3517-evm.dtb\0" \ 115 "fdtaddr=0x82C00000\0" \ 116 "vram=16M\0" \ 117 "bootenv=uEnv.txt\0" \ 118 "cmdline=\0" \ 119 "optargs=\0" \ 120 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \ 121 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ 122 "mmcdev=0\0" \ 123 "mmcpart=1\0" \ 124 "mmcroot=/dev/mmcblk0p2 rw\0" \ 125 "mmcrootfstype=ext4 rootwait fixrtc\0" \ 126 "mmcargs=setenv bootargs console=${console} " \ 127 "${mtdparts} " \ 128 "${optargs} " \ 129 "root=${mmcroot} " \ 130 "rootfstype=${mmcrootfstype} " \ 131 "${cmdline}\0" \ 132 "nandargs=setenv bootargs console=${console} " \ 133 "${mtdparts} " \ 134 "${optargs} " \ 135 "root=ubi0:rootfs rw ubi.mtd=rootfs " \ 136 "rootfstype=ubifs rootwait " \ 137 "${cmdline}\0" \ 138 "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\ 139 "importbootenv=echo Importing environment from mmc ...; " \ 140 "env import -t ${loadaddr} ${filesize}\0" \ 141 "bootscript=echo Running bootscript from mmc ...; " \ 142 "source ${loadaddr}\0" \ 143 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \ 144 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \ 145 "mmcboot=echo Booting from mmc ...; " \ 146 "run mmcargs; " \ 147 "bootz ${loadaddr} - ${fdtaddr}\0" \ 148 "nandboot=echo Booting from nand ...; " \ 149 "run nandargs; " \ 150 "nand read ${loadaddr} 2a0000 800000; " \ 151 "nand read ${fdtaddr} aa0000 80000; " \ 152 "bootm ${loadaddr} - ${fdtaddr}\0" \ 153 154 #define CONFIG_BOOTCOMMAND \ 155 "mmc dev ${mmcdev}; if mmc rescan; then " \ 156 "echo SD/MMC found on device $mmcdev; " \ 157 "if run loadbootenv; then " \ 158 "run importbootenv; " \ 159 "fi; " \ 160 "echo Checking if uenvcmd is set ...; " \ 161 "if test -n $uenvcmd; then " \ 162 "echo Running uenvcmd ...; " \ 163 "run uenvcmd; " \ 164 "fi; " \ 165 "echo Running default loadimage ...; " \ 166 "setenv bootfile zImage; " \ 167 "if run loadimage; then " \ 168 "run loadfdt; " \ 169 "run mmcboot; " \ 170 "fi; " \ 171 "else run nandboot; fi" 172 173 /* Miscellaneous configurable options */ 174 #define CONFIG_AUTO_COMPLETE 175 #define CONFIG_CMDLINE_EDITING 176 #define CONFIG_SYS_LONGHELP 177 178 /* We set the max number of command args high to avoid HUSH bugs. */ 179 #define CONFIG_SYS_MAXARGS 64 180 181 /* Print Buffer Size */ 182 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \ 183 + sizeof(CONFIG_SYS_PROMPT) + 16) 184 /* Boot Argument Buffer Size */ 185 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 186 187 /* memtest works on */ 188 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0) 189 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \ 190 0x01F00000) /* 31MB */ 191 192 /* Physical Memory Map */ 193 #define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024) 194 #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 195 #define CONFIG_SYS_INIT_RAM_SIZE 0x800 196 197 /* FLASH and environment organization */ 198 199 /* **** PISMO SUPPORT *** */ 200 #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */ 201 /* on one chip */ 202 #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */ 203 #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */ 204 205 #if defined(CONFIG_NAND) 206 #define CONFIG_SYS_FLASH_BASE NAND_BASE 207 #endif 208 209 /* Monitor at start of flash */ 210 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE 211 212 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ 213 #define CONFIG_ENV_SIZE CONFIG_SYS_ENV_SECT_SIZE 214 #define CONFIG_ENV_OFFSET 0x260000 215 #define CONFIG_ENV_ADDR 0x260000 216 217 /* Defines for SPL */ 218 #define CONFIG_SPL_FRAMEWORK 219 #undef CONFIG_SPL_TEXT_BASE 220 #define CONFIG_SPL_TEXT_BASE 0x40200000 221 222 #undef CONFIG_SPL_BSS_START_ADDR 223 #define CONFIG_SPL_BSS_START_ADDR 0x80000000 224 #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */ 225 226 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 227 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" 228 229 #define CONFIG_SPL_NAND_BASE 230 #define CONFIG_SPL_NAND_DRIVERS 231 #define CONFIG_SPL_NAND_ECC 232 233 #endif /* __CONFIG_H */ 234