aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-i386')
-rw-r--r--include/asm-i386/kexec.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/asm-i386/kexec.h b/include/asm-i386/kexec.h
index d80d446498fb..8fb1defd98c6 100644
--- a/include/asm-i386/kexec.h
+++ b/include/asm-i386/kexec.h
@@ -2,6 +2,7 @@
2#define _I386_KEXEC_H 2#define _I386_KEXEC_H
3 3
4#include <asm/fixmap.h> 4#include <asm/fixmap.h>
5#include <asm/ptrace.h>
5 6
6/* 7/*
7 * KEXEC_SOURCE_MEMORY_LIMIT maximum page get_free_page can return. 8 * KEXEC_SOURCE_MEMORY_LIMIT maximum page get_free_page can return.
@@ -27,4 +28,48 @@
27 28
28#define MAX_NOTE_BYTES 1024 29#define MAX_NOTE_BYTES 1024
29 30
31/* CPU does not save ss and esp on stack if execution is already
32 * running in kernel mode at the time of NMI occurrence. This code
33 * fixes it.
34 */
35static inline void crash_fixup_ss_esp(struct pt_regs *newregs,
36 struct pt_regs *oldregs)
37{
38 memcpy(newregs, oldregs, sizeof(*newregs));
39 newregs->esp = (unsigned long)&(oldregs->esp);
40 __asm__ __volatile__(
41 "xorl %%eax, %%eax\n\t"
42 "movw %%ss, %%ax\n\t"
43 :"=a"(newregs->xss));
44}
45
46/*
47 * This function is responsible for capturing register states if coming
48 * via panic otherwise just fix up the ss and esp if coming via kernel
49 * mode exception.
50 */
51static inline void crash_setup_regs(struct pt_regs *newregs,
52 struct pt_regs *oldregs)
53{
54 if (oldregs)
55 crash_fixup_ss_esp(newregs, oldregs);
56 else {
57 __asm__ __volatile__("movl %%ebx,%0" : "=m"(newregs->ebx));
58 __asm__ __volatile__("movl %%ecx,%0" : "=m"(newregs->ecx));
59 __asm__ __volatile__("movl %%edx,%0" : "=m"(newregs->edx));
60 __asm__ __volatile__("movl %%esi,%0" : "=m"(newregs->esi));
61 __asm__ __volatile__("movl %%edi,%0" : "=m"(newregs->edi));
62 __asm__ __volatile__("movl %%ebp,%0" : "=m"(newregs->ebp));
63 __asm__ __volatile__("movl %%eax,%0" : "=m"(newregs->eax));
64 __asm__ __volatile__("movl %%esp,%0" : "=m"(newregs->esp));
65 __asm__ __volatile__("movw %%ss, %%ax;" :"=a"(newregs->xss));
66 __asm__ __volatile__("movw %%cs, %%ax;" :"=a"(newregs->xcs));
67 __asm__ __volatile__("movw %%ds, %%ax;" :"=a"(newregs->xds));
68 __asm__ __volatile__("movw %%es, %%ax;" :"=a"(newregs->xes));
69 __asm__ __volatile__("pushfl; popl %0" :"=m"(newregs->eflags));
70
71 newregs->eip = (unsigned long)current_text_addr();
72 }
73}
74
30#endif /* _I386_KEXEC_H */ 75#endif /* _I386_KEXEC_H */