summaryrefslogtreecommitdiff
path: root/src/arch/x86/bootblock_crt0.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/bootblock_crt0.S')
-rw-r--r--src/arch/x86/bootblock_crt0.S9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/arch/x86/bootblock_crt0.S b/src/arch/x86/bootblock_crt0.S
index 9fbce5dbb5..8ae82b4368 100644
--- a/src/arch/x86/bootblock_crt0.S
+++ b/src/arch/x86/bootblock_crt0.S
@@ -32,6 +32,15 @@
#include <cpu/x86/16bit/reset16.inc>
#include <cpu/x86/32bit/entry32.inc>
+#if IS_ENABLED(CONFIG_BOOTBLOCK_DEBUG_SPINLOOP)
+
+ /* Wait for a JTAG debugger to break in and set EBX non-zero */
+ xor %ebx, %ebx
+
+debug_spinloop:
+ cmp $0, %ebx
+ jz debug_spinloop
+#endif
bootblock_protected_mode_entry:
/* Save BIST result */