blob: b896f962f080e78cc689f932d236849bb38e6e6e [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/* Board NAND Info. */
Miquel Raynal88718be2019-10-03 19:50:03 +020018#ifdef CONFIG_MTD_RAW_NAND
Derald D. Woods138daa72016-03-05 13:19:58 -060019#define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, 10, \
20 11, 12, 13, 14, 16, 17, 18, 19, 20, \
21 21, 22, 23, 24, 25, 26, 27, 28, 30, \
22 31, 32, 33, 34, 35, 36, 37, 38, 39, \
23 40, 41, 42, 44, 45, 46, 47, 48, 49, \
24 50, 51, 52, 53, 54, 55, 56 }
25
Tom Rini5059a2a2011-11-18 12:48:10 +000026#define CONFIG_SYS_NAND_ECCSIZE 512
Derald D. Woods138daa72016-03-05 13:19:58 -060027#define CONFIG_SYS_NAND_ECCBYTES 13
Derald D. Woods138daa72016-03-05 13:19:58 -060028#define CONFIG_SYS_NAND_MAX_OOBFREE 2
29#define CONFIG_SYS_NAND_MAX_ECCPOS 56
Tom Rini5059a2a2011-11-18 12:48:10 +000030#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
Derald D. Woods3f53e612016-03-05 13:19:59 -060031/* NAND block size is 128 KiB. Synchronize these values with
32 * corresponding Device Tree entries in Linux:
33 * MLO(SPL) 4 * NAND_BLOCK_SIZE = 512 KiB @ 0x000000
34 * U-Boot 15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
35 * U-Boot environment 2 * NAND_BLOCK_SIZE = 256 KiB @ 0x260000
36 * Kernel 64 * NAND_BLOCK_SIZE = 8 MiB @ 0x2A0000
37 * DTB 4 * NAND_BLOCK_SIZE = 512 KiB @ 0xAA0000
38 * RootFS Remaining Flash Space @ 0xB20000
39 */
Miquel Raynal88718be2019-10-03 19:50:03 +020040#endif /* CONFIG_MTD_RAW_NAND */
Derald D. Woods3f53e612016-03-05 13:19:59 -060041
42/* Environment information */
Derald D. Woods3f53e612016-03-05 13:19:59 -060043#define CONFIG_EXTRA_ENV_SETTINGS \
44 "loadaddr=0x82000000\0" \
Adam Forddda9af32018-12-10 14:56:36 -060045 "console=ttyS2,115200n8\0" \
Derald D. Woods3f53e612016-03-05 13:19:59 -060046 "fdtfile=am3517-evm.dtb\0" \
47 "fdtaddr=0x82C00000\0" \
48 "vram=16M\0" \
49 "bootenv=uEnv.txt\0" \
50 "cmdline=\0" \
51 "optargs=\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040052 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
53 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Derald D. Woods3f53e612016-03-05 13:19:59 -060054 "mmcdev=0\0" \
55 "mmcpart=1\0" \
56 "mmcroot=/dev/mmcblk0p2 rw\0" \
57 "mmcrootfstype=ext4 rootwait fixrtc\0" \
58 "mmcargs=setenv bootargs console=${console} " \
59 "${mtdparts} " \
60 "${optargs} " \
61 "root=${mmcroot} " \
62 "rootfstype=${mmcrootfstype} " \
63 "${cmdline}\0" \
64 "nandargs=setenv bootargs console=${console} " \
65 "${mtdparts} " \
66 "${optargs} " \
67 "root=ubi0:rootfs rw ubi.mtd=rootfs " \
68 "rootfstype=ubifs rootwait " \
69 "${cmdline}\0" \
70 "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
71 "importbootenv=echo Importing environment from mmc ...; " \
72 "env import -t ${loadaddr} ${filesize}\0" \
73 "bootscript=echo Running bootscript from mmc ...; " \
74 "source ${loadaddr}\0" \
75 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
76 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
77 "mmcboot=echo Booting from mmc ...; " \
78 "run mmcargs; " \
79 "bootz ${loadaddr} - ${fdtaddr}\0" \
80 "nandboot=echo Booting from nand ...; " \
81 "run nandargs; " \
82 "nand read ${loadaddr} 2a0000 800000; " \
83 "nand read ${fdtaddr} aa0000 80000; " \
84 "bootm ${loadaddr} - ${fdtaddr}\0" \
85
Derald D. Woods3f53e612016-03-05 13:19:59 -060086/* Miscellaneous configurable options */
Derald D. Woods3f53e612016-03-05 13:19:59 -060087
Derald D. Woods3f53e612016-03-05 13:19:59 -060088/* memtest works on */
Derald D. Woods3f53e612016-03-05 13:19:59 -060089
Derald D. Woods3f53e612016-03-05 13:19:59 -060090/* Physical Memory Map */
Derald D. Woods3f53e612016-03-05 13:19:59 -060091#define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024)
Derald D. Woods3f53e612016-03-05 13:19:59 -060092
93/* FLASH and environment organization */
94
95/* **** PISMO SUPPORT *** */
96#define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */
97 /* on one chip */
Derald D. Woods3f53e612016-03-05 13:19:59 -060098#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
99
Miquel Raynal88718be2019-10-03 19:50:03 +0200100#if defined(CONFIG_MTD_RAW_NAND)
Derald D. Woods3f53e612016-03-05 13:19:59 -0600101#define CONFIG_SYS_FLASH_BASE NAND_BASE
102#endif
103
Derald D. Woods3f53e612016-03-05 13:19:59 -0600104#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Derald D. Woods3f53e612016-03-05 13:19:59 -0600105
Vaibhav Hiremathed01e452010-06-07 15:20:43 -0400106#endif /* __CONFIG_H */