summaryrefslogtreecommitdiff
path: root/include/configs/j721e_evm.h
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2020-08-18 22:09:43 +0300
committerLokesh Vutla <lokeshvutla@ti.com>2020-09-15 16:21:53 +0300
commit615d10f736e850c073a17b2f64fd08c7f5b32fe2 (patch)
tree049d446fd33372a153bf9d9ce18a4c5eb0a89976 /include/configs/j721e_evm.h
parentf61687df0f6d8f4157664b1cc6c7e37108a2d138 (diff)
downloadu-boot-615d10f736e850c073a17b2f64fd08c7f5b32fe2.tar.xz
env: ti: j721e-evm: Update R5 SPL rproc env variables for J7200
The R5 SPL on J7200 SoCs will be limited to booting just the MCU R5FSS0 R5F core in LockStep-mode at present, so add the two required environment variables 'addr_mcur5f0_0load' and 'name_mcur5f0_0fw' that are needed by the R5 SPL early-boot logic. The firmware name used is also different from that on J721E SoCs. Signed-off-by: Suman Anna <s-anna@ti.com>
Diffstat (limited to 'include/configs/j721e_evm.h')
-rw-r--r--include/configs/j721e_evm.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/j721e_evm.h b/include/configs/j721e_evm.h
index 9988c43641..1b47e18b2f 100644
--- a/include/configs/j721e_evm.h
+++ b/include/configs/j721e_evm.h
@@ -84,11 +84,17 @@
"name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
#ifdef CONFIG_SYS_K3_SPL_ATF
+#if defined(CONFIG_TARGET_J721E_R5_EVM)
#define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \
"addr_mainr5f0_0load=0x88000000\0" \
"name_mainr5f0_0fw=/lib/firmware/j7-main-r5f0_0-fw\0" \
"addr_mcur5f0_0load=0x89000000\0" \
"name_mcur5f0_0fw=/lib/firmware/j7-mcu-r5f0_0-fw\0"
+#elif defined(CONFIG_TARGET_J7200_R5_EVM)
+#define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC \
+ "addr_mcur5f0_0load=0x89000000\0" \
+ "name_mcur5f0_0fw=/lib/firmware/j7200-mcu-r5f0_0-fw\0"
+#endif /* CONFIG_TARGET_J721E_R5_EVM */
#else
#define EXTRA_ENV_R5_SPL_RPROC_FW_ARGS_MMC ""
#endif /* CONFIG_SYS_K3_SPL_ATF */