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 | |
Adam Ford | 15d6b84 | 2017-08-22 10:50:01 -0500 | [diff] [blame] | 15 | #include <configs/ti_omap3_common.h> |
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 | /* Ethernet */ |
Tom Rini | 2e9b118 | 2011-12-06 08:49:41 -0700 | [diff] [blame] | 18 | #define CONFIG_NET_RETRY_COUNT 10 |
| 19 | |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 20 | /* Board NAND Info. */ |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 21 | #ifdef CONFIG_MTD_RAW_NAND |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 22 | #define CONFIG_SYS_NAND_5_ADDR_CYCLE |
| 23 | #define CONFIG_SYS_NAND_PAGE_COUNT 64 |
| 24 | #define CONFIG_SYS_NAND_PAGE_SIZE 2048 |
| 25 | #define CONFIG_SYS_NAND_OOBSIZE 64 |
| 26 | #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) |
| 27 | #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS |
| 28 | #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, 10, \ |
| 29 | 11, 12, 13, 14, 16, 17, 18, 19, 20, \ |
| 30 | 21, 22, 23, 24, 25, 26, 27, 28, 30, \ |
| 31 | 31, 32, 33, 34, 35, 36, 37, 38, 39, \ |
| 32 | 40, 41, 42, 44, 45, 46, 47, 48, 49, \ |
| 33 | 50, 51, 52, 53, 54, 55, 56 } |
| 34 | |
| 35 | #define CONFIG_SYS_NAND_ECCSIZE 512 |
| 36 | #define CONFIG_SYS_NAND_ECCBYTES 13 |
| 37 | #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW |
| 38 | #define CONFIG_SYS_NAND_MAX_OOBFREE 2 |
| 39 | #define CONFIG_SYS_NAND_MAX_ECCPOS 56 |
| 40 | #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE |
| 41 | #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 |
Adam Ford | 57f719b | 2019-02-14 14:06:35 -0600 | [diff] [blame] | 42 | #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000 |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 43 | /* NAND block size is 128 KiB. Synchronize these values with |
| 44 | * corresponding Device Tree entries in Linux: |
| 45 | * MLO(SPL) 4 * NAND_BLOCK_SIZE = 512 KiB @ 0x000000 |
| 46 | * U-Boot 15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000 |
| 47 | * U-Boot environment 2 * NAND_BLOCK_SIZE = 256 KiB @ 0x260000 |
| 48 | * Kernel 64 * NAND_BLOCK_SIZE = 8 MiB @ 0x2A0000 |
| 49 | * DTB 4 * NAND_BLOCK_SIZE = 512 KiB @ 0xAA0000 |
| 50 | * RootFS Remaining Flash Space @ 0xB20000 |
| 51 | */ |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 52 | #endif /* CONFIG_MTD_RAW_NAND */ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 53 | |
| 54 | /* Environment information */ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 55 | |
Joe Hershberger | e4da248 | 2011-10-13 13:03:48 +0000 | [diff] [blame] | 56 | #define CONFIG_BOOTFILE "uImage" |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 57 | |
| 58 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 59 | "loadaddr=0x82000000\0" \ |
Adam Ford | 382948c | 2018-12-10 14:56:36 -0600 | [diff] [blame] | 60 | "console=ttyS2,115200n8\0" \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 61 | "fdtfile=am3517-evm.dtb\0" \ |
| 62 | "fdtaddr=0x82C00000\0" \ |
| 63 | "vram=16M\0" \ |
| 64 | "bootenv=uEnv.txt\0" \ |
| 65 | "cmdline=\0" \ |
| 66 | "optargs=\0" \ |
Tom Rini | 5ad8e11 | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 67 | "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \ |
| 68 | "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \ |
Vaibhav Hiremath | 1e05ff8 | 2011-09-03 21:47:44 -0400 | [diff] [blame] | 69 | "mmcdev=0\0" \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 70 | "mmcpart=1\0" \ |
| 71 | "mmcroot=/dev/mmcblk0p2 rw\0" \ |
| 72 | "mmcrootfstype=ext4 rootwait fixrtc\0" \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 73 | "mmcargs=setenv bootargs console=${console} " \ |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 74 | "${mtdparts} " \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 75 | "${optargs} " \ |
| 76 | "root=${mmcroot} " \ |
| 77 | "rootfstype=${mmcrootfstype} " \ |
| 78 | "${cmdline}\0" \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 79 | "nandargs=setenv bootargs console=${console} " \ |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 80 | "${mtdparts} " \ |
| 81 | "${optargs} " \ |
| 82 | "root=ubi0:rootfs rw ubi.mtd=rootfs " \ |
| 83 | "rootfstype=ubifs rootwait " \ |
| 84 | "${cmdline}\0" \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 85 | "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\ |
| 86 | "importbootenv=echo Importing environment from mmc ...; " \ |
| 87 | "env import -t ${loadaddr} ${filesize}\0" \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 88 | "bootscript=echo Running bootscript from mmc ...; " \ |
| 89 | "source ${loadaddr}\0" \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 90 | "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \ |
| 91 | "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 92 | "mmcboot=echo Booting from mmc ...; " \ |
| 93 | "run mmcargs; " \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 94 | "bootz ${loadaddr} - ${fdtaddr}\0" \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 95 | "nandboot=echo Booting from nand ...; " \ |
| 96 | "run nandargs; " \ |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 97 | "nand read ${loadaddr} 2a0000 800000; " \ |
| 98 | "nand read ${fdtaddr} aa0000 80000; " \ |
| 99 | "bootm ${loadaddr} - ${fdtaddr}\0" \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 100 | |
| 101 | #define CONFIG_BOOTCOMMAND \ |
Andrew Bradford | e1c7c8a | 2012-10-01 05:06:52 +0000 | [diff] [blame] | 102 | "mmc dev ${mmcdev}; if mmc rescan; then " \ |
Derald D. Woods | 27095aa | 2016-02-07 20:54:47 -0600 | [diff] [blame] | 103 | "echo SD/MMC found on device $mmcdev; " \ |
| 104 | "if run loadbootenv; then " \ |
| 105 | "run importbootenv; " \ |
| 106 | "fi; " \ |
| 107 | "echo Checking if uenvcmd is set ...; " \ |
| 108 | "if test -n $uenvcmd; then " \ |
| 109 | "echo Running uenvcmd ...; " \ |
| 110 | "run uenvcmd; " \ |
| 111 | "fi; " \ |
| 112 | "echo Running default loadimage ...; " \ |
| 113 | "setenv bootfile zImage; " \ |
| 114 | "if run loadimage; then " \ |
| 115 | "run loadfdt; " \ |
| 116 | "run mmcboot; " \ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 117 | "fi; " \ |
| 118 | "else run nandboot; fi" |
| 119 | |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 120 | /* Miscellaneous configurable options */ |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 121 | |
| 122 | /* We set the max number of command args high to avoid HUSH bugs. */ |
| 123 | #define CONFIG_SYS_MAXARGS 64 |
| 124 | |
Adam Ford | 15d6b84 | 2017-08-22 10:50:01 -0500 | [diff] [blame] | 125 | /* Print Buffer Size */ |
| 126 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \ |
| 127 | + sizeof(CONFIG_SYS_PROMPT) + 16) |
| 128 | /* Boot Argument Buffer Size */ |
| 129 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 130 | |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 131 | /* memtest works on */ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 132 | |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 133 | /* Physical Memory Map */ |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 134 | #define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024) |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 135 | |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 136 | /* FLASH and environment organization */ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 137 | |
| 138 | /* **** PISMO SUPPORT *** */ |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 139 | #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */ |
| 140 | /* on one chip */ |
| 141 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */ |
| 142 | #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */ |
| 143 | |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 144 | #if defined(CONFIG_MTD_RAW_NAND) |
pekon gupta | 0a9ec45 | 2014-07-18 17:59:41 +0530 | [diff] [blame] | 145 | #define CONFIG_SYS_FLASH_BASE NAND_BASE |
Luca Ceresoli | 9783a2c | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 146 | #endif |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 147 | |
| 148 | /* Monitor at start of flash */ |
| 149 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE |
| 150 | |
Luca Ceresoli | 9783a2c | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 151 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |
Tom Rini | 5e0771c | 2011-11-18 12:48:10 +0000 | [diff] [blame] | 152 | |
| 153 | /* Defines for SPL */ |
Tom Rini | 5e0771c | 2011-11-18 12:48:10 +0000 | [diff] [blame] | 154 | |
Derald D. Woods | 6b3c634 | 2016-03-05 13:19:59 -0600 | [diff] [blame] | 155 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
Tom Rini | 5e0771c | 2011-11-18 12:48:10 +0000 | [diff] [blame] | 156 | |
Vaibhav Hiremath | db5c558 | 2010-06-07 15:20:43 -0400 | [diff] [blame] | 157 | #endif /* __CONFIG_H */ |