blob: 13197459634f2a078961e52880185fc1c89c46e9 [file] [log] [blame]
Lokesh Vutla0911d952018-08-27 15:59:06 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Configuration header file for K3 AM654 EVM
4 *
5 * Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
6 * Lokesh Vutla <lokeshvutla@ti.com>
7 */
8
9#ifndef __CONFIG_AM654_EVM_H
10#define __CONFIG_AM654_EVM_H
11
12#include <linux/sizes.h>
13#include <config_distro_bootcmd.h>
Andreas Dannenberg1e5b1162018-08-27 15:59:07 +053014#include <environment/ti/mmc.h>
Lokesh Vutla0911d952018-08-27 15:59:06 +053015
16#define CONFIG_ENV_SIZE (128 << 10)
17
18/* DDR Configuration */
19#define CONFIG_SYS_SDRAM_BASE1 0x880000000
20
21/* SPL Loader Configuration */
Andreas Dannenberg0c45dfa2019-06-04 17:55:48 -050022#ifdef CONFIG_TARGET_AM654_A53_EVM
23#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \
24 CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE)
25#else
26/*
27 * Maximum size in memory allocated to the SPL BSS. Keep it as tight as
28 * possible (to allow the build to go through), as this directly affects
29 * our memory footprint. The less we use for BSS the more we have available
30 * for everything else.
31 */
32#define CONFIG_SPL_BSS_MAX_SIZE 0x5000
33/*
34 * Link BSS to be within SPL in a dedicated region located near the top of
35 * the MCU SRAM, this way making it available also before relocation. Note
36 * that we are not using the actual top of the MCU SRAM as there is a memory
37 * location filled in by the boot ROM that we want to read out without any
38 * interference from the C context.
39 */
40#define CONFIG_SPL_BSS_START_ADDR (CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX -\
41 CONFIG_SPL_BSS_MAX_SIZE)
42/* Set the stack right below the SPL BSS section */
43#define CONFIG_SYS_INIT_SP_ADDR CONFIG_SPL_BSS_START_ADDR
44#endif
Lokesh Vutla9dba8832018-11-02 19:51:07 +053045
46#ifdef CONFIG_SYS_K3_SPL_ATF
47#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "tispl.bin"
Lokesh Vutla0911d952018-08-27 15:59:06 +053048#endif
49
Lokesh Vutlaccdb7c22018-11-15 11:04:50 +053050#ifndef CONFIG_CPU_V7R
Lokesh Vutla0911d952018-08-27 15:59:06 +053051#define CONFIG_SKIP_LOWLEVEL_INIT
Lokesh Vutlaccdb7c22018-11-15 11:04:50 +053052#endif
Lokesh Vutla0911d952018-08-27 15:59:06 +053053
54#define CONFIG_SPL_MAX_SIZE CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE
Lokesh Vutla0911d952018-08-27 15:59:06 +053055
Andrew F. Davis64176a82019-02-01 15:04:57 -060056#define CONFIG_SYS_BOOTM_LEN SZ_64M
57
Faiz Abbas6c42a752019-06-11 00:43:43 +053058#define PARTS_DEFAULT \
59 /* Linux partitions */ \
60 "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
61
Andreas Dannenberg1e5b1162018-08-27 15:59:07 +053062/* U-Boot general configuration */
63#define EXTRA_ENV_AM65X_BOARD_SETTINGS \
64 "findfdt=" \
65 "if test $board_name = am65x; then " \
66 "setenv name_fdt k3-am654-base-board.dtb; " \
67 "else if test $name_fdt = undefined; then " \
68 "echo WARNING: Could not determine device tree to use;"\
69 "fi; fi; " \
70 "setenv fdtfile ${name_fdt}\0" \
71 "loadaddr=0x80080000\0" \
72 "fdtaddr=0x82000000\0" \
73 "name_kern=Image\0" \
74 "console=ttyS2,115200n8\0" \
75 "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000\0" \
Faiz Abbas6c42a752019-06-11 00:43:43 +053076 "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0" \
Andreas Dannenberg1e5b1162018-08-27 15:59:07 +053077
78/* U-Boot MMC-specific configuration */
79#define EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC \
80 "boot=mmc\0" \
81 "mmcdev=1\0" \
82 "bootpart=1:2\0" \
83 "bootdir=/boot\0" \
84 "rd_spec=-\0" \
85 "init_mmc=run args_all args_mmc\0" \
86 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
87 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
Faiz Abbas6c42a752019-06-11 00:43:43 +053088 "${bootdir}/${name_kern}\0" \
89 "partitions=" PARTS_DEFAULT
Andreas Dannenberg1e5b1162018-08-27 15:59:07 +053090
91/* Incorporate settings into the U-Boot environment */
92#define CONFIG_EXTRA_ENV_SETTINGS \
93 DEFAULT_MMC_TI_ARGS \
94 EXTRA_ENV_AM65X_BOARD_SETTINGS \
95 EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC
96
Faiz Abbasc36331a2019-06-11 00:43:42 +053097/* MMC ENV related defines */
98#ifdef CONFIG_ENV_IS_IN_MMC
99#define CONFIG_SYS_MMC_ENV_DEV 0
100#define CONFIG_SYS_MMC_ENV_PART 1
101#define CONFIG_ENV_SIZE (128 << 10)
102#define CONFIG_ENV_OFFSET 0x680000
103#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
104#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
105#endif
106
Lokesh Vutla0911d952018-08-27 15:59:06 +0530107/* Now for the remaining common defines */
108#include <configs/ti_armv7_common.h>
109
110#endif /* __CONFIG_AM654_EVM_H */