diff options
author | Daniel Schultz <d.schultz@phytec.de> | 2025-01-15 02:38:13 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-23 12:11:50 -0600 |
commit | d87a706b9b0ee085367032c161bce276f2bc6d07 (patch) | |
tree | cf039cfdbd0e808a282843ca691b242c5f8196f7 | |
parent | 86f3c1cc4750e9de0ee1f44c03219b919f49365a (diff) |
configs: phycore_am62x_r5_defconfig: Increase SPL Malloc Pool
Increase the malloc pool size for the SPL by additional 4kB from
0x7000 to 0x8000.
This fixes following error message:
...
alloc space exhausted ptr 7028 limit 7000
DRAM init failed: -12
Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
-rw-r--r-- | configs/phycore_am62x_r5_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/phycore_am62x_r5_defconfig b/configs/phycore_am62x_r5_defconfig index a856e69d88c..c5ddcd72852 100644 --- a/configs/phycore_am62x_r5_defconfig +++ b/configs/phycore_am62x_r5_defconfig @@ -21,7 +21,7 @@ CONFIG_SPL_MMC=y CONFIG_SPL_SERIAL=y CONFIG_SPL_DRIVERS_MISC=y CONFIG_SPL_STACK_R_ADDR=0x82000000 -CONFIG_SPL_SYS_MALLOC_F_LEN=0x7000 +CONFIG_SPL_SYS_MALLOC_F_LEN=0x8000 CONFIG_SPL_TEXT_BASE=0x43c00000 CONFIG_SPL_HAS_BSS_LINKER_SECTION=y CONFIG_SPL_BSS_START_ADDR=0x43c3b000 |