summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2022-04-11 17:07:04 +0800
committerTom Rini <trini@konsulko.com>2022-04-11 08:27:20 -0400
commitb598957206e541b3f8876ae34a15fac6da90dcef (patch)
tree0f80d9727600ef9531054ecc856eb3d76ddd773d /Kconfig
parent33ae8c5bebba0874fbc432914406e63fbc219080 (diff)
Kconfig: Fix SYS_MALLOC_F_LEN for i.MX8MQ
i.MX8MQ use SYS_MALLOC_F_LEN 0x2000, not 0x10000. The OCRAM_S only has 32KB memory, use 0x10000 will make SPL not bootable. Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com> Reviewed-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig7
1 files changed, 4 insertions, 3 deletions
diff --git a/Kconfig b/Kconfig
index 74a1013e4c..35c6acdd3c 100644
--- a/Kconfig
+++ b/Kconfig
@@ -250,9 +250,10 @@ config SYS_MALLOC_F_LEN
default 0x1000 if AM33XX
default 0x4000 if SANDBOX || RISCV
default 0x2000 if (ARCH_MX7 || ARCH_MX7ULP || ARCH_MX6 || ARCH_MX5 || \
- ARCH_QEMU || ARCH_SUNXI || ARCH_OWL)
- default 0x10000 if (ARCH_IMX8 || ARCH_IMX8M || ARCH_LS1012A || \
- ARCH_LS1021A || ARCH_LS1043A || ARCH_LS1046A)
+ ARCH_QEMU || ARCH_SUNXI || ARCH_OWL || IMX8MQ)
+ default 0x10000 if (ARCH_IMX8 || (ARCH_IMX8M && !IMX8MQ) || \
+ ARCH_LS1012A || ARCH_LS1021A || ARCH_LS1043A || \
+ ARCH_LS1046A)
default 0x400
help
Before relocation, memory is very limited on many platforms. Still,