summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Gibbons <[email protected]>2026-01-20 15:33:13 +0000
committerTom Rini <[email protected]>2026-02-06 09:27:42 -0600
commit2e6b5185bd509d5c39bbdf900bf6ac9c12f2ed59 (patch)
tree6d8d4d821e4557a287daec3c6d75e4260a27f08f
parent3382d75f7a6ccc661c840b0257d85ca7be0ab5d0 (diff)
configs: microchip_mpfs_generic: fix boot failure
Recent changes to device resource management (DEVRES) increased early memory requirements during boot. The previous value was insufficient, resulting in boot failures. Increase CONFIG_SYS_MALLOC_F_LEN to provide enough early malloc pool for successful boot and device initialisation. Signed-off-by: Jamie Gibbons <[email protected]>
-rw-r--r--configs/microchip_mpfs_generic_defconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/microchip_mpfs_generic_defconfig b/configs/microchip_mpfs_generic_defconfig
index 22f67414a7c..973ed09fa87 100644
--- a/configs/microchip_mpfs_generic_defconfig
+++ b/configs/microchip_mpfs_generic_defconfig
@@ -1,6 +1,6 @@
CONFIG_RISCV=y
CONFIG_SYS_MALLOC_LEN=0x800000
-CONFIG_SYS_MALLOC_F_LEN=0x2000
+CONFIG_SYS_MALLOC_F_LEN=0x2800
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x80200000
CONFIG_ENV_SIZE=0x2000