blob: 2f32cdba589aedba59e1beb4615b00668a4b3d3e [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>
Stephane Eranian1d9d8632013-03-15 14:26:07 +010014#include <linux/perf_event.h>
Rafael J. Wysocki406f9922016-07-14 03:55:23 +020015#include <linux/tboot.h>
Tom Lendacky9272c252019-08-19 15:52:35 +000016#include <linux/dmi.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020017
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010018#include <asm/pgtable.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020019#include <asm/proto.h>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010020#include <asm/mtrr.h>
Sergio Luisf6783d22009-04-28 00:26:22 +020021#include <asm/page.h>
22#include <asm/mce.h>
Magnus Damma8af7892009-03-31 15:23:37 -070023#include <asm/suspend.h>
Ingo Molnar952f07e2015-04-26 16:56:05 +020024#include <asm/fpu/internal.h>
K.Prasad1e350062009-06-01 23:44:26 +053025#include <asm/debugreg.h>
Fenghua Yua71c8bc2012-11-13 11:32:51 -080026#include <asm/cpu.h>
Andy Lutomirski37868fe2015-07-30 14:31:32 -070027#include <asm/mmu_context.h>
Tom Lendacky9272c252019-08-19 15:52:35 +000028#include <asm/cpu_device_id.h>
Borislav Petkovc421e3a2022-04-19 09:52:41 -070029#include <asm/microcode.h>
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010030
Sergio Luis833b2ca2009-04-28 00:26:50 +020031#ifdef CONFIG_X86_32
Andi Kleend6efc2f2013-08-05 15:02:49 -070032__visible unsigned long saved_context_ebx;
33__visible unsigned long saved_context_esp, saved_context_ebp;
34__visible unsigned long saved_context_esi, saved_context_edi;
35__visible unsigned long saved_context_eflags;
Sergio Luis833b2ca2009-04-28 00:26:50 +020036#endif
Konrad Rzeszutek Wilkcc456c42013-05-01 21:53:30 -040037struct saved_context saved_context;
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010038
Chen Yu7a9c2dd2015-11-25 01:03:41 +080039static void msr_save_context(struct saved_context *ctxt)
40{
41 struct saved_msr *msr = ctxt->saved_msrs.array;
42 struct saved_msr *end = msr + ctxt->saved_msrs.num;
43
44 while (msr < end) {
Pawan Guptac30aba82022-04-04 17:34:19 -070045 if (msr->valid)
46 rdmsrl(msr->info.msr_no, msr->info.reg.q);
Chen Yu7a9c2dd2015-11-25 01:03:41 +080047 msr++;
48 }
49}
50
51static void msr_restore_context(struct saved_context *ctxt)
52{
53 struct saved_msr *msr = ctxt->saved_msrs.array;
54 struct saved_msr *end = msr + ctxt->saved_msrs.num;
55
56 while (msr < end) {
57 if (msr->valid)
58 wrmsrl(msr->info.msr_no, msr->info.reg.q);
59 msr++;
60 }
61}
62
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010063/**
64 * __save_processor_state - save CPU registers before creating a
65 * hibernation image and before restoring the memory state from it
66 * @ctxt - structure to store the registers contents in
67 *
68 * NOTE: If there is a CPU register the modification of which by the
69 * boot kernel (ie. the kernel used for loading the hibernation image)
70 * might affect the operations of the restored target kernel (ie. the one
71 * saved in the hibernation image), then its contents must be saved by this
72 * function. In other words, if kernel A is hibernated and different
73 * kernel B is used for loading the hibernation image into memory, the
74 * kernel A's __save_processor_state() function must save all registers
75 * needed by kernel A, so that it can operate correctly after the resume
76 * regardless of what kernel B does in the meantime.
77 */
78static void __save_processor_state(struct saved_context *ctxt)
79{
Sergio Luisf9ebbe52009-04-28 00:27:00 +020080#ifdef CONFIG_X86_32
81 mtrr_save_fixed_ranges(NULL);
82#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010083 kernel_fpu_begin();
84
85 /*
86 * descriptor tables
87 */
Sergio Luisf9ebbe52009-04-28 00:27:00 +020088 store_idt(&ctxt->idt);
Andy Lutomirski61f1e182017-12-14 13:19:05 -080089
Konrad Rzeszutek Wilkcc456c42013-05-01 21:53:30 -040090 /*
91 * We save it here, but restore it only in the hibernate case.
92 * For ACPI S3 resume, this is loaded via 'early_gdt_desc' in 64-bit
93 * mode in "secondary_startup_64". In 32-bit mode it is done via
94 * 'pmode_gdt' in wakeup_start.
95 */
96 ctxt->gdt_desc.size = GDT_SIZE - 1;
97 ctxt->gdt_desc.address = (unsigned long)get_cpu_gdt_table(smp_processor_id());
98
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +010099 store_tr(ctxt->tr);
100
101 /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
102 /*
103 * segment registers
104 */
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800105#ifdef CONFIG_X86_32_LAZY_GS
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200106 savesegment(gs, ctxt->gs);
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800107#endif
108#ifdef CONFIG_X86_64
109 savesegment(gs, ctxt->gs);
110 savesegment(fs, ctxt->fs);
111 savesegment(ds, ctxt->ds);
112 savesegment(es, ctxt->es);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100113
114 rdmsrl(MSR_FS_BASE, ctxt->fs_base);
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800115 rdmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base);
116 rdmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100117 mtrr_save_fixed_ranges(NULL);
118
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200119 rdmsrl(MSR_EFER, ctxt->efer);
120#endif
121
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100122 /*
123 * control registers
124 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100125 ctxt->cr0 = read_cr0();
126 ctxt->cr2 = read_cr2();
127 ctxt->cr3 = read_cr3();
Andy Lutomirski1ef55be12016-09-29 12:48:12 -0700128 ctxt->cr4 = __read_cr4();
Andy Lutomirski1e02ce42014-10-24 15:58:08 -0700129#ifdef CONFIG_X86_64
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100130 ctxt->cr8 = read_cr8();
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200131#endif
Ondrej Zary85a0e752010-06-08 00:32:49 +0200132 ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
133 &ctxt->misc_enable);
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800134 msr_save_context(ctxt);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100135}
136
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200137/* Needed by apm.c */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100138void save_processor_state(void)
139{
140 __save_processor_state(&saved_context);
Marcelo Tosattib74f05d2012-02-13 11:07:27 -0200141 x86_platform.save_sched_clock_state();
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100142}
Sergio Luisf9ebbe52009-04-28 00:27:00 +0200143#ifdef CONFIG_X86_32
144EXPORT_SYMBOL(save_processor_state);
145#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100146
147static void do_fpu_end(void)
148{
149 /*
Sergio Luis3134d042009-04-28 00:27:05 +0200150 * Restore FPU regs if necessary.
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100151 */
152 kernel_fpu_end();
153}
154
Sergio Luis3134d042009-04-28 00:27:05 +0200155static void fix_processor_context(void)
156{
157 int cpu = smp_processor_id();
Andy Lutomirski24933b82015-03-05 19:19:05 -0800158 struct tss_struct *t = &per_cpu(cpu_tss, cpu);
konrad@kernel.org4d681be2013-04-05 16:42:24 -0400159#ifdef CONFIG_X86_64
160 struct desc_struct *desc = get_cpu_gdt_table(cpu);
161 tss_desc tss;
162#endif
Sergio Luis3134d042009-04-28 00:27:05 +0200163 set_tss_desc(cpu, t); /*
164 * This just modifies memory; should not be
165 * necessary. But... This is necessary, because
166 * 386 hardware has concept of busy TSS or some
167 * similar stupidity.
168 */
169
170#ifdef CONFIG_X86_64
konrad@kernel.org4d681be2013-04-05 16:42:24 -0400171 memcpy(&tss, &desc[GDT_ENTRY_TSS], sizeof(tss_desc));
172 tss.type = 0x9; /* The available 64-bit TSS (see AMD vol 2, pg 91 */
173 write_gdt_entry(desc, GDT_ENTRY_TSS, &tss, DESC_TSS);
Sergio Luis3134d042009-04-28 00:27:05 +0200174
175 syscall_init(); /* This sets MSR_*STAR and related */
Andy Lutomirskid72b4852017-12-14 13:19:06 -0800176#else
177 if (boot_cpu_has(X86_FEATURE_SEP))
178 enable_sep_cpu();
Sergio Luis3134d042009-04-28 00:27:05 +0200179#endif
180 load_TR_desc(); /* This does ltr */
Andy Lutomirski37868fe2015-07-30 14:31:32 -0700181 load_mm_ldt(current->active_mm); /* This does lldt */
Ingo Molnar9254aaa2015-04-24 10:02:32 +0200182
183 fpu__resume_cpu();
Sergio Luis3134d042009-04-28 00:27:05 +0200184}
185
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100186/**
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800187 * __restore_processor_state - restore the contents of CPU registers saved
188 * by __save_processor_state()
189 * @ctxt - structure to load the registers contents from
190 *
191 * The asm code that gets us here will have restored a usable GDT, although
192 * it will be pointing to the wrong alias.
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100193 */
Steven Rostedt (Red Hat)b8f99b32014-06-24 20:58:26 -0400194static void notrace __restore_processor_state(struct saved_context *ctxt)
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100195{
Ondrej Zary85a0e752010-06-08 00:32:49 +0200196 if (ctxt->misc_enable_saved)
197 wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100198 /*
199 * control registers
200 */
Sergio Luis3134d042009-04-28 00:27:05 +0200201 /* cr4 was introduced in the Pentium CPU */
202#ifdef CONFIG_X86_32
203 if (ctxt->cr4)
Andy Lutomirski1e02ce42014-10-24 15:58:08 -0700204 __write_cr4(ctxt->cr4);
Sergio Luis3134d042009-04-28 00:27:05 +0200205#else
206/* CONFIG X86_64 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100207 wrmsrl(MSR_EFER, ctxt->efer);
208 write_cr8(ctxt->cr8);
Andy Lutomirski1e02ce42014-10-24 15:58:08 -0700209 __write_cr4(ctxt->cr4);
Sergio Luis3134d042009-04-28 00:27:05 +0200210#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100211 write_cr3(ctxt->cr3);
212 write_cr2(ctxt->cr2);
213 write_cr0(ctxt->cr0);
214
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800215 /* Restore the IDT. */
Sergio Luis3134d042009-04-28 00:27:05 +0200216 load_idt(&ctxt->idt);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100217
218 /*
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800219 * Just in case the asm code got us here with the SS, DS, or ES
220 * out of sync with the GDT, update them.
Andy Lutomirski57578e52017-11-30 07:57:57 -0800221 */
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800222 loadsegment(ss, __KERNEL_DS);
223 loadsegment(ds, __USER_DS);
224 loadsegment(es, __USER_DS);
225
226 /*
227 * Restore percpu access. Percpu access can happen in exception
228 * handlers or in complicated helpers like load_gs_index().
229 */
230#ifdef CONFIG_X86_64
231 wrmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base);
232#else
233 loadsegment(fs, __KERNEL_PERCPU);
234 loadsegment(gs, __KERNEL_STACK_CANARY);
Andy Lutomirski57578e52017-11-30 07:57:57 -0800235#endif
236
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800237 /* Restore the TSS, RO GDT, LDT, and usermode-relevant MSRs. */
Andy Lutomirski57578e52017-11-30 07:57:57 -0800238 fix_processor_context();
239
240 /*
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800241 * Now that we have descriptor tables fully restored and working
242 * exception handling, restore the usermode segments.
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100243 */
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800244#ifdef CONFIG_X86_64
245 loadsegment(ds, ctxt->es);
Sergio Luis3134d042009-04-28 00:27:05 +0200246 loadsegment(es, ctxt->es);
247 loadsegment(fs, ctxt->fs);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100248 load_gs_index(ctxt->gs);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100249
Andy Lutomirski57578e52017-11-30 07:57:57 -0800250 /*
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800251 * Restore FSBASE and GSBASE after restoring the selectors, since
252 * restoring the selectors clobbers the bases. Keep in mind
253 * that MSR_KERNEL_GS_BASE is horribly misnamed.
Andy Lutomirski57578e52017-11-30 07:57:57 -0800254 */
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100255 wrmsrl(MSR_FS_BASE, ctxt->fs_base);
Andy Lutomirski39dbf532017-12-14 13:19:07 -0800256 wrmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base);
257#elif defined(CONFIG_X86_32_LAZY_GS)
258 loadsegment(gs, ctxt->gs);
Sergio Luis3134d042009-04-28 00:27:05 +0200259#endif
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100260
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100261 do_fpu_end();
Marcelo Tosattidba69d12012-04-01 13:53:36 -0300262 x86_platform.restore_sched_clock_state();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -0700263 mtrr_bp_restore();
Stephane Eranian1d9d8632013-03-15 14:26:07 +0100264 perf_restore_debug_store();
Borislav Petkovc421e3a2022-04-19 09:52:41 -0700265
266 microcode_bsp_resume();
267
268 /*
269 * This needs to happen after the microcode has been updated upon resume
270 * because some of the MSRs are "emulated" in microcode.
271 */
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800272 msr_restore_context(ctxt);
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100273}
274
Sergio Luis3134d042009-04-28 00:27:05 +0200275/* Needed by apm.c */
Steven Rostedt (Red Hat)b8f99b32014-06-24 20:58:26 -0400276void notrace restore_processor_state(void)
Rafael J. Wysockief8b03f2008-02-09 23:24:09 +0100277{
278 __restore_processor_state(&saved_context);
279}
Sergio Luis3134d042009-04-28 00:27:05 +0200280#ifdef CONFIG_X86_32
281EXPORT_SYMBOL(restore_processor_state);
282#endif
Fenghua Yu209efae2012-11-13 11:32:42 -0800283
Rafael J. Wysocki406f9922016-07-14 03:55:23 +0200284#if defined(CONFIG_HIBERNATION) && defined(CONFIG_HOTPLUG_CPU)
285static void resume_play_dead(void)
286{
287 play_dead_common();
288 tboot_shutdown(TB_SHUTDOWN_WFS);
289 hlt_play_dead();
290}
291
292int hibernate_resume_nonboot_cpu_disable(void)
293{
294 void (*play_dead)(void) = smp_ops.play_dead;
295 int ret;
296
297 /*
298 * Ensure that MONITOR/MWAIT will not be used in the "play dead" loop
299 * during hibernate image restoration, because it is likely that the
300 * monitored address will be actually written to at that time and then
301 * the "dead" CPU will attempt to execute instructions again, but the
302 * address in its instruction pointer may not be possible to resolve
303 * any more at that point (the page tables used by it previously may
304 * have been overwritten by hibernate image data).
Jiri Kosina5bdc5362019-05-30 00:09:39 +0200305 *
306 * First, make sure that we wake up all the potentially disabled SMT
307 * threads which have been initially brought up and then put into
308 * mwait/cpuidle sleep.
309 * Those will be put to proper (not interfering with hibernation
310 * resume) sleep afterwards, and the resumed kernel will decide itself
311 * what to do with them.
Rafael J. Wysocki406f9922016-07-14 03:55:23 +0200312 */
Jiri Kosina5bdc5362019-05-30 00:09:39 +0200313 ret = cpuhp_smt_enable();
314 if (ret)
315 return ret;
Rafael J. Wysocki406f9922016-07-14 03:55:23 +0200316 smp_ops.play_dead = resume_play_dead;
317 ret = disable_nonboot_cpus();
318 smp_ops.play_dead = play_dead;
319 return ret;
320}
321#endif
322
Fenghua Yu209efae2012-11-13 11:32:42 -0800323/*
324 * When bsp_check() is called in hibernate and suspend, cpu hotplug
325 * is disabled already. So it's unnessary to handle race condition between
326 * cpumask query and cpu hotplug.
327 */
328static int bsp_check(void)
329{
330 if (cpumask_first(cpu_online_mask) != 0) {
331 pr_warn("CPU0 is offline.\n");
332 return -ENODEV;
333 }
334
335 return 0;
336}
337
338static int bsp_pm_callback(struct notifier_block *nb, unsigned long action,
339 void *ptr)
340{
341 int ret = 0;
342
343 switch (action) {
344 case PM_SUSPEND_PREPARE:
345 case PM_HIBERNATION_PREPARE:
346 ret = bsp_check();
347 break;
Fenghua Yua71c8bc2012-11-13 11:32:51 -0800348#ifdef CONFIG_DEBUG_HOTPLUG_CPU0
349 case PM_RESTORE_PREPARE:
350 /*
351 * When system resumes from hibernation, online CPU0 because
352 * 1. it's required for resume and
353 * 2. the CPU was online before hibernation
354 */
355 if (!cpu_online(0))
356 _debug_hotplug_cpu(0, 1);
357 break;
358 case PM_POST_RESTORE:
359 /*
360 * When a resume really happens, this code won't be called.
361 *
362 * This code is called only when user space hibernation software
363 * prepares for snapshot device during boot time. So we just
364 * call _debug_hotplug_cpu() to restore to CPU0's state prior to
365 * preparing the snapshot device.
366 *
367 * This works for normal boot case in our CPU0 hotplug debug
368 * mode, i.e. CPU0 is offline and user mode hibernation
369 * software initializes during boot time.
370 *
371 * If CPU0 is online and user application accesses snapshot
372 * device after boot time, this will offline CPU0 and user may
373 * see different CPU0 state before and after accessing
374 * the snapshot device. But hopefully this is not a case when
375 * user debugging CPU0 hotplug. Even if users hit this case,
376 * they can easily online CPU0 back.
377 *
378 * To simplify this debug code, we only consider normal boot
379 * case. Otherwise we need to remember CPU0's state and restore
380 * to that state and resolve racy conditions etc.
381 */
382 _debug_hotplug_cpu(0, 0);
383 break;
384#endif
Fenghua Yu209efae2012-11-13 11:32:42 -0800385 default:
386 break;
387 }
388 return notifier_from_errno(ret);
389}
390
391static int __init bsp_pm_check_init(void)
392{
393 /*
394 * Set this bsp_pm_callback as lower priority than
395 * cpu_hotplug_pm_callback. So cpu_hotplug_pm_callback will be called
396 * earlier to disable cpu hotplug before bsp online check.
397 */
398 pm_notifier(bsp_pm_callback, -INT_MAX);
399 return 0;
400}
401
402core_initcall(bsp_pm_check_init);
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800403
Tom Lendacky9272c252019-08-19 15:52:35 +0000404static int msr_build_context(const u32 *msr_id, const int num)
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800405{
Tom Lendacky9272c252019-08-19 15:52:35 +0000406 struct saved_msrs *saved_msrs = &saved_context.saved_msrs;
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800407 struct saved_msr *msr_array;
Tom Lendacky9272c252019-08-19 15:52:35 +0000408 int total_num;
409 int i, j;
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800410
Tom Lendacky9272c252019-08-19 15:52:35 +0000411 total_num = saved_msrs->num + num;
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800412
413 msr_array = kmalloc_array(total_num, sizeof(struct saved_msr), GFP_KERNEL);
414 if (!msr_array) {
415 pr_err("x86/pm: Can not allocate memory to save/restore MSRs during suspend.\n");
416 return -ENOMEM;
417 }
418
Tom Lendacky9272c252019-08-19 15:52:35 +0000419 if (saved_msrs->array) {
420 /*
421 * Multiple callbacks can invoke this function, so copy any
422 * MSR save requests from previous invocations.
423 */
424 memcpy(msr_array, saved_msrs->array,
425 sizeof(struct saved_msr) * saved_msrs->num);
426
427 kfree(saved_msrs->array);
428 }
429
430 for (i = saved_msrs->num, j = 0; i < total_num; i++, j++) {
Pawan Guptac30aba82022-04-04 17:34:19 -0700431 u64 dummy;
432
Tom Lendacky9272c252019-08-19 15:52:35 +0000433 msr_array[i].info.msr_no = msr_id[j];
Pawan Guptac30aba82022-04-04 17:34:19 -0700434 msr_array[i].valid = !rdmsrl_safe(msr_id[j], &dummy);
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800435 msr_array[i].info.reg.q = 0;
436 }
Tom Lendacky9272c252019-08-19 15:52:35 +0000437 saved_msrs->num = total_num;
438 saved_msrs->array = msr_array;
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800439
440 return 0;
441}
442
443/*
Tom Lendacky9272c252019-08-19 15:52:35 +0000444 * The following sections are a quirk framework for problematic BIOSen:
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800445 * Sometimes MSRs are modified by the BIOSen after suspended to
446 * RAM, this might cause unexpected behavior after wakeup.
447 * Thus we save/restore these specified MSRs across suspend/resume
448 * in order to work around it.
449 *
450 * For any further problematic BIOSen/platforms,
451 * please add your own function similar to msr_initialize_bdw.
452 */
453static int msr_initialize_bdw(const struct dmi_system_id *d)
454{
455 /* Add any extra MSR ids into this array. */
456 u32 bdw_msr_id[] = { MSR_IA32_THERM_CONTROL };
457
458 pr_info("x86/pm: %s detected, MSR saving is needed during suspending.\n", d->ident);
Tom Lendacky9272c252019-08-19 15:52:35 +0000459 return msr_build_context(bdw_msr_id, ARRAY_SIZE(bdw_msr_id));
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800460}
461
462static struct dmi_system_id msr_save_dmi_table[] = {
463 {
464 .callback = msr_initialize_bdw,
465 .ident = "BROADWELL BDX_EP",
466 .matches = {
467 DMI_MATCH(DMI_PRODUCT_NAME, "GRANTLEY"),
468 DMI_MATCH(DMI_PRODUCT_VERSION, "E63448-400"),
469 },
470 },
471 {}
472};
473
Tom Lendacky9272c252019-08-19 15:52:35 +0000474static int msr_save_cpuid_features(const struct x86_cpu_id *c)
475{
476 u32 cpuid_msr_id[] = {
477 MSR_AMD64_CPUID_FN_1,
478 };
479
480 pr_info("x86/pm: family %#hx cpu detected, MSR saving is needed during suspending.\n",
481 c->family);
482
483 return msr_build_context(cpuid_msr_id, ARRAY_SIZE(cpuid_msr_id));
484}
485
486static const struct x86_cpu_id msr_save_cpu_table[] = {
487 {
488 .vendor = X86_VENDOR_AMD,
489 .family = 0x15,
490 .model = X86_MODEL_ANY,
491 .feature = X86_FEATURE_ANY,
492 .driver_data = (kernel_ulong_t)msr_save_cpuid_features,
493 },
494 {
495 .vendor = X86_VENDOR_AMD,
496 .family = 0x16,
497 .model = X86_MODEL_ANY,
498 .feature = X86_FEATURE_ANY,
499 .driver_data = (kernel_ulong_t)msr_save_cpuid_features,
500 },
501 {}
502};
503
504typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *);
505static int pm_cpu_check(const struct x86_cpu_id *c)
506{
507 const struct x86_cpu_id *m;
508 int ret = 0;
509
510 m = x86_match_cpu(msr_save_cpu_table);
511 if (m) {
512 pm_cpu_match_t fn;
513
514 fn = (pm_cpu_match_t)m->driver_data;
515 ret = fn(m);
516 }
517
518 return ret;
519}
520
Pawan Gupta1d2e6ac2022-04-04 17:35:45 -0700521static void pm_save_spec_msr(void)
522{
Pawan Guptafee642b2022-12-01 20:23:18 -0800523 struct msr_enumeration {
524 u32 msr_no;
525 u32 feature;
526 } msr_enum[] = {
527 { MSR_IA32_SPEC_CTRL, X86_FEATURE_MSR_SPEC_CTRL },
528 { MSR_IA32_TSX_CTRL, X86_FEATURE_MSR_TSX_CTRL },
529 { MSR_TSX_FORCE_ABORT, X86_FEATURE_TSX_FORCE_ABORT },
530 { MSR_IA32_MCU_OPT_CTRL, X86_FEATURE_SRBDS_CTRL },
531 { MSR_AMD64_LS_CFG, X86_FEATURE_LS_CFG_SSBD },
532 { MSR_AMD64_DE_CFG, X86_FEATURE_LFENCE_RDTSC },
Pawan Gupta1d2e6ac2022-04-04 17:35:45 -0700533 };
Pawan Guptafee642b2022-12-01 20:23:18 -0800534 int i;
Pawan Gupta1d2e6ac2022-04-04 17:35:45 -0700535
Pawan Guptafee642b2022-12-01 20:23:18 -0800536 for (i = 0; i < ARRAY_SIZE(msr_enum); i++) {
537 if (boot_cpu_has(msr_enum[i].feature))
538 msr_build_context(&msr_enum[i].msr_no, 1);
539 }
Pawan Gupta1d2e6ac2022-04-04 17:35:45 -0700540}
541
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800542static int pm_check_save_msr(void)
543{
544 dmi_check_system(msr_save_dmi_table);
Tom Lendacky9272c252019-08-19 15:52:35 +0000545 pm_cpu_check(msr_save_cpu_table);
Pawan Gupta1d2e6ac2022-04-04 17:35:45 -0700546 pm_save_spec_msr();
Tom Lendacky9272c252019-08-19 15:52:35 +0000547
Chen Yu7a9c2dd2015-11-25 01:03:41 +0800548 return 0;
549}
550
551device_initcall(pm_check_save_msr);