2 * Suspend support specific for i386/x86-64.
4 * Distribute under GPLv2
6 * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
7 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
8 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
11 #include <linux/suspend.h>
12 #include <linux/smp.h>
14 #include <asm/pgtable.h>
15 #include <asm/proto.h>
20 #include <asm/suspend.h>
23 static struct saved_context saved_context
;
25 unsigned long saved_context_ebx
;
26 unsigned long saved_context_esp
, saved_context_ebp
;
27 unsigned long saved_context_esi
, saved_context_edi
;
28 unsigned long saved_context_eflags
;
31 struct saved_context saved_context
;
35 * __save_processor_state - save CPU registers before creating a
36 * hibernation image and before restoring the memory state from it
37 * @ctxt - structure to store the registers contents in
39 * NOTE: If there is a CPU register the modification of which by the
40 * boot kernel (ie. the kernel used for loading the hibernation image)
41 * might affect the operations of the restored target kernel (ie. the one
42 * saved in the hibernation image), then its contents must be saved by this
43 * function. In other words, if kernel A is hibernated and different
44 * kernel B is used for loading the hibernation image into memory, the
45 * kernel A's __save_processor_state() function must save all registers
46 * needed by kernel A, so that it can operate correctly after the resume
47 * regardless of what kernel B does in the meantime.
49 static void __save_processor_state(struct saved_context
*ctxt
)
52 mtrr_save_fixed_ranges(NULL
);
60 store_gdt(&ctxt
->gdt
);
61 store_idt(&ctxt
->idt
);
64 store_gdt((struct desc_ptr
*)&ctxt
->gdt_limit
);
65 store_idt((struct desc_ptr
*)&ctxt
->idt_limit
);
69 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
74 savesegment(es
, ctxt
->es
);
75 savesegment(fs
, ctxt
->fs
);
76 savesegment(gs
, ctxt
->gs
);
77 savesegment(ss
, ctxt
->ss
);
80 asm volatile ("movw %%ds, %0" : "=m" (ctxt
->ds
));
81 asm volatile ("movw %%es, %0" : "=m" (ctxt
->es
));
82 asm volatile ("movw %%fs, %0" : "=m" (ctxt
->fs
));
83 asm volatile ("movw %%gs, %0" : "=m" (ctxt
->gs
));
84 asm volatile ("movw %%ss, %0" : "=m" (ctxt
->ss
));
86 rdmsrl(MSR_FS_BASE
, ctxt
->fs_base
);
87 rdmsrl(MSR_GS_BASE
, ctxt
->gs_base
);
88 rdmsrl(MSR_KERNEL_GS_BASE
, ctxt
->gs_kernel_base
);
89 mtrr_save_fixed_ranges(NULL
);
91 rdmsrl(MSR_EFER
, ctxt
->efer
);
97 ctxt
->cr0
= read_cr0();
98 ctxt
->cr2
= read_cr2();
99 ctxt
->cr3
= read_cr3();
101 ctxt
->cr4
= read_cr4_safe();
104 ctxt
->cr4
= read_cr4();
105 ctxt
->cr8
= read_cr8();
107 ctxt
->misc_enable_saved
= !rdmsrl_safe(MSR_IA32_MISC_ENABLE
,
111 /* Needed by apm.c */
112 void save_processor_state(void)
114 __save_processor_state(&saved_context
);
115 save_sched_clock_state();
118 EXPORT_SYMBOL(save_processor_state
);
121 static void do_fpu_end(void)
124 * Restore FPU regs if necessary.
129 static void fix_processor_context(void)
131 int cpu
= smp_processor_id();
132 struct tss_struct
*t
= &per_cpu(init_tss
, cpu
);
134 set_tss_desc(cpu
, t
); /*
135 * This just modifies memory; should not be
136 * necessary. But... This is necessary, because
137 * 386 hardware has concept of busy TSS or some
142 get_cpu_gdt_table(cpu
)[GDT_ENTRY_TSS
].type
= 9;
144 syscall_init(); /* This sets MSR_*STAR and related */
146 load_TR_desc(); /* This does ltr */
147 load_LDT(¤t
->active_mm
->context
); /* This does lldt */
150 * Now maybe reload the debug registers
152 if (current
->thread
.debugreg7
) {
154 set_debugreg(current
->thread
.debugreg0
, 0);
155 set_debugreg(current
->thread
.debugreg1
, 1);
156 set_debugreg(current
->thread
.debugreg2
, 2);
157 set_debugreg(current
->thread
.debugreg3
, 3);
159 set_debugreg(current
->thread
.debugreg6
, 6);
160 set_debugreg(current
->thread
.debugreg7
, 7);
163 loaddebug(¤t
->thread
, 0);
164 loaddebug(¤t
->thread
, 1);
165 loaddebug(¤t
->thread
, 2);
166 loaddebug(¤t
->thread
, 3);
168 loaddebug(¤t
->thread
, 6);
169 loaddebug(¤t
->thread
, 7);
176 * __restore_processor_state - restore the contents of CPU registers saved
177 * by __save_processor_state()
178 * @ctxt - structure to load the registers contents from
180 static void __restore_processor_state(struct saved_context
*ctxt
)
182 if (ctxt
->misc_enable_saved
)
183 wrmsrl(MSR_IA32_MISC_ENABLE
, ctxt
->misc_enable
);
187 /* cr4 was introduced in the Pentium CPU */
190 write_cr4(ctxt
->cr4
);
193 wrmsrl(MSR_EFER
, ctxt
->efer
);
194 write_cr8(ctxt
->cr8
);
195 write_cr4(ctxt
->cr4
);
197 write_cr3(ctxt
->cr3
);
198 write_cr2(ctxt
->cr2
);
199 write_cr0(ctxt
->cr0
);
202 * now restore the descriptor tables to their proper values
203 * ltr is done i fix_processor_context().
206 load_gdt(&ctxt
->gdt
);
207 load_idt(&ctxt
->idt
);
210 load_gdt((const struct desc_ptr
*)&ctxt
->gdt_limit
);
211 load_idt((const struct desc_ptr
*)&ctxt
->idt_limit
);
218 loadsegment(es
, ctxt
->es
);
219 loadsegment(fs
, ctxt
->fs
);
220 loadsegment(gs
, ctxt
->gs
);
221 loadsegment(ss
, ctxt
->ss
);
226 if (boot_cpu_has(X86_FEATURE_SEP
))
230 asm volatile ("movw %0, %%ds" :: "r" (ctxt
->ds
));
231 asm volatile ("movw %0, %%es" :: "r" (ctxt
->es
));
232 asm volatile ("movw %0, %%fs" :: "r" (ctxt
->fs
));
233 load_gs_index(ctxt
->gs
);
234 asm volatile ("movw %0, %%ss" :: "r" (ctxt
->ss
));
236 wrmsrl(MSR_FS_BASE
, ctxt
->fs_base
);
237 wrmsrl(MSR_GS_BASE
, ctxt
->gs_base
);
238 wrmsrl(MSR_KERNEL_GS_BASE
, ctxt
->gs_kernel_base
);
242 * restore XCR0 for xsave capable cpu's.
245 xsetbv(XCR_XFEATURE_ENABLED_MASK
, pcntxt_mask
);
247 fix_processor_context();
253 /* Needed by apm.c */
254 void restore_processor_state(void)
256 __restore_processor_state(&saved_context
);
257 restore_sched_clock_state();
260 EXPORT_SYMBOL(restore_processor_state
);