mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
efi_loader: add missing EFI_RESET_PLATFORM_SPECIFIC
EFI_RESET_PLATFORM_SPECIFIC is one of the values that can be used for the EFI service ResetSystem. The missing definition is added. The value has to handled in efi_reset_system(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
b944e47111
commit
482fc90c0a
5 changed files with 6 additions and 1 deletions
|
@ -644,6 +644,7 @@ void __efi_runtime EFIAPI efi_reset_system(
|
|||
switch (reset_type) {
|
||||
case EFI_RESET_COLD:
|
||||
case EFI_RESET_WARM:
|
||||
case EFI_RESET_PLATFORM_SPECIFIC:
|
||||
reset_cpu(0);
|
||||
break;
|
||||
case EFI_RESET_SHUTDOWN:
|
||||
|
|
|
@ -146,6 +146,7 @@ void __efi_runtime EFIAPI efi_reset_system(
|
|||
switch (reset_type) {
|
||||
case EFI_RESET_COLD:
|
||||
case EFI_RESET_WARM:
|
||||
case EFI_RESET_PLATFORM_SPECIFIC:
|
||||
psci_system_reset();
|
||||
break;
|
||||
case EFI_RESET_SHUTDOWN:
|
||||
|
|
|
@ -63,6 +63,7 @@ void __efi_runtime EFIAPI efi_reset_system(
|
|||
switch (reset_type) {
|
||||
case EFI_RESET_COLD:
|
||||
case EFI_RESET_WARM:
|
||||
case EFI_RESET_PLATFORM_SPECIFIC:
|
||||
reset_cpu(0);
|
||||
break;
|
||||
case EFI_RESET_SHUTDOWN:
|
||||
|
|
|
@ -180,7 +180,8 @@ struct efi_boot_services {
|
|||
enum efi_reset_type {
|
||||
EFI_RESET_COLD = 0,
|
||||
EFI_RESET_WARM = 1,
|
||||
EFI_RESET_SHUTDOWN = 2
|
||||
EFI_RESET_SHUTDOWN = 2,
|
||||
EFI_RESET_PLATFORM_SPECIFIC = 3,
|
||||
};
|
||||
|
||||
/* EFI Runtime Services table */
|
||||
|
|
|
@ -91,6 +91,7 @@ static void EFIAPI efi_reset_system_boottime(
|
|||
switch (reset_type) {
|
||||
case EFI_RESET_COLD:
|
||||
case EFI_RESET_WARM:
|
||||
case EFI_RESET_PLATFORM_SPECIFIC:
|
||||
do_reset(NULL, 0, 0, NULL);
|
||||
break;
|
||||
case EFI_RESET_SHUTDOWN:
|
||||
|
|
Loading…
Add table
Reference in a new issue