blob: 39b27b72e3c5d378ef58856de743a596236569c6 [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
22static void fix_processor_context(void);
23
24struct saved_context saved_context;
25
26/**
27 * __save_processor_state - save CPU registers before creating a
28 * hibernation image and before restoring the memory state from it
29 * @ctxt - structure to store the registers contents in
30 *
31 * NOTE: If there is a CPU register the modification of which by the
32 * boot kernel (ie. the kernel used for loading the hibernation image)
33 * might affect the operations of the restored target kernel (ie. the one
34 * saved in the hibernation image), then its contents must be saved by this
35 * function. In other words, if kernel A is hibernated and different
36 * kernel B is used for loading the hibernation image into memory, the
37 * kernel A's __save_processor_state() function must save all registers
38 * needed by kernel A, so that it can operate correctly after the resume
39 * regardless of what kernel B does in the meantime.
40 */
41static void __save_processor_state(struct saved_context *ctxt)
42{
43 kernel_fpu_begin();
44
45 /*
46 * descriptor tables
47 */
48 store_gdt((struct desc_ptr *)&ctxt->gdt_limit);
49 store_idt((struct desc_ptr *)&ctxt->idt_limit);
50 store_tr(ctxt->tr);
51
52 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
53 /*
54 * segment registers
55 */
56 asm volatile ("movw %%ds, %0" : "=m" (ctxt->ds));
57 asm volatile ("movw %%es, %0" : "=m" (ctxt->es));
58 asm volatile ("movw %%fs, %0" : "=m" (ctxt->fs));
59 asm volatile ("movw %%gs, %0" : "=m" (ctxt->gs));
60 asm volatile ("movw %%ss, %0" : "=m" (ctxt->ss));
61
62 rdmsrl(MSR_FS_BASE, ctxt->fs_base);
63 rdmsrl(MSR_GS_BASE, ctxt->gs_base);
64 rdmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
65 mtrr_save_fixed_ranges(NULL);
66
67 /*
68 * control registers
69 */
70 rdmsrl(MSR_EFER, ctxt->efer);
71 ctxt->cr0 = read_cr0();
72 ctxt->cr2 = read_cr2();
73 ctxt->cr3 = read_cr3();
74 ctxt->cr4 = read_cr4();
75 ctxt->cr8 = read_cr8();
76}
77
78void save_processor_state(void)
79{
80 __save_processor_state(&saved_context);
81}
82
83static void do_fpu_end(void)
84{
85 /*
86 * Restore FPU regs if necessary
87 */
88 kernel_fpu_end();
89}
90
91/**
92 * __restore_processor_state - restore the contents of CPU registers saved
93 * by __save_processor_state()
94 * @ctxt - structure to load the registers contents from
95 */
96static void __restore_processor_state(struct saved_context *ctxt)
97{
98 /*
99 * control registers
100 */
101 wrmsrl(MSR_EFER, ctxt->efer);
102 write_cr8(ctxt->cr8);
103 write_cr4(ctxt->cr4);
104 write_cr3(ctxt->cr3);
105 write_cr2(ctxt->cr2);
106 write_cr0(ctxt->cr0);
107
108 /*
109 * now restore the descriptor tables to their proper values
110 * ltr is done i fix_processor_context().
111 */
112 load_gdt((const struct desc_ptr *)&ctxt->gdt_limit);
113 load_idt((const struct desc_ptr *)&ctxt->idt_limit);
114
115
116 /*
117 * segment registers
118 */
119 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
120 asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
121 asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
122 load_gs_index(ctxt->gs);
123 asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
124
125 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
126 wrmsrl(MSR_GS_BASE, ctxt->gs_base);
127 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
128
Suresh Siddha83b8e282008-08-27 14:57:36 -0700129 /*
130 * restore XCR0 for xsave capable cpu's.
131 */
132 if (cpu_has_xsave)
133 xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
134
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100135 fix_processor_context();
136
137 do_fpu_end();
138 mtrr_ap_init();
139}
140
141void restore_processor_state(void)
142{
143 __restore_processor_state(&saved_context);
144}
145
146static void fix_processor_context(void)
147{
148 int cpu = smp_processor_id();
149 struct tss_struct *t = &per_cpu(init_tss, cpu);
150
151 /*
152 * This just modifies memory; should not be necessary. But... This
153 * is necessary, because 386 hardware has concept of busy TSS or some
154 * similar stupidity.
155 */
156 set_tss_desc(cpu, t);
157
158 get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9;
159
160 syscall_init(); /* This sets MSR_*STAR and related */
161 load_TR_desc(); /* This does ltr */
162 load_LDT(&current->active_mm->context); /* This does lldt */
163
164 /*
165 * Now maybe reload the debug registers
166 */
167 if (current->thread.debugreg7){
168 loaddebug(&current->thread, 0);
169 loaddebug(&current->thread, 1);
170 loaddebug(&current->thread, 2);
171 loaddebug(&current->thread, 3);
172 /* no 4 and 5 */
173 loaddebug(&current->thread, 6);
174 loaddebug(&current->thread, 7);
175 }
176}