[U-Boot] [PATCH 107/126] x86: Don't repeat microcode in U-Boot if not needed
Simon Glass
sjg at chromium.org
Wed Sep 25 15:00:33 UTC 2019
At present if SPL sets up the microcode then it is still included in
U-Boot as well. This is wasteful as microcode is large. Adjust the logic
in the image to prevent this.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
arch/x86/dts/u-boot.dtsi | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/x86/dts/u-boot.dtsi b/arch/x86/dts/u-boot.dtsi
index f2fb4c2abaa..d9a4ca1184e 100644
--- a/arch/x86/dts/u-boot.dtsi
+++ b/arch/x86/dts/u-boot.dtsi
@@ -67,9 +67,16 @@
offset = <CONFIG_X86_OFFSET_U_BOOT>;
};
#else
+# ifdef CONFIG_SPL
+ u-boot {
+ offset = <CONFIG_SYS_TEXT_BASE>;
+ };
+# else
+ /* If there is no SPL then we need to put microcode in U-Boot */
u-boot-with-ucode-ptr {
offset = <CONFIG_X86_OFFSET_U_BOOT>;
};
+# endif
#endif
#ifdef CONFIG_HAVE_MICROCODE
u-boot-dtb-with-ucode {
--
2.23.0.444.g18eeb5a265-goog
More information about the U-Boot
mailing list