From: Sean Anderson Date: Thu, 28 Apr 2022 16:39:49 +0000 (-0400) Subject: ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=3166e6fd45ed1aba9029839b482006a839daea2f;p=u-boot.git ls10xxx: Use a sane SPL_SYS_MALLOC_F_LEN default SPL_SYS_MALLOC_F_LEN defaults to SYS_MALLOC_F_LEN. 0x10000 is 64 KiB, or around half of the total OCRAM size. Revert to the default of 0x2000. This fixes SPL boot. Fixes: 545eceb520 ("imx8/ls10xx: Use a sane SYS_MALLOC_F_LEN default") Signed-off-by: Sean Anderson Reviewed-by: Fabio Estevam --- diff --git a/Kconfig b/Kconfig index 8bbb988790..797038b037 100644 --- a/Kconfig +++ b/Kconfig @@ -257,9 +257,7 @@ config SYS_MALLOC_F_LEN default 0x4000 if SANDBOX || RISCV || ARCH_APPLE || ROCKCHIP_RK3368 || \ ROCKCHIP_RK3399 default 0x8000 if RCAR_GEN3 - default 0x10000 if ARCH_IMX8 || (ARCH_IMX8M && !IMX8MQ) || \ - ARCH_LS1012A || ARCH_LS1021A || ARCH_LS1043A || \ - ARCH_LS1046A + default 0x10000 if ARCH_IMX8 || (ARCH_IMX8M && !IMX8MQ) default 0x2000 help Before relocation, memory is very limited on many platforms. Still,