hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2014 Intel Corporation; author Matt Fleming
 * Copyright (c) 2014 Red Hat, Inc., Mark Salter <msalter@redhat.com>
 */
#include <linux/efi.h>
#include <linux/reboot.h>
 
static void (*orig_pm_power_off)(void);
 
int efi_reboot_quirk_mode = -1;
 
void efi_reboot(enum reboot_mode reboot_mode, const char *__unused)
{
   const char *str[] = { "cold", "warm", "shutdown", "platform" };
   int efi_mode, cap_reset_mode;
 
   if (!efi_rt_services_supported(EFI_RT_SUPPORTED_RESET_SYSTEM))
       return;
 
   switch (reboot_mode) {
   case REBOOT_WARM:
   case REBOOT_SOFT:
       efi_mode = EFI_RESET_WARM;
       break;
   default:
       efi_mode = EFI_RESET_COLD;
       break;
   }
 
   /*
    * If a quirk forced an EFI reset mode, always use that.
    */
   if (efi_reboot_quirk_mode != -1)
       efi_mode = efi_reboot_quirk_mode;
 
   if (efi_capsule_pending(&cap_reset_mode)) {
       if (efi_mode != cap_reset_mode)
           printk(KERN_CRIT "efi: %s reset requested but pending "
                  "capsule update requires %s reset... Performing "
                  "%s reset.\n", str[efi_mode], str[cap_reset_mode],
                  str[cap_reset_mode]);
       efi_mode = cap_reset_mode;
   }
 
   efi.reset_system(efi_mode, EFI_SUCCESS, 0, NULL);
}
 
bool __weak efi_poweroff_required(void)
{
   return false;
}
 
static void efi_power_off(void)
{
   efi.reset_system(EFI_RESET_SHUTDOWN, EFI_SUCCESS, 0, NULL);
   /*
    * The above call should not return, if it does fall back to
    * the original power off method (typically ACPI poweroff).
    */
   if (orig_pm_power_off)
       orig_pm_power_off();
}
 
static int __init efi_shutdown_init(void)
{
   if (!efi_rt_services_supported(EFI_RT_SUPPORTED_RESET_SYSTEM))
       return -ENODEV;
 
   if (efi_poweroff_required()) {
       orig_pm_power_off = pm_power_off;
       pm_power_off = efi_power_off;
   }
 
   return 0;
}
late_initcall(efi_shutdown_init);