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