Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 1 | /* |
Sergio Luis | 6d48bec | 2009-04-28 00:27:18 +0200 | [diff] [blame] | 2 | * Suspend support specific for i386/x86-64. |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 3 | * |
| 4 | * Distribute under GPLv2 |
| 5 | * |
| 6 | * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl> |
Pavel Machek | a253129 | 2010-07-18 14:27:13 +0200 | [diff] [blame] | 7 | * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz> |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 8 | * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org> |
| 9 | */ |
| 10 | |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 11 | #include <linux/suspend.h> |
Paul Gortmaker | 69c60c8 | 2011-05-26 12:22:53 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Sergio Luis | f6783d2 | 2009-04-28 00:26:22 +0200 | [diff] [blame] | 13 | #include <linux/smp.h> |
Stephane Eranian | 1d9d863 | 2013-03-15 14:26:07 +0100 | [diff] [blame] | 14 | #include <linux/perf_event.h> |
Rafael J. Wysocki | 406f992 | 2016-07-14 03:55:23 +0200 | [diff] [blame] | 15 | #include <linux/tboot.h> |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 16 | #include <linux/dmi.h> |
Sergio Luis | f6783d2 | 2009-04-28 00:26:22 +0200 | [diff] [blame] | 17 | |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 18 | #include <asm/pgtable.h> |
Sergio Luis | f6783d2 | 2009-04-28 00:26:22 +0200 | [diff] [blame] | 19 | #include <asm/proto.h> |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 20 | #include <asm/mtrr.h> |
Sergio Luis | f6783d2 | 2009-04-28 00:26:22 +0200 | [diff] [blame] | 21 | #include <asm/page.h> |
| 22 | #include <asm/mce.h> |
Magnus Damm | a8af789 | 2009-03-31 15:23:37 -0700 | [diff] [blame] | 23 | #include <asm/suspend.h> |
Ingo Molnar | 952f07e | 2015-04-26 16:56:05 +0200 | [diff] [blame] | 24 | #include <asm/fpu/internal.h> |
K.Prasad | 1e35006 | 2009-06-01 23:44:26 +0530 | [diff] [blame] | 25 | #include <asm/debugreg.h> |
Fenghua Yu | a71c8bc | 2012-11-13 11:32:51 -0800 | [diff] [blame] | 26 | #include <asm/cpu.h> |
Andy Lutomirski | 37868fe | 2015-07-30 14:31:32 -0700 | [diff] [blame] | 27 | #include <asm/mmu_context.h> |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 28 | #include <asm/cpu_device_id.h> |
Borislav Petkov | c421e3a | 2022-04-19 09:52:41 -0700 | [diff] [blame] | 29 | #include <asm/microcode.h> |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 30 | |
Sergio Luis | 833b2ca | 2009-04-28 00:26:50 +0200 | [diff] [blame] | 31 | #ifdef CONFIG_X86_32 |
Andi Kleen | d6efc2f | 2013-08-05 15:02:49 -0700 | [diff] [blame] | 32 | __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 Luis | 833b2ca | 2009-04-28 00:26:50 +0200 | [diff] [blame] | 36 | #endif |
Konrad Rzeszutek Wilk | cc456c4 | 2013-05-01 21:53:30 -0400 | [diff] [blame] | 37 | struct saved_context saved_context; |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 38 | |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 39 | static 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 Gupta | c30aba8 | 2022-04-04 17:34:19 -0700 | [diff] [blame] | 45 | if (msr->valid) |
| 46 | rdmsrl(msr->info.msr_no, msr->info.reg.q); |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 47 | msr++; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | static 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. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 63 | /** |
| 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 | */ |
| 78 | static void __save_processor_state(struct saved_context *ctxt) |
| 79 | { |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 80 | #ifdef CONFIG_X86_32 |
| 81 | mtrr_save_fixed_ranges(NULL); |
| 82 | #endif |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 83 | kernel_fpu_begin(); |
| 84 | |
| 85 | /* |
| 86 | * descriptor tables |
| 87 | */ |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 88 | store_idt(&ctxt->idt); |
Andy Lutomirski | 61f1e18 | 2017-12-14 13:19:05 -0800 | [diff] [blame] | 89 | |
Konrad Rzeszutek Wilk | cc456c4 | 2013-05-01 21:53:30 -0400 | [diff] [blame] | 90 | /* |
| 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. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 99 | store_tr(ctxt->tr); |
| 100 | |
| 101 | /* XMM0..XMM15 should be handled by kernel_fpu_begin(). */ |
| 102 | /* |
| 103 | * segment registers |
| 104 | */ |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 105 | #ifdef CONFIG_X86_32_LAZY_GS |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 106 | savesegment(gs, ctxt->gs); |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 107 | #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. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 113 | |
| 114 | rdmsrl(MSR_FS_BASE, ctxt->fs_base); |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 115 | rdmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base); |
| 116 | rdmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 117 | mtrr_save_fixed_ranges(NULL); |
| 118 | |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 119 | rdmsrl(MSR_EFER, ctxt->efer); |
| 120 | #endif |
| 121 | |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 122 | /* |
| 123 | * control registers |
| 124 | */ |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 125 | ctxt->cr0 = read_cr0(); |
| 126 | ctxt->cr2 = read_cr2(); |
| 127 | ctxt->cr3 = read_cr3(); |
Andy Lutomirski | 1ef55be1 | 2016-09-29 12:48:12 -0700 | [diff] [blame] | 128 | ctxt->cr4 = __read_cr4(); |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 129 | #ifdef CONFIG_X86_64 |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 130 | ctxt->cr8 = read_cr8(); |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 131 | #endif |
Ondrej Zary | 85a0e75 | 2010-06-08 00:32:49 +0200 | [diff] [blame] | 132 | ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE, |
| 133 | &ctxt->misc_enable); |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 134 | msr_save_context(ctxt); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 135 | } |
| 136 | |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 137 | /* Needed by apm.c */ |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 138 | void save_processor_state(void) |
| 139 | { |
| 140 | __save_processor_state(&saved_context); |
Marcelo Tosatti | b74f05d | 2012-02-13 11:07:27 -0200 | [diff] [blame] | 141 | x86_platform.save_sched_clock_state(); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 142 | } |
Sergio Luis | f9ebbe5 | 2009-04-28 00:27:00 +0200 | [diff] [blame] | 143 | #ifdef CONFIG_X86_32 |
| 144 | EXPORT_SYMBOL(save_processor_state); |
| 145 | #endif |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 146 | |
| 147 | static void do_fpu_end(void) |
| 148 | { |
| 149 | /* |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 150 | * Restore FPU regs if necessary. |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 151 | */ |
| 152 | kernel_fpu_end(); |
| 153 | } |
| 154 | |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 155 | static void fix_processor_context(void) |
| 156 | { |
| 157 | int cpu = smp_processor_id(); |
Andy Lutomirski | 24933b8 | 2015-03-05 19:19:05 -0800 | [diff] [blame] | 158 | struct tss_struct *t = &per_cpu(cpu_tss, cpu); |
konrad@kernel.org | 4d681be | 2013-04-05 16:42:24 -0400 | [diff] [blame] | 159 | #ifdef CONFIG_X86_64 |
| 160 | struct desc_struct *desc = get_cpu_gdt_table(cpu); |
| 161 | tss_desc tss; |
| 162 | #endif |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 163 | 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.org | 4d681be | 2013-04-05 16:42:24 -0400 | [diff] [blame] | 171 | 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 Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 174 | |
| 175 | syscall_init(); /* This sets MSR_*STAR and related */ |
Andy Lutomirski | d72b485 | 2017-12-14 13:19:06 -0800 | [diff] [blame] | 176 | #else |
| 177 | if (boot_cpu_has(X86_FEATURE_SEP)) |
| 178 | enable_sep_cpu(); |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 179 | #endif |
| 180 | load_TR_desc(); /* This does ltr */ |
Andy Lutomirski | 37868fe | 2015-07-30 14:31:32 -0700 | [diff] [blame] | 181 | load_mm_ldt(current->active_mm); /* This does lldt */ |
Ingo Molnar | 9254aaa | 2015-04-24 10:02:32 +0200 | [diff] [blame] | 182 | |
| 183 | fpu__resume_cpu(); |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 184 | } |
| 185 | |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 186 | /** |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 187 | * __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. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 193 | */ |
Steven Rostedt (Red Hat) | b8f99b3 | 2014-06-24 20:58:26 -0400 | [diff] [blame] | 194 | static void notrace __restore_processor_state(struct saved_context *ctxt) |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 195 | { |
Ondrej Zary | 85a0e75 | 2010-06-08 00:32:49 +0200 | [diff] [blame] | 196 | if (ctxt->misc_enable_saved) |
| 197 | wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 198 | /* |
| 199 | * control registers |
| 200 | */ |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 201 | /* cr4 was introduced in the Pentium CPU */ |
| 202 | #ifdef CONFIG_X86_32 |
| 203 | if (ctxt->cr4) |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 204 | __write_cr4(ctxt->cr4); |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 205 | #else |
| 206 | /* CONFIG X86_64 */ |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 207 | wrmsrl(MSR_EFER, ctxt->efer); |
| 208 | write_cr8(ctxt->cr8); |
Andy Lutomirski | 1e02ce4 | 2014-10-24 15:58:08 -0700 | [diff] [blame] | 209 | __write_cr4(ctxt->cr4); |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 210 | #endif |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 211 | write_cr3(ctxt->cr3); |
| 212 | write_cr2(ctxt->cr2); |
| 213 | write_cr0(ctxt->cr0); |
| 214 | |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 215 | /* Restore the IDT. */ |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 216 | load_idt(&ctxt->idt); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 217 | |
| 218 | /* |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 219 | * 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 Lutomirski | 57578e5 | 2017-11-30 07:57:57 -0800 | [diff] [blame] | 221 | */ |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 222 | 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 Lutomirski | 57578e5 | 2017-11-30 07:57:57 -0800 | [diff] [blame] | 235 | #endif |
| 236 | |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 237 | /* Restore the TSS, RO GDT, LDT, and usermode-relevant MSRs. */ |
Andy Lutomirski | 57578e5 | 2017-11-30 07:57:57 -0800 | [diff] [blame] | 238 | fix_processor_context(); |
| 239 | |
| 240 | /* |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 241 | * Now that we have descriptor tables fully restored and working |
| 242 | * exception handling, restore the usermode segments. |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 243 | */ |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 244 | #ifdef CONFIG_X86_64 |
| 245 | loadsegment(ds, ctxt->es); |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 246 | loadsegment(es, ctxt->es); |
| 247 | loadsegment(fs, ctxt->fs); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 248 | load_gs_index(ctxt->gs); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 249 | |
Andy Lutomirski | 57578e5 | 2017-11-30 07:57:57 -0800 | [diff] [blame] | 250 | /* |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 251 | * 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 Lutomirski | 57578e5 | 2017-11-30 07:57:57 -0800 | [diff] [blame] | 254 | */ |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 255 | wrmsrl(MSR_FS_BASE, ctxt->fs_base); |
Andy Lutomirski | 39dbf53 | 2017-12-14 13:19:07 -0800 | [diff] [blame] | 256 | wrmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base); |
| 257 | #elif defined(CONFIG_X86_32_LAZY_GS) |
| 258 | loadsegment(gs, ctxt->gs); |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 259 | #endif |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 260 | |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 261 | do_fpu_end(); |
Marcelo Tosatti | dba69d1 | 2012-04-01 13:53:36 -0300 | [diff] [blame] | 262 | x86_platform.restore_sched_clock_state(); |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 263 | mtrr_bp_restore(); |
Stephane Eranian | 1d9d863 | 2013-03-15 14:26:07 +0100 | [diff] [blame] | 264 | perf_restore_debug_store(); |
Borislav Petkov | c421e3a | 2022-04-19 09:52:41 -0700 | [diff] [blame] | 265 | |
| 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 Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 272 | msr_restore_context(ctxt); |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 275 | /* Needed by apm.c */ |
Steven Rostedt (Red Hat) | b8f99b3 | 2014-06-24 20:58:26 -0400 | [diff] [blame] | 276 | void notrace restore_processor_state(void) |
Rafael J. Wysocki | ef8b03f | 2008-02-09 23:24:09 +0100 | [diff] [blame] | 277 | { |
| 278 | __restore_processor_state(&saved_context); |
| 279 | } |
Sergio Luis | 3134d04 | 2009-04-28 00:27:05 +0200 | [diff] [blame] | 280 | #ifdef CONFIG_X86_32 |
| 281 | EXPORT_SYMBOL(restore_processor_state); |
| 282 | #endif |
Fenghua Yu | 209efae | 2012-11-13 11:32:42 -0800 | [diff] [blame] | 283 | |
Rafael J. Wysocki | 406f992 | 2016-07-14 03:55:23 +0200 | [diff] [blame] | 284 | #if defined(CONFIG_HIBERNATION) && defined(CONFIG_HOTPLUG_CPU) |
| 285 | static void resume_play_dead(void) |
| 286 | { |
| 287 | play_dead_common(); |
| 288 | tboot_shutdown(TB_SHUTDOWN_WFS); |
| 289 | hlt_play_dead(); |
| 290 | } |
| 291 | |
| 292 | int 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 Kosina | 5bdc536 | 2019-05-30 00:09:39 +0200 | [diff] [blame] | 305 | * |
| 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. Wysocki | 406f992 | 2016-07-14 03:55:23 +0200 | [diff] [blame] | 312 | */ |
Jiri Kosina | 5bdc536 | 2019-05-30 00:09:39 +0200 | [diff] [blame] | 313 | ret = cpuhp_smt_enable(); |
| 314 | if (ret) |
| 315 | return ret; |
Rafael J. Wysocki | 406f992 | 2016-07-14 03:55:23 +0200 | [diff] [blame] | 316 | 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 Yu | 209efae | 2012-11-13 11:32:42 -0800 | [diff] [blame] | 323 | /* |
| 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 | */ |
| 328 | static 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 | |
| 338 | static 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 Yu | a71c8bc | 2012-11-13 11:32:51 -0800 | [diff] [blame] | 348 | #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 Yu | 209efae | 2012-11-13 11:32:42 -0800 | [diff] [blame] | 385 | default: |
| 386 | break; |
| 387 | } |
| 388 | return notifier_from_errno(ret); |
| 389 | } |
| 390 | |
| 391 | static 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 | |
| 402 | core_initcall(bsp_pm_check_init); |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 403 | |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 404 | static int msr_build_context(const u32 *msr_id, const int num) |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 405 | { |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 406 | struct saved_msrs *saved_msrs = &saved_context.saved_msrs; |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 407 | struct saved_msr *msr_array; |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 408 | int total_num; |
| 409 | int i, j; |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 410 | |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 411 | total_num = saved_msrs->num + num; |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 412 | |
| 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 Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 419 | 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 Gupta | c30aba8 | 2022-04-04 17:34:19 -0700 | [diff] [blame] | 431 | u64 dummy; |
| 432 | |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 433 | msr_array[i].info.msr_no = msr_id[j]; |
Pawan Gupta | c30aba8 | 2022-04-04 17:34:19 -0700 | [diff] [blame] | 434 | msr_array[i].valid = !rdmsrl_safe(msr_id[j], &dummy); |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 435 | msr_array[i].info.reg.q = 0; |
| 436 | } |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 437 | saved_msrs->num = total_num; |
| 438 | saved_msrs->array = msr_array; |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 439 | |
| 440 | return 0; |
| 441 | } |
| 442 | |
| 443 | /* |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 444 | * The following sections are a quirk framework for problematic BIOSen: |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 445 | * 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 | */ |
| 453 | static 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 Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 459 | return msr_build_context(bdw_msr_id, ARRAY_SIZE(bdw_msr_id)); |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 460 | } |
| 461 | |
| 462 | static 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 Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 474 | static 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 | |
| 486 | static 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 | |
| 504 | typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *); |
| 505 | static 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 Gupta | 1d2e6ac | 2022-04-04 17:35:45 -0700 | [diff] [blame] | 521 | static void pm_save_spec_msr(void) |
| 522 | { |
Pawan Gupta | fee642b | 2022-12-01 20:23:18 -0800 | [diff] [blame] | 523 | 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 Gupta | 1d2e6ac | 2022-04-04 17:35:45 -0700 | [diff] [blame] | 533 | }; |
Pawan Gupta | fee642b | 2022-12-01 20:23:18 -0800 | [diff] [blame] | 534 | int i; |
Pawan Gupta | 1d2e6ac | 2022-04-04 17:35:45 -0700 | [diff] [blame] | 535 | |
Pawan Gupta | fee642b | 2022-12-01 20:23:18 -0800 | [diff] [blame] | 536 | 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 Gupta | 1d2e6ac | 2022-04-04 17:35:45 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 542 | static int pm_check_save_msr(void) |
| 543 | { |
| 544 | dmi_check_system(msr_save_dmi_table); |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 545 | pm_cpu_check(msr_save_cpu_table); |
Pawan Gupta | 1d2e6ac | 2022-04-04 17:35:45 -0700 | [diff] [blame] | 546 | pm_save_spec_msr(); |
Tom Lendacky | 9272c25 | 2019-08-19 15:52:35 +0000 | [diff] [blame] | 547 | |
Chen Yu | 7a9c2dd | 2015-11-25 01:03:41 +0800 | [diff] [blame] | 548 | return 0; |
| 549 | } |
| 550 | |
| 551 | device_initcall(pm_check_save_msr); |