1 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
3 #include <linux/module.h>
4 #include <linux/reboot.h>
5 #include <linux/init.h>
9 #include <linux/sched.h>
10 #include <linux/tboot.h>
11 #include <linux/delay.h>
12 #include <acpi/reboot.h>
17 #include <asm/pgtable.h>
18 #include <asm/proto.h>
19 #include <asm/reboot_fixups.h>
20 #include <asm/reboot.h>
21 #include <asm/pci_x86.h>
22 #include <asm/virtext.h>
27 #include <linux/ctype.h>
28 #include <linux/mc146818rtc.h>
29 #include <asm/realmode.h>
30 #include <asm/x86_init.h>
33 * Power off function, if any
35 void (*pm_power_off
)(void);
36 EXPORT_SYMBOL(pm_power_off
);
38 static const struct desc_ptr no_idt
= {};
41 * This is set if we need to go through the 'emergency' path.
42 * When machine_emergency_restart() is called, we may be on
43 * an inconsistent state and won't be able to do a clean cleanup
45 static int reboot_emergency
;
47 /* This is set by the PCI code if either type 1 or type 2 PCI is detected */
48 bool port_cf9_safe
= false;
51 * Reboot options and system auto-detection code provided by
52 * Dell Inc. so their systems "just work". :-)
56 * Some machines require the "reboot=b" or "reboot=k" commandline options,
57 * this quirk makes that automatic.
59 static int __init
set_bios_reboot(const struct dmi_system_id
*d
)
61 if (reboot_type
!= BOOT_BIOS
) {
62 reboot_type
= BOOT_BIOS
;
63 pr_info("%s series board detected. Selecting %s-method for reboots.\n",
69 void __noreturn
machine_real_restart(unsigned int type
)
74 * Write zero to CMOS register number 0x0f, which the BIOS POST
75 * routine will recognize as telling it to do a proper reboot. (Well
76 * that's what this book in front of me says -- it may only apply to
77 * the Phoenix BIOS though, it's not clear). At the same time,
78 * disable NMIs by setting the top bit in the CMOS address register,
79 * as we're about to do peculiar things to the CPU. I'm not sure if
80 * `outb_p' is needed instead of just `outb'. Use it to be on the
81 * safe side. (Yes, CMOS_WRITE does outb_p's. - Paul G.)
84 CMOS_WRITE(0x00, 0x8f);
85 spin_unlock(&rtc_lock
);
88 * Switch back to the initial page table.
91 load_cr3(initial_page_table
);
93 write_cr3(real_mode_header
->trampoline_pgd
);
96 /* Jump to the identity-mapped low memory code */
98 asm volatile("jmpl *%0" : :
99 "rm" (real_mode_header
->machine_real_restart_asm
),
102 asm volatile("ljmpl *%0" : :
103 "m" (real_mode_header
->machine_real_restart_asm
),
108 #ifdef CONFIG_APM_MODULE
109 EXPORT_SYMBOL(machine_real_restart
);
113 * Some Apple MacBook and MacBookPro's needs reboot=p to be able to reboot
115 static int __init
set_pci_reboot(const struct dmi_system_id
*d
)
117 if (reboot_type
!= BOOT_CF9
) {
118 reboot_type
= BOOT_CF9
;
119 pr_info("%s series board detected. Selecting %s-method for reboots.\n",
125 static int __init
set_kbd_reboot(const struct dmi_system_id
*d
)
127 if (reboot_type
!= BOOT_KBD
) {
128 reboot_type
= BOOT_KBD
;
129 pr_info("%s series board detected. Selecting %s-method for reboot.\n",
136 * This is a single dmi_table handling all reboot quirks.
138 static struct dmi_system_id __initdata reboot_dmi_table
[] = {
141 { /* Handle reboot issue on Acer Aspire one */
142 .callback
= set_kbd_reboot
,
143 .ident
= "Acer Aspire One A110",
145 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
146 DMI_MATCH(DMI_PRODUCT_NAME
, "AOA110"),
151 { /* Handle problems with rebooting on Apple MacBook5 */
152 .callback
= set_pci_reboot
,
153 .ident
= "Apple MacBook5",
155 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
156 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBook5"),
159 { /* Handle problems with rebooting on Apple MacBookPro5 */
160 .callback
= set_pci_reboot
,
161 .ident
= "Apple MacBookPro5",
163 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
164 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro5"),
167 { /* Handle problems with rebooting on Apple Macmini3,1 */
168 .callback
= set_pci_reboot
,
169 .ident
= "Apple Macmini3,1",
171 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
172 DMI_MATCH(DMI_PRODUCT_NAME
, "Macmini3,1"),
175 { /* Handle problems with rebooting on the iMac9,1. */
176 .callback
= set_pci_reboot
,
177 .ident
= "Apple iMac9,1",
179 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
180 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac9,1"),
185 { /* Handle problems with rebooting on ASUS P4S800 */
186 .callback
= set_bios_reboot
,
187 .ident
= "ASUS P4S800",
189 DMI_MATCH(DMI_BOARD_VENDOR
, "ASUSTeK Computer INC."),
190 DMI_MATCH(DMI_BOARD_NAME
, "P4S800"),
195 { /* Handle problems with rebooting on Dell DXP061 */
196 .callback
= set_bios_reboot
,
197 .ident
= "Dell DXP061",
199 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
200 DMI_MATCH(DMI_PRODUCT_NAME
, "Dell DXP061"),
203 { /* Handle problems with rebooting on Dell E520's */
204 .callback
= set_bios_reboot
,
205 .ident
= "Dell E520",
207 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
208 DMI_MATCH(DMI_PRODUCT_NAME
, "Dell DM061"),
211 { /* Handle problems with rebooting on the Latitude E5410. */
212 .callback
= set_pci_reboot
,
213 .ident
= "Dell Latitude E5410",
215 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
216 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude E5410"),
219 { /* Handle problems with rebooting on the Latitude E5420. */
220 .callback
= set_pci_reboot
,
221 .ident
= "Dell Latitude E5420",
223 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
224 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude E5420"),
227 { /* Handle problems with rebooting on the Latitude E6320. */
228 .callback
= set_pci_reboot
,
229 .ident
= "Dell Latitude E6320",
231 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
232 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude E6320"),
235 { /* Handle problems with rebooting on the Latitude E6420. */
236 .callback
= set_pci_reboot
,
237 .ident
= "Dell Latitude E6420",
239 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
240 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude E6420"),
243 { /* Handle problems with rebooting on Dell Optiplex 330 with 0KP561 */
244 .callback
= set_bios_reboot
,
245 .ident
= "Dell OptiPlex 330",
247 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
248 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 330"),
249 DMI_MATCH(DMI_BOARD_NAME
, "0KP561"),
252 { /* Handle problems with rebooting on Dell Optiplex 360 with 0T656F */
253 .callback
= set_bios_reboot
,
254 .ident
= "Dell OptiPlex 360",
256 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
257 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 360"),
258 DMI_MATCH(DMI_BOARD_NAME
, "0T656F"),
261 { /* Handle problems with rebooting on Dell Optiplex 745's SFF */
262 .callback
= set_bios_reboot
,
263 .ident
= "Dell OptiPlex 745",
265 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
266 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 745"),
269 { /* Handle problems with rebooting on Dell Optiplex 745's DFF */
270 .callback
= set_bios_reboot
,
271 .ident
= "Dell OptiPlex 745",
273 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
274 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 745"),
275 DMI_MATCH(DMI_BOARD_NAME
, "0MM599"),
278 { /* Handle problems with rebooting on Dell Optiplex 745 with 0KW626 */
279 .callback
= set_bios_reboot
,
280 .ident
= "Dell OptiPlex 745",
282 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
283 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 745"),
284 DMI_MATCH(DMI_BOARD_NAME
, "0KW626"),
287 { /* Handle problems with rebooting on Dell OptiPlex 760 with 0G919G */
288 .callback
= set_bios_reboot
,
289 .ident
= "Dell OptiPlex 760",
291 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
292 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 760"),
293 DMI_MATCH(DMI_BOARD_NAME
, "0G919G"),
296 { /* Handle problems with rebooting on the OptiPlex 990. */
297 .callback
= set_pci_reboot
,
298 .ident
= "Dell OptiPlex 990",
300 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
301 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 990"),
304 { /* Handle problems with rebooting on Dell 300's */
305 .callback
= set_bios_reboot
,
306 .ident
= "Dell PowerEdge 300",
308 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Computer Corporation"),
309 DMI_MATCH(DMI_PRODUCT_NAME
, "PowerEdge 300/"),
312 { /* Handle problems with rebooting on Dell 1300's */
313 .callback
= set_bios_reboot
,
314 .ident
= "Dell PowerEdge 1300",
316 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Computer Corporation"),
317 DMI_MATCH(DMI_PRODUCT_NAME
, "PowerEdge 1300/"),
320 { /* Handle problems with rebooting on Dell 2400's */
321 .callback
= set_bios_reboot
,
322 .ident
= "Dell PowerEdge 2400",
324 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Computer Corporation"),
325 DMI_MATCH(DMI_PRODUCT_NAME
, "PowerEdge 2400"),
328 { /* Handle problems with rebooting on the Dell PowerEdge C6100. */
329 .callback
= set_pci_reboot
,
330 .ident
= "Dell PowerEdge C6100",
332 DMI_MATCH(DMI_SYS_VENDOR
, "Dell"),
333 DMI_MATCH(DMI_PRODUCT_NAME
, "C6100"),
336 { /* Handle problems with rebooting on the Precision M6600. */
337 .callback
= set_pci_reboot
,
338 .ident
= "Dell Precision M6600",
340 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
341 DMI_MATCH(DMI_PRODUCT_NAME
, "Precision M6600"),
344 { /* Handle problems with rebooting on Dell T5400's */
345 .callback
= set_bios_reboot
,
346 .ident
= "Dell Precision T5400",
348 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
349 DMI_MATCH(DMI_PRODUCT_NAME
, "Precision WorkStation T5400"),
352 { /* Handle problems with rebooting on Dell T7400's */
353 .callback
= set_bios_reboot
,
354 .ident
= "Dell Precision T7400",
356 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
357 DMI_MATCH(DMI_PRODUCT_NAME
, "Precision WorkStation T7400"),
360 { /* Handle problems with rebooting on Dell XPS710 */
361 .callback
= set_bios_reboot
,
362 .ident
= "Dell XPS710",
364 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
365 DMI_MATCH(DMI_PRODUCT_NAME
, "Dell XPS710"),
369 /* Hewlett-Packard */
370 { /* Handle problems with rebooting on HP laptops */
371 .callback
= set_bios_reboot
,
372 .ident
= "HP Compaq Laptop",
374 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
375 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Compaq"),
380 { /* Handle problems with rebooting on Sony VGN-Z540N */
381 .callback
= set_bios_reboot
,
382 .ident
= "Sony VGN-Z540N",
384 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
385 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-Z540N"),
392 static int __init
reboot_init(void)
395 * Only do the DMI check if reboot_type hasn't been overridden
396 * on the command line
399 dmi_check_system(reboot_dmi_table
);
402 core_initcall(reboot_init
);
404 static inline void kb_wait(void)
408 for (i
= 0; i
< 0x10000; i
++) {
409 if ((inb(0x64) & 0x02) == 0)
415 static void vmxoff_nmi(int cpu
, struct pt_regs
*regs
)
417 cpu_emergency_vmxoff();
420 /* Use NMIs as IPIs to tell all CPUs to disable virtualization */
421 static void emergency_vmx_disable_all(void)
423 /* Just make sure we won't change CPUs while doing this */
427 * We need to disable VMX on all CPUs before rebooting, otherwise
428 * we risk hanging up the machine, because the CPU ignore INIT
429 * signals when VMX is enabled.
431 * We can't take any locks and we may be on an inconsistent
432 * state, so we use NMIs as IPIs to tell the other CPUs to disable
435 * For safety, we will avoid running the nmi_shootdown_cpus()
436 * stuff unnecessarily, but we don't have a way to check
437 * if other CPUs have VMX enabled. So we will call it only if the
438 * CPU we are running on has VMX enabled.
440 * We will miss cases where VMX is not enabled on all CPUs. This
441 * shouldn't do much harm because KVM always enable VMX on all
442 * CPUs anyway. But we can miss it on the small window where KVM
443 * is still enabling VMX.
445 if (cpu_has_vmx() && cpu_vmx_enabled()) {
446 /* Disable VMX on this CPU. */
449 /* Halt and disable VMX on the other CPUs */
450 nmi_shootdown_cpus(vmxoff_nmi
);
456 void __attribute__((weak
)) mach_reboot_fixups(void)
461 * Windows compatible x86 hardware expects the following on reboot:
463 * 1) If the FADT has the ACPI reboot register flag set, try it
464 * 2) If still alive, write to the keyboard controller
465 * 3) If still alive, write to the ACPI reboot register again
466 * 4) If still alive, write to the keyboard controller again
468 * If the machine is still alive at this stage, it gives up. We default to
469 * following the same pattern, except that if we're still alive after (4) we'll
470 * try to force a triple fault and then cycle between hitting the keyboard
471 * controller and doing that
473 static void native_machine_emergency_restart(void)
477 int orig_reboot_type
= reboot_type
;
480 if (reboot_emergency
)
481 emergency_vmx_disable_all();
483 tboot_shutdown(TB_SHUTDOWN_REBOOT
);
485 /* Tell the BIOS if we want cold or warm reboot */
486 mode
= reboot_mode
== REBOOT_WARM
? 0x1234 : 0;
487 *((unsigned short *)__va(0x472)) = mode
;
490 /* Could also try the reset bit in the Hammer NB */
491 switch (reboot_type
) {
493 mach_reboot_fixups(); /* For board specific fixups */
495 for (i
= 0; i
< 10; i
++) {
498 outb(0xfe, 0x64); /* Pulse reset low */
501 if (attempt
== 0 && orig_reboot_type
== BOOT_ACPI
) {
503 reboot_type
= BOOT_ACPI
;
505 reboot_type
= BOOT_TRIPLE
;
511 __asm__
__volatile__("int3");
513 reboot_type
= BOOT_KBD
;
517 machine_real_restart(MRR_BIOS
);
519 reboot_type
= BOOT_KBD
;
524 reboot_type
= BOOT_KBD
;
528 if (efi_enabled(EFI_RUNTIME_SERVICES
))
529 efi
.reset_system(reboot_mode
== REBOOT_WARM
?
532 EFI_SUCCESS
, 0, NULL
);
533 reboot_type
= BOOT_KBD
;
537 port_cf9_safe
= true;
542 u8 reboot_code
= reboot_mode
== REBOOT_WARM
?
544 u8 cf9
= inb(0xcf9) & ~reboot_code
;
545 outb(cf9
|2, 0xcf9); /* Request hard reset */
547 /* Actually do the reset */
548 outb(cf9
|reboot_code
, 0xcf9);
551 reboot_type
= BOOT_KBD
;
557 void native_machine_shutdown(void)
559 /* Stop the cpus and apics */
560 #ifdef CONFIG_X86_IO_APIC
562 * Disabling IO APIC before local APIC is a workaround for
563 * erratum AVR31 in "Intel Atom Processor C2000 Product Family
564 * Specification Update". In this situation, interrupts that target
565 * a Logical Processor whose Local APIC is either in the process of
566 * being hardware disabled or software disabled are neither delivered
567 * nor discarded. When this erratum occurs, the processor may hang.
569 * Even without the erratum, it still makes sense to quiet IO APIC
570 * before disabling Local APIC.
577 * Stop all of the others. Also disable the local irq to
578 * not receive the per-cpu timer interrupt which may trigger
579 * scheduler's load balance.
587 #ifdef CONFIG_HPET_TIMER
592 x86_platform
.iommu_shutdown();
596 static void __machine_emergency_restart(int emergency
)
598 reboot_emergency
= emergency
;
599 machine_ops
.emergency_restart();
602 static void native_machine_restart(char *__unused
)
604 pr_notice("machine restart\n");
608 __machine_emergency_restart(0);
611 static void native_machine_halt(void)
613 /* Stop other cpus and apics */
616 tboot_shutdown(TB_SHUTDOWN_HALT
);
621 static void native_machine_power_off(void)
628 /* A fallback in case there is no PM info available */
629 tboot_shutdown(TB_SHUTDOWN_HALT
);
632 struct machine_ops machine_ops
= {
633 .power_off
= native_machine_power_off
,
634 .shutdown
= native_machine_shutdown
,
635 .emergency_restart
= native_machine_emergency_restart
,
636 .restart
= native_machine_restart
,
637 .halt
= native_machine_halt
,
639 .crash_shutdown
= native_machine_crash_shutdown
,
643 void machine_power_off(void)
645 machine_ops
.power_off();
648 void machine_shutdown(void)
650 machine_ops
.shutdown();
653 void machine_emergency_restart(void)
655 __machine_emergency_restart(1);
658 void machine_restart(char *cmd
)
660 machine_ops
.restart(cmd
);
663 void machine_halt(void)
669 void machine_crash_shutdown(struct pt_regs
*regs
)
671 machine_ops
.crash_shutdown(regs
);
676 #if defined(CONFIG_SMP)
678 /* This keeps a track of which one is crashing cpu. */
679 static int crashing_cpu
;
680 static nmi_shootdown_cb shootdown_callback
;
682 static atomic_t waiting_for_crash_ipi
;
684 static int crash_nmi_callback(unsigned int val
, struct pt_regs
*regs
)
688 cpu
= raw_smp_processor_id();
691 * Don't do anything if this handler is invoked on crashing cpu.
692 * Otherwise, system will completely hang. Crashing cpu can get
693 * an NMI if system was initially booted with nmi_watchdog parameter.
695 if (cpu
== crashing_cpu
)
699 shootdown_callback(cpu
, regs
);
701 atomic_dec(&waiting_for_crash_ipi
);
702 /* Assume hlt works */
710 static void smp_send_nmi_allbutself(void)
712 apic
->send_IPI_allbutself(NMI_VECTOR
);
716 * Halt all other CPUs, calling the specified function on each of them
718 * This function can be used to halt all other CPUs on crash
719 * or emergency reboot time. The function passed as parameter
720 * will be called inside a NMI handler on all CPUs.
722 void nmi_shootdown_cpus(nmi_shootdown_cb callback
)
727 /* Make a note of crashing cpu. Will be used in NMI callback. */
728 crashing_cpu
= safe_smp_processor_id();
730 shootdown_callback
= callback
;
732 atomic_set(&waiting_for_crash_ipi
, num_online_cpus() - 1);
733 /* Would it be better to replace the trap vector here? */
734 if (register_nmi_handler(NMI_LOCAL
, crash_nmi_callback
,
735 NMI_FLAG_FIRST
, "crash"))
736 return; /* Return what? */
738 * Ensure the new callback function is set before sending
743 smp_send_nmi_allbutself();
745 msecs
= 1000; /* Wait at most a second for the other cpus to stop */
746 while ((atomic_read(&waiting_for_crash_ipi
) > 0) && msecs
) {
751 /* Leave the nmi callback set */
753 #else /* !CONFIG_SMP */
754 void nmi_shootdown_cpus(nmi_shootdown_cb callback
)
756 /* No other CPUs to shoot down */