From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.126; helo=mga18.intel.com; envelope-from=chao.b.zhang@intel.com; receiver=edk2-devel@lists.01.org Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) (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 9820C2096F34F for ; Sun, 24 Jun 2018 21:44:25 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jun 2018 21:44:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,268,1526367600"; d="scan'208";a="67379183" Received: from czhan46-mobl1.ccr.corp.intel.com ([10.239.192.120]) by orsmga001.jf.intel.com with ESMTP; 24 Jun 2018 21:44:24 -0700 From: "Zhang, Chao B" To: edk2-devel@lists.01.org Date: Mon, 25 Jun 2018 12:44:20 +0800 Message-Id: <20180625044421.2028-2-chao.b.zhang@intel.com> X-Mailer: git-send-email 2.11.0.windows.1 In-Reply-To: <20180625044421.2028-1-chao.b.zhang@intel.com> References: <20180625044421.2028-1-chao.b.zhang@intel.com> Subject: [Patch 1/2] Add CapCRBIdleBypass definition to interface ID register. It complies with existing register X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jun 2018 04:44:25 -0000 Signed-off-by: Zhang, Chao B --- MdePkg/Include/IndustryStandard/TpmPtp.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MdePkg/Include/IndustryStandard/TpmPtp.h b/MdePkg/Include/IndustryStandard/TpmPtp.h index 0796512688..c7ff8fdc58 100644 --- a/MdePkg/Include/IndustryStandard/TpmPtp.h +++ b/MdePkg/Include/IndustryStandard/TpmPtp.h @@ -1,10 +1,10 @@ /** @file Platform TPM Profile Specification definition for TPM2.0. It covers both FIFO and CRB interface. -Copyright (c) 2016, Intel Corporation. All rights reserved.
+Copyright (c) 2016 - 2018, 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 http://opensource.org/licenses/bsd-license.php @@ -336,11 +336,12 @@ typedef PTP_CRB_REGISTERS *PTP_CRB_REGISTERS_PTR; typedef union { struct { UINT32 InterfaceType:4; UINT32 InterfaceVersion:4; UINT32 CapLocality:1; - UINT32 Reserved1:2; + UINT32 CapCRBIdleBypass:1; + UINT32 Reserved1:1; UINT32 CapDataXferSizeSupport:2; UINT32 CapFIFO:1; UINT32 CapCRB:1; UINT32 CapIFRes:2; UINT32 InterfaceSelector:2; -- 2.16.2.windows.1