[PATCH v3 63/81] x86: Fix monitor base for split config

Simon Glass sjg at chromium.org
Mon Feb 6 20:05:31 CET 2023


This currently makes SPL refer to its own address. Use the PPL symbol to
avoid this.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

(no changes since v1)

 arch/x86/cpu/intel_common/car2.S | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/cpu/intel_common/car2.S b/arch/x86/cpu/intel_common/car2.S
index f8cf78586d0..c4f64b17694 100644
--- a/arch/x86/cpu/intel_common/car2.S
+++ b/arch/x86/cpu/intel_common/car2.S
@@ -443,6 +443,6 @@ ucode_base:	/* Declared in microcode.h */
 .globl ucode_size
 ucode_size:	/* Declared in microcode.h */
 	.long	0			/* microcode size */
-	.long	CONFIG_SYS_MONITOR_BASE	/* code region base */
-	.long	CONFIG_SYS_MONITOR_LEN	/* code region size */
+	.long	CONFIG_PPL_SYS_MONITOR_BASE	/* code region base */
+	.long	CONFIG_PPL_SYS_MONITOR_LEN	/* code region size */
 #endif
-- 
2.39.1.519.gcb327c4b5f-goog



More information about the U-Boot mailing list