summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorFerass El Hafidi <[email protected]>2025-11-26 12:17:11 +0000
committerNeil Armstrong <[email protected]>2025-12-11 11:44:41 +0100
commitdcf8a2738b0e00a7caaf193a6cc69d3cf0ec3999 (patch)
treeba90f074a0e081670919dd1dc69ec41805e514e3 /common
parent773aaf8f8cc94a882a89373920f7986a9669f0e7 (diff)
spl: meson: set SPL max size for GX SoCs
Enforce the max size for U-Boot SPL at the Kconfig level, to prevent the build system from producing an image too large for the bootROM to load. Signed-off-by: Ferass El Hafidi <[email protected]> Reviewed-by: Neil Armstrong <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Neil Armstrong <[email protected]>
Diffstat (limited to 'common')
-rw-r--r--common/spl/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index a4327167164..6ec9dd923a2 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -41,6 +41,7 @@ config SPL_SIZE_LIMIT
default 0x11000 if ARCH_MX6 && !MX6_OCRAM_256KB
default 0x31000 if ARCH_MX6 && MX6_OCRAM_256KB
default 0x30000 if ARCH_MVEBU && ARMADA_32BIT
+ default 0xb000 if ARCH_MESON && MESON_GX
default 0x0
help
Specifies the maximum length of the U-Boot SPL image.