]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/power/cpu.c
PM / x86: Save/restore MISC_ENABLE register
[net-next-2.6.git] / arch / x86 / power / cpu.c
CommitLineData
1da177e4 1/*
6d48becd 2 * Suspend support specific for i386/x86-64.
1da177e4
LT
3 *
4 * Distribute under GPLv2
5 *
cf7700fe 6 * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
1da177e4
LT
7 * Copyright (c) 2002 Pavel Machek <pavel@suse.cz>
8 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
9 */
10
1da177e4 11#include <linux/suspend.h>
f6783d20
SL
12#include <linux/smp.h>
13
3dd08325 14#include <asm/pgtable.h>
f6783d20 15#include <asm/proto.h>
3ebad590 16#include <asm/mtrr.h>
f6783d20
SL
17#include <asm/page.h>
18#include <asm/mce.h>
83b8e28b 19#include <asm/xcr.h>
a8af7898 20#include <asm/suspend.h>
1e350066 21#include <asm/debugreg.h>
1da177e4 22
833b2ca0
SL
23#ifdef CONFIG_X86_32
24static struct saved_context saved_context;
cae45957 25
833b2ca0
SL
26unsigned long saved_context_ebx;
27unsigned long saved_context_esp, saved_context_ebp;
28unsigned long saved_context_esi, saved_context_edi;
29unsigned long saved_context_eflags;
30#else
31/* CONFIG_X86_64 */
1da177e4 32struct saved_context saved_context;
833b2ca0 33#endif
1da177e4 34
5c9c9bec
RW
35/**
36 * __save_processor_state - save CPU registers before creating a
37 * hibernation image and before restoring the memory state from it
38 * @ctxt - structure to store the registers contents in
39 *
40 * NOTE: If there is a CPU register the modification of which by the
41 * boot kernel (ie. the kernel used for loading the hibernation image)
42 * might affect the operations of the restored target kernel (ie. the one
43 * saved in the hibernation image), then its contents must be saved by this
44 * function. In other words, if kernel A is hibernated and different
45 * kernel B is used for loading the hibernation image into memory, the
46 * kernel A's __save_processor_state() function must save all registers
47 * needed by kernel A, so that it can operate correctly after the resume
48 * regardless of what kernel B does in the meantime.
49 */
cae45957 50static void __save_processor_state(struct saved_context *ctxt)
1da177e4 51{
f9ebbe53
SL
52#ifdef CONFIG_X86_32
53 mtrr_save_fixed_ranges(NULL);
54#endif
1da177e4
LT
55 kernel_fpu_begin();
56
57 /*
58 * descriptor tables
59 */
f9ebbe53
SL
60#ifdef CONFIG_X86_32
61 store_gdt(&ctxt->gdt);
62 store_idt(&ctxt->idt);
63#else
64/* CONFIG_X86_64 */
9d1c6e7c
GOC
65 store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
66 store_idt((struct desc_ptr *)&ctxt->idt_limit);
f9ebbe53 67#endif
9d1c6e7c 68 store_tr(ctxt->tr);
1da177e4
LT
69
70 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
1da177e4
LT
71 /*
72 * segment registers
73 */
f9ebbe53
SL
74#ifdef CONFIG_X86_32
75 savesegment(es, ctxt->es);
76 savesegment(fs, ctxt->fs);
77 savesegment(gs, ctxt->gs);
78 savesegment(ss, ctxt->ss);
79#else
80/* CONFIG_X86_64 */
1da177e4
LT
81 asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
82 asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
83 asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
84 asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
85 asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
86
87 rdmsrl(MSR_FS_BASE, ctxt->fs_base);
88 rdmsrl(MSR_GS_BASE, ctxt->gs_base);
89 rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
3ebad590 90 mtrr_save_fixed_ranges(NULL);
1da177e4 91
f9ebbe53
SL
92 rdmsrl(MSR_EFER, ctxt->efer);
93#endif
94
1da177e4 95 /*
cf7700fe 96 * control registers
1da177e4 97 */
f51c9452
GOC
98 ctxt->cr0 = read_cr0();
99 ctxt->cr2 = read_cr2();
100 ctxt->cr3 = read_cr3();
f9ebbe53
SL
101#ifdef CONFIG_X86_32
102 ctxt->cr4 = read_cr4_safe();
103#else
104/* CONFIG_X86_64 */
f51c9452
GOC
105 ctxt->cr4 = read_cr4();
106 ctxt->cr8 = read_cr8();
f9ebbe53 107#endif
85a0e753
OZ
108 ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
109 &ctxt->misc_enable);
1da177e4
LT
110}
111
f9ebbe53 112/* Needed by apm.c */
1da177e4
LT
113void save_processor_state(void)
114{
115 __save_processor_state(&saved_context);
116}
f9ebbe53
SL
117#ifdef CONFIG_X86_32
118EXPORT_SYMBOL(save_processor_state);
119#endif
1da177e4 120
08967f94 121static void do_fpu_end(void)
1da177e4 122{
08967f94 123 /*
3134d04b 124 * Restore FPU regs if necessary.
08967f94
SL
125 */
126 kernel_fpu_end();
1da177e4
LT
127}
128
3134d04b
SL
129static void fix_processor_context(void)
130{
131 int cpu = smp_processor_id();
132 struct tss_struct *t = &per_cpu(init_tss, cpu);
133
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
138 * similar stupidity.
139 */
140
141#ifdef CONFIG_X86_64
142 get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;
143
144 syscall_init(); /* This sets MSR_*STAR and related */
145#endif
146 load_TR_desc(); /* This does ltr */
147 load_LDT(&current->active_mm->context); /* This does lldt */
3134d04b
SL
148}
149
5c9c9bec
RW
150/**
151 * __restore_processor_state - restore the contents of CPU registers saved
152 * by __save_processor_state()
153 * @ctxt - structure to load the registers contents from
154 */
cae45957 155static void __restore_processor_state(struct saved_context *ctxt)
1da177e4 156{
85a0e753
OZ
157 if (ctxt->misc_enable_saved)
158 wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
1da177e4
LT
159 /*
160 * control registers
161 */
3134d04b
SL
162 /* cr4 was introduced in the Pentium CPU */
163#ifdef CONFIG_X86_32
164 if (ctxt->cr4)
165 write_cr4(ctxt->cr4);
166#else
167/* CONFIG X86_64 */
3c321bce 168 wrmsrl(MSR_EFER, ctxt->efer);
f51c9452
GOC
169 write_cr8(ctxt->cr8);
170 write_cr4(ctxt->cr4);
3134d04b 171#endif
f51c9452
GOC
172 write_cr3(ctxt->cr3);
173 write_cr2(ctxt->cr2);
174 write_cr0(ctxt->cr0);
1da177e4 175
8d783b3e
PM
176 /*
177 * now restore the descriptor tables to their proper values
178 * ltr is done i fix_processor_context().
179 */
3134d04b
SL
180#ifdef CONFIG_X86_32
181 load_gdt(&ctxt->gdt);
182 load_idt(&ctxt->idt);
183#else
184/* CONFIG_X86_64 */
9d1c6e7c
GOC
185 load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
186 load_idt((const struct desc_ptr *)&ctxt->idt_limit);
3134d04b 187#endif
8d783b3e 188
1da177e4
LT
189 /*
190 * segment registers
191 */
3134d04b
SL
192#ifdef CONFIG_X86_32
193 loadsegment(es, ctxt->es);
194 loadsegment(fs, ctxt->fs);
195 loadsegment(gs, ctxt->gs);
196 loadsegment(ss, ctxt->ss);
197
198 /*
199 * sysenter MSRs
200 */
201 if (boot_cpu_has(X86_FEATURE_SEP))
202 enable_sep_cpu();
203#else
204/* CONFIG_X86_64 */
1da177e4
LT
205 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
206 asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
207 asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
208 load_gs_index(ctxt->gs);
209 asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
210
211 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
212 wrmsrl(MSR_GS_BASE, ctxt->gs_base);
213 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
3134d04b 214#endif
1da177e4 215
83b8e28b
SS
216 /*
217 * restore XCR0 for xsave capable cpu's.
218 */
219 if (cpu_has_xsave)
220 xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
221
1da177e4
LT
222 fix_processor_context();
223
224 do_fpu_end();
d0af9eed 225 mtrr_bp_restore();
1da177e4
LT
226}
227
3134d04b 228/* Needed by apm.c */
1da177e4
LT
229void restore_processor_state(void)
230{
231 __restore_processor_state(&saved_context);
232}
3134d04b
SL
233#ifdef CONFIG_X86_32
234EXPORT_SYMBOL(restore_processor_state);
235#endif