blob: f5f2b63b74ec281d584753f86bd5cb8b39ec66f4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Vaibhav Hiremathed01e452010-06-07 15:20:43 -04002/*
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 Hiremathed01e452010-06-07 15:20:43 -040010 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
14
Adam Ford261ec8f2017-08-22 10:50:01 -050015#include <configs/ti_omap3_common.h>
Vaibhav Hiremathed01e452010-06-07 15:20:43 -040016
Derald D. Woods3f53e612016-03-05 13:19:59 -060017/* Ethernet */
Tom Rini18a02e82011-12-06 08:49:41 -070018#define CONFIG_NET_RETRY_COUNT 10
19
Derald D. Woods3f53e612016-03-05 13:19:59 -060020/* Board NAND Info. */
Miquel Raynal88718be2019-10-03 19:50:03 +020021#ifdef CONFIG_MTD_RAW_NAND
Derald D. Woods138daa72016-03-05 13:19:58 -060022#define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, 10, \
23 11, 12, 13, 14, 16, 17, 18, 19, 20, \
24 21, 22, 23, 24, 25, 26, 27, 28, 30, \
25 31, 32, 33, 34, 35, 36, 37, 38, 39, \
26 40, 41, 42, 44, 45, 46, 47, 48, 49, \
27 50, 51, 52, 53, 54, 55, 56 }
28
Tom Rini5059a2a2011-11-18 12:48:10 +000029#define CONFIG_SYS_NAND_ECCSIZE 512
Derald D. Woods138daa72016-03-05 13:19:58 -060030#define CONFIG_SYS_NAND_ECCBYTES 13
Derald D. Woods138daa72016-03-05 13:19:58 -060031#define CONFIG_SYS_NAND_MAX_OOBFREE 2
32#define CONFIG_SYS_NAND_MAX_ECCPOS 56
Tom Rini5059a2a2011-11-18 12:48:10 +000033#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
Adam Ford1c6b6f32019-02-14 14:06:35 -060034#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000
Derald D. Woods3f53e612016-03-05 13:19:59 -060035/* NAND block size is 128 KiB. Synchronize these values with
36 * corresponding Device Tree entries in Linux:
37 * MLO(SPL) 4 * NAND_BLOCK_SIZE = 512 KiB @ 0x000000
38 * U-Boot 15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
39 * U-Boot environment 2 * NAND_BLOCK_SIZE = 256 KiB @ 0x260000
40 * Kernel 64 * NAND_BLOCK_SIZE = 8 MiB @ 0x2A0000
41 * DTB 4 * NAND_BLOCK_SIZE = 512 KiB @ 0xAA0000
42 * RootFS Remaining Flash Space @ 0xB20000
43 */
Miquel Raynal88718be2019-10-03 19:50:03 +020044#endif /* CONFIG_MTD_RAW_NAND */
Derald D. Woods3f53e612016-03-05 13:19:59 -060045
46/* Environment information */
Derald D. Woods3f53e612016-03-05 13:19:59 -060047
48#define CONFIG_BOOTFILE "uImage"
49
50#define CONFIG_EXTRA_ENV_SETTINGS \
51 "loadaddr=0x82000000\0" \
Adam Forddda9af32018-12-10 14:56:36 -060052 "console=ttyS2,115200n8\0" \
Derald D. Woods3f53e612016-03-05 13:19:59 -060053 "fdtfile=am3517-evm.dtb\0" \
54 "fdtaddr=0x82C00000\0" \
55 "vram=16M\0" \
56 "bootenv=uEnv.txt\0" \
57 "cmdline=\0" \
58 "optargs=\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040059 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
60 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Derald D. Woods3f53e612016-03-05 13:19:59 -060061 "mmcdev=0\0" \
62 "mmcpart=1\0" \
63 "mmcroot=/dev/mmcblk0p2 rw\0" \
64 "mmcrootfstype=ext4 rootwait fixrtc\0" \
65 "mmcargs=setenv bootargs console=${console} " \
66 "${mtdparts} " \
67 "${optargs} " \
68 "root=${mmcroot} " \
69 "rootfstype=${mmcrootfstype} " \
70 "${cmdline}\0" \
71 "nandargs=setenv bootargs console=${console} " \
72 "${mtdparts} " \
73 "${optargs} " \
74 "root=ubi0:rootfs rw ubi.mtd=rootfs " \
75 "rootfstype=ubifs rootwait " \
76 "${cmdline}\0" \
77 "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
78 "importbootenv=echo Importing environment from mmc ...; " \
79 "env import -t ${loadaddr} ${filesize}\0" \
80 "bootscript=echo Running bootscript from mmc ...; " \
81 "source ${loadaddr}\0" \
82 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
83 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
84 "mmcboot=echo Booting from mmc ...; " \
85 "run mmcargs; " \
86 "bootz ${loadaddr} - ${fdtaddr}\0" \
87 "nandboot=echo Booting from nand ...; " \
88 "run nandargs; " \
89 "nand read ${loadaddr} 2a0000 800000; " \
90 "nand read ${fdtaddr} aa0000 80000; " \
91 "bootm ${loadaddr} - ${fdtaddr}\0" \
92
Derald D. Woods3f53e612016-03-05 13:19:59 -060093/* Miscellaneous configurable options */
Derald D. Woods3f53e612016-03-05 13:19:59 -060094
95/* We set the max number of command args high to avoid HUSH bugs. */
96#define CONFIG_SYS_MAXARGS 64
97
Adam Ford261ec8f2017-08-22 10:50:01 -050098/* Print Buffer Size */
99#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \
100 + sizeof(CONFIG_SYS_PROMPT) + 16)
101/* Boot Argument Buffer Size */
102#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
Derald D. Woods3f53e612016-03-05 13:19:59 -0600103
104/* memtest works on */
Derald D. Woods3f53e612016-03-05 13:19:59 -0600105
Derald D. Woods3f53e612016-03-05 13:19:59 -0600106/* Physical Memory Map */
Derald D. Woods3f53e612016-03-05 13:19:59 -0600107#define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024)
Derald D. Woods3f53e612016-03-05 13:19:59 -0600108
109/* FLASH and environment organization */
110
111/* **** PISMO SUPPORT *** */
112#define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */
113 /* on one chip */
114#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */
115#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
116
Miquel Raynal88718be2019-10-03 19:50:03 +0200117#if defined(CONFIG_MTD_RAW_NAND)
Derald D. Woods3f53e612016-03-05 13:19:59 -0600118#define CONFIG_SYS_FLASH_BASE NAND_BASE
119#endif
120
121/* Monitor at start of flash */
122#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
123
124#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Derald D. Woods3f53e612016-03-05 13:19:59 -0600125
126/* Defines for SPL */
Derald D. Woods3f53e612016-03-05 13:19:59 -0600127
Derald D. Woods3f53e612016-03-05 13:19:59 -0600128#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
129
Vaibhav Hiremathed01e452010-06-07 15:20:43 -0400130#endif /* __CONFIG_H */