blob: 8fb1defd98c641b3f19f37a27f6f9ad77aac6ca7 [file] [log] [blame]
Eric W. Biederman5033cba2005-06-25 14:57:56 -07001#ifndef _I386_KEXEC_H
2#define _I386_KEXEC_H
3
4#include <asm/fixmap.h>
Vivek Goyale996e582006-01-09 20:51:44 -08005#include <asm/ptrace.h>
Eric W. Biederman5033cba2005-06-25 14:57:56 -07006
7/*
8 * KEXEC_SOURCE_MEMORY_LIMIT maximum page get_free_page can return.
9 * I.e. Maximum page that is mapped directly into kernel memory,
10 * and kmap is not required.
11 *
12 * Someone correct me if FIXADDR_START - PAGEOFFSET is not the correct
13 * calculation for the amount of memory directly mappable into the
14 * kernel memory space.
15 */
16
17/* Maximum physical address we can use pages from */
18#define KEXEC_SOURCE_MEMORY_LIMIT (-1UL)
19/* Maximum address we can reach in physical address mode */
20#define KEXEC_DESTINATION_MEMORY_LIMIT (-1UL)
21/* Maximum address we can use for the control code buffer */
22#define KEXEC_CONTROL_MEMORY_LIMIT TASK_SIZE
23
24#define KEXEC_CONTROL_CODE_SIZE 4096
25
26/* The native architecture */
27#define KEXEC_ARCH KEXEC_ARCH_386
28
Vivek Goyal625f1c822005-06-25 14:58:12 -070029#define MAX_NOTE_BYTES 1024
Vivek Goyal625f1c822005-06-25 14:58:12 -070030
Vivek Goyale996e582006-01-09 20:51:44 -080031/* 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
Eric W. Biederman5033cba2005-06-25 14:57:56 -070075#endif /* _I386_KEXEC_H */