xref: /openbmc/linux/arch/x86/power/cpu.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
1767a67b0SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
208687aecSSergio Luis /*
308687aecSSergio Luis  * Suspend support specific for i386/x86-64.
408687aecSSergio Luis  *
508687aecSSergio Luis  * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
6a2531293SPavel Machek  * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
708687aecSSergio Luis  * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
808687aecSSergio Luis  */
908687aecSSergio Luis 
1008687aecSSergio Luis #include <linux/suspend.h>
1169c60c88SPaul Gortmaker #include <linux/export.h>
1208687aecSSergio Luis #include <linux/smp.h>
131d9d8639SStephane Eranian #include <linux/perf_event.h>
14406f992eSRafael J. Wysocki #include <linux/tboot.h>
15c49a0a80STom Lendacky #include <linux/dmi.h>
16ca5999fdSMike Rapoport #include <linux/pgtable.h>
1765fddcfcSMike Rapoport 
1808687aecSSergio Luis #include <asm/proto.h>
1908687aecSSergio Luis #include <asm/mtrr.h>
2008687aecSSergio Luis #include <asm/page.h>
2108687aecSSergio Luis #include <asm/mce.h>
2208687aecSSergio Luis #include <asm/suspend.h>
23b56d2795SThomas Gleixner #include <asm/fpu/api.h>
24eadb8a09SIngo Molnar #include <asm/debugreg.h>
25a71c8bc5SFenghua Yu #include <asm/cpu.h>
260b9a6a8bSJuergen Gross #include <asm/cacheinfo.h>
2737868fe1SAndy Lutomirski #include <asm/mmu_context.h>
28c49a0a80STom Lendacky #include <asm/cpu_device_id.h>
29f9e14dbbSBorislav Petkov #include <asm/microcode.h>
3008687aecSSergio Luis 
3108687aecSSergio Luis #ifdef CONFIG_X86_32
32d6efc2f7SAndi Kleen __visible unsigned long saved_context_ebx;
33d6efc2f7SAndi Kleen __visible unsigned long saved_context_esp, saved_context_ebp;
34d6efc2f7SAndi Kleen __visible unsigned long saved_context_esi, saved_context_edi;
35d6efc2f7SAndi Kleen __visible unsigned long saved_context_eflags;
3608687aecSSergio Luis #endif
37cc456c4eSKonrad Rzeszutek Wilk struct saved_context saved_context;
3808687aecSSergio Luis 
msr_save_context(struct saved_context * ctxt)397a9c2dd0SChen Yu static void msr_save_context(struct saved_context *ctxt)
407a9c2dd0SChen Yu {
417a9c2dd0SChen Yu 	struct saved_msr *msr = ctxt->saved_msrs.array;
427a9c2dd0SChen Yu 	struct saved_msr *end = msr + ctxt->saved_msrs.num;
437a9c2dd0SChen Yu 
447a9c2dd0SChen Yu 	while (msr < end) {
4573924ec4SPawan Gupta 		if (msr->valid)
4673924ec4SPawan Gupta 			rdmsrl(msr->info.msr_no, msr->info.reg.q);
477a9c2dd0SChen Yu 		msr++;
487a9c2dd0SChen Yu 	}
497a9c2dd0SChen Yu }
507a9c2dd0SChen Yu 
msr_restore_context(struct saved_context * ctxt)517a9c2dd0SChen Yu static void msr_restore_context(struct saved_context *ctxt)
527a9c2dd0SChen Yu {
537a9c2dd0SChen Yu 	struct saved_msr *msr = ctxt->saved_msrs.array;
547a9c2dd0SChen Yu 	struct saved_msr *end = msr + ctxt->saved_msrs.num;
557a9c2dd0SChen Yu 
567a9c2dd0SChen Yu 	while (msr < end) {
577a9c2dd0SChen Yu 		if (msr->valid)
587a9c2dd0SChen Yu 			wrmsrl(msr->info.msr_no, msr->info.reg.q);
597a9c2dd0SChen Yu 		msr++;
607a9c2dd0SChen Yu 	}
617a9c2dd0SChen Yu }
627a9c2dd0SChen Yu 
6308687aecSSergio Luis /**
64afc880cbSBaokun Li  * __save_processor_state() - Save CPU registers before creating a
65afc880cbSBaokun Li  *                             hibernation image and before restoring
66afc880cbSBaokun Li  *                             the memory state from it
67afc880cbSBaokun Li  * @ctxt: Structure to store the registers contents in.
6808687aecSSergio Luis  *
6908687aecSSergio Luis  * NOTE: If there is a CPU register the modification of which by the
7008687aecSSergio Luis  * boot kernel (ie. the kernel used for loading the hibernation image)
7108687aecSSergio Luis  * might affect the operations of the restored target kernel (ie. the one
7208687aecSSergio Luis  * saved in the hibernation image), then its contents must be saved by this
7308687aecSSergio Luis  * function.  In other words, if kernel A is hibernated and different
7408687aecSSergio Luis  * kernel B is used for loading the hibernation image into memory, the
7508687aecSSergio Luis  * kernel A's __save_processor_state() function must save all registers
7608687aecSSergio Luis  * needed by kernel A, so that it can operate correctly after the resume
7708687aecSSergio Luis  * regardless of what kernel B does in the meantime.
7808687aecSSergio Luis  */
__save_processor_state(struct saved_context * ctxt)7908687aecSSergio Luis static void __save_processor_state(struct saved_context *ctxt)
8008687aecSSergio Luis {
8108687aecSSergio Luis #ifdef CONFIG_X86_32
8208687aecSSergio Luis 	mtrr_save_fixed_ranges(NULL);
8308687aecSSergio Luis #endif
8408687aecSSergio Luis 	kernel_fpu_begin();
8508687aecSSergio Luis 
8608687aecSSergio Luis 	/*
8708687aecSSergio Luis 	 * descriptor tables
8808687aecSSergio Luis 	 */
8908687aecSSergio Luis 	store_idt(&ctxt->idt);
90090edbe2SAndy Lutomirski 
91cc456c4eSKonrad Rzeszutek Wilk 	/*
92cc456c4eSKonrad Rzeszutek Wilk 	 * We save it here, but restore it only in the hibernate case.
93cc456c4eSKonrad Rzeszutek Wilk 	 * For ACPI S3 resume, this is loaded via 'early_gdt_desc' in 64-bit
94cc456c4eSKonrad Rzeszutek Wilk 	 * mode in "secondary_startup_64". In 32-bit mode it is done via
95cc456c4eSKonrad Rzeszutek Wilk 	 * 'pmode_gdt' in wakeup_start.
96cc456c4eSKonrad Rzeszutek Wilk 	 */
97cc456c4eSKonrad Rzeszutek Wilk 	ctxt->gdt_desc.size = GDT_SIZE - 1;
9869218e47SThomas Garnier 	ctxt->gdt_desc.address = (unsigned long)get_cpu_gdt_rw(smp_processor_id());
99cc456c4eSKonrad Rzeszutek Wilk 
10008687aecSSergio Luis 	store_tr(ctxt->tr);
10108687aecSSergio Luis 
10208687aecSSergio Luis 	/* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
10308687aecSSergio Luis 	/*
10408687aecSSergio Luis 	 * segment registers
10508687aecSSergio Luis 	 */
10608687aecSSergio Luis 	savesegment(gs, ctxt->gs);
1077ee18d67SAndy Lutomirski #ifdef CONFIG_X86_64
1087ee18d67SAndy Lutomirski 	savesegment(fs, ctxt->fs);
1097ee18d67SAndy Lutomirski 	savesegment(ds, ctxt->ds);
1107ee18d67SAndy Lutomirski 	savesegment(es, ctxt->es);
11108687aecSSergio Luis 
11208687aecSSergio Luis 	rdmsrl(MSR_FS_BASE, ctxt->fs_base);
1137ee18d67SAndy Lutomirski 	rdmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base);
1147ee18d67SAndy Lutomirski 	rdmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base);
11508687aecSSergio Luis 	mtrr_save_fixed_ranges(NULL);
11608687aecSSergio Luis 
11708687aecSSergio Luis 	rdmsrl(MSR_EFER, ctxt->efer);
11808687aecSSergio Luis #endif
11908687aecSSergio Luis 
12008687aecSSergio Luis 	/*
12108687aecSSergio Luis 	 * control registers
12208687aecSSergio Luis 	 */
12308687aecSSergio Luis 	ctxt->cr0 = read_cr0();
12408687aecSSergio Luis 	ctxt->cr2 = read_cr2();
1256c690ee1SAndy Lutomirski 	ctxt->cr3 = __read_cr3();
1261ef55be1SAndy Lutomirski 	ctxt->cr4 = __read_cr4();
12785a0e753SOndrej Zary 	ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
12885a0e753SOndrej Zary 					       &ctxt->misc_enable);
1297a9c2dd0SChen Yu 	msr_save_context(ctxt);
13008687aecSSergio Luis }
13108687aecSSergio Luis 
13208687aecSSergio Luis /* Needed by apm.c */
save_processor_state(void)13308687aecSSergio Luis void save_processor_state(void)
13408687aecSSergio Luis {
13508687aecSSergio Luis 	__save_processor_state(&saved_context);
136b74f05d6SMarcelo Tosatti 	x86_platform.save_sched_clock_state();
13708687aecSSergio Luis }
13808687aecSSergio Luis #ifdef CONFIG_X86_32
13908687aecSSergio Luis EXPORT_SYMBOL(save_processor_state);
14008687aecSSergio Luis #endif
14108687aecSSergio Luis 
do_fpu_end(void)14208687aecSSergio Luis static void do_fpu_end(void)
14308687aecSSergio Luis {
14408687aecSSergio Luis 	/*
14508687aecSSergio Luis 	 * Restore FPU regs if necessary.
14608687aecSSergio Luis 	 */
14708687aecSSergio Luis 	kernel_fpu_end();
14808687aecSSergio Luis }
14908687aecSSergio Luis 
fix_processor_context(void)15008687aecSSergio Luis static void fix_processor_context(void)
15108687aecSSergio Luis {
15208687aecSSergio Luis 	int cpu = smp_processor_id();
1534d681be3Skonrad@kernel.org #ifdef CONFIG_X86_64
15469218e47SThomas Garnier 	struct desc_struct *desc = get_cpu_gdt_rw(cpu);
1554d681be3Skonrad@kernel.org 	tss_desc tss;
1564d681be3Skonrad@kernel.org #endif
1577fb983b4SAndy Lutomirski 
1587fb983b4SAndy Lutomirski 	/*
15972f5e08dSAndy Lutomirski 	 * We need to reload TR, which requires that we change the
16072f5e08dSAndy Lutomirski 	 * GDT entry to indicate "available" first.
16172f5e08dSAndy Lutomirski 	 *
16272f5e08dSAndy Lutomirski 	 * XXX: This could probably all be replaced by a call to
16372f5e08dSAndy Lutomirski 	 * force_reload_TR().
16408687aecSSergio Luis 	 */
16572f5e08dSAndy Lutomirski 	set_tss_desc(cpu, &get_cpu_entry_area(cpu)->tss.x86_tss);
16608687aecSSergio Luis 
16708687aecSSergio Luis #ifdef CONFIG_X86_64
1684d681be3Skonrad@kernel.org 	memcpy(&tss, &desc[GDT_ENTRY_TSS], sizeof(tss_desc));
1694d681be3Skonrad@kernel.org 	tss.type = 0x9; /* The available 64-bit TSS (see AMD vol 2, pg 91 */
1704d681be3Skonrad@kernel.org 	write_gdt_entry(desc, GDT_ENTRY_TSS, &tss, DESC_TSS);
17108687aecSSergio Luis 
17208687aecSSergio Luis 	syscall_init();				/* This sets MSR_*STAR and related */
173896c80beSAndy Lutomirski #else
174896c80beSAndy Lutomirski 	if (boot_cpu_has(X86_FEATURE_SEP))
175896c80beSAndy Lutomirski 		enable_sep_cpu();
17608687aecSSergio Luis #endif
17708687aecSSergio Luis 	load_TR_desc();				/* This does ltr */
17837868fe1SAndy Lutomirski 	load_mm_ldt(current->active_mm);	/* This does lldt */
17972c0098dSAndy Lutomirski 	initialize_tlbstate_and_flush();
1809254aaa0SIngo Molnar 
1819254aaa0SIngo Molnar 	fpu__resume_cpu();
18269218e47SThomas Garnier 
18369218e47SThomas Garnier 	/* The processor is back on the direct GDT, load back the fixmap */
18469218e47SThomas Garnier 	load_fixmap_gdt(cpu);
18508687aecSSergio Luis }
18608687aecSSergio Luis 
18708687aecSSergio Luis /**
188afc880cbSBaokun Li  * __restore_processor_state() - Restore the contents of CPU registers saved
18908687aecSSergio Luis  *                               by __save_processor_state()
190afc880cbSBaokun Li  * @ctxt: Structure to load the registers contents from.
1917ee18d67SAndy Lutomirski  *
1927ee18d67SAndy Lutomirski  * The asm code that gets us here will have restored a usable GDT, although
1937ee18d67SAndy Lutomirski  * it will be pointing to the wrong alias.
19408687aecSSergio Luis  */
__restore_processor_state(struct saved_context * ctxt)195b8f99b3eSSteven Rostedt (Red Hat) static void notrace __restore_processor_state(struct saved_context *ctxt)
19608687aecSSergio Luis {
1975d510359SSean Christopherson 	struct cpuinfo_x86 *c;
1985d510359SSean Christopherson 
19985a0e753SOndrej Zary 	if (ctxt->misc_enable_saved)
20085a0e753SOndrej Zary 		wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
20108687aecSSergio Luis 	/*
20208687aecSSergio Luis 	 * control registers
20308687aecSSergio Luis 	 */
20408687aecSSergio Luis 	/* cr4 was introduced in the Pentium CPU */
20508687aecSSergio Luis #ifdef CONFIG_X86_32
20608687aecSSergio Luis 	if (ctxt->cr4)
2071e02ce4cSAndy Lutomirski 		__write_cr4(ctxt->cr4);
20808687aecSSergio Luis #else
20908687aecSSergio Luis /* CONFIG X86_64 */
21008687aecSSergio Luis 	wrmsrl(MSR_EFER, ctxt->efer);
2111e02ce4cSAndy Lutomirski 	__write_cr4(ctxt->cr4);
21208687aecSSergio Luis #endif
21308687aecSSergio Luis 	write_cr3(ctxt->cr3);
21408687aecSSergio Luis 	write_cr2(ctxt->cr2);
21508687aecSSergio Luis 	write_cr0(ctxt->cr0);
21608687aecSSergio Luis 
2177ee18d67SAndy Lutomirski 	/* Restore the IDT. */
21808687aecSSergio Luis 	load_idt(&ctxt->idt);
21908687aecSSergio Luis 
22008687aecSSergio Luis 	/*
2217ee18d67SAndy Lutomirski 	 * Just in case the asm code got us here with the SS, DS, or ES
2227ee18d67SAndy Lutomirski 	 * out of sync with the GDT, update them.
2235b06bbcfSAndy Lutomirski 	 */
2247ee18d67SAndy Lutomirski 	loadsegment(ss, __KERNEL_DS);
2257ee18d67SAndy Lutomirski 	loadsegment(ds, __USER_DS);
2267ee18d67SAndy Lutomirski 	loadsegment(es, __USER_DS);
2277ee18d67SAndy Lutomirski 
2287ee18d67SAndy Lutomirski 	/*
2297ee18d67SAndy Lutomirski 	 * Restore percpu access.  Percpu access can happen in exception
2307ee18d67SAndy Lutomirski 	 * handlers or in complicated helpers like load_gs_index().
2317ee18d67SAndy Lutomirski 	 */
2327ee18d67SAndy Lutomirski #ifdef CONFIG_X86_64
2337ee18d67SAndy Lutomirski 	wrmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base);
2347ee18d67SAndy Lutomirski #else
2357ee18d67SAndy Lutomirski 	loadsegment(fs, __KERNEL_PERCPU);
2365b06bbcfSAndy Lutomirski #endif
2375b06bbcfSAndy Lutomirski 
2387ee18d67SAndy Lutomirski 	/* Restore the TSS, RO GDT, LDT, and usermode-relevant MSRs. */
2395b06bbcfSAndy Lutomirski 	fix_processor_context();
2405b06bbcfSAndy Lutomirski 
2415b06bbcfSAndy Lutomirski 	/*
2427ee18d67SAndy Lutomirski 	 * Now that we have descriptor tables fully restored and working
2437ee18d67SAndy Lutomirski 	 * exception handling, restore the usermode segments.
24408687aecSSergio Luis 	 */
2457ee18d67SAndy Lutomirski #ifdef CONFIG_X86_64
2467ee18d67SAndy Lutomirski 	loadsegment(ds, ctxt->es);
24708687aecSSergio Luis 	loadsegment(es, ctxt->es);
24808687aecSSergio Luis 	loadsegment(fs, ctxt->fs);
24908687aecSSergio Luis 	load_gs_index(ctxt->gs);
25008687aecSSergio Luis 
2515b06bbcfSAndy Lutomirski 	/*
2527ee18d67SAndy Lutomirski 	 * Restore FSBASE and GSBASE after restoring the selectors, since
2537ee18d67SAndy Lutomirski 	 * restoring the selectors clobbers the bases.  Keep in mind
2547ee18d67SAndy Lutomirski 	 * that MSR_KERNEL_GS_BASE is horribly misnamed.
2555b06bbcfSAndy Lutomirski 	 */
25608687aecSSergio Luis 	wrmsrl(MSR_FS_BASE, ctxt->fs_base);
2577ee18d67SAndy Lutomirski 	wrmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base);
2583fb0fdb3SAndy Lutomirski #else
2597ee18d67SAndy Lutomirski 	loadsegment(gs, ctxt->gs);
26008687aecSSergio Luis #endif
26108687aecSSergio Luis 
26208687aecSSergio Luis 	do_fpu_end();
2636a369583SThomas Gleixner 	tsc_verify_tsc_adjust(true);
264dba69d10SMarcelo Tosatti 	x86_platform.restore_sched_clock_state();
2650b9a6a8bSJuergen Gross 	cache_bp_restore();
2661d9d8639SStephane Eranian 	perf_restore_debug_store();
2675d510359SSean Christopherson 
2685d510359SSean Christopherson 	c = &cpu_data(smp_processor_id());
2695d510359SSean Christopherson 	if (cpu_has(c, X86_FEATURE_MSR_IA32_FEAT_CTL))
2705d510359SSean Christopherson 		init_ia32_feat_ctl(c);
271f9e14dbbSBorislav Petkov 
272f9e14dbbSBorislav Petkov 	microcode_bsp_resume();
273f9e14dbbSBorislav Petkov 
274f9e14dbbSBorislav Petkov 	/*
275f9e14dbbSBorislav Petkov 	 * This needs to happen after the microcode has been updated upon resume
276f9e14dbbSBorislav Petkov 	 * because some of the MSRs are "emulated" in microcode.
277f9e14dbbSBorislav Petkov 	 */
278f9e14dbbSBorislav Petkov 	msr_restore_context(ctxt);
27908687aecSSergio Luis }
28008687aecSSergio Luis 
28108687aecSSergio Luis /* Needed by apm.c */
restore_processor_state(void)282b8f99b3eSSteven Rostedt (Red Hat) void notrace restore_processor_state(void)
28308687aecSSergio Luis {
28408687aecSSergio Luis 	__restore_processor_state(&saved_context);
28508687aecSSergio Luis }
28608687aecSSergio Luis #ifdef CONFIG_X86_32
28708687aecSSergio Luis EXPORT_SYMBOL(restore_processor_state);
28808687aecSSergio Luis #endif
289209efae1SFenghua Yu 
290406f992eSRafael J. Wysocki #if defined(CONFIG_HIBERNATION) && defined(CONFIG_HOTPLUG_CPU)
resume_play_dead(void)291*52668badSJosh Poimboeuf static void __noreturn resume_play_dead(void)
292406f992eSRafael J. Wysocki {
293406f992eSRafael J. Wysocki 	play_dead_common();
294406f992eSRafael J. Wysocki 	tboot_shutdown(TB_SHUTDOWN_WFS);
295406f992eSRafael J. Wysocki 	hlt_play_dead();
296406f992eSRafael J. Wysocki }
297406f992eSRafael J. Wysocki 
hibernate_resume_nonboot_cpu_disable(void)298406f992eSRafael J. Wysocki int hibernate_resume_nonboot_cpu_disable(void)
299406f992eSRafael J. Wysocki {
300406f992eSRafael J. Wysocki 	void (*play_dead)(void) = smp_ops.play_dead;
301406f992eSRafael J. Wysocki 	int ret;
302406f992eSRafael J. Wysocki 
303406f992eSRafael J. Wysocki 	/*
304406f992eSRafael J. Wysocki 	 * Ensure that MONITOR/MWAIT will not be used in the "play dead" loop
305406f992eSRafael J. Wysocki 	 * during hibernate image restoration, because it is likely that the
306406f992eSRafael J. Wysocki 	 * monitored address will be actually written to at that time and then
307406f992eSRafael J. Wysocki 	 * the "dead" CPU will attempt to execute instructions again, but the
308406f992eSRafael J. Wysocki 	 * address in its instruction pointer may not be possible to resolve
309406f992eSRafael J. Wysocki 	 * any more at that point (the page tables used by it previously may
310406f992eSRafael J. Wysocki 	 * have been overwritten by hibernate image data).
311ec527c31SJiri Kosina 	 *
312ec527c31SJiri Kosina 	 * First, make sure that we wake up all the potentially disabled SMT
313ec527c31SJiri Kosina 	 * threads which have been initially brought up and then put into
314ec527c31SJiri Kosina 	 * mwait/cpuidle sleep.
315ec527c31SJiri Kosina 	 * Those will be put to proper (not interfering with hibernation
316ec527c31SJiri Kosina 	 * resume) sleep afterwards, and the resumed kernel will decide itself
317ec527c31SJiri Kosina 	 * what to do with them.
318406f992eSRafael J. Wysocki 	 */
319ec527c31SJiri Kosina 	ret = cpuhp_smt_enable();
320ec527c31SJiri Kosina 	if (ret)
321ec527c31SJiri Kosina 		return ret;
322406f992eSRafael J. Wysocki 	smp_ops.play_dead = resume_play_dead;
32356555855SQais Yousef 	ret = freeze_secondary_cpus(0);
324406f992eSRafael J. Wysocki 	smp_ops.play_dead = play_dead;
325406f992eSRafael J. Wysocki 	return ret;
326406f992eSRafael J. Wysocki }
327406f992eSRafael J. Wysocki #endif
328406f992eSRafael J. Wysocki 
329209efae1SFenghua Yu /*
330209efae1SFenghua Yu  * When bsp_check() is called in hibernate and suspend, cpu hotplug
331163b0991SIngo Molnar  * is disabled already. So it's unnecessary to handle race condition between
332209efae1SFenghua Yu  * cpumask query and cpu hotplug.
333209efae1SFenghua Yu  */
bsp_check(void)334209efae1SFenghua Yu static int bsp_check(void)
335209efae1SFenghua Yu {
336209efae1SFenghua Yu 	if (cpumask_first(cpu_online_mask) != 0) {
337209efae1SFenghua Yu 		pr_warn("CPU0 is offline.\n");
338209efae1SFenghua Yu 		return -ENODEV;
339209efae1SFenghua Yu 	}
340209efae1SFenghua Yu 
341209efae1SFenghua Yu 	return 0;
342209efae1SFenghua Yu }
343209efae1SFenghua Yu 
bsp_pm_callback(struct notifier_block * nb,unsigned long action,void * ptr)344209efae1SFenghua Yu static int bsp_pm_callback(struct notifier_block *nb, unsigned long action,
345209efae1SFenghua Yu 			   void *ptr)
346209efae1SFenghua Yu {
347209efae1SFenghua Yu 	int ret = 0;
348209efae1SFenghua Yu 
349209efae1SFenghua Yu 	switch (action) {
350209efae1SFenghua Yu 	case PM_SUSPEND_PREPARE:
351209efae1SFenghua Yu 	case PM_HIBERNATION_PREPARE:
352209efae1SFenghua Yu 		ret = bsp_check();
353209efae1SFenghua Yu 		break;
354a71c8bc5SFenghua Yu 	default:
355a71c8bc5SFenghua Yu 		break;
356a71c8bc5SFenghua Yu 	}
357a71c8bc5SFenghua Yu 	return notifier_from_errno(ret);
358a71c8bc5SFenghua Yu }
359a71c8bc5SFenghua Yu 
bsp_pm_check_init(void)360a71c8bc5SFenghua Yu static int __init bsp_pm_check_init(void)
361a71c8bc5SFenghua Yu {
362a71c8bc5SFenghua Yu 	/*
363a71c8bc5SFenghua Yu 	 * Set this bsp_pm_callback as lower priority than
364a71c8bc5SFenghua Yu 	 * cpu_hotplug_pm_callback. So cpu_hotplug_pm_callback will be called
365a71c8bc5SFenghua Yu 	 * earlier to disable cpu hotplug before bsp online check.
366a71c8bc5SFenghua Yu 	 */
367a71c8bc5SFenghua Yu 	pm_notifier(bsp_pm_callback, -INT_MAX);
368a71c8bc5SFenghua Yu 	return 0;
369a71c8bc5SFenghua Yu }
370a71c8bc5SFenghua Yu 
371a71c8bc5SFenghua Yu core_initcall(bsp_pm_check_init);
372a71c8bc5SFenghua Yu 
msr_build_context(const u32 * msr_id,const int num)373a71c8bc5SFenghua Yu static int msr_build_context(const u32 *msr_id, const int num)
374a71c8bc5SFenghua Yu {
375a71c8bc5SFenghua Yu 	struct saved_msrs *saved_msrs = &saved_context.saved_msrs;
376a71c8bc5SFenghua Yu 	struct saved_msr *msr_array;
377a71c8bc5SFenghua Yu 	int total_num;
378a71c8bc5SFenghua Yu 	int i, j;
379a71c8bc5SFenghua Yu 
380a71c8bc5SFenghua Yu 	total_num = saved_msrs->num + num;
381a71c8bc5SFenghua Yu 
382a71c8bc5SFenghua Yu 	msr_array = kmalloc_array(total_num, sizeof(struct saved_msr), GFP_KERNEL);
383a71c8bc5SFenghua Yu 	if (!msr_array) {
384a71c8bc5SFenghua Yu 		pr_err("x86/pm: Can not allocate memory to save/restore MSRs during suspend.\n");
385a71c8bc5SFenghua Yu 		return -ENOMEM;
386a71c8bc5SFenghua Yu 	}
387a71c8bc5SFenghua Yu 
388a71c8bc5SFenghua Yu 	if (saved_msrs->array) {
389a71c8bc5SFenghua Yu 		/*
390a71c8bc5SFenghua Yu 		 * Multiple callbacks can invoke this function, so copy any
391209efae1SFenghua Yu 		 * MSR save requests from previous invocations.
392209efae1SFenghua Yu 		 */
393209efae1SFenghua Yu 		memcpy(msr_array, saved_msrs->array,
394209efae1SFenghua Yu 		       sizeof(struct saved_msr) * saved_msrs->num);
395209efae1SFenghua Yu 
396209efae1SFenghua Yu 		kfree(saved_msrs->array);
397209efae1SFenghua Yu 	}
398209efae1SFenghua Yu 
399209efae1SFenghua Yu 	for (i = saved_msrs->num, j = 0; i < total_num; i++, j++) {
400209efae1SFenghua Yu 		u64 dummy;
401209efae1SFenghua Yu 
402209efae1SFenghua Yu 		msr_array[i].info.msr_no	= msr_id[j];
403209efae1SFenghua Yu 		msr_array[i].valid		= !rdmsrl_safe(msr_id[j], &dummy);
404209efae1SFenghua Yu 		msr_array[i].info.reg.q		= 0;
405209efae1SFenghua Yu 	}
406209efae1SFenghua Yu 	saved_msrs->num   = total_num;
407209efae1SFenghua Yu 	saved_msrs->array = msr_array;
408209efae1SFenghua Yu 
4097a9c2dd0SChen Yu 	return 0;
410c49a0a80STom Lendacky }
4117a9c2dd0SChen Yu 
412c49a0a80STom Lendacky /*
4137a9c2dd0SChen Yu  * The following sections are a quirk framework for problematic BIOSen:
414c49a0a80STom Lendacky  * Sometimes MSRs are modified by the BIOSen after suspended to
415c49a0a80STom Lendacky  * RAM, this might cause unexpected behavior after wakeup.
4167a9c2dd0SChen Yu  * Thus we save/restore these specified MSRs across suspend/resume
417c49a0a80STom Lendacky  * in order to work around it.
4187a9c2dd0SChen Yu  *
4197a9c2dd0SChen Yu  * For any further problematic BIOSen/platforms,
4207a9c2dd0SChen Yu  * please add your own function similar to msr_initialize_bdw.
4217a9c2dd0SChen Yu  */
msr_initialize_bdw(const struct dmi_system_id * d)4227a9c2dd0SChen Yu static int msr_initialize_bdw(const struct dmi_system_id *d)
4237a9c2dd0SChen Yu {
4247a9c2dd0SChen Yu 	/* Add any extra MSR ids into this array. */
425c49a0a80STom Lendacky 	u32 bdw_msr_id[] = { MSR_IA32_THERM_CONTROL };
426c49a0a80STom Lendacky 
427c49a0a80STom Lendacky 	pr_info("x86/pm: %s detected, MSR saving is needed during suspending.\n", d->ident);
428c49a0a80STom Lendacky 	return msr_build_context(bdw_msr_id, ARRAY_SIZE(bdw_msr_id));
429c49a0a80STom Lendacky }
430c49a0a80STom Lendacky 
431c49a0a80STom Lendacky static const struct dmi_system_id msr_save_dmi_table[] = {
432c49a0a80STom Lendacky 	{
433c49a0a80STom Lendacky 	 .callback = msr_initialize_bdw,
434c49a0a80STom Lendacky 	 .ident = "BROADWELL BDX_EP",
435c49a0a80STom Lendacky 	 .matches = {
436c49a0a80STom Lendacky 		DMI_MATCH(DMI_PRODUCT_NAME, "GRANTLEY"),
43773924ec4SPawan Gupta 		DMI_MATCH(DMI_PRODUCT_VERSION, "E63448-400"),
43873924ec4SPawan Gupta 		},
439c49a0a80STom Lendacky 	},
44073924ec4SPawan Gupta 	{}
4417a9c2dd0SChen Yu };
4427a9c2dd0SChen Yu 
msr_save_cpuid_features(const struct x86_cpu_id * c)443c49a0a80STom Lendacky static int msr_save_cpuid_features(const struct x86_cpu_id *c)
444c49a0a80STom Lendacky {
4457a9c2dd0SChen Yu 	u32 cpuid_msr_id[] = {
4467a9c2dd0SChen Yu 		MSR_AMD64_CPUID_FN_1,
4477a9c2dd0SChen Yu 	};
4487a9c2dd0SChen Yu 
4497a9c2dd0SChen Yu 	pr_info("x86/pm: family %#hx cpu detected, MSR saving is needed during suspending.\n",
450c49a0a80STom Lendacky 		c->family);
4517a9c2dd0SChen Yu 
4527a9c2dd0SChen Yu 	return msr_build_context(cpuid_msr_id, ARRAY_SIZE(cpuid_msr_id));
4537a9c2dd0SChen Yu }
4547a9c2dd0SChen Yu 
4557a9c2dd0SChen Yu static const struct x86_cpu_id msr_save_cpu_table[] = {
4567a9c2dd0SChen Yu 	X86_MATCH_VENDOR_FAM(AMD, 0x15, &msr_save_cpuid_features),
4577a9c2dd0SChen Yu 	X86_MATCH_VENDOR_FAM(AMD, 0x16, &msr_save_cpuid_features),
4587a9c2dd0SChen Yu 	{}
4597a9c2dd0SChen Yu };
4607a9c2dd0SChen Yu 
4617a9c2dd0SChen Yu typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *);
pm_cpu_check(const struct x86_cpu_id * c)4627a9c2dd0SChen Yu static int pm_cpu_check(const struct x86_cpu_id *c)
4637a9c2dd0SChen Yu {
4647a9c2dd0SChen Yu 	const struct x86_cpu_id *m;
465c49a0a80STom Lendacky 	int ret = 0;
4667a9c2dd0SChen Yu 
4677a9c2dd0SChen Yu 	m = x86_match_cpu(msr_save_cpu_table);
4686faadbbbSChristoph Hellwig 	if (m) {
4697a9c2dd0SChen Yu 		pm_cpu_match_t fn;
4707a9c2dd0SChen Yu 
4717a9c2dd0SChen Yu 		fn = (pm_cpu_match_t)m->driver_data;
4727a9c2dd0SChen Yu 		ret = fn(m);
4737a9c2dd0SChen Yu 	}
4747a9c2dd0SChen Yu 
4757a9c2dd0SChen Yu 	return ret;
4767a9c2dd0SChen Yu }
4777a9c2dd0SChen Yu 
pm_save_spec_msr(void)4787a9c2dd0SChen Yu static void pm_save_spec_msr(void)
4797a9c2dd0SChen Yu {
480c49a0a80STom Lendacky 	struct msr_enumeration {
481c49a0a80STom Lendacky 		u32 msr_no;
482c49a0a80STom Lendacky 		u32 feature;
483c49a0a80STom Lendacky 	} msr_enum[] = {
484c49a0a80STom Lendacky 		{ MSR_IA32_SPEC_CTRL,	 X86_FEATURE_MSR_SPEC_CTRL },
485c49a0a80STom Lendacky 		{ MSR_IA32_TSX_CTRL,	 X86_FEATURE_MSR_TSX_CTRL },
486c49a0a80STom Lendacky 		{ MSR_TSX_FORCE_ABORT,	 X86_FEATURE_TSX_FORCE_ABORT },
487c49a0a80STom Lendacky 		{ MSR_IA32_MCU_OPT_CTRL, X86_FEATURE_SRBDS_CTRL },
488c49a0a80STom Lendacky 		{ MSR_AMD64_LS_CFG,	 X86_FEATURE_LS_CFG_SSBD },
489c49a0a80STom Lendacky 		{ MSR_AMD64_DE_CFG,	 X86_FEATURE_LFENCE_RDTSC },
490c49a0a80STom Lendacky 	};
491c49a0a80STom Lendacky 	int i;
492c49a0a80STom Lendacky 
493adefe55eSThomas Gleixner 	for (i = 0; i < ARRAY_SIZE(msr_enum); i++) {
494adefe55eSThomas Gleixner 		if (boot_cpu_has(msr_enum[i].feature))
495c49a0a80STom Lendacky 			msr_build_context(&msr_enum[i].msr_no, 1);
496c49a0a80STom Lendacky 	}
497c49a0a80STom Lendacky }
498c49a0a80STom Lendacky 
pm_check_save_msr(void)499c49a0a80STom Lendacky static int pm_check_save_msr(void)
500c49a0a80STom Lendacky {
501c49a0a80STom Lendacky 	dmi_check_system(msr_save_dmi_table);
502c49a0a80STom Lendacky 	pm_cpu_check(msr_save_cpu_table);
503c49a0a80STom Lendacky 	pm_save_spec_msr();
504c49a0a80STom Lendacky 
505c49a0a80STom Lendacky 	return 0;
506c49a0a80STom Lendacky }
507c49a0a80STom Lendacky 
508c49a0a80STom Lendacky device_initcall(pm_check_save_msr);
509c49a0a80STom Lendacky