mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
efi/reboot: Allow powering off machines using EFI
Not only can EfiResetSystem() be used to reboot, it can also be used to power down machines. By and large, this functionality doesn't work very well across the range of EFI machines in the wild, so it should definitely only be used as a last resort. In an ideal world, this wouldn't be needed at all. Unfortunately, we're starting to see machines where EFI is the *only* reliable way to power down, and nothing else, not PCI, not ACPI, works. efi_poweroff_required() should be implemented on a per-architecture basis, since exactly when we should be using EFI runtime services is a platform-specific decision. There's no analogue for reboot because each architecture handles reboot very differently - the x86 code in particular is pretty complex. Patches to enable this for specific classes of hardware will be submitted separately. Tested-by: Mark Salter <msalter@redhat.com> Signed-off-by: Matt Fleming <matt.fleming@intel.com>
This commit is contained in:
parent
8562c99cdd
commit
0c5ed61adb
@ -24,3 +24,25 @@ void efi_reboot(enum reboot_mode reboot_mode, const char *__unused)
|
|||||||
|
|
||||||
efi.reset_system(efi_mode, EFI_SUCCESS, 0, NULL);
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int __init efi_shutdown_init(void)
|
||||||
|
{
|
||||||
|
if (!efi_enabled(EFI_RUNTIME_SERVICES))
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
|
if (efi_poweroff_required())
|
||||||
|
pm_power_off = efi_power_off;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
late_initcall(efi_shutdown_init);
|
||||||
|
@ -878,6 +878,8 @@ extern void efi_reserve_boot_services(void);
|
|||||||
extern int efi_get_fdt_params(struct efi_fdt_params *params, int verbose);
|
extern int efi_get_fdt_params(struct efi_fdt_params *params, int verbose);
|
||||||
extern struct efi_memory_map memmap;
|
extern struct efi_memory_map memmap;
|
||||||
|
|
||||||
|
extern bool efi_poweroff_required(void);
|
||||||
|
|
||||||
/* Iterate through an efi_memory_map */
|
/* Iterate through an efi_memory_map */
|
||||||
#define for_each_efi_memory_desc(m, md) \
|
#define for_each_efi_memory_desc(m, md) \
|
||||||
for ((md) = (m)->map; \
|
for ((md) = (m)->map; \
|
||||||
|
Loading…
Reference in New Issue
Block a user