diff mbox series

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

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

Commit Message

Simon Glass Feb. 6, 2023, 7:05 p.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