xref: /openbmc/linux/arch/x86/power/cpu.c (revision adefe55e725821e8ae23207992ded5994f1650a9)
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>
1608687aecSSergio Luis 
1708687aecSSergio Luis #include <asm/pgtable.h>
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>
23952f07ecSIngo Molnar #include <asm/fpu/internal.h>
24eadb8a09SIngo Molnar #include <asm/debugreg.h>
25a71c8bc5SFenghua Yu #include <asm/cpu.h>
2637868fe1SAndy Lutomirski #include <asm/mmu_context.h>
27c49a0a80STom Lendacky #include <asm/cpu_device_id.h>
2808687aecSSergio Luis 
2908687aecSSergio Luis #ifdef CONFIG_X86_32
30d6efc2f7SAndi Kleen __visible unsigned long saved_context_ebx;
31d6efc2f7SAndi Kleen __visible unsigned long saved_context_esp, saved_context_ebp;
32d6efc2f7SAndi Kleen __visible unsigned long saved_context_esi, saved_context_edi;
33d6efc2f7SAndi Kleen __visible unsigned long saved_context_eflags;
3408687aecSSergio Luis #endif
35cc456c4eSKonrad Rzeszutek Wilk struct saved_context saved_context;
3608687aecSSergio Luis 
377a9c2dd0SChen Yu static void msr_save_context(struct saved_context *ctxt)
387a9c2dd0SChen Yu {
397a9c2dd0SChen Yu 	struct saved_msr *msr = ctxt->saved_msrs.array;
407a9c2dd0SChen Yu 	struct saved_msr *end = msr + ctxt->saved_msrs.num;
417a9c2dd0SChen Yu 
427a9c2dd0SChen Yu 	while (msr < end) {
437a9c2dd0SChen Yu 		msr->valid = !rdmsrl_safe(msr->info.msr_no, &msr->info.reg.q);
447a9c2dd0SChen Yu 		msr++;
457a9c2dd0SChen Yu 	}
467a9c2dd0SChen Yu }
477a9c2dd0SChen Yu 
487a9c2dd0SChen Yu static void msr_restore_context(struct saved_context *ctxt)
497a9c2dd0SChen Yu {
507a9c2dd0SChen Yu 	struct saved_msr *msr = ctxt->saved_msrs.array;
517a9c2dd0SChen Yu 	struct saved_msr *end = msr + ctxt->saved_msrs.num;
527a9c2dd0SChen Yu 
537a9c2dd0SChen Yu 	while (msr < end) {
547a9c2dd0SChen Yu 		if (msr->valid)
557a9c2dd0SChen Yu 			wrmsrl(msr->info.msr_no, msr->info.reg.q);
567a9c2dd0SChen Yu 		msr++;
577a9c2dd0SChen Yu 	}
587a9c2dd0SChen Yu }
597a9c2dd0SChen Yu 
6008687aecSSergio Luis /**
6108687aecSSergio Luis  *	__save_processor_state - save CPU registers before creating a
6208687aecSSergio Luis  *		hibernation image and before restoring the memory state from it
6308687aecSSergio Luis  *	@ctxt - structure to store the registers contents in
6408687aecSSergio Luis  *
6508687aecSSergio Luis  *	NOTE: If there is a CPU register the modification of which by the
6608687aecSSergio Luis  *	boot kernel (ie. the kernel used for loading the hibernation image)
6708687aecSSergio Luis  *	might affect the operations of the restored target kernel (ie. the one
6808687aecSSergio Luis  *	saved in the hibernation image), then its contents must be saved by this
6908687aecSSergio Luis  *	function.  In other words, if kernel A is hibernated and different
7008687aecSSergio Luis  *	kernel B is used for loading the hibernation image into memory, the
7108687aecSSergio Luis  *	kernel A's __save_processor_state() function must save all registers
7208687aecSSergio Luis  *	needed by kernel A, so that it can operate correctly after the resume
7308687aecSSergio Luis  *	regardless of what kernel B does in the meantime.
7408687aecSSergio Luis  */
7508687aecSSergio Luis static void __save_processor_state(struct saved_context *ctxt)
7608687aecSSergio Luis {
7708687aecSSergio Luis #ifdef CONFIG_X86_32
7808687aecSSergio Luis 	mtrr_save_fixed_ranges(NULL);
7908687aecSSergio Luis #endif
8008687aecSSergio Luis 	kernel_fpu_begin();
8108687aecSSergio Luis 
8208687aecSSergio Luis 	/*
8308687aecSSergio Luis 	 * descriptor tables
8408687aecSSergio Luis 	 */
8508687aecSSergio Luis 	store_idt(&ctxt->idt);
86090edbe2SAndy Lutomirski 
87cc456c4eSKonrad Rzeszutek Wilk 	/*
88cc456c4eSKonrad Rzeszutek Wilk 	 * We save it here, but restore it only in the hibernate case.
89cc456c4eSKonrad Rzeszutek Wilk 	 * For ACPI S3 resume, this is loaded via 'early_gdt_desc' in 64-bit
90cc456c4eSKonrad Rzeszutek Wilk 	 * mode in "secondary_startup_64". In 32-bit mode it is done via
91cc456c4eSKonrad Rzeszutek Wilk 	 * 'pmode_gdt' in wakeup_start.
92cc456c4eSKonrad Rzeszutek Wilk 	 */
93cc456c4eSKonrad Rzeszutek Wilk 	ctxt->gdt_desc.size = GDT_SIZE - 1;
9469218e47SThomas Garnier 	ctxt->gdt_desc.address = (unsigned long)get_cpu_gdt_rw(smp_processor_id());
95cc456c4eSKonrad Rzeszutek Wilk 
9608687aecSSergio Luis 	store_tr(ctxt->tr);
9708687aecSSergio Luis 
9808687aecSSergio Luis 	/* XMM0..XMM15 should be handled by kernel_fpu_begin(). */
9908687aecSSergio Luis 	/*
10008687aecSSergio Luis 	 * segment registers
10108687aecSSergio Luis 	 */
1027ee18d67SAndy Lutomirski #ifdef CONFIG_X86_32_LAZY_GS
10308687aecSSergio Luis 	savesegment(gs, ctxt->gs);
1047ee18d67SAndy Lutomirski #endif
1057ee18d67SAndy Lutomirski #ifdef CONFIG_X86_64
1067ee18d67SAndy Lutomirski 	savesegment(gs, ctxt->gs);
1077ee18d67SAndy Lutomirski 	savesegment(fs, ctxt->fs);
1087ee18d67SAndy Lutomirski 	savesegment(ds, ctxt->ds);
1097ee18d67SAndy Lutomirski 	savesegment(es, ctxt->es);
11008687aecSSergio Luis 
11108687aecSSergio Luis 	rdmsrl(MSR_FS_BASE, ctxt->fs_base);
1127ee18d67SAndy Lutomirski 	rdmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base);
1137ee18d67SAndy Lutomirski 	rdmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base);
11408687aecSSergio Luis 	mtrr_save_fixed_ranges(NULL);
11508687aecSSergio Luis 
11608687aecSSergio Luis 	rdmsrl(MSR_EFER, ctxt->efer);
11708687aecSSergio Luis #endif
11808687aecSSergio Luis 
11908687aecSSergio Luis 	/*
12008687aecSSergio Luis 	 * control registers
12108687aecSSergio Luis 	 */
12208687aecSSergio Luis 	ctxt->cr0 = read_cr0();
12308687aecSSergio Luis 	ctxt->cr2 = read_cr2();
1246c690ee1SAndy Lutomirski 	ctxt->cr3 = __read_cr3();
1251ef55be1SAndy Lutomirski 	ctxt->cr4 = __read_cr4();
12685a0e753SOndrej Zary 	ctxt->misc_enable_saved = !rdmsrl_safe(MSR_IA32_MISC_ENABLE,
12785a0e753SOndrej Zary 					       &ctxt->misc_enable);
1287a9c2dd0SChen Yu 	msr_save_context(ctxt);
12908687aecSSergio Luis }
13008687aecSSergio Luis 
13108687aecSSergio Luis /* Needed by apm.c */
13208687aecSSergio Luis void save_processor_state(void)
13308687aecSSergio Luis {
13408687aecSSergio Luis 	__save_processor_state(&saved_context);
135b74f05d6SMarcelo Tosatti 	x86_platform.save_sched_clock_state();
13608687aecSSergio Luis }
13708687aecSSergio Luis #ifdef CONFIG_X86_32
13808687aecSSergio Luis EXPORT_SYMBOL(save_processor_state);
13908687aecSSergio Luis #endif
14008687aecSSergio Luis 
14108687aecSSergio Luis static void do_fpu_end(void)
14208687aecSSergio Luis {
14308687aecSSergio Luis 	/*
14408687aecSSergio Luis 	 * Restore FPU regs if necessary.
14508687aecSSergio Luis 	 */
14608687aecSSergio Luis 	kernel_fpu_end();
14708687aecSSergio Luis }
14808687aecSSergio Luis 
14908687aecSSergio Luis static void fix_processor_context(void)
15008687aecSSergio Luis {
15108687aecSSergio Luis 	int cpu = smp_processor_id();
1524d681be3Skonrad@kernel.org #ifdef CONFIG_X86_64
15369218e47SThomas Garnier 	struct desc_struct *desc = get_cpu_gdt_rw(cpu);
1544d681be3Skonrad@kernel.org 	tss_desc tss;
1554d681be3Skonrad@kernel.org #endif
1567fb983b4SAndy Lutomirski 
1577fb983b4SAndy Lutomirski 	/*
15872f5e08dSAndy Lutomirski 	 * We need to reload TR, which requires that we change the
15972f5e08dSAndy Lutomirski 	 * GDT entry to indicate "available" first.
16072f5e08dSAndy Lutomirski 	 *
16172f5e08dSAndy Lutomirski 	 * XXX: This could probably all be replaced by a call to
16272f5e08dSAndy Lutomirski 	 * force_reload_TR().
16308687aecSSergio Luis 	 */
16472f5e08dSAndy Lutomirski 	set_tss_desc(cpu, &get_cpu_entry_area(cpu)->tss.x86_tss);
16508687aecSSergio Luis 
16608687aecSSergio Luis #ifdef CONFIG_X86_64
1674d681be3Skonrad@kernel.org 	memcpy(&tss, &desc[GDT_ENTRY_TSS], sizeof(tss_desc));
1684d681be3Skonrad@kernel.org 	tss.type = 0x9; /* The available 64-bit TSS (see AMD vol 2, pg 91 */
1694d681be3Skonrad@kernel.org 	write_gdt_entry(desc, GDT_ENTRY_TSS, &tss, DESC_TSS);
17008687aecSSergio Luis 
17108687aecSSergio Luis 	syscall_init();				/* This sets MSR_*STAR and related */
172896c80beSAndy Lutomirski #else
173896c80beSAndy Lutomirski 	if (boot_cpu_has(X86_FEATURE_SEP))
174896c80beSAndy Lutomirski 		enable_sep_cpu();
17508687aecSSergio Luis #endif
17608687aecSSergio Luis 	load_TR_desc();				/* This does ltr */
17737868fe1SAndy Lutomirski 	load_mm_ldt(current->active_mm);	/* This does lldt */
17872c0098dSAndy Lutomirski 	initialize_tlbstate_and_flush();
1799254aaa0SIngo Molnar 
1809254aaa0SIngo Molnar 	fpu__resume_cpu();
18169218e47SThomas Garnier 
18269218e47SThomas Garnier 	/* The processor is back on the direct GDT, load back the fixmap */
18369218e47SThomas Garnier 	load_fixmap_gdt(cpu);
18408687aecSSergio Luis }
18508687aecSSergio Luis 
18608687aecSSergio Luis /**
18708687aecSSergio Luis  * __restore_processor_state - restore the contents of CPU registers saved
18808687aecSSergio Luis  *                             by __save_processor_state()
18908687aecSSergio Luis  * @ctxt - structure to load the registers contents from
1907ee18d67SAndy Lutomirski  *
1917ee18d67SAndy Lutomirski  * The asm code that gets us here will have restored a usable GDT, although
1927ee18d67SAndy Lutomirski  * it will be pointing to the wrong alias.
19308687aecSSergio Luis  */
194b8f99b3eSSteven Rostedt (Red Hat) static void notrace __restore_processor_state(struct saved_context *ctxt)
19508687aecSSergio Luis {
19685a0e753SOndrej Zary 	if (ctxt->misc_enable_saved)
19785a0e753SOndrej Zary 		wrmsrl(MSR_IA32_MISC_ENABLE, ctxt->misc_enable);
19808687aecSSergio Luis 	/*
19908687aecSSergio Luis 	 * control registers
20008687aecSSergio Luis 	 */
20108687aecSSergio Luis 	/* cr4 was introduced in the Pentium CPU */
20208687aecSSergio Luis #ifdef CONFIG_X86_32
20308687aecSSergio Luis 	if (ctxt->cr4)
2041e02ce4cSAndy Lutomirski 		__write_cr4(ctxt->cr4);
20508687aecSSergio Luis #else
20608687aecSSergio Luis /* CONFIG X86_64 */
20708687aecSSergio Luis 	wrmsrl(MSR_EFER, ctxt->efer);
2081e02ce4cSAndy Lutomirski 	__write_cr4(ctxt->cr4);
20908687aecSSergio Luis #endif
21008687aecSSergio Luis 	write_cr3(ctxt->cr3);
21108687aecSSergio Luis 	write_cr2(ctxt->cr2);
21208687aecSSergio Luis 	write_cr0(ctxt->cr0);
21308687aecSSergio Luis 
2147ee18d67SAndy Lutomirski 	/* Restore the IDT. */
21508687aecSSergio Luis 	load_idt(&ctxt->idt);
21608687aecSSergio Luis 
21708687aecSSergio Luis 	/*
2187ee18d67SAndy Lutomirski 	 * Just in case the asm code got us here with the SS, DS, or ES
2197ee18d67SAndy Lutomirski 	 * out of sync with the GDT, update them.
2205b06bbcfSAndy Lutomirski 	 */
2217ee18d67SAndy Lutomirski 	loadsegment(ss, __KERNEL_DS);
2227ee18d67SAndy Lutomirski 	loadsegment(ds, __USER_DS);
2237ee18d67SAndy Lutomirski 	loadsegment(es, __USER_DS);
2247ee18d67SAndy Lutomirski 
2257ee18d67SAndy Lutomirski 	/*
2267ee18d67SAndy Lutomirski 	 * Restore percpu access.  Percpu access can happen in exception
2277ee18d67SAndy Lutomirski 	 * handlers or in complicated helpers like load_gs_index().
2287ee18d67SAndy Lutomirski 	 */
2297ee18d67SAndy Lutomirski #ifdef CONFIG_X86_64
2307ee18d67SAndy Lutomirski 	wrmsrl(MSR_GS_BASE, ctxt->kernelmode_gs_base);
2317ee18d67SAndy Lutomirski #else
2327ee18d67SAndy Lutomirski 	loadsegment(fs, __KERNEL_PERCPU);
2337ee18d67SAndy Lutomirski 	loadsegment(gs, __KERNEL_STACK_CANARY);
2345b06bbcfSAndy Lutomirski #endif
2355b06bbcfSAndy Lutomirski 
2367ee18d67SAndy Lutomirski 	/* Restore the TSS, RO GDT, LDT, and usermode-relevant MSRs. */
2375b06bbcfSAndy Lutomirski 	fix_processor_context();
2385b06bbcfSAndy Lutomirski 
2395b06bbcfSAndy Lutomirski 	/*
2407ee18d67SAndy Lutomirski 	 * Now that we have descriptor tables fully restored and working
2417ee18d67SAndy Lutomirski 	 * exception handling, restore the usermode segments.
24208687aecSSergio Luis 	 */
2437ee18d67SAndy Lutomirski #ifdef CONFIG_X86_64
2447ee18d67SAndy Lutomirski 	loadsegment(ds, ctxt->es);
24508687aecSSergio Luis 	loadsegment(es, ctxt->es);
24608687aecSSergio Luis 	loadsegment(fs, ctxt->fs);
24708687aecSSergio Luis 	load_gs_index(ctxt->gs);
24808687aecSSergio Luis 
2495b06bbcfSAndy Lutomirski 	/*
2507ee18d67SAndy Lutomirski 	 * Restore FSBASE and GSBASE after restoring the selectors, since
2517ee18d67SAndy Lutomirski 	 * restoring the selectors clobbers the bases.  Keep in mind
2527ee18d67SAndy Lutomirski 	 * that MSR_KERNEL_GS_BASE is horribly misnamed.
2535b06bbcfSAndy Lutomirski 	 */
25408687aecSSergio Luis 	wrmsrl(MSR_FS_BASE, ctxt->fs_base);
2557ee18d67SAndy Lutomirski 	wrmsrl(MSR_KERNEL_GS_BASE, ctxt->usermode_gs_base);
2567ee18d67SAndy Lutomirski #elif defined(CONFIG_X86_32_LAZY_GS)
2577ee18d67SAndy Lutomirski 	loadsegment(gs, ctxt->gs);
25808687aecSSergio Luis #endif
25908687aecSSergio Luis 
26008687aecSSergio Luis 	do_fpu_end();
2616a369583SThomas Gleixner 	tsc_verify_tsc_adjust(true);
262dba69d10SMarcelo Tosatti 	x86_platform.restore_sched_clock_state();
263d0af9eedSSuresh Siddha 	mtrr_bp_restore();
2641d9d8639SStephane Eranian 	perf_restore_debug_store();
2657a9c2dd0SChen Yu 	msr_restore_context(ctxt);
26608687aecSSergio Luis }
26708687aecSSergio Luis 
26808687aecSSergio Luis /* Needed by apm.c */
269b8f99b3eSSteven Rostedt (Red Hat) void notrace restore_processor_state(void)
27008687aecSSergio Luis {
27108687aecSSergio Luis 	__restore_processor_state(&saved_context);
27208687aecSSergio Luis }
27308687aecSSergio Luis #ifdef CONFIG_X86_32
27408687aecSSergio Luis EXPORT_SYMBOL(restore_processor_state);
27508687aecSSergio Luis #endif
276209efae1SFenghua Yu 
277406f992eSRafael J. Wysocki #if defined(CONFIG_HIBERNATION) && defined(CONFIG_HOTPLUG_CPU)
278406f992eSRafael J. Wysocki static void resume_play_dead(void)
279406f992eSRafael J. Wysocki {
280406f992eSRafael J. Wysocki 	play_dead_common();
281406f992eSRafael J. Wysocki 	tboot_shutdown(TB_SHUTDOWN_WFS);
282406f992eSRafael J. Wysocki 	hlt_play_dead();
283406f992eSRafael J. Wysocki }
284406f992eSRafael J. Wysocki 
285406f992eSRafael J. Wysocki int hibernate_resume_nonboot_cpu_disable(void)
286406f992eSRafael J. Wysocki {
287406f992eSRafael J. Wysocki 	void (*play_dead)(void) = smp_ops.play_dead;
288406f992eSRafael J. Wysocki 	int ret;
289406f992eSRafael J. Wysocki 
290406f992eSRafael J. Wysocki 	/*
291406f992eSRafael J. Wysocki 	 * Ensure that MONITOR/MWAIT will not be used in the "play dead" loop
292406f992eSRafael J. Wysocki 	 * during hibernate image restoration, because it is likely that the
293406f992eSRafael J. Wysocki 	 * monitored address will be actually written to at that time and then
294406f992eSRafael J. Wysocki 	 * the "dead" CPU will attempt to execute instructions again, but the
295406f992eSRafael J. Wysocki 	 * address in its instruction pointer may not be possible to resolve
296406f992eSRafael J. Wysocki 	 * any more at that point (the page tables used by it previously may
297406f992eSRafael J. Wysocki 	 * have been overwritten by hibernate image data).
298ec527c31SJiri Kosina 	 *
299ec527c31SJiri Kosina 	 * First, make sure that we wake up all the potentially disabled SMT
300ec527c31SJiri Kosina 	 * threads which have been initially brought up and then put into
301ec527c31SJiri Kosina 	 * mwait/cpuidle sleep.
302ec527c31SJiri Kosina 	 * Those will be put to proper (not interfering with hibernation
303ec527c31SJiri Kosina 	 * resume) sleep afterwards, and the resumed kernel will decide itself
304ec527c31SJiri Kosina 	 * what to do with them.
305406f992eSRafael J. Wysocki 	 */
306ec527c31SJiri Kosina 	ret = cpuhp_smt_enable();
307ec527c31SJiri Kosina 	if (ret)
308ec527c31SJiri Kosina 		return ret;
309406f992eSRafael J. Wysocki 	smp_ops.play_dead = resume_play_dead;
310406f992eSRafael J. Wysocki 	ret = disable_nonboot_cpus();
311406f992eSRafael J. Wysocki 	smp_ops.play_dead = play_dead;
312406f992eSRafael J. Wysocki 	return ret;
313406f992eSRafael J. Wysocki }
314406f992eSRafael J. Wysocki #endif
315406f992eSRafael J. Wysocki 
316209efae1SFenghua Yu /*
317209efae1SFenghua Yu  * When bsp_check() is called in hibernate and suspend, cpu hotplug
318209efae1SFenghua Yu  * is disabled already. So it's unnessary to handle race condition between
319209efae1SFenghua Yu  * cpumask query and cpu hotplug.
320209efae1SFenghua Yu  */
321209efae1SFenghua Yu static int bsp_check(void)
322209efae1SFenghua Yu {
323209efae1SFenghua Yu 	if (cpumask_first(cpu_online_mask) != 0) {
324209efae1SFenghua Yu 		pr_warn("CPU0 is offline.\n");
325209efae1SFenghua Yu 		return -ENODEV;
326209efae1SFenghua Yu 	}
327209efae1SFenghua Yu 
328209efae1SFenghua Yu 	return 0;
329209efae1SFenghua Yu }
330209efae1SFenghua Yu 
331209efae1SFenghua Yu static int bsp_pm_callback(struct notifier_block *nb, unsigned long action,
332209efae1SFenghua Yu 			   void *ptr)
333209efae1SFenghua Yu {
334209efae1SFenghua Yu 	int ret = 0;
335209efae1SFenghua Yu 
336209efae1SFenghua Yu 	switch (action) {
337209efae1SFenghua Yu 	case PM_SUSPEND_PREPARE:
338209efae1SFenghua Yu 	case PM_HIBERNATION_PREPARE:
339209efae1SFenghua Yu 		ret = bsp_check();
340209efae1SFenghua Yu 		break;
341a71c8bc5SFenghua Yu #ifdef CONFIG_DEBUG_HOTPLUG_CPU0
342a71c8bc5SFenghua Yu 	case PM_RESTORE_PREPARE:
343a71c8bc5SFenghua Yu 		/*
344a71c8bc5SFenghua Yu 		 * When system resumes from hibernation, online CPU0 because
345a71c8bc5SFenghua Yu 		 * 1. it's required for resume and
346a71c8bc5SFenghua Yu 		 * 2. the CPU was online before hibernation
347a71c8bc5SFenghua Yu 		 */
348a71c8bc5SFenghua Yu 		if (!cpu_online(0))
349a71c8bc5SFenghua Yu 			_debug_hotplug_cpu(0, 1);
350a71c8bc5SFenghua Yu 		break;
351a71c8bc5SFenghua Yu 	case PM_POST_RESTORE:
352a71c8bc5SFenghua Yu 		/*
353a71c8bc5SFenghua Yu 		 * When a resume really happens, this code won't be called.
354a71c8bc5SFenghua Yu 		 *
355a71c8bc5SFenghua Yu 		 * This code is called only when user space hibernation software
356a71c8bc5SFenghua Yu 		 * prepares for snapshot device during boot time. So we just
357a71c8bc5SFenghua Yu 		 * call _debug_hotplug_cpu() to restore to CPU0's state prior to
358a71c8bc5SFenghua Yu 		 * preparing the snapshot device.
359a71c8bc5SFenghua Yu 		 *
360a71c8bc5SFenghua Yu 		 * This works for normal boot case in our CPU0 hotplug debug
361a71c8bc5SFenghua Yu 		 * mode, i.e. CPU0 is offline and user mode hibernation
362a71c8bc5SFenghua Yu 		 * software initializes during boot time.
363a71c8bc5SFenghua Yu 		 *
364a71c8bc5SFenghua Yu 		 * If CPU0 is online and user application accesses snapshot
365a71c8bc5SFenghua Yu 		 * device after boot time, this will offline CPU0 and user may
366a71c8bc5SFenghua Yu 		 * see different CPU0 state before and after accessing
367a71c8bc5SFenghua Yu 		 * the snapshot device. But hopefully this is not a case when
368a71c8bc5SFenghua Yu 		 * user debugging CPU0 hotplug. Even if users hit this case,
369a71c8bc5SFenghua Yu 		 * they can easily online CPU0 back.
370a71c8bc5SFenghua Yu 		 *
371a71c8bc5SFenghua Yu 		 * To simplify this debug code, we only consider normal boot
372a71c8bc5SFenghua Yu 		 * case. Otherwise we need to remember CPU0's state and restore
373a71c8bc5SFenghua Yu 		 * to that state and resolve racy conditions etc.
374a71c8bc5SFenghua Yu 		 */
375a71c8bc5SFenghua Yu 		_debug_hotplug_cpu(0, 0);
376a71c8bc5SFenghua Yu 		break;
377a71c8bc5SFenghua Yu #endif
378209efae1SFenghua Yu 	default:
379209efae1SFenghua Yu 		break;
380209efae1SFenghua Yu 	}
381209efae1SFenghua Yu 	return notifier_from_errno(ret);
382209efae1SFenghua Yu }
383209efae1SFenghua Yu 
384209efae1SFenghua Yu static int __init bsp_pm_check_init(void)
385209efae1SFenghua Yu {
386209efae1SFenghua Yu 	/*
387209efae1SFenghua Yu 	 * Set this bsp_pm_callback as lower priority than
388209efae1SFenghua Yu 	 * cpu_hotplug_pm_callback. So cpu_hotplug_pm_callback will be called
389209efae1SFenghua Yu 	 * earlier to disable cpu hotplug before bsp online check.
390209efae1SFenghua Yu 	 */
391209efae1SFenghua Yu 	pm_notifier(bsp_pm_callback, -INT_MAX);
392209efae1SFenghua Yu 	return 0;
393209efae1SFenghua Yu }
394209efae1SFenghua Yu 
395209efae1SFenghua Yu core_initcall(bsp_pm_check_init);
3967a9c2dd0SChen Yu 
397c49a0a80STom Lendacky static int msr_build_context(const u32 *msr_id, const int num)
3987a9c2dd0SChen Yu {
399c49a0a80STom Lendacky 	struct saved_msrs *saved_msrs = &saved_context.saved_msrs;
4007a9c2dd0SChen Yu 	struct saved_msr *msr_array;
401c49a0a80STom Lendacky 	int total_num;
402c49a0a80STom Lendacky 	int i, j;
4037a9c2dd0SChen Yu 
404c49a0a80STom Lendacky 	total_num = saved_msrs->num + num;
4057a9c2dd0SChen Yu 
4067a9c2dd0SChen Yu 	msr_array = kmalloc_array(total_num, sizeof(struct saved_msr), GFP_KERNEL);
4077a9c2dd0SChen Yu 	if (!msr_array) {
4087a9c2dd0SChen Yu 		pr_err("x86/pm: Can not allocate memory to save/restore MSRs during suspend.\n");
4097a9c2dd0SChen Yu 		return -ENOMEM;
4107a9c2dd0SChen Yu 	}
4117a9c2dd0SChen Yu 
412c49a0a80STom Lendacky 	if (saved_msrs->array) {
413c49a0a80STom Lendacky 		/*
414c49a0a80STom Lendacky 		 * Multiple callbacks can invoke this function, so copy any
415c49a0a80STom Lendacky 		 * MSR save requests from previous invocations.
416c49a0a80STom Lendacky 		 */
417c49a0a80STom Lendacky 		memcpy(msr_array, saved_msrs->array,
418c49a0a80STom Lendacky 		       sizeof(struct saved_msr) * saved_msrs->num);
419c49a0a80STom Lendacky 
420c49a0a80STom Lendacky 		kfree(saved_msrs->array);
421c49a0a80STom Lendacky 	}
422c49a0a80STom Lendacky 
423c49a0a80STom Lendacky 	for (i = saved_msrs->num, j = 0; i < total_num; i++, j++) {
424c49a0a80STom Lendacky 		msr_array[i].info.msr_no	= msr_id[j];
4257a9c2dd0SChen Yu 		msr_array[i].valid		= false;
4267a9c2dd0SChen Yu 		msr_array[i].info.reg.q		= 0;
4277a9c2dd0SChen Yu 	}
428c49a0a80STom Lendacky 	saved_msrs->num   = total_num;
429c49a0a80STom Lendacky 	saved_msrs->array = msr_array;
4307a9c2dd0SChen Yu 
4317a9c2dd0SChen Yu 	return 0;
4327a9c2dd0SChen Yu }
4337a9c2dd0SChen Yu 
4347a9c2dd0SChen Yu /*
435c49a0a80STom Lendacky  * The following sections are a quirk framework for problematic BIOSen:
4367a9c2dd0SChen Yu  * Sometimes MSRs are modified by the BIOSen after suspended to
4377a9c2dd0SChen Yu  * RAM, this might cause unexpected behavior after wakeup.
4387a9c2dd0SChen Yu  * Thus we save/restore these specified MSRs across suspend/resume
4397a9c2dd0SChen Yu  * in order to work around it.
4407a9c2dd0SChen Yu  *
4417a9c2dd0SChen Yu  * For any further problematic BIOSen/platforms,
4427a9c2dd0SChen Yu  * please add your own function similar to msr_initialize_bdw.
4437a9c2dd0SChen Yu  */
4447a9c2dd0SChen Yu static int msr_initialize_bdw(const struct dmi_system_id *d)
4457a9c2dd0SChen Yu {
4467a9c2dd0SChen Yu 	/* Add any extra MSR ids into this array. */
4477a9c2dd0SChen Yu 	u32 bdw_msr_id[] = { MSR_IA32_THERM_CONTROL };
4487a9c2dd0SChen Yu 
4497a9c2dd0SChen Yu 	pr_info("x86/pm: %s detected, MSR saving is needed during suspending.\n", d->ident);
450c49a0a80STom Lendacky 	return msr_build_context(bdw_msr_id, ARRAY_SIZE(bdw_msr_id));
4517a9c2dd0SChen Yu }
4527a9c2dd0SChen Yu 
4536faadbbbSChristoph Hellwig static const struct dmi_system_id msr_save_dmi_table[] = {
4547a9c2dd0SChen Yu 	{
4557a9c2dd0SChen Yu 	 .callback = msr_initialize_bdw,
4567a9c2dd0SChen Yu 	 .ident = "BROADWELL BDX_EP",
4577a9c2dd0SChen Yu 	 .matches = {
4587a9c2dd0SChen Yu 		DMI_MATCH(DMI_PRODUCT_NAME, "GRANTLEY"),
4597a9c2dd0SChen Yu 		DMI_MATCH(DMI_PRODUCT_VERSION, "E63448-400"),
4607a9c2dd0SChen Yu 		},
4617a9c2dd0SChen Yu 	},
4627a9c2dd0SChen Yu 	{}
4637a9c2dd0SChen Yu };
4647a9c2dd0SChen Yu 
465c49a0a80STom Lendacky static int msr_save_cpuid_features(const struct x86_cpu_id *c)
466c49a0a80STom Lendacky {
467c49a0a80STom Lendacky 	u32 cpuid_msr_id[] = {
468c49a0a80STom Lendacky 		MSR_AMD64_CPUID_FN_1,
469c49a0a80STom Lendacky 	};
470c49a0a80STom Lendacky 
471c49a0a80STom Lendacky 	pr_info("x86/pm: family %#hx cpu detected, MSR saving is needed during suspending.\n",
472c49a0a80STom Lendacky 		c->family);
473c49a0a80STom Lendacky 
474c49a0a80STom Lendacky 	return msr_build_context(cpuid_msr_id, ARRAY_SIZE(cpuid_msr_id));
475c49a0a80STom Lendacky }
476c49a0a80STom Lendacky 
477c49a0a80STom Lendacky static const struct x86_cpu_id msr_save_cpu_table[] = {
478*adefe55eSThomas Gleixner 	X86_MATCH_VENDOR_FAM(AMD, 0x15, &msr_save_cpuid_features),
479*adefe55eSThomas Gleixner 	X86_MATCH_VENDOR_FAM(AMD, 0x16, &msr_save_cpuid_features),
480c49a0a80STom Lendacky 	{}
481c49a0a80STom Lendacky };
482c49a0a80STom Lendacky 
483c49a0a80STom Lendacky typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *);
484c49a0a80STom Lendacky static int pm_cpu_check(const struct x86_cpu_id *c)
485c49a0a80STom Lendacky {
486c49a0a80STom Lendacky 	const struct x86_cpu_id *m;
487c49a0a80STom Lendacky 	int ret = 0;
488c49a0a80STom Lendacky 
489c49a0a80STom Lendacky 	m = x86_match_cpu(msr_save_cpu_table);
490c49a0a80STom Lendacky 	if (m) {
491c49a0a80STom Lendacky 		pm_cpu_match_t fn;
492c49a0a80STom Lendacky 
493c49a0a80STom Lendacky 		fn = (pm_cpu_match_t)m->driver_data;
494c49a0a80STom Lendacky 		ret = fn(m);
495c49a0a80STom Lendacky 	}
496c49a0a80STom Lendacky 
497c49a0a80STom Lendacky 	return ret;
498c49a0a80STom Lendacky }
499c49a0a80STom Lendacky 
5007a9c2dd0SChen Yu static int pm_check_save_msr(void)
5017a9c2dd0SChen Yu {
5027a9c2dd0SChen Yu 	dmi_check_system(msr_save_dmi_table);
503c49a0a80STom Lendacky 	pm_cpu_check(msr_save_cpu_table);
504c49a0a80STom Lendacky 
5057a9c2dd0SChen Yu 	return 0;
5067a9c2dd0SChen Yu }
5077a9c2dd0SChen Yu 
5087a9c2dd0SChen Yu device_initcall(pm_check_save_msr);
509