blob: 11ea7d0ba5d91e7c8f1a22e39ecc8d464f36d17c [file] [log] [blame]
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +01001/*
2 * Suspend and hibernation support for x86-64
3 *
4 * Distribute under GPLv2
5 *
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>
9 */
10
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010011#include <linux/suspend.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020012#include <linux/smp.h>
13
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010014#include <asm/pgtable.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020015#include <asm/proto.h>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010016#include <asm/mtrr.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020017#include <asm/page.h>
18#include <asm/mce.h>
Suresh Siddha83b8e282008-08-27 14:57:36 -070019#include <asm/xcr.h>
Magnus Damma8af7892009-03-31 15:23:37 -070020#include <asm/suspend.h>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010021
Sergio Luis833b2ca2009-04-28 00:26:50 +020022#ifdef CONFIG_X86_32
23static struct saved_context saved_context;
24
25unsigned long saved_context_ebx;
26unsigned long saved_context_esp, saved_context_ebp;
27unsigned long saved_context_esi, saved_context_edi;
28unsigned long saved_context_eflags;
29#else
30/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010031static void fix_processor_context(void);
32
33struct saved_context saved_context;
Sergio Luis833b2ca2009-04-28 00:26:50 +020034#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010035
36/**
37 * __save_processor_state - save CPU registers before creating a
38 * hibernation image and before restoring the memory state from it
39 * @ctxt - structure to store the registers contents in
40 *
41 * NOTE: If there is a CPU register the modification of which by the
42 * boot kernel (ie. the kernel used for loading the hibernation image)
43 * might affect the operations of the restored target kernel (ie. the one
44 * saved in the hibernation image), then its contents must be saved by this
45 * function. In other words, if kernel A is hibernated and different
46 * kernel B is used for loading the hibernation image into memory, the
47 * kernel A's __save_processor_state() function must save all registers
48 * needed by kernel A, so that it can operate correctly after the resume
49 * regardless of what kernel B does in the meantime.
50 */
51static void __save_processor_state(struct saved_context *ctxt)
52{
Sergio Luisf9ebbe52009-04-28 00:27:00 +020053#ifdef CONFIG_X86_32
54 mtrr_save_fixed_ranges(NULL);
55#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010056 kernel_fpu_begin();
57
58 /*
59 * descriptor tables
60 */
Sergio Luisf9ebbe52009-04-28 00:27:00 +020061#ifdef CONFIG_X86_32
62 store_gdt(&ctxt->gdt);
63 store_idt(&ctxt->idt);
64#else
65/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010066 store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
67 store_idt((struct desc_ptr *)&ctxt->idt_limit);
Sergio Luisf9ebbe52009-04-28 00:27:00 +020068#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010069 store_tr(ctxt->tr);
70
71 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
72 /*
73 * segment registers
74 */
Sergio Luisf9ebbe52009-04-28 00:27:00 +020075#ifdef CONFIG_X86_32
76 savesegment(es, ctxt->es);
77 savesegment(fs, ctxt->fs);
78 savesegment(gs, ctxt->gs);
79 savesegment(ss, ctxt->ss);
80#else
81/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010082 asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
83 asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
84 asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
85 asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
86 asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
87
88 rdmsrl(MSR_FS_BASE, ctxt->fs_base);
89 rdmsrl(MSR_GS_BASE, ctxt->gs_base);
90 rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
91 mtrr_save_fixed_ranges(NULL);
92
Sergio Luisf9ebbe52009-04-28 00:27:00 +020093 rdmsrl(MSR_EFER, ctxt->efer);
94#endif
95
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010096 /*
97 * control registers
98 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010099 ctxt->cr0 = read_cr0();
100 ctxt->cr2 = read_cr2();
101 ctxt->cr3 = read_cr3();
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200102#ifdef CONFIG_X86_32
103 ctxt->cr4 = read_cr4_safe();
104#else
105/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100106 ctxt->cr4 = read_cr4();
107 ctxt->cr8 = read_cr8();
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200108#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100109}
110
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200111/* Needed by apm.c */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100112void save_processor_state(void)
113{
114 __save_processor_state(&saved_context);
115}
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200116#ifdef CONFIG_X86_32
117EXPORT_SYMBOL(save_processor_state);
118#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100119
120static void do_fpu_end(void)
121{
122 /*
123 * Restore FPU regs if necessary
124 */
125 kernel_fpu_end();
126}
127
128/**
129 * __restore_processor_state - restore the contents of CPU registers saved
130 * by __save_processor_state()
131 * @ctxt - structure to load the registers contents from
132 */
133static void __restore_processor_state(struct saved_context *ctxt)
134{
135 /*
136 * control registers
137 */
138 wrmsrl(MSR_EFER, ctxt->efer);
139 write_cr8(ctxt->cr8);
140 write_cr4(ctxt->cr4);
141 write_cr3(ctxt->cr3);
142 write_cr2(ctxt->cr2);
143 write_cr0(ctxt->cr0);
144
145 /*
146 * now restore the descriptor tables to their proper values
147 * ltr is done i fix_processor_context().
148 */
149 load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
150 load_idt((const struct desc_ptr *)&ctxt->idt_limit);
151
152
153 /*
154 * segment registers
155 */
156 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
157 asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
158 asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
159 load_gs_index(ctxt->gs);
160 asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
161
162 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
163 wrmsrl(MSR_GS_BASE, ctxt->gs_base);
164 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
165
Suresh Siddha83b8e282008-08-27 14:57:36 -0700166 /*
167 * restore XCR0 for xsave capable cpu's.
168 */
169 if (cpu_has_xsave)
170 xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
171
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100172 fix_processor_context();
173
174 do_fpu_end();
175 mtrr_ap_init();
176}
177
178void restore_processor_state(void)
179{
180 __restore_processor_state(&saved_context);
181}
182
183static void fix_processor_context(void)
184{
185 int cpu = smp_processor_id();
186 struct tss_struct *t = &per_cpu(init_tss, cpu);
187
188 /*
189 * This just modifies memory; should not be necessary. But... This
190 * is necessary, because 386 hardware has concept of busy TSS or some
191 * similar stupidity.
192 */
193 set_tss_desc(cpu, t);
194
195 get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;
196
197 syscall_init(); /* This sets MSR_*STAR and related */
198 load_TR_desc(); /* This does ltr */
199 load_LDT(&current->active_mm->context); /* This does lldt */
200
201 /*
202 * Now maybe reload the debug registers
203 */
204 if (current->thread.debugreg7){
205 loaddebug(&current->thread, 0);
206 loaddebug(&current->thread, 1);
207 loaddebug(&current->thread, 2);
208 loaddebug(&current->thread, 3);
209 /* no 4 and 5 */
210 loaddebug(&current->thread, 6);
211 loaddebug(&current->thread, 7);
212 }
213}