From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CA95181919 for ; Mon, 26 Dec 2016 19:05:25 -0800 (PST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP; 26 Dec 2016 19:05:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,414,1477983600"; d="scan'208";a="802535680" Received: from czhan46-mobl.ccr.corp.intel.com ([10.239.196.84]) by FMSMGA003.fm.intel.com with ESMTP; 26 Dec 2016 19:05:24 -0800 From: "Zhang, Chao B" To: edk2-devel@lists.01.org Cc: jiewen.yao@intel.com, star.zeng@intel.com, Chao Zhang Date: Tue, 27 Dec 2016 11:05:18 +0800 Message-Id: <1482807918-2992-2-git-send-email-chao.b.zhang@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 In-Reply-To: <1482807918-2992-1-git-send-email-chao.b.zhang@intel.com> References: <1482807918-2992-1-git-send-email-chao.b.zhang@intel.com> Subject: [PATCH 2/2] MdePkg: Tpm2Acpi.h: Update TPM2 ACPI table version X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2016 03:05:25 -0000 Update TPM2 ACPI Table revision to 4. New version & data structure is defined in TCG ACPI Spec 00.37 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chao Zhang --- MdePkg/Include/IndustryStandard/Tpm2Acpi.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/MdePkg/Include/IndustryStandard/Tpm2Acpi.h b/MdePkg/Include/IndustryStandard/Tpm2Acpi.h index 73ef561..2ae6d11 100644 --- a/MdePkg/Include/IndustryStandard/Tpm2Acpi.h +++ b/MdePkg/Include/IndustryStandard/Tpm2Acpi.h @@ -1,7 +1,7 @@ /** @file TPM2 ACPI table definition. -Copyright (c) 2013, Intel Corporation. All rights reserved.
+Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -19,11 +19,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #pragma pack (1) -#define EFI_TPM2_ACPI_TABLE_REVISION 3 +#define EFI_TPM2_ACPI_TABLE_REVISION 4 typedef struct { EFI_ACPI_DESCRIPTION_HEADER Header; - UINT32 Flags; + UINT16 PlatformClass; + UINT16 Reserved; UINT64 AddressOfControlArea; UINT32 StartMethod; //UINT8 PlatformSpecificParameters[]; -- 1.9.5.msysgit.1