diff mbox series

[v2,2/4] configs/*imxrt10*: SYS_MALLOC_LEN is too large

Message ID 20220317183321.315249-3-Mr.Bossman075@gmail.com
State Accepted
Commit 3be38e592ee5a4781273f91ea9de1faf9c4d0038
Delegated to: Stefano Babic
Headers show
Series IMXRT: Maintnice updates | expand

Commit Message

Jesse T March 17, 2022, 6:33 p.m. UTC
1M of heap is more than internal ram making booting without SDRAM not
possible now it is 256k

Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
---
 configs/imxrt1020-evk_defconfig | 2 +-
 configs/imxrt1050-evk_defconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Stefano Babic April 12, 2022, 9:39 p.m. UTC | #1
> 1M of heap is more than internal ram making booting without SDRAM not
> possible now it is 256k
> Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/configs/imxrt1020-evk_defconfig b/configs/imxrt1020-evk_defconfig
index dafa4a505a..362f2e3bb0 100644
--- a/configs/imxrt1020-evk_defconfig
+++ b/configs/imxrt1020-evk_defconfig
@@ -1,7 +1,7 @@ 
 CONFIG_ARM=y
 CONFIG_ARCH_IMXRT=y
 CONFIG_SYS_TEXT_BASE=0x80002000
-CONFIG_SYS_MALLOC_LEN=0x100000
+CONFIG_SYS_MALLOC_LEN=0x40000
 CONFIG_SYS_MALLOC_F_LEN=0x8000
 CONFIG_SPL_GPIO=y
 CONFIG_SPL_LIBCOMMON_SUPPORT=y
diff --git a/configs/imxrt1050-evk_defconfig b/configs/imxrt1050-evk_defconfig
index 09dcc9e6e3..aa4faacca0 100644
--- a/configs/imxrt1050-evk_defconfig
+++ b/configs/imxrt1050-evk_defconfig
@@ -3,7 +3,7 @@  CONFIG_SYS_DCACHE_OFF=y
 # CONFIG_SPL_SYS_DCACHE_OFF is not set
 CONFIG_ARCH_IMXRT=y
 CONFIG_SYS_TEXT_BASE=0x80002000
-CONFIG_SYS_MALLOC_LEN=0x100000
+CONFIG_SYS_MALLOC_LEN=0x40000
 CONFIG_SYS_MALLOC_F_LEN=0x8000
 CONFIG_SPL_GPIO=y
 CONFIG_SPL_LIBCOMMON_SUPPORT=y