From 7f8062b7e590d06cf3ac73cfe5e88b96c642d7c0 Mon Sep 17 00:00:00 2001 From: Masahisa Kojima Date: Thu, 1 Jun 2023 18:13:51 +0900 Subject: configs: synquacer: increase SYS_MALLOC_F_LEN DM_FLAG_PRE_RELOC flag is added into some drivers by recent commits such as 1bd790bc4b ("firmware: psci: enable DM_FLAG_PRE_RELOC"). Current SYS_MALLOC_F_LEN of SynQuacer Developerbox platform is too small, Developerbox will not boot due to lack of heap memory. This commit increases the size of heap memory. Signed-off-by: Masahisa Kojima Acked-by: Ilias Apalodimas Acked-by: Jassi Brar --- configs/synquacer_developerbox_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configs') diff --git a/configs/synquacer_developerbox_defconfig b/configs/synquacer_developerbox_defconfig index 8e7236b5723..17d70ef3370 100644 --- a/configs/synquacer_developerbox_defconfig +++ b/configs/synquacer_developerbox_defconfig @@ -2,7 +2,7 @@ CONFIG_ARM=y CONFIG_ARCH_SYNQUACER=y CONFIG_POSITION_INDEPENDENT=y CONFIG_SYS_MALLOC_LEN=0x1000000 -CONFIG_SYS_MALLOC_F_LEN=0x400 +CONFIG_SYS_MALLOC_F_LEN=0x4000 CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0xe0000000 CONFIG_SF_DEFAULT_SPEED=31250000 -- cgit v1.3.1 From 1b086da5cd7fc66d3ef4e096ade3fabdde99c9e0 Mon Sep 17 00:00:00 2001 From: Vignesh Raghavendra Date: Sat, 3 Jun 2023 18:06:14 +0530 Subject: configs: am64x_evm_*_defconfig: Enable High Secure device support Enable CONFIG_TI_SECURE_DEVICE to support booting High Secure(HS) variants of AM64x SoC. Signed-off-by: Vignesh Raghavendra --- configs/am64x_evm_a53_defconfig | 1 + configs/am64x_evm_r5_defconfig | 1 + 2 files changed, 2 insertions(+) (limited to 'configs') diff --git a/configs/am64x_evm_a53_defconfig b/configs/am64x_evm_a53_defconfig index b817e62ef04..6485ed108a9 100644 --- a/configs/am64x_evm_a53_defconfig +++ b/configs/am64x_evm_a53_defconfig @@ -1,6 +1,7 @@ CONFIG_ARM=y CONFIG_SKIP_LOWLEVEL_INIT=y CONFIG_ARCH_K3=y +CONFIG_TI_SECURE_DEVICE=y CONFIG_SYS_MALLOC_LEN=0x2000000 CONFIG_SYS_MALLOC_F_LEN=0x8000 CONFIG_SPL_GPIO=y diff --git a/configs/am64x_evm_r5_defconfig b/configs/am64x_evm_r5_defconfig index 96cb437b10b..45d32658cff 100644 --- a/configs/am64x_evm_r5_defconfig +++ b/configs/am64x_evm_r5_defconfig @@ -1,5 +1,6 @@ CONFIG_ARM=y CONFIG_ARCH_K3=y +CONFIG_TI_SECURE_DEVICE=y CONFIG_SYS_MALLOC_LEN=0x2000000 CONFIG_SYS_MALLOC_F_LEN=0x80000 CONFIG_SPL_GPIO=y -- cgit v1.3.1