aboutsummaryrefslogtreecommitdiff
path: root/common/spl/Kconfig
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2022-10-28 14:46:29 +0200
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2022-11-02 21:54:26 +0100
commit8450b97bf4464ab8b9c1b33b5a9150ae80c6136e (patch)
treec14ee037c9ea69af5a9fc0729c222b620025578e /common/spl/Kconfig
parenta29491ade0adf3dbb9dc51be8b45530edde1f1df (diff)
downloadu-boot-8450b97bf4464ab8b9c1b33b5a9150ae80c6136e.zip
u-boot-8450b97bf4464ab8b9c1b33b5a9150ae80c6136e.tar.gz
u-boot-8450b97bf4464ab8b9c1b33b5a9150ae80c6136e.tar.bz2
mips: mtmips: spl/Kconfig: Set CONFIG_SPL_PAD_TO to 0x0 for ARCH_MTMIPS
It was noticed that while converting CONFIG_SPL_PAD_TO to Kconfig its value for the MIPS MT762x/8x targets got not ported correctly. Its default is not 0x10000 instead of 0x0. This patch fixes this issue. Fixes: ca8a329a1b7f ("Convert CONFIG_SPL_PAD_TO et al to Kconfig") Signed-off-by: Stefan Roese <sr@denx.de> Cc: Ruben Winters <Ruben.Winters@gooiland-elektro.nl> Cc: Weijie Gao <weijie.gao@mediatek.com> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r--common/spl/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index b738c74..05181bd 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -98,6 +98,7 @@ config SPL_PAD_TO
default 0x11000 if ARCH_MX7 || (ARCH_MX6 && !MX6_OCRAM_256KB)
default 0x10000 if ARCH_KEYSTONE
default 0x8000 if ARCH_SUNXI && !MACH_SUN50I_H616
+ default 0x0 if ARCH_MTMIPS
default TPL_MAX_SIZE if TPL_MAX_SIZE > SPL_MAX_SIZE
default SPL_MAX_SIZE
help