blob: 4889655ba784d49736f29fa42f855edbfabef3ca [file] [log] [blame]
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +01001/*
Sergio Luis6d48bec2009-04-28 00:27:18 +02002 * Suspend support specific for i386/x86-64.
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +01003 *
4 * Distribute under GPLv2
5 *
6 * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
Pavel Macheka2531292010-07-18 14:27:13 +02007 * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +01008 * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
9 */
10
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010011#include <linux/suspend.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -040012#include <linux/export.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020013#include <linux/smp.h>
14
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010015#include <asm/pgtable.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020016#include <asm/proto.h>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010017#include <asm/mtrr.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020018#include <asm/page.h>
19#include <asm/mce.h>
Suresh Siddha83b8e282008-08-27 14:57:36 -070020#include <asm/xcr.h>
Magnus Damma8af7892009-03-31 15:23:37 -070021#include <asm/suspend.h>
K.Prasad1e350062009-06-01 23:44:26 +053022#include <asm/debugreg.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080023#include <asm/fpu-internal.h> /* pcntxt_mask */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010024
Sergio Luis833b2ca2009-04-28 00:26:50 +020025#ifdef CONFIG_X86_32
26static struct saved_context saved_context;
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010027
Sergio Luis833b2ca2009-04-28 00:26:50 +020028unsigned long saved_context_ebx;
29unsigned long saved_context_esp, saved_context_ebp;
30unsigned long saved_context_esi, saved_context_edi;
31unsigned long saved_context_eflags;
32#else
33/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010034struct saved_context saved_context;
Sergio Luis833b2ca2009-04-28 00:26:50 +020035#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010036
37/**
38 * __save_processor_state - save CPU registers before creating a
39 * hibernation image and before restoring the memory state from it
40 * @ctxt - structure to store the registers contents in
41 *
42 * NOTE: If there is a CPU register the modification of which by the
43 * boot kernel (ie. the kernel used for loading the hibernation image)
44 * might affect the operations of the restored target kernel (ie. the one
45 * saved in the hibernation image), then its contents must be saved by this
46 * function. In other words, if kernel A is hibernated and different
47 * kernel B is used for loading the hibernation image into memory, the
48 * kernel A's __save_processor_state() function must save all registers
49 * needed by kernel A, so that it can operate correctly after the resume
50 * regardless of what kernel B does in the meantime.
51 */
52static void __save_processor_state(struct saved_context *ctxt)
53{
Sergio Luisf9ebbe52009-04-28 00:27:00 +020054#ifdef CONFIG_X86_32
55 mtrr_save_fixed_ranges(NULL);
56#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010057 kernel_fpu_begin();
58
59 /*
60 * descriptor tables
61 */
Sergio Luisf9ebbe52009-04-28 00:27:00 +020062#ifdef CONFIG_X86_32
63 store_gdt(&ctxt->gdt);
64 store_idt(&ctxt->idt);
65#else
66/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010067 store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
68 store_idt((struct desc_ptr *)&ctxt->idt_limit);
Sergio Luisf9ebbe52009-04-28 00:27:00 +020069#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010070 store_tr(ctxt->tr);
71
72 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
73 /*
74 * segment registers
75 */
Sergio Luisf9ebbe52009-04-28 00:27:00 +020076#ifdef CONFIG_X86_32
77 savesegment(es, ctxt->es);
78 savesegment(fs, ctxt->fs);
79 savesegment(gs, ctxt->gs);
80 savesegment(ss, ctxt->ss);
81#else
82/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010083 asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
84 asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
85 asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
86 asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
87 asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
88
89 rdmsrl(MSR_FS_BASE, ctxt->fs_base);
90 rdmsrl(MSR_GS_BASE, ctxt->gs_base);
91 rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
92 mtrr_save_fixed_ranges(NULL);
93
Sergio Luisf9ebbe52009-04-28 00:27:00 +020094 rdmsrl(MSR_EFER, ctxt->efer);
95#endif
96
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010097 /*
98 * control registers
99 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100100 ctxt->cr0 = read_cr0();
101 ctxt->cr2 = read_cr2();
102 ctxt->cr3 = read_cr3();
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200103#ifdef CONFIG_X86_32
104 ctxt->cr4 = read_cr4_safe();
105#else
106/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100107 ctxt->cr4 = read_cr4();
108 ctxt->cr8 = read_cr8();
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200109#endif
Ondrej Zary85a0e752010-06-08 00:32:49 +0200110 ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
111 &ctxt->misc_enable);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100112}
113
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200114/* Needed by apm.c */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100115void save_processor_state(void)
116{
117 __save_processor_state(&saved_context);
Suresh Siddhacd7240c2010-08-19 17:03:38 -0700118 save_sched_clock_state();
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100119}
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200120#ifdef CONFIG_X86_32
121EXPORT_SYMBOL(save_processor_state);
122#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100123
124static void do_fpu_end(void)
125{
126 /*
Sergio Luis3134d042009-04-28 00:27:05 +0200127 * Restore FPU regs if necessary.
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100128 */
129 kernel_fpu_end();
130}
131
Sergio Luis3134d042009-04-28 00:27:05 +0200132static void fix_processor_context(void)
133{
134 int cpu = smp_processor_id();
135 struct tss_struct *t = &per_cpu(init_tss, cpu);
136
137 set_tss_desc(cpu, t); /*
138 * This just modifies memory; should not be
139 * necessary. But... This is necessary, because
140 * 386 hardware has concept of busy TSS or some
141 * similar stupidity.
142 */
143
144#ifdef CONFIG_X86_64
145 get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;
146
147 syscall_init(); /* This sets MSR_*STAR and related */
148#endif
149 load_TR_desc(); /* This does ltr */
150 load_LDT(&current->active_mm->context); /* This does lldt */
Sergio Luis3134d042009-04-28 00:27:05 +0200151}
152
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100153/**
154 * __restore_processor_state - restore the contents of CPU registers saved
155 * by __save_processor_state()
156 * @ctxt - structure to load the registers contents from
157 */
158static void __restore_processor_state(struct saved_context *ctxt)
159{
Ondrej Zary85a0e752010-06-08 00:32:49 +0200160 if (ctxt->misc_enable_saved)
161 wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100162 /*
163 * control registers
164 */
Sergio Luis3134d042009-04-28 00:27:05 +0200165 /* cr4 was introduced in the Pentium CPU */
166#ifdef CONFIG_X86_32
167 if (ctxt->cr4)
168 write_cr4(ctxt->cr4);
169#else
170/* CONFIG X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100171 wrmsrl(MSR_EFER, ctxt->efer);
172 write_cr8(ctxt->cr8);
173 write_cr4(ctxt->cr4);
Sergio Luis3134d042009-04-28 00:27:05 +0200174#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100175 write_cr3(ctxt->cr3);
176 write_cr2(ctxt->cr2);
177 write_cr0(ctxt->cr0);
178
179 /*
180 * now restore the descriptor tables to their proper values
181 * ltr is done i fix_processor_context().
182 */
Sergio Luis3134d042009-04-28 00:27:05 +0200183#ifdef CONFIG_X86_32
184 load_gdt(&ctxt->gdt);
185 load_idt(&ctxt->idt);
186#else
187/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100188 load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
189 load_idt((const struct desc_ptr *)&ctxt->idt_limit);
Sergio Luis3134d042009-04-28 00:27:05 +0200190#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100191
192 /*
193 * segment registers
194 */
Sergio Luis3134d042009-04-28 00:27:05 +0200195#ifdef CONFIG_X86_32
196 loadsegment(es, ctxt->es);
197 loadsegment(fs, ctxt->fs);
198 loadsegment(gs, ctxt->gs);
199 loadsegment(ss, ctxt->ss);
200
201 /*
202 * sysenter MSRs
203 */
204 if (boot_cpu_has(X86_FEATURE_SEP))
205 enable_sep_cpu();
206#else
207/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100208 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
209 asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
210 asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
211 load_gs_index(ctxt->gs);
212 asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
213
214 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
215 wrmsrl(MSR_GS_BASE, ctxt->gs_base);
216 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
Sergio Luis3134d042009-04-28 00:27:05 +0200217#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100218
Suresh Siddha83b8e282008-08-27 14:57:36 -0700219 /*
220 * restore XCR0 for xsave capable cpu's.
221 */
222 if (cpu_has_xsave)
223 xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
224
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100225 fix_processor_context();
226
227 do_fpu_end();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700228 mtrr_bp_restore();
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100229}
230
Sergio Luis3134d042009-04-28 00:27:05 +0200231/* Needed by apm.c */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100232void restore_processor_state(void)
233{
234 __restore_processor_state(&saved_context);
Suresh Siddhacd7240c2010-08-19 17:03:38 -0700235 restore_sched_clock_state();
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100236}
Sergio Luis3134d042009-04-28 00:27:05 +0200237#ifdef CONFIG_X86_32
238EXPORT_SYMBOL(restore_processor_state);
239#endif