diff mbox series

[RFC,v2,41/56] x86: Fix monitor base for split config

Message ID 20230204002619.938387-42-sjg@chromium.org
State RFC
Delegated to: Tom Rini
Headers show
Series Migrate to split config | expand

Commit Message

Simon Glass Feb. 4, 2023, 12:26 a.m. UTC
This currently makes SPL refer to its own address. Use the PPL symbol to
avoid this.

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

(no changes since v1)

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

Patch

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