From 70b11880be19b026fff8cedc574e16a6ee4dfe95 Mon Sep 17 00:00:00 2001 From: Quan Xu Date: Thu, 15 Jan 2015 04:21:42 -0500 Subject: [PATCH] vTPM/TPM2: Add global data in vtpm_globals{} These data is for the Mini-os to access TPM 2.0 hardware. Signed-off-by: Quan Xu Acked-by: Daniel De Graaf --- vtpmmgr/vtpmmgr.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/vtpmmgr/vtpmmgr.h b/vtpmmgr/vtpmmgr.h index 2d9d153..0d0c604 100644 --- a/vtpmmgr/vtpmmgr.h +++ b/vtpmmgr/vtpmmgr.h @@ -44,6 +44,7 @@ #include "uuid.h" #include "tcg.h" #include "vtpm_manager.h" +#include "tpm2_types.h" #define RSA_KEY_SIZE 0x0800 #define RSA_CIPHER_SIZE (RSA_KEY_SIZE / 8) @@ -59,6 +60,14 @@ struct vtpm_globals { ctr_drbg_context ctr_drbg; int hw_locality; + + /* TPM 2.0 */ + TPM_AuthArea pw_auth; + TPM_AuthArea srk_auth_area; + TPM_HANDLE srk_handle; + TPM_HANDLE sk_handle; + TPM2B_NAME sk_name; + TPM2_RSA_KEY tpm2_storage_key; }; struct tpm_opaque { -- 2.39.5