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