1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Configuration header file for K3 AM654 EVM
5 * Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
6 * Lokesh Vutla <lokeshvutla@ti.com>
9 #ifndef __CONFIG_AM654_EVM_H
10 #define __CONFIG_AM654_EVM_H
12 #include <linux/sizes.h>
13 #include <config_distro_bootcmd.h>
14 #include <environment/ti/mmc.h>
15 #include <environment/ti/k3_rproc.h>
17 #define CONFIG_ENV_SIZE (128 << 10)
19 /* DDR Configuration */
20 #define CONFIG_SYS_SDRAM_BASE1 0x880000000
22 /* SPL Loader Configuration */
23 #ifdef CONFIG_TARGET_AM654_A53_EVM
24 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \
25 CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE)
28 * Maximum size in memory allocated to the SPL BSS. Keep it as tight as
29 * possible (to allow the build to go through), as this directly affects
30 * our memory footprint. The less we use for BSS the more we have available
31 * for everything else.
33 #define CONFIG_SPL_BSS_MAX_SIZE 0x5000
35 * Link BSS to be within SPL in a dedicated region located near the top of
36 * the MCU SRAM, this way making it available also before relocation. Note
37 * that we are not using the actual top of the MCU SRAM as there is a memory
38 * location filled in by the boot ROM that we want to read out without any
39 * interference from the C context.
41 #define CONFIG_SPL_BSS_START_ADDR (CONFIG_SYS_K3_BOOT_PARAM_TABLE_INDEX -\
42 CONFIG_SPL_BSS_MAX_SIZE)
43 /* Set the stack right below the SPL BSS section */
44 #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SPL_BSS_START_ADDR
45 /* Configure R5 SPL post-relocation malloc pool in DDR */
46 #define CONFIG_SYS_SPL_MALLOC_START 0x84000000
47 #define CONFIG_SYS_SPL_MALLOC_SIZE SZ_16M
50 #ifdef CONFIG_SYS_K3_SPL_ATF
51 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "tispl.bin"
54 #ifndef CONFIG_CPU_V7R
55 #define CONFIG_SKIP_LOWLEVEL_INIT
58 #define CONFIG_SPL_MAX_SIZE CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE
60 #define CONFIG_SYS_BOOTM_LEN SZ_64M
62 #define PARTS_DEFAULT \
63 /* Linux partitions */ \
64 "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
66 /* U-Boot general configuration */
67 #define EXTRA_ENV_AM65X_BOARD_SETTINGS \
69 "setenv name_fdt k3-am654-base-board.dtb;" \
70 "setenv fdtfile ${name_fdt}\0" \
71 "loadaddr=0x80080000\0" \
72 "fdtaddr=0x82000000\0" \
73 "overlayaddr=0x83000000\0" \
75 "console=ttyS2,115200n8\0" \
76 "args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000\0" \
77 "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0" \
79 /* U-Boot MMC-specific configuration */
80 #define EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC \
86 "init_mmc=run args_all args_mmc\0" \
87 "get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
89 "fdt address ${fdtaddr};" \
90 "fdt resize 0x100000;" \
91 "for overlay in $name_overlays;" \
93 "load mmc ${bootpart} ${overlayaddr} ${bootdir}/${overlay};" \
94 "fdt apply ${overlayaddr};" \
96 "get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
97 "${bootdir}/${name_kern}\0" \
98 "get_fit_mmc=load mmc ${bootpart} ${addr_fit} " \
99 "${bootdir}/${name_fit}\0" \
100 "partitions=" PARTS_DEFAULT
102 #ifdef DEFAULT_RPROCS
103 #undef DEFAULT_RPROCS
105 #define DEFAULT_RPROCS "" \
106 "0 /lib/firmware/am65x-mcu-r5f0_0-fw " \
107 "1 /lib/firmware/am65x-mcu-r5f0_1-fw "
109 /* Incorporate settings into the U-Boot environment */
110 #define CONFIG_EXTRA_ENV_SETTINGS \
111 DEFAULT_MMC_TI_ARGS \
112 DEFAULT_FIT_TI_ARGS \
113 EXTRA_ENV_AM65X_BOARD_SETTINGS \
114 EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC \
115 EXTRA_ENV_RPROC_SETTINGS
117 /* MMC ENV related defines */
118 #ifdef CONFIG_ENV_IS_IN_MMC
119 #define CONFIG_SYS_MMC_ENV_DEV 0
120 #define CONFIG_SYS_MMC_ENV_PART 1
121 #define CONFIG_ENV_SIZE (128 << 10)
122 #define CONFIG_ENV_OFFSET 0x680000
123 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
124 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
127 #define CONFIG_SUPPORT_EMMC_BOOT
129 /* Now for the remaining common defines */
130 #include <configs/ti_armv7_common.h>
132 #endif /* __CONFIG_AM654_EVM_H */