summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2017-02-20 04:10:51 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-03-09 07:36:14 +0100
commit2f13691f1fca693be18a49262a4c6cc2b40664d7 (patch)
tree9630bd216fae28ebdfe1985028b04bdeae08021d /include
parenta371ed0f3c11b8993e56887d3c700fd2678f2942 (diff)
downloadbarebox-2f13691f1fca693be18a49262a4c6cc2b40664d7.tar.gz
barebox-2f13691f1fca693be18a49262a4c6cc2b40664d7.tar.xz
efi: add efi handle dump command
so we can inspect easly what is supported by the EFI implementation we running on Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/efi.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/efi.h b/include/efi.h
index d1b331ce56..5691f4e8fd 100644
--- a/include/efi.h
+++ b/include/efi.h
@@ -480,6 +480,14 @@ extern efi_runtime_services_t *RT;
#define EFI_SYSTEMD_VENDOR_GUID \
EFI_GUID(0x4a67b082, 0x0a4c, 0x41cf, 0xb6, 0xc7, 0x44, 0x0b, 0x29, 0xbb, 0x8c, 0x4f)
+/* for TPM 1.2 */
+#define EFI_TCG_PROTOCOL_GUID \
+ EFI_GUID(0xf541796d, 0xa62e, 0x4954, 0xa7, 0x75, 0x95, 0x84, 0xf6, 0x1b, 0x9c, 0xdd)
+
+/* for TPM 2.0 */
+#define EFI_TCG2_PROTOCOL_GUID \
+ EFI_GUID(0x607f766c, 0x7455, 0x42be, 0x93, 0x0b, 0xe4, 0xd7, 0x6d, 0xb2, 0x72, 0x0f)
+
extern efi_guid_t efi_file_info_id;
extern efi_guid_t efi_simple_file_system_protocol_guid;
extern efi_guid_t efi_device_path_protocol_guid;