aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-03-29 09:21:30 -0400
committerTom Rini <trini@konsulko.com>2019-03-29 09:21:30 -0400
commitb357ae5ed697da038d0ee6807f308f9177fcb3a7 (patch)
treea0bdfd1da0b75bd64e7e8f939e1f16ea76a07660 /include
parent1111ff671f65a71f8577fe145b53f1f0c920faa4 (diff)
parent9ba712dc84e8824055c368a385794f69aabab661 (diff)
downloadu-boot-b357ae5ed697da038d0ee6807f308f9177fcb3a7.zip
u-boot-b357ae5ed697da038d0ee6807f308f9177fcb3a7.tar.gz
u-boot-b357ae5ed697da038d0ee6807f308f9177fcb3a7.tar.bz2
Merge tag 'efi-2019-04-rc5-2' of git://git.denx.de/u-boot-efi
Pull request for UEFI system for v2019.04-rc5-2 This patch series contains a bug fix for a double free in a UEFI unit test. The other patches are documentation only (except for the definition of two additional constants).
Diffstat (limited to 'include')
-rw-r--r--include/efi_api.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h
index ccf6086..8647bfa 100644
--- a/include/efi_api.h
+++ b/include/efi_api.h
@@ -1322,7 +1322,9 @@ struct efi_pxe {
#define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID \
EFI_GUID(0x964e5b22, 0x6459, 0x11d2, \
0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b)
-#define EFI_FILE_PROTOCOL_REVISION 0x00010000
+#define EFI_FILE_PROTOCOL_REVISION 0x00010000
+#define EFI_FILE_PROTOCOL_REVISION2 0x00020000
+#define EFI_FILE_PROTOCOL_LATEST_REVISION EFI_FILE_PROTOCOL_REVISION2
struct efi_file_handle {
u64 rev;
@@ -1346,6 +1348,10 @@ struct efi_file_handle {
const efi_guid_t *info_type, efi_uintn_t buffer_size,
void *buffer);
efi_status_t (EFIAPI *flush)(struct efi_file_handle *file);
+ /*
+ * TODO: We currently only support EFI file protocol revision 0x00010000
+ * while UEFI specs 2.4 - 2.7 prescribe revision 0x00020000.
+ */
};
#define EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION 0x00010000