diff options
author | Tom Rini <trini@konsulko.com> | 2020-02-26 14:49:24 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-02-26 14:49:24 -0500 |
commit | 4e293f78df03b204c0034e20a3ed165e410799d6 (patch) | |
tree | 62e1713fb51d8b3404d16bd8a2280820d02e41f7 /include | |
parent | 548ce227d3d852455c6395c0cec30af0cda77b09 (diff) | |
parent | 76be687288dc618eabd1ef643488cd5bd93f84ff (diff) |
Merge tag 'efi-2020-04-rc4' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-04-rc4
UEFI spec 2.8 errata A replaces the RuntimeServicesSupported variable
defined in UEFI spec 2.8 by the configuration table
EFI_RT_PROPERTIES_TABLE. So let's follow suit.
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_api.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 22396172e1..b7b68cb7a1 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -228,6 +228,18 @@ struct efi_capsule_header { #define EFI_RT_SUPPORTED_QUERY_CAPSULE_CAPABILITIES 0x1000 #define EFI_RT_SUPPORTED_QUERY_VARIABLE_INFO 0x2000 +#define EFI_RT_PROPERTIES_TABLE_GUID \ + EFI_GUID(0xeb66918a, 0x7eef, 0x402a, 0x84, 0x2e, \ + 0x93, 0x1d, 0x21, 0xc3, 0x8a, 0xe9) + +#define EFI_RT_PROPERTIES_TABLE_VERSION 0x1 + +struct efi_rt_properties_table { + u16 version; + u16 length; + u32 runtime_services_supported; +}; + struct efi_runtime_services { struct efi_table_hdr hdr; efi_status_t (EFIAPI *get_time)(struct efi_time *time, |