summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/transitions/librm.S
diff options
context:
space:
mode:
authorMichael Brown2018-03-18 13:54:57 +0100
committerMichael Brown2018-03-18 13:59:34 +0100
commit89e31f8491895e6196d4ba56aee3809261aa6b89 (patch)
treef7104a5cdd168eedc241618211457f5104548e06 /src/arch/x86/transitions/librm.S
parent[intel] Add PCI_ROM entry for Intel i354 NIC (diff)
downloadipxe-89e31f8491895e6196d4ba56aee3809261aa6b89.tar.gz
ipxe-89e31f8491895e6196d4ba56aee3809261aa6b89.tar.xz
ipxe-89e31f8491895e6196d4ba56aee3809261aa6b89.zip
[librm] Add facility to provide register and stack dump for CPU exceptions
When DEBUG=librm_mgmt is enabled, intercept CPU exceptions and provide a register and stack dump, then drop to an emergency shell. Exiting from the shell will almost certainly not work, but this provides an opportunity to view the register and stack dump and carry out some basic debugging. Note that we can intercept only the first 8 CPU exceptions, since a PXE ROM is not permitted to rebase the PIC. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86/transitions/librm.S')
-rw-r--r--src/arch/x86/transitions/librm.S33
1 files changed, 27 insertions, 6 deletions
diff --git a/src/arch/x86/transitions/librm.S b/src/arch/x86/transitions/librm.S
index c31daad8..9d3eff95 100644
--- a/src/arch/x86/transitions/librm.S
+++ b/src/arch/x86/transitions/librm.S
@@ -1363,20 +1363,19 @@ flatten_dummy:
.code32
.globl interrupt_wrapper
interrupt_wrapper:
- /* Preserve registers (excluding already-saved %eax and
- * otherwise unused registers which are callee-save for both
- * 32-bit and 64-bit ABIs).
- */
+ /* Preserve registers (excluding already-saved %eax) */
pushl %ebx
pushl %ecx
pushl %edx
pushl %esi
pushl %edi
+ pushl %ebp
/* Expand IRQ number to whole %eax register */
movzbl %al, %eax
.if64 ; /* Skip transition to long mode, if applicable */
+ xorl %edx, %edx
movw %cs, %bx
cmpw $LONG_CS, %bx
je 1f
@@ -1391,24 +1390,45 @@ interrupt_wrapper:
/* Switch to virtual addressing */
call intr_to_prot
+
+ /* Pass 32-bit interrupt frame pointer in %edx */
+ movl %esp, %edx
+ xorl %ecx, %ecx
.if64
/* Switch to long mode */
call prot_to_long
.code64
-1: /* Preserve long-mode caller-save registers */
+1: /* Preserve long-mode registers */
pushq %r8
pushq %r9
pushq %r10
pushq %r11
+ pushq %r12
+ pushq %r13
+ pushq %r14
+ pushq %r15
/* Expand IRQ number to whole %rdi register */
movl %eax, %edi
+
+ /* Pass 32-bit interrupt frame pointer (if applicable) in %rsi */
+ testl %edx, %edx
+ je 1f
+ movl %edx, %esi
+ addl virt_offset, %esi
+1:
+ /* Pass 64-bit interrupt frame pointer in %rdx */
+ movq %rsp, %rdx
.endif
/* Call interrupt handler */
call interrupt
.if64
- /* Restore long-mode caller-save registers */
+ /* Restore long-mode registers */
+ popq %r15
+ popq %r14
+ popq %r13
+ popq %r12
popq %r11
popq %r10
popq %r9
@@ -1432,6 +1452,7 @@ interrupt_wrapper:
popl %ds
1: /* Restore registers */
+ popl %ebp
popl %edi
popl %esi
popl %edx