diff options
| author | Tom Rini <[email protected]> | 2022-09-03 07:44:22 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-09-03 07:44:22 -0400 |
| commit | 8710676635574bb457159fd6fa1c92d065ddb144 (patch) | |
| tree | 959b6b5ea052096dd40a8e09e3c74c5c7fb8fde8 /include | |
| parent | 67fe8cc0016756f3479288b3f67d59a517e512d5 (diff) | |
| parent | fbc04c0dab139c12ed61500fac3cc204009e8c54 (diff) | |
Merge tag 'efi-2022-10-rc4-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request of efi-2022-10-rc4-2
UEFI:
* provide EFI Conformance Profile Table
* fix display of NVMe EUI-64
* fixes for Simple Text Input Ex Protocol
* fix exception unit-test on non-x86 sandbox
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_api.h | 16 | ||||
| -rw-r--r-- | include/efi_loader.h | 7 |
2 files changed, 23 insertions, 0 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 83c01085fde..9bb0d44ac8d 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -226,6 +226,22 @@ enum efi_reset_type { EFI_GUID(0x6dcbd5ed, 0xe82d, 0x4c44, 0xbd, 0xa1, \ 0x71, 0x94, 0x19, 0x9a, 0xd9, 0x2a) +#define EFI_CONFORMANCE_PROFILES_TABLE_GUID \ + EFI_GUID(0x36122546, 0xf7ef, 0x4c8f, 0xbd, 0x9b, \ + 0xeb, 0x85, 0x25, 0xb5, 0x0c, 0x0b) + +#define EFI_CONFORMANCE_PROFILES_TABLE_VERSION 1 + +#define EFI_CONFORMANCE_PROFILE_EBBR_2_0_GUID \ + EFI_GUID(0xcce33c35, 0x74ac, 0x4087, 0xbc, 0xe7, \ + 0x8b, 0x29, 0xb0, 0x2e, 0xeb, 0x27) + +struct efi_conformance_profiles_table { + u16 version; + u16 number_of_profiles; + efi_guid_t conformance_profiles[]; +} __packed; + struct efi_capsule_header { efi_guid_t capsule_guid; u32 header_size; diff --git a/include/efi_loader.h b/include/efi_loader.h index 9611aec2deb..545ba06d946 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -1053,6 +1053,13 @@ extern u8 num_image_type_guids; efi_status_t efi_esrt_register(void); /** + * efi_ecpt_register() - Install the ECPT system table. + * + * Return: status code + */ +efi_status_t efi_ecpt_register(void); + +/** * efi_esrt_populate() - Populates the ESRT entries from the FMP instances * present in the system. * If an ESRT already exists, the old ESRT is replaced in the system table. |
