blob: 168da8429032cbc94ba02fa77b6428be5c57e92e [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 */
Fenghua Yua71c8bc2012-11-13 11:32:51 -080024#include <asm/cpu.h>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010025
Sergio Luis833b2ca2009-04-28 00:26:50 +020026#ifdef CONFIG_X86_32
27static struct saved_context saved_context;
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010028
Sergio Luis833b2ca2009-04-28 00:26:50 +020029unsigned long saved_context_ebx;
30unsigned long saved_context_esp, saved_context_ebp;
31unsigned long saved_context_esi, saved_context_edi;
32unsigned long saved_context_eflags;
33#else
34/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010035struct saved_context saved_context;
Sergio Luis833b2ca2009-04-28 00:26:50 +020036#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010037
38/**
39 * __save_processor_state - save CPU registers before creating a
40 * hibernation image and before restoring the memory state from it
41 * @ctxt - structure to store the registers contents in
42 *
43 * NOTE: If there is a CPU register the modification of which by the
44 * boot kernel (ie. the kernel used for loading the hibernation image)
45 * might affect the operations of the restored target kernel (ie. the one
46 * saved in the hibernation image), then its contents must be saved by this
47 * function. In other words, if kernel A is hibernated and different
48 * kernel B is used for loading the hibernation image into memory, the
49 * kernel A's __save_processor_state() function must save all registers
50 * needed by kernel A, so that it can operate correctly after the resume
51 * regardless of what kernel B does in the meantime.
52 */
53static void __save_processor_state(struct saved_context *ctxt)
54{
Sergio Luisf9ebbe52009-04-28 00:27:00 +020055#ifdef CONFIG_X86_32
56 mtrr_save_fixed_ranges(NULL);
57#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010058 kernel_fpu_begin();
59
60 /*
61 * descriptor tables
62 */
Sergio Luisf9ebbe52009-04-28 00:27:00 +020063#ifdef CONFIG_X86_32
Sergio Luisf9ebbe52009-04-28 00:27:00 +020064 store_idt(&ctxt->idt);
65#else
66/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010067 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
Ondrej Zary85a0e752010-06-08 00:32:49 +0200109 ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
110 &ctxt->misc_enable);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100111}
112
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200113/* Needed by apm.c */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100114void save_processor_state(void)
115{
116 __save_processor_state(&saved_context);
Marcelo Tosattib74f05d62012-02-13 11:07:27 -0200117 x86_platform.save_sched_clock_state();
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100118}
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200119#ifdef CONFIG_X86_32
120EXPORT_SYMBOL(save_processor_state);
121#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100122
123static void do_fpu_end(void)
124{
125 /*
Sergio Luis3134d042009-04-28 00:27:05 +0200126 * Restore FPU regs if necessary.
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100127 */
128 kernel_fpu_end();
129}
130
Sergio Luis3134d042009-04-28 00:27:05 +0200131static void fix_processor_context(void)
132{
133 int cpu = smp_processor_id();
134 struct tss_struct *t = &per_cpu(init_tss, cpu);
konrad@kernel.org4d681be2013-04-05 16:42:24 -0400135#ifdef CONFIG_X86_64
136 struct desc_struct *desc = get_cpu_gdt_table(cpu);
137 tss_desc tss;
138#endif
Sergio Luis3134d042009-04-28 00:27:05 +0200139 set_tss_desc(cpu, t); /*
140 * This just modifies memory; should not be
141 * necessary. But... This is necessary, because
142 * 386 hardware has concept of busy TSS or some
143 * similar stupidity.
144 */
145
146#ifdef CONFIG_X86_64
konrad@kernel.org4d681be2013-04-05 16:42:24 -0400147 memcpy(&tss, &desc[GDT_ENTRY_TSS], sizeof(tss_desc));
148 tss.type = 0x9; /* The available 64-bit TSS (see AMD vol 2, pg 91 */
149 write_gdt_entry(desc, GDT_ENTRY_TSS, &tss, DESC_TSS);
Sergio Luis3134d042009-04-28 00:27:05 +0200150
151 syscall_init(); /* This sets MSR_*STAR and related */
152#endif
153 load_TR_desc(); /* This does ltr */
154 load_LDT(&current->active_mm->context); /* This does lldt */
Sergio Luis3134d042009-04-28 00:27:05 +0200155}
156
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100157/**
158 * __restore_processor_state - restore the contents of CPU registers saved
159 * by __save_processor_state()
160 * @ctxt - structure to load the registers contents from
161 */
162static void __restore_processor_state(struct saved_context *ctxt)
163{
Ondrej Zary85a0e752010-06-08 00:32:49 +0200164 if (ctxt->misc_enable_saved)
165 wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100166 /*
167 * control registers
168 */
Sergio Luis3134d042009-04-28 00:27:05 +0200169 /* cr4 was introduced in the Pentium CPU */
170#ifdef CONFIG_X86_32
171 if (ctxt->cr4)
172 write_cr4(ctxt->cr4);
173#else
174/* CONFIG X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100175 wrmsrl(MSR_EFER, ctxt->efer);
176 write_cr8(ctxt->cr8);
177 write_cr4(ctxt->cr4);
Sergio Luis3134d042009-04-28 00:27:05 +0200178#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100179 write_cr3(ctxt->cr3);
180 write_cr2(ctxt->cr2);
181 write_cr0(ctxt->cr0);
182
183 /*
184 * now restore the descriptor tables to their proper values
185 * ltr is done i fix_processor_context().
186 */
Sergio Luis3134d042009-04-28 00:27:05 +0200187#ifdef CONFIG_X86_32
Sergio Luis3134d042009-04-28 00:27:05 +0200188 load_idt(&ctxt->idt);
189#else
190/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100191 load_idt((const struct desc_ptr *)&ctxt->idt_limit);
Sergio Luis3134d042009-04-28 00:27:05 +0200192#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100193
194 /*
195 * segment registers
196 */
Sergio Luis3134d042009-04-28 00:27:05 +0200197#ifdef CONFIG_X86_32
198 loadsegment(es, ctxt->es);
199 loadsegment(fs, ctxt->fs);
200 loadsegment(gs, ctxt->gs);
201 loadsegment(ss, ctxt->ss);
202
203 /*
204 * sysenter MSRs
205 */
206 if (boot_cpu_has(X86_FEATURE_SEP))
207 enable_sep_cpu();
208#else
209/* CONFIG_X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100210 asm volatile ("movw %0, %%ds" :: "r" (ctxt->ds));
211 asm volatile ("movw %0, %%es" :: "r" (ctxt->es));
212 asm volatile ("movw %0, %%fs" :: "r" (ctxt->fs));
213 load_gs_index(ctxt->gs);
214 asm volatile ("movw %0, %%ss" :: "r" (ctxt->ss));
215
216 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
217 wrmsrl(MSR_GS_BASE, ctxt->gs_base);
218 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->gs_kernel_base);
Sergio Luis3134d042009-04-28 00:27:05 +0200219#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100220
Suresh Siddha83b8e282008-08-27 14:57:36 -0700221 /*
222 * restore XCR0 for xsave capable cpu's.
223 */
224 if (cpu_has_xsave)
225 xsetbv(XCR_XFEATURE_ENABLED_MASK, pcntxt_mask);
226
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100227 fix_processor_context();
228
229 do_fpu_end();
Marcelo Tosattidba69d12012-04-01 13:53:36 -0300230 x86_platform.restore_sched_clock_state();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700231 mtrr_bp_restore();
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100232}
233
Sergio Luis3134d042009-04-28 00:27:05 +0200234/* Needed by apm.c */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100235void restore_processor_state(void)
236{
237 __restore_processor_state(&saved_context);
238}
Sergio Luis3134d042009-04-28 00:27:05 +0200239#ifdef CONFIG_X86_32
240EXPORT_SYMBOL(restore_processor_state);
241#endif
Fenghua Yu209efae2012-11-13 11:32:42 -0800242
243/*
244 * When bsp_check() is called in hibernate and suspend, cpu hotplug
245 * is disabled already. So it's unnessary to handle race condition between
246 * cpumask query and cpu hotplug.
247 */
248static int bsp_check(void)
249{
250 if (cpumask_first(cpu_online_mask) != 0) {
251 pr_warn("CPU0 is offline.\n");
252 return -ENODEV;
253 }
254
255 return 0;
256}
257
258static int bsp_pm_callback(struct notifier_block *nb, unsigned long action,
259 void *ptr)
260{
261 int ret = 0;
262
263 switch (action) {
264 case PM_SUSPEND_PREPARE:
265 case PM_HIBERNATION_PREPARE:
266 ret = bsp_check();
267 break;
Fenghua Yua71c8bc2012-11-13 11:32:51 -0800268#ifdef CONFIG_DEBUG_HOTPLUG_CPU0
269 case PM_RESTORE_PREPARE:
270 /*
271 * When system resumes from hibernation, online CPU0 because
272 * 1. it's required for resume and
273 * 2. the CPU was online before hibernation
274 */
275 if (!cpu_online(0))
276 _debug_hotplug_cpu(0, 1);
277 break;
278 case PM_POST_RESTORE:
279 /*
280 * When a resume really happens, this code won't be called.
281 *
282 * This code is called only when user space hibernation software
283 * prepares for snapshot device during boot time. So we just
284 * call _debug_hotplug_cpu() to restore to CPU0's state prior to
285 * preparing the snapshot device.
286 *
287 * This works for normal boot case in our CPU0 hotplug debug
288 * mode, i.e. CPU0 is offline and user mode hibernation
289 * software initializes during boot time.
290 *
291 * If CPU0 is online and user application accesses snapshot
292 * device after boot time, this will offline CPU0 and user may
293 * see different CPU0 state before and after accessing
294 * the snapshot device. But hopefully this is not a case when
295 * user debugging CPU0 hotplug. Even if users hit this case,
296 * they can easily online CPU0 back.
297 *
298 * To simplify this debug code, we only consider normal boot
299 * case. Otherwise we need to remember CPU0's state and restore
300 * to that state and resolve racy conditions etc.
301 */
302 _debug_hotplug_cpu(0, 0);
303 break;
304#endif
Fenghua Yu209efae2012-11-13 11:32:42 -0800305 default:
306 break;
307 }
308 return notifier_from_errno(ret);
309}
310
311static int __init bsp_pm_check_init(void)
312{
313 /*
314 * Set this bsp_pm_callback as lower priority than
315 * cpu_hotplug_pm_callback. So cpu_hotplug_pm_callback will be called
316 * earlier to disable cpu hotplug before bsp online check.
317 */
318 pm_notifier(bsp_pm_callback, -INT_MAX);
319 return 0;
320}
321
322core_initcall(bsp_pm_check_init);