1
2
3
4
5
6
7 #ifndef ARCH_X86_KERNEL_ACPI_RM_WAKEUP_H
8 #define ARCH_X86_KERNEL_ACPI_RM_WAKEUP_H
9
10 #ifndef __ASSEMBLY__
11 #include <linux/types.h>
12
13
14 struct wakeup_header {
15 u16 video_mode;
16 u32 pmode_entry;
17 u16 pmode_cs;
18 u32 pmode_cr0;
19 u32 pmode_cr3;
20 u32 pmode_cr4;
21 u32 pmode_efer_low;
22 u32 pmode_efer_high;
23 u64 pmode_gdt;
24 u32 pmode_misc_en_low;
25 u32 pmode_misc_en_high;
26 u32 pmode_behavior;
27 u32 realmode_flags;
28 u32 real_magic;
29 u32 signature;
30 } __attribute__((__packed__));
31
32 extern struct wakeup_header wakeup_header;
33 #endif
34
35 #define WAKEUP_HEADER_OFFSET 8
36 #define WAKEUP_HEADER_SIGNATURE 0x51ee1111
37
38
39 #define WAKEUP_BEHAVIOR_RESTORE_MISC_ENABLE 0
40 #define WAKEUP_BEHAVIOR_RESTORE_CR4 1
41 #define WAKEUP_BEHAVIOR_RESTORE_EFER 2
42
43 #endif