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