1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2014 Intel Corporation; author Matt Fleming
4 * Copyright (c) 2014 Red Hat, Inc., Mark Salter <msalter@redhat.com>
7 #include <linux/reboot.h>
9 static void (*orig_pm_power_off
)(void);
11 int efi_reboot_quirk_mode
= -1;
13 void efi_reboot(enum reboot_mode reboot_mode
, const char *__unused
)
15 const char *str
[] = { "cold", "warm", "shutdown", "platform" };
16 int efi_mode
, cap_reset_mode
;
18 if (!efi_enabled(EFI_RUNTIME_SERVICES
))
21 switch (reboot_mode
) {
24 efi_mode
= EFI_RESET_WARM
;
27 efi_mode
= EFI_RESET_COLD
;
32 * If a quirk forced an EFI reset mode, always use that.
34 if (efi_reboot_quirk_mode
!= -1)
35 efi_mode
= efi_reboot_quirk_mode
;
37 if (efi_capsule_pending(&cap_reset_mode
)) {
38 if (efi_mode
!= cap_reset_mode
)
39 printk(KERN_CRIT
"efi: %s reset requested but pending "
40 "capsule update requires %s reset... Performing "
41 "%s reset.\n", str
[efi_mode
], str
[cap_reset_mode
],
43 efi_mode
= cap_reset_mode
;
46 efi
.reset_system(efi_mode
, EFI_SUCCESS
, 0, NULL
);
49 bool __weak
efi_poweroff_required(void)
54 static void efi_power_off(void)
56 efi
.reset_system(EFI_RESET_SHUTDOWN
, EFI_SUCCESS
, 0, NULL
);
58 * The above call should not return, if it does fall back to
59 * the original power off method (typically ACPI poweroff).
61 if (orig_pm_power_off
)
65 static int __init
efi_shutdown_init(void)
67 if (!efi_enabled(EFI_RUNTIME_SERVICES
))
70 if (efi_poweroff_required()) {
71 orig_pm_power_off
= pm_power_off
;
72 pm_power_off
= efi_power_off
;
77 late_initcall(efi_shutdown_init
);