diff options
| author | Jean-Jacques Hiblot <[email protected]> | 2018-12-07 14:50:51 +0100 |
|---|---|---|
| committer | Heiko Schocher <[email protected]> | 2018-12-10 07:17:13 +0100 |
| commit | 78eee5e90d8965f79ba674fe77da781beb072c5b (patch) | |
| tree | aa37fcb7918ff98aa99af4fde68ae0d7bd5f5157 | |
| parent | 7eb1f607f15310a7b62eedcf7516fecbfda517da (diff) | |
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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
| -rw-r--r-- | configs/dra7xx_evm_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/dra7xx_evm_defconfig b/configs/dra7xx_evm_defconfig index 27f6b5d981f..a57dc0795d3 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 |
