xref: /linux/arch/x86/kernel/reboot.c (revision a729691b541f6e63043beae72e635635abe5dc09)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
2c767a54bSJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3c767a54bSJoe Perches 
4186f4360SPaul Gortmaker #include <linux/export.h>
54d022e35SMiguel Boton #include <linux/reboot.h>
64d022e35SMiguel Boton #include <linux/init.h>
74d022e35SMiguel Boton #include <linux/pm.h>
84d022e35SMiguel Boton #include <linux/efi.h>
96c6c51e4SPaul Mackerras #include <linux/dmi.h>
10d43c36dcSAlexey Dobriyan #include <linux/sched.h>
1169575d38SShane Wang #include <linux/tboot.h>
12ca444564SJean Delvare #include <linux/delay.h>
1300089c04SJulien Thierry #include <linux/objtool.h>
1465fddcfcSMike Rapoport #include <linux/pgtable.h>
154d022e35SMiguel Boton #include <acpi/reboot.h>
164d022e35SMiguel Boton #include <asm/io.h>
174d022e35SMiguel Boton #include <asm/apic.h>
188643e28dSJiang Liu #include <asm/io_apic.h>
194d022e35SMiguel Boton #include <asm/desc.h>
204d022e35SMiguel Boton #include <asm/hpet.h>
214412620fSDmitri Vorobiev #include <asm/proto.h>
224d022e35SMiguel Boton #include <asm/reboot_fixups.h>
234d022e35SMiguel Boton #include <asm/reboot.h>
2482487711SJaswinder Singh Rajput #include <asm/pci_x86.h>
25d176720dSEduardo Habkost #include <asm/virtext.h>
2696b89dc6SJaswinder Singh Rajput #include <asm/cpu.h>
27c410b830SDon Zickus #include <asm/nmi.h>
2865051397SH. Peter Anvin #include <asm/smp.h>
294d022e35SMiguel Boton 
304d022e35SMiguel Boton #include <linux/ctype.h>
314d022e35SMiguel Boton #include <linux/mc146818rtc.h>
325a8c9aebSJarkko Sakkinen #include <asm/realmode.h>
33338bac52SFUJITA Tomonori #include <asm/x86_init.h>
3444be28e9SMatt Fleming #include <asm/efi.h>
354d022e35SMiguel Boton 
364d022e35SMiguel Boton /*
374d022e35SMiguel Boton  * Power off function, if any
384d022e35SMiguel Boton  */
394d022e35SMiguel Boton void (*pm_power_off)(void);
404d022e35SMiguel Boton EXPORT_SYMBOL(pm_power_off);
414d022e35SMiguel Boton 
42144d102bSMichael D Labriola /*
43144d102bSMichael D Labriola  * This is set if we need to go through the 'emergency' path.
44d176720dSEduardo Habkost  * When machine_emergency_restart() is called, we may be on
45d176720dSEduardo Habkost  * an inconsistent state and won't be able to do a clean cleanup
46d176720dSEduardo Habkost  */
47d176720dSEduardo Habkost static int reboot_emergency;
48d176720dSEduardo Habkost 
4914d7ca5cSH. Peter Anvin /* This is set by the PCI code if either type 1 or type 2 PCI is detected */
5014d7ca5cSH. Peter Anvin bool port_cf9_safe = false;
5114d7ca5cSH. Peter Anvin 
52144d102bSMichael D Labriola /*
534d022e35SMiguel Boton  * Reboot options and system auto-detection code provided by
544d022e35SMiguel Boton  * Dell Inc. so their systems "just work". :-)
554d022e35SMiguel Boton  */
564d022e35SMiguel Boton 
574d022e35SMiguel Boton /*
584d581259SAlex Hung  * Some machines require the "reboot=a" commandline options
594d581259SAlex Hung  */
604d581259SAlex Hung static int __init set_acpi_reboot(const struct dmi_system_id *d)
614d581259SAlex Hung {
624d581259SAlex Hung 	if (reboot_type != BOOT_ACPI) {
634d581259SAlex Hung 		reboot_type = BOOT_ACPI;
644d581259SAlex Hung 		pr_info("%s series board detected. Selecting %s-method for reboots.\n",
654d581259SAlex Hung 			d->ident, "ACPI");
664d581259SAlex Hung 	}
674d581259SAlex Hung 	return 0;
684d581259SAlex Hung }
694d581259SAlex Hung 
704d581259SAlex Hung /*
711ef03890SPeter Chubb  * Some machines require the "reboot=b" or "reboot=k"  commandline options,
724d022e35SMiguel Boton  * this quirk makes that automatic.
734d022e35SMiguel Boton  */
744d022e35SMiguel Boton static int __init set_bios_reboot(const struct dmi_system_id *d)
754d022e35SMiguel Boton {
764d022e35SMiguel Boton 	if (reboot_type != BOOT_BIOS) {
774d022e35SMiguel Boton 		reboot_type = BOOT_BIOS;
78c767a54bSJoe Perches 		pr_info("%s series board detected. Selecting %s-method for reboots.\n",
796d9153bbSLan Tianyu 			d->ident, "BIOS");
804d022e35SMiguel Boton 	}
814d022e35SMiguel Boton 	return 0;
824d022e35SMiguel Boton }
834d022e35SMiguel Boton 
840082517fSJian-Hong Pan /*
850082517fSJian-Hong Pan  * Some machines don't handle the default ACPI reboot method and
860082517fSJian-Hong Pan  * require the EFI reboot method:
870082517fSJian-Hong Pan  */
880082517fSJian-Hong Pan static int __init set_efi_reboot(const struct dmi_system_id *d)
890082517fSJian-Hong Pan {
900082517fSJian-Hong Pan 	if (reboot_type != BOOT_EFI && !efi_runtime_disabled()) {
910082517fSJian-Hong Pan 		reboot_type = BOOT_EFI;
920082517fSJian-Hong Pan 		pr_info("%s series board detected. Selecting EFI-method for reboot.\n", d->ident);
930082517fSJian-Hong Pan 	}
940082517fSJian-Hong Pan 	return 0;
950082517fSJian-Hong Pan }
960082517fSJian-Hong Pan 
9765051397SH. Peter Anvin void __noreturn machine_real_restart(unsigned int type)
9857b16594SMichael D Labriola {
9957b16594SMichael D Labriola 	local_irq_disable();
10057b16594SMichael D Labriola 
101144d102bSMichael D Labriola 	/*
102144d102bSMichael D Labriola 	 * Write zero to CMOS register number 0x0f, which the BIOS POST
103144d102bSMichael D Labriola 	 * routine will recognize as telling it to do a proper reboot.  (Well
104144d102bSMichael D Labriola 	 * that's what this book in front of me says -- it may only apply to
105144d102bSMichael D Labriola 	 * the Phoenix BIOS though, it's not clear).  At the same time,
106144d102bSMichael D Labriola 	 * disable NMIs by setting the top bit in the CMOS address register,
107144d102bSMichael D Labriola 	 * as we're about to do peculiar things to the CPU.  I'm not sure if
108144d102bSMichael D Labriola 	 * `outb_p' is needed instead of just `outb'.  Use it to be on the
109144d102bSMichael D Labriola 	 * safe side.  (Yes, CMOS_WRITE does outb_p's. -  Paul G.)
11057b16594SMichael D Labriola 	 */
11157b16594SMichael D Labriola 	spin_lock(&rtc_lock);
11257b16594SMichael D Labriola 	CMOS_WRITE(0x00, 0x8f);
11357b16594SMichael D Labriola 	spin_unlock(&rtc_lock);
11457b16594SMichael D Labriola 
11557b16594SMichael D Labriola 	/*
11657b16594SMichael D Labriola 	 * Switch back to the initial page table.
11757b16594SMichael D Labriola 	 */
11865051397SH. Peter Anvin #ifdef CONFIG_X86_32
11957b16594SMichael D Labriola 	load_cr3(initial_page_table);
12065051397SH. Peter Anvin #else
12165051397SH. Peter Anvin 	write_cr3(real_mode_header->trampoline_pgd);
122924c6b90SAndy Lutomirski 
123924c6b90SAndy Lutomirski 	/* Exiting long mode will fail if CR4.PCIDE is set. */
12467e87d43SBorislav Petkov 	if (boot_cpu_has(X86_FEATURE_PCID))
125924c6b90SAndy Lutomirski 		cr4_clear_bits(X86_CR4_PCIDE);
12665051397SH. Peter Anvin #endif
12757b16594SMichael D Labriola 
12857b16594SMichael D Labriola 	/* Jump to the identity-mapped low memory code */
12965051397SH. Peter Anvin #ifdef CONFIG_X86_32
13065051397SH. Peter Anvin 	asm volatile("jmpl *%0" : :
13165051397SH. Peter Anvin 		     "rm" (real_mode_header->machine_real_restart_asm),
13265051397SH. Peter Anvin 		     "a" (type));
13365051397SH. Peter Anvin #else
13465051397SH. Peter Anvin 	asm volatile("ljmpl *%0" : :
13565051397SH. Peter Anvin 		     "m" (real_mode_header->machine_real_restart_asm),
13665051397SH. Peter Anvin 		     "D" (type));
13765051397SH. Peter Anvin #endif
13865051397SH. Peter Anvin 	unreachable();
13957b16594SMichael D Labriola }
14057b16594SMichael D Labriola #ifdef CONFIG_APM_MODULE
14157b16594SMichael D Labriola EXPORT_SYMBOL(machine_real_restart);
14257b16594SMichael D Labriola #endif
143c207aee4SJosh Poimboeuf STACK_FRAME_NON_STANDARD(machine_real_restart);
14457b16594SMichael D Labriola 
14557b16594SMichael D Labriola /*
14657b16594SMichael D Labriola  * Some Apple MacBook and MacBookPro's needs reboot=p to be able to reboot
14757b16594SMichael D Labriola  */
14857b16594SMichael D Labriola static int __init set_pci_reboot(const struct dmi_system_id *d)
14957b16594SMichael D Labriola {
1505be44a6fSIngo Molnar 	if (reboot_type != BOOT_CF9_FORCE) {
1515be44a6fSIngo Molnar 		reboot_type = BOOT_CF9_FORCE;
152c767a54bSJoe Perches 		pr_info("%s series board detected. Selecting %s-method for reboots.\n",
1536d9153bbSLan Tianyu 			d->ident, "PCI");
15457b16594SMichael D Labriola 	}
15557b16594SMichael D Labriola 	return 0;
15657b16594SMichael D Labriola }
15757b16594SMichael D Labriola 
1581ef03890SPeter Chubb static int __init set_kbd_reboot(const struct dmi_system_id *d)
1591ef03890SPeter Chubb {
1601ef03890SPeter Chubb 	if (reboot_type != BOOT_KBD) {
1611ef03890SPeter Chubb 		reboot_type = BOOT_KBD;
162c767a54bSJoe Perches 		pr_info("%s series board detected. Selecting %s-method for reboot.\n",
1636d9153bbSLan Tianyu 			d->ident, "KBD");
1641ef03890SPeter Chubb 	}
1651ef03890SPeter Chubb 	return 0;
1661ef03890SPeter Chubb }
1671ef03890SPeter Chubb 
168144d102bSMichael D Labriola /*
16965051397SH. Peter Anvin  * This is a single dmi_table handling all reboot quirks.
17057b16594SMichael D Labriola  */
1716faadbbbSChristoph Hellwig static const struct dmi_system_id reboot_dmi_table[] __initconst = {
17257b16594SMichael D Labriola 
173e56e57f6SDave Jones 	/* Acer */
174b49c78d4SPeter Chubb 	{	/* Handle reboot issue on Acer Aspire one */
1751ef03890SPeter Chubb 		.callback = set_kbd_reboot,
176b49c78d4SPeter Chubb 		.ident = "Acer Aspire One A110",
177b49c78d4SPeter Chubb 		.matches = {
178b49c78d4SPeter Chubb 			DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
179b49c78d4SPeter Chubb 			DMI_MATCH(DMI_PRODUCT_NAME, "AOA110"),
180b49c78d4SPeter Chubb 		},
181b49c78d4SPeter Chubb 	},
1820082517fSJian-Hong Pan 	{	/* Handle reboot issue on Acer TravelMate X514-51T */
1830082517fSJian-Hong Pan 		.callback = set_efi_reboot,
1840082517fSJian-Hong Pan 		.ident = "Acer TravelMate X514-51T",
1850082517fSJian-Hong Pan 		.matches = {
1860082517fSJian-Hong Pan 			DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1870082517fSJian-Hong Pan 			DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate X514-51T"),
1880082517fSJian-Hong Pan 		},
1890082517fSJian-Hong Pan 	},
190e56e57f6SDave Jones 
191e56e57f6SDave Jones 	/* Apple */
1923e03bbeaSShunichi Fuji 	{	/* Handle problems with rebooting on Apple MacBook5 */
1936c6c51e4SPaul Mackerras 		.callback = set_pci_reboot,
1943e03bbeaSShunichi Fuji 		.ident = "Apple MacBook5",
1956c6c51e4SPaul Mackerras 		.matches = {
1966c6c51e4SPaul Mackerras 			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
1973e03bbeaSShunichi Fuji 			DMI_MATCH(DMI_PRODUCT_NAME, "MacBook5"),
1986c6c51e4SPaul Mackerras 		},
1996c6c51e4SPaul Mackerras 	},
200140fd4acSHill Ma 	{	/* Handle problems with rebooting on Apple MacBook6,1 */
201140fd4acSHill Ma 		.callback = set_pci_reboot,
202140fd4acSHill Ma 		.ident = "Apple MacBook6,1",
203140fd4acSHill Ma 		.matches = {
204140fd4acSHill Ma 			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
205140fd4acSHill Ma 			DMI_MATCH(DMI_PRODUCT_NAME, "MacBook6,1"),
206140fd4acSHill Ma 		},
207140fd4acSHill Ma 	},
2083e03bbeaSShunichi Fuji 	{	/* Handle problems with rebooting on Apple MacBookPro5 */
209498cdbfbSOzan Çağlayan 		.callback = set_pci_reboot,
2103e03bbeaSShunichi Fuji 		.ident = "Apple MacBookPro5",
211498cdbfbSOzan Çağlayan 		.matches = {
212498cdbfbSOzan Çağlayan 			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
2133e03bbeaSShunichi Fuji 			DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro5"),
214498cdbfbSOzan Çağlayan 		},
215498cdbfbSOzan Çağlayan 	},
21605154752SGottfried Haider 	{	/* Handle problems with rebooting on Apple Macmini3,1 */
21705154752SGottfried Haider 		.callback = set_pci_reboot,
21805154752SGottfried Haider 		.ident = "Apple Macmini3,1",
21905154752SGottfried Haider 		.matches = {
22005154752SGottfried Haider 			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
22105154752SGottfried Haider 			DMI_MATCH(DMI_PRODUCT_NAME, "Macmini3,1"),
22205154752SGottfried Haider 		},
22305154752SGottfried Haider 	},
2240a832320SJustin P. Mattock 	{	/* Handle problems with rebooting on the iMac9,1. */
2250a832320SJustin P. Mattock 		.callback = set_pci_reboot,
2260a832320SJustin P. Mattock 		.ident = "Apple iMac9,1",
2270a832320SJustin P. Mattock 		.matches = {
2280a832320SJustin P. Mattock 			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
2290a832320SJustin P. Mattock 			DMI_MATCH(DMI_PRODUCT_NAME, "iMac9,1"),
2300a832320SJustin P. Mattock 		},
2310a832320SJustin P. Mattock 	},
2322f0c0b2dSMario Kleiner 	{	/* Handle problems with rebooting on the iMac10,1. */
2332f0c0b2dSMario Kleiner 		.callback = set_pci_reboot,
2342f0c0b2dSMario Kleiner 		.ident = "Apple iMac10,1",
2352f0c0b2dSMario Kleiner 		.matches = {
2362f0c0b2dSMario Kleiner 		    DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
2372f0c0b2dSMario Kleiner 		    DMI_MATCH(DMI_PRODUCT_NAME, "iMac10,1"),
2382f0c0b2dSMario Kleiner 		},
2392f0c0b2dSMario Kleiner 	},
240e56e57f6SDave Jones 
24180313b30SStefan Lippers-Hollmann 	/* ASRock */
24280313b30SStefan Lippers-Hollmann 	{	/* Handle problems with rebooting on ASRock Q1900DC-ITX */
24380313b30SStefan Lippers-Hollmann 		.callback = set_pci_reboot,
24480313b30SStefan Lippers-Hollmann 		.ident = "ASRock Q1900DC-ITX",
24580313b30SStefan Lippers-Hollmann 		.matches = {
24680313b30SStefan Lippers-Hollmann 			DMI_MATCH(DMI_BOARD_VENDOR, "ASRock"),
24780313b30SStefan Lippers-Hollmann 			DMI_MATCH(DMI_BOARD_NAME, "Q1900DC-ITX"),
24880313b30SStefan Lippers-Hollmann 		},
24980313b30SStefan Lippers-Hollmann 	},
25080313b30SStefan Lippers-Hollmann 
251e56e57f6SDave Jones 	/* ASUS */
252e56e57f6SDave Jones 	{	/* Handle problems with rebooting on ASUS P4S800 */
253e56e57f6SDave Jones 		.callback = set_bios_reboot,
254e56e57f6SDave Jones 		.ident = "ASUS P4S800",
255e56e57f6SDave Jones 		.matches = {
256e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
257e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_NAME, "P4S800"),
258e56e57f6SDave Jones 		},
259e56e57f6SDave Jones 	},
26090b28dedSMatjaz Hegedic 	{	/* Handle problems with rebooting on ASUS EeeBook X205TA */
26190b28dedSMatjaz Hegedic 		.callback = set_acpi_reboot,
26290b28dedSMatjaz Hegedic 		.ident = "ASUS EeeBook X205TA",
26390b28dedSMatjaz Hegedic 		.matches = {
26490b28dedSMatjaz Hegedic 			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
265bba8376aSMatjaz Hegedic 			DMI_MATCH(DMI_PRODUCT_NAME, "X205TA"),
26690b28dedSMatjaz Hegedic 		},
26790b28dedSMatjaz Hegedic 	},
2683b3e7855SMatjaz Hegedic 	{	/* Handle problems with rebooting on ASUS EeeBook X205TAW */
2693b3e7855SMatjaz Hegedic 		.callback = set_acpi_reboot,
2703b3e7855SMatjaz Hegedic 		.ident = "ASUS EeeBook X205TAW",
2713b3e7855SMatjaz Hegedic 		.matches = {
2723b3e7855SMatjaz Hegedic 			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
2733b3e7855SMatjaz Hegedic 			DMI_MATCH(DMI_PRODUCT_NAME, "X205TAW"),
2743b3e7855SMatjaz Hegedic 		},
2753b3e7855SMatjaz Hegedic 	},
276e56e57f6SDave Jones 
277aadca6faSChristian Gmeiner 	/* Certec */
278aadca6faSChristian Gmeiner 	{       /* Handle problems with rebooting on Certec BPC600 */
279aadca6faSChristian Gmeiner 		.callback = set_pci_reboot,
280aadca6faSChristian Gmeiner 		.ident = "Certec BPC600",
281aadca6faSChristian Gmeiner 		.matches = {
282aadca6faSChristian Gmeiner 			DMI_MATCH(DMI_SYS_VENDOR, "Certec"),
283aadca6faSChristian Gmeiner 			DMI_MATCH(DMI_PRODUCT_NAME, "BPC600"),
284aadca6faSChristian Gmeiner 		},
285aadca6faSChristian Gmeiner 	},
286aadca6faSChristian Gmeiner 
287e56e57f6SDave Jones 	/* Dell */
288e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell DXP061 */
289e56e57f6SDave Jones 		.callback = set_bios_reboot,
290e56e57f6SDave Jones 		.ident = "Dell DXP061",
2913628c3f5SMaxime Ripard 		.matches = {
2923628c3f5SMaxime Ripard 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
293e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "Dell DXP061"),
294e56e57f6SDave Jones 		},
295e56e57f6SDave Jones 	},
296e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell E520's */
297e56e57f6SDave Jones 		.callback = set_bios_reboot,
298e56e57f6SDave Jones 		.ident = "Dell E520",
299e56e57f6SDave Jones 		.matches = {
300e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
301e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "Dell DM061"),
3023628c3f5SMaxime Ripard 		},
3033628c3f5SMaxime Ripard 	},
3048412da75SVille Syrjälä 	{	/* Handle problems with rebooting on the Latitude E5410. */
3058412da75SVille Syrjälä 		.callback = set_pci_reboot,
3068412da75SVille Syrjälä 		.ident = "Dell Latitude E5410",
3078412da75SVille Syrjälä 		.matches = {
3088412da75SVille Syrjälä 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
3098412da75SVille Syrjälä 			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E5410"),
3108412da75SVille Syrjälä 		},
3118412da75SVille Syrjälä 	},
312b7798d28SDaniel J Blueman 	{	/* Handle problems with rebooting on the Latitude E5420. */
313b7798d28SDaniel J Blueman 		.callback = set_pci_reboot,
314b7798d28SDaniel J Blueman 		.ident = "Dell Latitude E5420",
315b7798d28SDaniel J Blueman 		.matches = {
316b7798d28SDaniel J Blueman 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
317b7798d28SDaniel J Blueman 			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E5420"),
318b7798d28SDaniel J Blueman 		},
319b7798d28SDaniel J Blueman 	},
320e56e57f6SDave Jones 	{	/* Handle problems with rebooting on the Latitude E6320. */
321e56e57f6SDave Jones 		.callback = set_pci_reboot,
322e56e57f6SDave Jones 		.ident = "Dell Latitude E6320",
323e56e57f6SDave Jones 		.matches = {
324e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
325e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6320"),
326e56e57f6SDave Jones 		},
327e56e57f6SDave Jones 	},
328a536877eSH. Peter Anvin 	{	/* Handle problems with rebooting on the Latitude E6420. */
329a536877eSH. Peter Anvin 		.callback = set_pci_reboot,
330a536877eSH. Peter Anvin 		.ident = "Dell Latitude E6420",
331a536877eSH. Peter Anvin 		.matches = {
332a536877eSH. Peter Anvin 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
333a536877eSH. Peter Anvin 			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6420"),
334a536877eSH. Peter Anvin 		},
335a536877eSH. Peter Anvin 	},
336e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell Optiplex 330 with 0KP561 */
337e56e57f6SDave Jones 		.callback = set_bios_reboot,
338e56e57f6SDave Jones 		.ident = "Dell OptiPlex 330",
339e56e57f6SDave Jones 		.matches = {
340e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
341e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 330"),
342e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_NAME, "0KP561"),
343e56e57f6SDave Jones 		},
344e56e57f6SDave Jones 	},
345e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell Optiplex 360 with 0T656F */
346e56e57f6SDave Jones 		.callback = set_bios_reboot,
347e56e57f6SDave Jones 		.ident = "Dell OptiPlex 360",
348e56e57f6SDave Jones 		.matches = {
349e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
350e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 360"),
351e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_NAME, "0T656F"),
352e56e57f6SDave Jones 		},
353e56e57f6SDave Jones 	},
354e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell Optiplex 745's SFF */
355e56e57f6SDave Jones 		.callback = set_bios_reboot,
356e56e57f6SDave Jones 		.ident = "Dell OptiPlex 745",
357e56e57f6SDave Jones 		.matches = {
358e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
359e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 745"),
360e56e57f6SDave Jones 		},
361e56e57f6SDave Jones 	},
362e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell Optiplex 745's DFF */
363e56e57f6SDave Jones 		.callback = set_bios_reboot,
364e56e57f6SDave Jones 		.ident = "Dell OptiPlex 745",
365e56e57f6SDave Jones 		.matches = {
366e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
367e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 745"),
368e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_NAME, "0MM599"),
369e56e57f6SDave Jones 		},
370e56e57f6SDave Jones 	},
371e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell Optiplex 745 with 0KW626 */
372e56e57f6SDave Jones 		.callback = set_bios_reboot,
373e56e57f6SDave Jones 		.ident = "Dell OptiPlex 745",
374e56e57f6SDave Jones 		.matches = {
375e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
376e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 745"),
377e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_NAME, "0KW626"),
378e56e57f6SDave Jones 		},
379e56e57f6SDave Jones 	},
380e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell OptiPlex 760 with 0G919G */
381e56e57f6SDave Jones 		.callback = set_bios_reboot,
382e56e57f6SDave Jones 		.ident = "Dell OptiPlex 760",
383e56e57f6SDave Jones 		.matches = {
384e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
385e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 760"),
386e56e57f6SDave Jones 			DMI_MATCH(DMI_BOARD_NAME, "0G919G"),
387e56e57f6SDave Jones 		},
388e56e57f6SDave Jones 	},
3896be30bb7SRafael J. Wysocki 	{	/* Handle problems with rebooting on the OptiPlex 990. */
3906be30bb7SRafael J. Wysocki 		.callback = set_pci_reboot,
391*a729691bSPaul Gortmaker 		.ident = "Dell OptiPlex 990 BIOS A0x",
3926be30bb7SRafael J. Wysocki 		.matches = {
3936be30bb7SRafael J. Wysocki 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
3946be30bb7SRafael J. Wysocki 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 990"),
395*a729691bSPaul Gortmaker 			DMI_MATCH(DMI_BIOS_VERSION, "A0"),
3966be30bb7SRafael J. Wysocki 		},
3976be30bb7SRafael J. Wysocki 	},
398e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell 300's */
399e56e57f6SDave Jones 		.callback = set_bios_reboot,
400e56e57f6SDave Jones 		.ident = "Dell PowerEdge 300",
40176eb9a30SZhang Rui 		.matches = {
402e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
403e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 300/"),
404e56e57f6SDave Jones 		},
405e56e57f6SDave Jones 	},
406e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell 1300's */
407e56e57f6SDave Jones 		.callback = set_bios_reboot,
408e56e57f6SDave Jones 		.ident = "Dell PowerEdge 1300",
409e56e57f6SDave Jones 		.matches = {
410e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
411e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1300/"),
412e56e57f6SDave Jones 		},
413e56e57f6SDave Jones 	},
414e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell 2400's */
415e56e57f6SDave Jones 		.callback = set_bios_reboot,
416e56e57f6SDave Jones 		.ident = "Dell PowerEdge 2400",
417e56e57f6SDave Jones 		.matches = {
418e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
419e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 2400"),
42076eb9a30SZhang Rui 		},
42176eb9a30SZhang Rui 	},
4224f0acd31SMasoud Sharbiani 	{	/* Handle problems with rebooting on the Dell PowerEdge C6100. */
4234f0acd31SMasoud Sharbiani 		.callback = set_pci_reboot,
4244f0acd31SMasoud Sharbiani 		.ident = "Dell PowerEdge C6100",
4254f0acd31SMasoud Sharbiani 		.matches = {
4264f0acd31SMasoud Sharbiani 			DMI_MATCH(DMI_SYS_VENDOR, "Dell"),
4274f0acd31SMasoud Sharbiani 			DMI_MATCH(DMI_PRODUCT_NAME, "C6100"),
4284f0acd31SMasoud Sharbiani 		},
4294f0acd31SMasoud Sharbiani 	},
4306c6c51e4SPaul Mackerras 	{	/* Handle problems with rebooting on the Precision M6600. */
4316c6c51e4SPaul Mackerras 		.callback = set_pci_reboot,
4326c6c51e4SPaul Mackerras 		.ident = "Dell Precision M6600",
4336c6c51e4SPaul Mackerras 		.matches = {
4346c6c51e4SPaul Mackerras 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
4356c6c51e4SPaul Mackerras 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision M6600"),
4366c6c51e4SPaul Mackerras 		},
4376c6c51e4SPaul Mackerras 	},
438e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell T5400's */
439e56e57f6SDave Jones 		.callback = set_bios_reboot,
440e56e57f6SDave Jones 		.ident = "Dell Precision T5400",
44157b16594SMichael D Labriola 		.matches = {
4426c6c51e4SPaul Mackerras 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
443e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation T5400"),
444144d102bSMichael D Labriola 		},
4455955633eSMichael D Labriola 	},
446e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell T7400's */
447e56e57f6SDave Jones 		.callback = set_bios_reboot,
448e56e57f6SDave Jones 		.ident = "Dell Precision T7400",
4496c6c51e4SPaul Mackerras 		.matches = {
450e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
451e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation T7400"),
4526c6c51e4SPaul Mackerras 		},
4534d022e35SMiguel Boton 	},
454e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Dell XPS710 */
455e56e57f6SDave Jones 		.callback = set_bios_reboot,
456e56e57f6SDave Jones 		.ident = "Dell XPS710",
457e56e57f6SDave Jones 		.matches = {
458e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
459e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "Dell XPS710"),
460e56e57f6SDave Jones 		},
461e56e57f6SDave Jones 	},
4624d581259SAlex Hung 	{	/* Handle problems with rebooting on Dell Optiplex 7450 AIO */
4634d581259SAlex Hung 		.callback = set_acpi_reboot,
4644d581259SAlex Hung 		.ident = "Dell OptiPlex 7450 AIO",
4654d581259SAlex Hung 		.matches = {
4664d581259SAlex Hung 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
4674d581259SAlex Hung 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 7450 AIO"),
4684d581259SAlex Hung 		},
4694d581259SAlex Hung 	},
470e56e57f6SDave Jones 
471e56e57f6SDave Jones 	/* Hewlett-Packard */
472e56e57f6SDave Jones 	{	/* Handle problems with rebooting on HP laptops */
473e56e57f6SDave Jones 		.callback = set_bios_reboot,
474e56e57f6SDave Jones 		.ident = "HP Compaq Laptop",
475e56e57f6SDave Jones 		.matches = {
476e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
477e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq"),
478e56e57f6SDave Jones 		},
479e56e57f6SDave Jones 	},
480e56e57f6SDave Jones 
4814b2d8ca9SHeiner Kallweit 	{	/* PCIe Wifi card isn't detected after reboot otherwise */
4824b2d8ca9SHeiner Kallweit 		.callback = set_pci_reboot,
4834b2d8ca9SHeiner Kallweit 		.ident = "Zotac ZBOX CI327 nano",
4844b2d8ca9SHeiner Kallweit 		.matches = {
4854b2d8ca9SHeiner Kallweit 			DMI_MATCH(DMI_SYS_VENDOR, "NA"),
4864b2d8ca9SHeiner Kallweit 			DMI_MATCH(DMI_PRODUCT_NAME, "ZBOX-CI327NANO-GS-01"),
4874b2d8ca9SHeiner Kallweit 		},
4884b2d8ca9SHeiner Kallweit 	},
4894b2d8ca9SHeiner Kallweit 
490e56e57f6SDave Jones 	/* Sony */
491e56e57f6SDave Jones 	{	/* Handle problems with rebooting on Sony VGN-Z540N */
492e56e57f6SDave Jones 		.callback = set_bios_reboot,
493e56e57f6SDave Jones 		.ident = "Sony VGN-Z540N",
494e56e57f6SDave Jones 		.matches = {
495e56e57f6SDave Jones 			DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
496e56e57f6SDave Jones 			DMI_MATCH(DMI_PRODUCT_NAME, "VGN-Z540N"),
497e56e57f6SDave Jones 		},
498e56e57f6SDave Jones 	},
499e56e57f6SDave Jones 
5004d022e35SMiguel Boton 	{ }
5014d022e35SMiguel Boton };
5029c48f1c6SDon Zickus 
503d176720dSEduardo Habkost static int __init reboot_init(void)
504d176720dSEduardo Habkost {
50544be28e9SMatt Fleming 	int rv;
50644be28e9SMatt Fleming 
507d176720dSEduardo Habkost 	/*
508d176720dSEduardo Habkost 	 * Only do the DMI check if reboot_type hasn't been overridden
509d176720dSEduardo Habkost 	 * on the command line
510d176720dSEduardo Habkost 	 */
51144be28e9SMatt Fleming 	if (!reboot_default)
51244be28e9SMatt Fleming 		return 0;
51344be28e9SMatt Fleming 
51444be28e9SMatt Fleming 	/*
51544be28e9SMatt Fleming 	 * The DMI quirks table takes precedence. If no quirks entry
5164ecf7191SStefan Assmann 	 * matches and the ACPI Hardware Reduced bit is set and EFI
5174ecf7191SStefan Assmann 	 * runtime services are enabled, force EFI reboot.
51844be28e9SMatt Fleming 	 */
51944be28e9SMatt Fleming 	rv = dmi_check_system(reboot_dmi_table);
52044be28e9SMatt Fleming 
5214ecf7191SStefan Assmann 	if (!rv && efi_reboot_required() && !efi_runtime_disabled())
52244be28e9SMatt Fleming 		reboot_type = BOOT_EFI;
52344be28e9SMatt Fleming 
524d176720dSEduardo Habkost 	return 0;
525d176720dSEduardo Habkost }
526d176720dSEduardo Habkost core_initcall(reboot_init);
527d176720dSEduardo Habkost 
528d176720dSEduardo Habkost static inline void kb_wait(void)
529d176720dSEduardo Habkost {
530d176720dSEduardo Habkost 	int i;
531d176720dSEduardo Habkost 
532d176720dSEduardo Habkost 	for (i = 0; i < 0x10000; i++) {
5337432d149SIngo Molnar 		if ((inb(0x64) & 0x02) == 0)
5347432d149SIngo Molnar 			break;
5357432d149SIngo Molnar 		udelay(2);
5367432d149SIngo Molnar 	}
537416e2d63SJody Belka }
5384d022e35SMiguel Boton 
5394d022e35SMiguel Boton static void vmxoff_nmi(int cpu, struct pt_regs *regs)
5404d022e35SMiguel Boton {
541d176720dSEduardo Habkost 	cpu_emergency_vmxoff();
542d176720dSEduardo Habkost }
543d176720dSEduardo Habkost 
544144d102bSMichael D Labriola /* Use NMIs as IPIs to tell all CPUs to disable virtualization */
5454d022e35SMiguel Boton static void emergency_vmx_disable_all(void)
5464d022e35SMiguel Boton {
5474d022e35SMiguel Boton 	/* Just make sure we won't change CPUs while doing this */
5484d022e35SMiguel Boton 	local_irq_disable();
5494d022e35SMiguel Boton 
550144d102bSMichael D Labriola 	/*
551ed727361SSean Christopherson 	 * Disable VMX on all CPUs before rebooting, otherwise we risk hanging
552ed727361SSean Christopherson 	 * the machine, because the CPU blocks INIT when it's in VMX root.
5534d022e35SMiguel Boton 	 *
554ed727361SSean Christopherson 	 * We can't take any locks and we may be on an inconsistent state, so
555ed727361SSean Christopherson 	 * use NMIs as IPIs to tell the other CPUs to exit VMX root and halt.
5564d022e35SMiguel Boton 	 *
557ed727361SSean Christopherson 	 * Do the NMI shootdown even if VMX if off on _this_ CPU, as that
558ed727361SSean Christopherson 	 * doesn't prevent a different CPU from being in VMX root operation.
5594d022e35SMiguel Boton 	 */
560ed727361SSean Christopherson 	if (cpu_has_vmx()) {
561ed727361SSean Christopherson 		/* Safely force _this_ CPU out of VMX root operation. */
562ed727361SSean Christopherson 		__cpu_emergency_vmxoff();
5634d022e35SMiguel Boton 
564ed727361SSean Christopherson 		/* Halt and exit VMX root operation on the other CPUs. */
5654d022e35SMiguel Boton 		nmi_shootdown_cpus(vmxoff_nmi);
5664d022e35SMiguel Boton 	}
5674d022e35SMiguel Boton }
5684d022e35SMiguel Boton 
5694d022e35SMiguel Boton 
5704d022e35SMiguel Boton void __attribute__((weak)) mach_reboot_fixups(void)
5714d022e35SMiguel Boton {
5724d022e35SMiguel Boton }
5734d022e35SMiguel Boton 
574660e34ceSMatthew Garrett /*
5755be44a6fSIngo Molnar  * To the best of our knowledge Windows compatible x86 hardware expects
5765be44a6fSIngo Molnar  * the following on reboot:
577660e34ceSMatthew Garrett  *
578660e34ceSMatthew Garrett  * 1) If the FADT has the ACPI reboot register flag set, try it
579660e34ceSMatthew Garrett  * 2) If still alive, write to the keyboard controller
580660e34ceSMatthew Garrett  * 3) If still alive, write to the ACPI reboot register again
581660e34ceSMatthew Garrett  * 4) If still alive, write to the keyboard controller again
582a4f1987eSLi, Aubrey  * 5) If still alive, call the EFI runtime service to reboot
5835be44a6fSIngo Molnar  * 6) If no EFI runtime service, call the BIOS to do a reboot
584660e34ceSMatthew Garrett  *
5855be44a6fSIngo Molnar  * We default to following the same pattern. We also have
5865be44a6fSIngo Molnar  * two other reboot methods: 'triple fault' and 'PCI', which
5875be44a6fSIngo Molnar  * can be triggered via the reboot= kernel boot option or
5885be44a6fSIngo Molnar  * via quirks.
5895be44a6fSIngo Molnar  *
5905be44a6fSIngo Molnar  * This means that this function can never return, it can misbehave
5915be44a6fSIngo Molnar  * by not rebooting properly and hanging.
592660e34ceSMatthew Garrett  */
5934d022e35SMiguel Boton static void native_machine_emergency_restart(void)
5944d022e35SMiguel Boton {
5954d022e35SMiguel Boton 	int i;
596660e34ceSMatthew Garrett 	int attempt = 0;
597660e34ceSMatthew Garrett 	int orig_reboot_type = reboot_type;
598edf2b139SRobin Holt 	unsigned short mode;
5994d022e35SMiguel Boton 
6004d022e35SMiguel Boton 	if (reboot_emergency)
6014d022e35SMiguel Boton 		emergency_vmx_disable_all();
6024d022e35SMiguel Boton 
603840c2bafSJoseph Cihula 	tboot_shutdown(TB_SHUTDOWN_REBOOT);
604840c2bafSJoseph Cihula 
6054d022e35SMiguel Boton 	/* Tell the BIOS if we want cold or warm reboot */
606edf2b139SRobin Holt 	mode = reboot_mode == REBOOT_WARM ? 0x1234 : 0;
607edf2b139SRobin Holt 	*((unsigned short *)__va(0x472)) = mode;
6084d022e35SMiguel Boton 
60987615a34SMatt Fleming 	/*
61087615a34SMatt Fleming 	 * If an EFI capsule has been registered with the firmware then
61187615a34SMatt Fleming 	 * override the reboot= parameter.
61287615a34SMatt Fleming 	 */
61387615a34SMatt Fleming 	if (efi_capsule_pending(NULL)) {
61487615a34SMatt Fleming 		pr_info("EFI capsule is pending, forcing EFI reboot.\n");
61587615a34SMatt Fleming 		reboot_type = BOOT_EFI;
61687615a34SMatt Fleming 	}
61787615a34SMatt Fleming 
6184d022e35SMiguel Boton 	for (;;) {
6194d022e35SMiguel Boton 		/* Could also try the reset bit in the Hammer NB */
6204d022e35SMiguel Boton 		switch (reboot_type) {
6215be44a6fSIngo Molnar 		case BOOT_ACPI:
6225be44a6fSIngo Molnar 			acpi_reboot();
6235be44a6fSIngo Molnar 			reboot_type = BOOT_KBD;
6245be44a6fSIngo Molnar 			break;
6255be44a6fSIngo Molnar 
6264d022e35SMiguel Boton 		case BOOT_KBD:
627144d102bSMichael D Labriola 			mach_reboot_fixups(); /* For board specific fixups */
6287432d149SIngo Molnar 
6294d022e35SMiguel Boton 			for (i = 0; i < 10; i++) {
6304d022e35SMiguel Boton 				kb_wait();
6314d022e35SMiguel Boton 				udelay(50);
632144d102bSMichael D Labriola 				outb(0xfe, 0x64); /* Pulse reset low */
6334d022e35SMiguel Boton 				udelay(50);
6344d022e35SMiguel Boton 			}
635660e34ceSMatthew Garrett 			if (attempt == 0 && orig_reboot_type == BOOT_ACPI) {
636660e34ceSMatthew Garrett 				attempt = 1;
637660e34ceSMatthew Garrett 				reboot_type = BOOT_ACPI;
638660e34ceSMatthew Garrett 			} else {
639a4f1987eSLi, Aubrey 				reboot_type = BOOT_EFI;
640660e34ceSMatthew Garrett 			}
641660e34ceSMatthew Garrett 			break;
6424d022e35SMiguel Boton 
6434d022e35SMiguel Boton 		case BOOT_EFI:
6448562c99cSMatt Fleming 			efi_reboot(reboot_mode, NULL);
6455be44a6fSIngo Molnar 			reboot_type = BOOT_BIOS;
64614d7ca5cSH. Peter Anvin 			break;
6474d022e35SMiguel Boton 
6485be44a6fSIngo Molnar 		case BOOT_BIOS:
6495be44a6fSIngo Molnar 			machine_real_restart(MRR_BIOS);
6505be44a6fSIngo Molnar 
6515be44a6fSIngo Molnar 			/* We're probably dead after this, but... */
6525be44a6fSIngo Molnar 			reboot_type = BOOT_CF9_SAFE;
6535be44a6fSIngo Molnar 			break;
6545be44a6fSIngo Molnar 
6555be44a6fSIngo Molnar 		case BOOT_CF9_FORCE:
65614d7ca5cSH. Peter Anvin 			port_cf9_safe = true;
657df561f66SGustavo A. R. Silva 			fallthrough;
65814d7ca5cSH. Peter Anvin 
6595be44a6fSIngo Molnar 		case BOOT_CF9_SAFE:
66014d7ca5cSH. Peter Anvin 			if (port_cf9_safe) {
6615be44a6fSIngo Molnar 				u8 reboot_code = reboot_mode == REBOOT_WARM ?  0x06 : 0x0E;
66216c21ae5SLi Fei 				u8 cf9 = inb(0xcf9) & ~reboot_code;
66314d7ca5cSH. Peter Anvin 				outb(cf9|2, 0xcf9); /* Request hard reset */
66414d7ca5cSH. Peter Anvin 				udelay(50);
66516c21ae5SLi Fei 				/* Actually do the reset */
66616c21ae5SLi Fei 				outb(cf9|reboot_code, 0xcf9);
66714d7ca5cSH. Peter Anvin 				udelay(50);
66814d7ca5cSH. Peter Anvin 			}
6695be44a6fSIngo Molnar 			reboot_type = BOOT_TRIPLE;
6705be44a6fSIngo Molnar 			break;
6715be44a6fSIngo Molnar 
6725be44a6fSIngo Molnar 		case BOOT_TRIPLE:
6738ec9069aSH. Peter Anvin (Intel) 			idt_invalidate();
6745be44a6fSIngo Molnar 			__asm__ __volatile__("int3");
6755be44a6fSIngo Molnar 
6765be44a6fSIngo Molnar 			/* We're probably dead after this, but... */
6775be44a6fSIngo Molnar 			reboot_type = BOOT_KBD;
6784d022e35SMiguel Boton 			break;
6794d022e35SMiguel Boton 		}
6804d022e35SMiguel Boton 	}
6814d022e35SMiguel Boton }
6824d022e35SMiguel Boton 
6833c62c625SGlauber Costa void native_machine_shutdown(void)
6844d022e35SMiguel Boton {
6854d022e35SMiguel Boton 	/* Stop the cpus and apics */
686522e6646SFenghua Yu #ifdef CONFIG_X86_IO_APIC
6872885432aSFenghua Yu 	/*
6882885432aSFenghua Yu 	 * Disabling IO APIC before local APIC is a workaround for
6892885432aSFenghua Yu 	 * erratum AVR31 in "Intel Atom Processor C2000 Product Family
6902885432aSFenghua Yu 	 * Specification Update". In this situation, interrupts that target
6912885432aSFenghua Yu 	 * a Logical Processor whose Local APIC is either in the process of
6922885432aSFenghua Yu 	 * being hardware disabled or software disabled are neither delivered
6932885432aSFenghua Yu 	 * nor discarded. When this erratum occurs, the processor may hang.
6942885432aSFenghua Yu 	 *
6952885432aSFenghua Yu 	 * Even without the erratum, it still makes sense to quiet IO APIC
6962885432aSFenghua Yu 	 * before disabling Local APIC.
6972885432aSFenghua Yu 	 */
698339b2ae0SBaoquan He 	clear_IO_APIC();
699522e6646SFenghua Yu #endif
700522e6646SFenghua Yu 
7014d022e35SMiguel Boton #ifdef CONFIG_SMP
702144d102bSMichael D Labriola 	/*
7031b3a5d02SRobin Holt 	 * Stop all of the others. Also disable the local irq to
7041b3a5d02SRobin Holt 	 * not receive the per-cpu timer interrupt which may trigger
7051b3a5d02SRobin Holt 	 * scheduler's load balance.
7064d022e35SMiguel Boton 	 */
70755c844a4SFeng Tang 	local_irq_disable();
70876fac077SAlok Kataria 	stop_other_cpus();
7094d022e35SMiguel Boton #endif
7104d022e35SMiguel Boton 
7114d022e35SMiguel Boton 	lapic_shutdown();
712339b2ae0SBaoquan He 	restore_boot_irq_mode();
7134d022e35SMiguel Boton 
7144d022e35SMiguel Boton #ifdef CONFIG_HPET_TIMER
7154d022e35SMiguel Boton 	hpet_disable();
7164d022e35SMiguel Boton #endif
7174d022e35SMiguel Boton 
7184d022e35SMiguel Boton #ifdef CONFIG_X86_64
719338bac52SFUJITA Tomonori 	x86_platform.iommu_shutdown();
7204d022e35SMiguel Boton #endif
7214d022e35SMiguel Boton }
7224d022e35SMiguel Boton 
723d176720dSEduardo Habkost static void __machine_emergency_restart(int emergency)
724d176720dSEduardo Habkost {
725d176720dSEduardo Habkost 	reboot_emergency = emergency;
726d176720dSEduardo Habkost 	machine_ops.emergency_restart();
727d176720dSEduardo Habkost }
728d176720dSEduardo Habkost 
729416e2d63SJody Belka static void native_machine_restart(char *__unused)
7304d022e35SMiguel Boton {
731c767a54bSJoe Perches 	pr_notice("machine restart\n");
7324d022e35SMiguel Boton 
7334d022e35SMiguel Boton 	if (!reboot_force)
7344d022e35SMiguel Boton 		machine_shutdown();
735d176720dSEduardo Habkost 	__machine_emergency_restart(0);
7364d022e35SMiguel Boton }
7374d022e35SMiguel Boton 
738416e2d63SJody Belka static void native_machine_halt(void)
7394d022e35SMiguel Boton {
740144d102bSMichael D Labriola 	/* Stop other cpus and apics */
741d3ec5caeSIvan Vecera 	machine_shutdown();
742d3ec5caeSIvan Vecera 
743840c2bafSJoseph Cihula 	tboot_shutdown(TB_SHUTDOWN_HALT);
744840c2bafSJoseph Cihula 
745d3ec5caeSIvan Vecera 	stop_this_cpu(NULL);
7464d022e35SMiguel Boton }
7474d022e35SMiguel Boton 
748416e2d63SJody Belka static void native_machine_power_off(void)
7494d022e35SMiguel Boton {
7504d022e35SMiguel Boton 	if (pm_power_off) {
7514d022e35SMiguel Boton 		if (!reboot_force)
7524d022e35SMiguel Boton 			machine_shutdown();
7534d022e35SMiguel Boton 		pm_power_off();
7544d022e35SMiguel Boton 	}
755144d102bSMichael D Labriola 	/* A fallback in case there is no PM info available */
756840c2bafSJoseph Cihula 	tboot_shutdown(TB_SHUTDOWN_HALT);
7574d022e35SMiguel Boton }
7584d022e35SMiguel Boton 
759404f6aacSKees Cook struct machine_ops machine_ops __ro_after_init = {
760416e2d63SJody Belka 	.power_off = native_machine_power_off,
761416e2d63SJody Belka 	.shutdown = native_machine_shutdown,
762416e2d63SJody Belka 	.emergency_restart = native_machine_emergency_restart,
763416e2d63SJody Belka 	.restart = native_machine_restart,
764ed23dc6fSGlauber Costa 	.halt = native_machine_halt,
7652965faa5SDave Young #ifdef CONFIG_KEXEC_CORE
766ed23dc6fSGlauber Costa 	.crash_shutdown = native_machine_crash_shutdown,
767ed23dc6fSGlauber Costa #endif
7684d022e35SMiguel Boton };
769416e2d63SJody Belka 
770416e2d63SJody Belka void machine_power_off(void)
771416e2d63SJody Belka {
772416e2d63SJody Belka 	machine_ops.power_off();
773416e2d63SJody Belka }
774416e2d63SJody Belka 
775416e2d63SJody Belka void machine_shutdown(void)
776416e2d63SJody Belka {
777416e2d63SJody Belka 	machine_ops.shutdown();
778416e2d63SJody Belka }
779416e2d63SJody Belka 
780416e2d63SJody Belka void machine_emergency_restart(void)
781416e2d63SJody Belka {
782d176720dSEduardo Habkost 	__machine_emergency_restart(1);
783416e2d63SJody Belka }
784416e2d63SJody Belka 
785416e2d63SJody Belka void machine_restart(char *cmd)
786416e2d63SJody Belka {
787416e2d63SJody Belka 	machine_ops.restart(cmd);
788416e2d63SJody Belka }
789416e2d63SJody Belka 
790416e2d63SJody Belka void machine_halt(void)
791416e2d63SJody Belka {
792416e2d63SJody Belka 	machine_ops.halt();
793416e2d63SJody Belka }
794416e2d63SJody Belka 
7952965faa5SDave Young #ifdef CONFIG_KEXEC_CORE
796ed23dc6fSGlauber Costa void machine_crash_shutdown(struct pt_regs *regs)
797ed23dc6fSGlauber Costa {
798ed23dc6fSGlauber Costa 	machine_ops.crash_shutdown(regs);
799ed23dc6fSGlauber Costa }
800ed23dc6fSGlauber Costa #endif
8012ddded21SEduardo Habkost 
8022ddded21SEduardo Habkost 
8035bc32950SXunlei Pang /* This is the CPU performing the emergency shutdown work. */
8045bc32950SXunlei Pang int crashing_cpu = -1;
8055bc32950SXunlei Pang 
806bb8dd270SEduardo Habkost #if defined(CONFIG_SMP)
8072ddded21SEduardo Habkost 
8082ddded21SEduardo Habkost static nmi_shootdown_cb shootdown_callback;
8092ddded21SEduardo Habkost 
8102ddded21SEduardo Habkost static atomic_t waiting_for_crash_ipi;
81158c5661fSHidehiro Kawai static int crash_ipi_issued;
8122ddded21SEduardo Habkost 
8139c48f1c6SDon Zickus static int crash_nmi_callback(unsigned int val, struct pt_regs *regs)
8142ddded21SEduardo Habkost {
8152ddded21SEduardo Habkost 	int cpu;
8162ddded21SEduardo Habkost 
8172ddded21SEduardo Habkost 	cpu = raw_smp_processor_id();
8182ddded21SEduardo Habkost 
819144d102bSMichael D Labriola 	/*
820144d102bSMichael D Labriola 	 * Don't do anything if this handler is invoked on crashing cpu.
8212ddded21SEduardo Habkost 	 * Otherwise, system will completely hang. Crashing cpu can get
8222ddded21SEduardo Habkost 	 * an NMI if system was initially booted with nmi_watchdog parameter.
8232ddded21SEduardo Habkost 	 */
8242ddded21SEduardo Habkost 	if (cpu == crashing_cpu)
8259c48f1c6SDon Zickus 		return NMI_HANDLED;
8262ddded21SEduardo Habkost 	local_irq_disable();
8272ddded21SEduardo Habkost 
8289c48f1c6SDon Zickus 	shootdown_callback(cpu, regs);
8292ddded21SEduardo Habkost 
8302ddded21SEduardo Habkost 	atomic_dec(&waiting_for_crash_ipi);
8312ddded21SEduardo Habkost 	/* Assume hlt works */
8322ddded21SEduardo Habkost 	halt();
8332ddded21SEduardo Habkost 	for (;;)
8342ddded21SEduardo Habkost 		cpu_relax();
8352ddded21SEduardo Habkost 
8369c48f1c6SDon Zickus 	return NMI_HANDLED;
8372ddded21SEduardo Habkost }
8382ddded21SEduardo Habkost 
839144d102bSMichael D Labriola /*
840144d102bSMichael D Labriola  * Halt all other CPUs, calling the specified function on each of them
841bb8dd270SEduardo Habkost  *
842bb8dd270SEduardo Habkost  * This function can be used to halt all other CPUs on crash
843bb8dd270SEduardo Habkost  * or emergency reboot time. The function passed as parameter
844bb8dd270SEduardo Habkost  * will be called inside a NMI handler on all CPUs.
845bb8dd270SEduardo Habkost  */
8462ddded21SEduardo Habkost void nmi_shootdown_cpus(nmi_shootdown_cb callback)
8472ddded21SEduardo Habkost {
8482ddded21SEduardo Habkost 	unsigned long msecs;
849c415b3dcSEduardo Habkost 	local_irq_disable();
8502ddded21SEduardo Habkost 
8512ddded21SEduardo Habkost 	/* Make a note of crashing cpu. Will be used in NMI callback. */
8522ddded21SEduardo Habkost 	crashing_cpu = safe_smp_processor_id();
8532ddded21SEduardo Habkost 
8542ddded21SEduardo Habkost 	shootdown_callback = callback;
8552ddded21SEduardo Habkost 
8562ddded21SEduardo Habkost 	atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1);
8572ddded21SEduardo Habkost 	/* Would it be better to replace the trap vector here? */
8589c48f1c6SDon Zickus 	if (register_nmi_handler(NMI_LOCAL, crash_nmi_callback,
8599c48f1c6SDon Zickus 				 NMI_FLAG_FIRST, "crash"))
860144d102bSMichael D Labriola 		return;		/* Return what? */
861144d102bSMichael D Labriola 	/*
862144d102bSMichael D Labriola 	 * Ensure the new callback function is set before sending
8632ddded21SEduardo Habkost 	 * out the NMI
8642ddded21SEduardo Habkost 	 */
8652ddded21SEduardo Habkost 	wmb();
8662ddded21SEduardo Habkost 
86722ca7ee9SThomas Gleixner 	apic_send_IPI_allbutself(NMI_VECTOR);
8682ddded21SEduardo Habkost 
86958c5661fSHidehiro Kawai 	/* Kick CPUs looping in NMI context. */
87058c5661fSHidehiro Kawai 	WRITE_ONCE(crash_ipi_issued, 1);
87158c5661fSHidehiro Kawai 
8722ddded21SEduardo Habkost 	msecs = 1000; /* Wait at most a second for the other cpus to stop */
8732ddded21SEduardo Habkost 	while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) {
8742ddded21SEduardo Habkost 		mdelay(1);
8752ddded21SEduardo Habkost 		msecs--;
8762ddded21SEduardo Habkost 	}
8772ddded21SEduardo Habkost 
8782ddded21SEduardo Habkost 	/* Leave the nmi callback set */
8792ddded21SEduardo Habkost }
88058c5661fSHidehiro Kawai 
881b279d67dSHidehiro Kawai /*
882b279d67dSHidehiro Kawai  * Check if the crash dumping IPI got issued and if so, call its callback
883b279d67dSHidehiro Kawai  * directly. This function is used when we have already been in NMI handler.
884b279d67dSHidehiro Kawai  * It doesn't return.
885b279d67dSHidehiro Kawai  */
886b279d67dSHidehiro Kawai void run_crash_ipi_callback(struct pt_regs *regs)
887b279d67dSHidehiro Kawai {
888b279d67dSHidehiro Kawai 	if (crash_ipi_issued)
889b279d67dSHidehiro Kawai 		crash_nmi_callback(0, regs);
890b279d67dSHidehiro Kawai }
891b279d67dSHidehiro Kawai 
89258c5661fSHidehiro Kawai /* Override the weak function in kernel/panic.c */
89358c5661fSHidehiro Kawai void nmi_panic_self_stop(struct pt_regs *regs)
89458c5661fSHidehiro Kawai {
89558c5661fSHidehiro Kawai 	while (1) {
896b279d67dSHidehiro Kawai 		/* If no CPU is preparing crash dump, we simply loop here. */
897b279d67dSHidehiro Kawai 		run_crash_ipi_callback(regs);
89858c5661fSHidehiro Kawai 		cpu_relax();
89958c5661fSHidehiro Kawai 	}
90058c5661fSHidehiro Kawai }
90158c5661fSHidehiro Kawai 
902bb8dd270SEduardo Habkost #else /* !CONFIG_SMP */
903bb8dd270SEduardo Habkost void nmi_shootdown_cpus(nmi_shootdown_cb callback)
904bb8dd270SEduardo Habkost {
905bb8dd270SEduardo Habkost 	/* No other CPUs to shoot down */
906bb8dd270SEduardo Habkost }
907b279d67dSHidehiro Kawai 
908b279d67dSHidehiro Kawai void run_crash_ipi_callback(struct pt_regs *regs)
909b279d67dSHidehiro Kawai {
910b279d67dSHidehiro Kawai }
9112ddded21SEduardo Habkost #endif
912