diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2021-03-31 15:24:48 +0800 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2021-04-08 15:37:29 +0800 |
commit | e9b62617fa7783b2eb2ab055bbb46035fd12167c (patch) | |
tree | 1877581c0de9a60ea2ce5aa5674cc54ed6964869 | |
parent | 9c02e50fa10982a9500503a0075307179d481388 (diff) | |
download | u-boot-e9b62617fa7783b2eb2ab055bbb46035fd12167c.zip u-boot-e9b62617fa7783b2eb2ab055bbb46035fd12167c.tar.gz u-boot-e9b62617fa7783b2eb2ab055bbb46035fd12167c.tar.bz2 |
riscv: mpfs-icicle-kit: Increase SYS_MALLOC_F_LEN
The RISC-V architecture default value of CONFIG_SYS_MALLOC_F_LEN
(0x1000) would not provide enough memory for devices like mpfs
clock and ns16550 serial to bind well before relocation.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Padmarao Begari <padmarao.begari@microchip.com>
Tested-by: Padmarao Begari <padmarao.begari@microchip.com>
-rw-r--r-- | configs/microchip_mpfs_icicle_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/microchip_mpfs_icicle_defconfig b/configs/microchip_mpfs_icicle_defconfig index 0c15c3b..1cb2920 100644 --- a/configs/microchip_mpfs_icicle_defconfig +++ b/configs/microchip_mpfs_icicle_defconfig @@ -1,4 +1,5 @@ CONFIG_RISCV=y +CONFIG_SYS_MALLOC_F_LEN=0x2000 CONFIG_ENV_SIZE=0x2000 CONFIG_DEFAULT_DEVICE_TREE="microchip-mpfs-icicle-kit" CONFIG_TARGET_MICROCHIP_ICICLE=y |