From: Tom Rini Date: Wed, 31 Dec 2025 16:13:54 +0000 (-0600) Subject: Merge patch series "configs: Remove default malloc length for K3 R5 SPL" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=101d0cc6812bd13a528b5ea0e5b020f388cd16f6;p=thirdparty%2Fu-boot.git Merge patch series "configs: Remove default malloc length for K3 R5 SPL" This series from Andrew Davis makes a number of the TI K3 CONFIG symbols have consistent values in SPL, as they are things determined by the SoC and not the board design. Link: https://lore.kernel.org/r/20251208190635.2044082-1-afd@ti.com --- 101d0cc6812bd13a528b5ea0e5b020f388cd16f6 diff --cc boot/Kconfig index 644f398f1e9,14c59ef72f9..676a42a6ed4 --- a/boot/Kconfig +++ b/boot/Kconfig @@@ -246,12 -272,11 +246,14 @@@ config SPL_LOAD_FI "linux" images are also supported with Falcon boot mode. config SPL_LOAD_FIT_ADDRESS - hex "load address of fit image" + hex "load address of fit image in SPL" depends on SPL_LOAD_FIT - default 0x44000000 if ARCH_IMX8M + default 0x81000000 if ARCH_K3 && ARM64 + default 0x80080000 if ARCH_K3 && CPU_V7R + default 0x44000000 if ARCH_IMX8M + default 0x60080000 if ARCH_ROCKCHIP && SPL_TEXT_BASE = 0x60000000 + default 0x40200000 if ARCH_ROCKCHIP && SPL_TEXT_BASE = 0x40000000 + default 0x00200000 if ARCH_ROCKCHIP && SPL_TEXT_BASE = 0x00000000 default 0x0 help Specify the load address of the fit image that will be loaded