From: Jean-Jacques Hiblot Date: Fri, 7 Dec 2018 13:50:51 +0000 (+0100) Subject: configs: dra7xx-evm: increase the size of the malloc's pool before relocation X-Git-Tag: v2019.01-rc2~14^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=78eee5e90d8965f79ba674fe77da781beb072c5b;p=oweals%2Fu-boot.git configs: dra7xx-evm: increase the size of the malloc's pool before relocation This is required to take advantage of MULTI_DTB_FIT before relocation. If it is too low, DM will be initialized only after relocation has taken place. That is too late for the DRA7 because I2C DM is used before the relocation to setup the voltages required, among other things, to properly initialize the DRAM. Signed-off-by: Jean-Jacques Hiblot Reviewed-by: Tom Rini Reviewed-by: Heiko Schocher --- diff --git a/configs/dra7xx_evm_defconfig b/configs/dra7xx_evm_defconfig index 27f6b5d981..a57dc0795d 100644 --- a/configs/dra7xx_evm_defconfig +++ b/configs/dra7xx_evm_defconfig @@ -1,7 +1,7 @@ CONFIG_ARM=y CONFIG_ARCH_OMAP2PLUS=y CONFIG_TI_COMMON_CMD_OPTIONS=y -CONFIG_SYS_MALLOC_F_LEN=0x2000 +CONFIG_SYS_MALLOC_F_LEN=0x18000 CONFIG_OMAP54XX=y CONFIG_TARGET_DRA7XX_EVM=y CONFIG_SPL=y