
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 --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