diff options
author | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-06-09 14:53:13 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-06-11 09:42:55 +0200 |
commit | 1cdb64ad3aa9d6cd4a02adc09fcc1015f90e2fb9 (patch) | |
tree | f07651424ced2e0b458ed053bda05a247b2444d1 | |
parent | fddf9886d27a0bd7123ef9d4caa1890d4f1ac477 (diff) |
configs: stm32mp13: increase SYS_MALLOC_F_LEN to 0x210000
Due SCMI update to protocol v2.0, we need to increase
SYS_MALLOC_F_LEN value to avoid following message:
alloc space exhausted ptr 200040 limit 200000
Set SYS_MALLOC_F_LEN to 0x210000 to fix this issue.
Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
-rw-r--r-- | configs/stm32mp13_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/stm32mp13_defconfig b/configs/stm32mp13_defconfig index 530f6aa6380..ecd4f866fe9 100644 --- a/configs/stm32mp13_defconfig +++ b/configs/stm32mp13_defconfig @@ -1,7 +1,7 @@ CONFIG_ARM=y CONFIG_ARCH_STM32MP=y CONFIG_TFABOOT=y -CONFIG_SYS_MALLOC_F_LEN=0x180000 +CONFIG_SYS_MALLOC_F_LEN=0x210000 CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0xc0400000 CONFIG_ENV_OFFSET=0x900000 CONFIG_DEFAULT_DEVICE_TREE="st/stm32mp135f-dk" |