public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: Kun Qin <kun.q@outlook.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Wang, Jian J" <jian.j.wang@intel.com>,
	"Zhang, Qi1" <qi1.zhang@intel.com>,
	"Kumar, Rahul1" <rahul1.kumar@intel.com>
Subject: Re: [PATCH v1 13/15] SecurityPkg: Tpm2DeviceLibDTpm: Introduce StandaloneMm instance
Date: Mon, 28 Dec 2020 00:08:26 +0000	[thread overview]
Message-ID: <CY4PR11MB1288DA08BF502ED52BD1ED4A8CD90@CY4PR11MB1288.namprd11.prod.outlook.com> (raw)
In-Reply-To: <MWHPR06MB3102F19EAE04DCF0443B3565F3C30@MWHPR06MB3102.namprd06.prod.outlook.com>

Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com>

> -----Original Message-----
> From: Kun Qin <kun.q@outlook.com>
> Sent: Saturday, December 19, 2020 2:50 AM
> To: devel@edk2.groups.io
> Cc: Yao, Jiewen <jiewen.yao@intel.com>; Wang, Jian J
> <jian.j.wang@intel.com>; Zhang, Qi1 <qi1.zhang@intel.com>; Kumar,
> Rahul1 <rahul1.kumar@intel.com>
> Subject: [PATCH v1 13/15] SecurityPkg: Tpm2DeviceLibDTpm: Introduce
> StandaloneMm instance
> 
> This change added a new instance of Tpm2DeviceLibDTpm to support
> drivers
> of type MM_STANDALONE. It abstracts dynamic Pcd access into separate
> file
> for different instances to avoid dynamic usage for StandaloneMm modules.
> 
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Qi Zhang <qi1.zhang@intel.com>
> Cc: Rahul Kumar <rahul1.kumar@intel.com>
> 
> Signed-off-by: Kun Qin <kun.q@outlook.com>
> ---
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.c
> | 42 +-----------
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmBase.c
> | 69 ++++++++++++++++++++
> 
> SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalone
> Mm.c                              | 67 +++++++++++++++++++
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.c
> | 40 +-----------
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c
> | 15 +++--
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.h
> | 68 +++++++++++++++++++
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> |  3 +
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/{Tpm2DeviceLibDTpm.inf =>
> Tpm2DeviceLibDTpmStandaloneMm.inf} | 13 ++--
>  SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
> |  3 +
>  SecurityPkg/SecurityPkg.dsc                                                                        |  1 +
>  10 files changed, 231 insertions(+), 90 deletions(-)
> 
> diff --git a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.c
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.c
> index 42e1ecbce95a..238389dbdb1b 100644
> --- a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.c
> +++ b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.c
> @@ -13,29 +13,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
>  #include <Library/Tpm2DeviceLib.h>
>  #include <Library/PcdLib.h>
> 
> -/**
> -  Return PTP interface type.
> -
> -  @param[in] Register                Pointer to PTP register.
> -
> -  @return PTP interface type.
> -**/
> -TPM2_PTP_INTERFACE_TYPE
> -Tpm2GetPtpInterface (
> -  IN VOID *Register
> -  );
> -
> -/**
> -  Return PTP CRB interface IdleByPass state.
> -
> -  @param[in] Register                Pointer to PTP register.
> -
> -  @return PTP CRB interface IdleByPass state.
> -**/
> -UINT8
> -Tpm2GetIdleByPass (
> -  IN VOID *Register
> -  );
> +#include "Tpm2DeviceLibDTpm.h"
> 
>  /**
>    This service enables the sending of commands to the TPM2.
> @@ -145,21 +123,5 @@ Tpm2DeviceLibConstructor (
>    VOID
>    )
>  {
> -  TPM2_PTP_INTERFACE_TYPE  PtpInterface;
> -  UINT8                    IdleByPass;
> -
> -  //
> -  // Cache current active TpmInterfaceType only when needed
> -  //
> -  if (PcdGet8(PcdActiveTpmInterfaceType) == 0xFF) {
> -    PtpInterface = Tpm2GetPtpInterface ((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> -    PcdSet8S(PcdActiveTpmInterfaceType, PtpInterface);
> -  }
> -
> -  if (PcdGet8(PcdActiveTpmInterfaceType) == Tpm2PtpInterfaceCrb &&
> PcdGet8(PcdCRBIdleByPass) == 0xFF) {
> -    IdleByPass = Tpm2GetIdleByPass((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> -    PcdSet8S(PcdCRBIdleByPass, IdleByPass);
> -  }
> -
> -  return EFI_SUCCESS;
> +  return InternalTpm2DeviceLibDTpmCommonConstructor ();
>  }
> diff --git
> a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmBase.c
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmBase.c
> new file mode 100644
> index 000000000000..aaa215eee9f7
> --- /dev/null
> +++
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmBase.c
> @@ -0,0 +1,69 @@
> +/** @file
> +  This file abstract internal interfaces of which implementation differs per
> library instance.
> +
> +Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved. <BR>
> +Copyright (c) Microsoft Corporation.
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#include <Library/Tpm2DeviceLib.h>
> +#include <Library/PcdLib.h>
> +
> +#include "Tpm2DeviceLibDTpm.h"
> +
> +/**
> +  Return cached PTP CRB interface IdleByPass state.
> +
> +  @return Cached PTP CRB interface IdleByPass state.
> +**/
> +UINT8
> +GetCachedIdleByPass (
> +  VOID
> +  )
> +{
> +  return PcdGet8(PcdCRBIdleByPass);
> +}
> +
> +/**
> +  Return cached PTP interface type.
> +
> +  @return Cached PTP interface type.
> +**/
> +TPM2_PTP_INTERFACE_TYPE
> +GetCachedPtpInterface (
> +  VOID
> +  )
> +{
> +  return PcdGet8(PcdActiveTpmInterfaceType);
> +}
> +
> +/**
> +  The common function cache current active TpmInterfaceType when
> needed.
> +
> +  @retval EFI_SUCCESS   DTPM2.0 instance is registered, or system does
> not support register DTPM2.0 instance
> +**/
> +EFI_STATUS
> +EFIAPI
> +InternalTpm2DeviceLibDTpmCommonConstructor (
> +  VOID
> +  )
> +{
> +  TPM2_PTP_INTERFACE_TYPE  PtpInterface;
> +  UINT8                    IdleByPass;
> +
> +  //
> +  // Cache current active TpmInterfaceType only when needed
> +  //
> +  if (PcdGet8(PcdActiveTpmInterfaceType) == 0xFF) {
> +    PtpInterface = Tpm2GetPtpInterface ((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> +    PcdSet8S(PcdActiveTpmInterfaceType, PtpInterface);
> +  }
> +
> +  if (PcdGet8(PcdActiveTpmInterfaceType) == Tpm2PtpInterfaceCrb &&
> PcdGet8(PcdCRBIdleByPass) == 0xFF) {
> +    IdleByPass = Tpm2GetIdleByPass((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> +    PcdSet8S(PcdCRBIdleByPass, IdleByPass);
> +  }
> +
> +  return EFI_SUCCESS;
> +}
> diff --git
> a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalon
> eMm.c
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalon
> eMm.c
> new file mode 100644
> index 000000000000..9e3d3f0a8e9d
> --- /dev/null
> +++
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalon
> eMm.c
> @@ -0,0 +1,67 @@
> +/** @file
> +  This file abstract internal interfaces of which implementation differs per
> library instance.
> +
> +Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved. <BR>
> +Copyright (c) Microsoft Corporation.
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#include <Library/Tpm2DeviceLib.h>
> +
> +#include "Tpm2DeviceLibDTpm.h"
> +
> +TPM2_PTP_INTERFACE_TYPE  mActiveTpmInterfaceType;
> +UINT8                    mCRBIdleByPass;
> +
> +/**
> +  Return cached PTP CRB interface IdleByPass state.
> +
> +  @return Cached PTP CRB interface IdleByPass state.
> +**/
> +UINT8
> +GetCachedIdleByPass (
> +  VOID
> +  )
> +{
> +  return mCRBIdleByPass;
> +}
> +
> +/**
> +  Return cached PTP interface type.
> +
> +  @return Cached PTP interface type.
> +**/
> +TPM2_PTP_INTERFACE_TYPE
> +GetCachedPtpInterface (
> +  VOID
> +  )
> +{
> +  return mActiveTpmInterfaceType;
> +}
> +
> +/**
> +  The common function cache current active TpmInterfaceType when
> needed.
> +
> +  @retval EFI_SUCCESS   DTPM2.0 instance is registered, or system does
> not support register DTPM2.0 instance
> +**/
> +EFI_STATUS
> +EFIAPI
> +InternalTpm2DeviceLibDTpmCommonConstructor (
> +  VOID
> +  )
> +{
> +  mActiveTpmInterfaceType = 0xFF;
> +  mCRBIdleByPass = 0xFF;
> +
> +  //
> +  // Always cache current active TpmInterfaceType for StandaloneMm
> implementation
> +  //
> +  mActiveTpmInterfaceType = Tpm2GetPtpInterface ((VOID *) (UINTN)
> PcdGet64 (PcdTpmBaseAddress));
> +
> +  if (mActiveTpmInterfaceType == Tpm2PtpInterfaceCrb) {
> +    mCRBIdleByPass = Tpm2GetIdleByPass((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> +  }
> +
> +  return EFI_SUCCESS;
> +}
> diff --git
> a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.c
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.c
> index 691eaa40c045..053e597d2ee2 100644
> --- a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.c
> +++ b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.c
> @@ -16,29 +16,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
> 
>  #include <Guid/TpmInstance.h>
> 
> -/**
> -  Return PTP interface type.
> -
> -  @param[in] Register                Pointer to PTP register.
> -
> -  @return PTP interface type.
> -**/
> -TPM2_PTP_INTERFACE_TYPE
> -Tpm2GetPtpInterface (
> -  IN VOID *Register
> -  );
> -
> -/**
> -  Return PTP CRB interface IdleByPass state.
> -
> -  @param[in] Register                Pointer to PTP register.
> -
> -  @return PTP CRB interface IdleByPass state.
> -**/
> -UINT8
> -Tpm2GetIdleByPass (
> -  IN VOID *Register
> -  );
> +#include "Tpm2DeviceLibDTpm.h"
> 
>  /**
>    Dump PTP register information.
> @@ -102,8 +80,6 @@ Tpm2InstanceLibDTpmConstructor (
>    )
>  {
>    EFI_STATUS               Status;
> -  TPM2_PTP_INTERFACE_TYPE  PtpInterface;
> -  UINT8                    IdleByPass;
> 
>    Status = Tpm2RegisterTpm2DeviceLib (&mDTpm2InternalTpm2Device);
>    if ((Status == EFI_SUCCESS) || (Status == EFI_UNSUPPORTED)) {
> @@ -111,19 +87,7 @@ Tpm2InstanceLibDTpmConstructor (
>      // Unsupported means platform policy does not need this instance
> enabled.
>      //
>      if (Status == EFI_SUCCESS) {
> -      //
> -      // Cache current active TpmInterfaceType only when needed
> -      //
> -      if (PcdGet8(PcdActiveTpmInterfaceType) == 0xFF) {
> -        PtpInterface = Tpm2GetPtpInterface ((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> -        PcdSet8S(PcdActiveTpmInterfaceType, PtpInterface);
> -      }
> -
> -      if (PcdGet8(PcdActiveTpmInterfaceType) == Tpm2PtpInterfaceCrb &&
> PcdGet8(PcdCRBIdleByPass) == 0xFF) {
> -        IdleByPass = Tpm2GetIdleByPass((VOID *) (UINTN) PcdGet64
> (PcdTpmBaseAddress));
> -        PcdSet8S(PcdCRBIdleByPass, IdleByPass);
> -      }
> -
> +      Status = InternalTpm2DeviceLibDTpmCommonConstructor ();
>        DumpPtpInfo ((VOID *) (UINTN) PcdGet64 (PcdTpmBaseAddress));
>      }
>      return EFI_SUCCESS;
> diff --git a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c
> index 2c73385b6ce5..f1f80916834f 100644
> --- a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c
> +++ b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c
> @@ -2,6 +2,7 @@
>    PTP (Platform TPM Profile) CRB (Command Response Buffer) interface
> used by dTPM2.0 library.
> 
>  Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
> +Copyright (c), Microsoft Corporation.
>  SPDX-License-Identifier: BSD-2-Clause-Patent
> 
>  **/
> @@ -19,6 +20,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
>  #include <IndustryStandard/TpmPtp.h>
>  #include <IndustryStandard/TpmTis.h>
> 
> +#include "Tpm2DeviceLibDTpm.h"
> +
>  //
>  // Execution of the command may take from several seconds to minutes
> for certain
>  // commands, such as key generation.
> @@ -174,7 +177,7 @@ PtpCrbTpmCommand (
>    // STEP 0:
>    // if CapCRbIdelByPass == 0, enforce Idle state before sending command
>    //
> -  if (PcdGet8(PcdCRBIdleByPass) == 0 && (MmioRead32((UINTN)&CrbReg-
> >CrbControlStatus) & PTP_CRB_CONTROL_AREA_STATUS_TPM_IDLE) == 0){
> +  if (GetCachedIdleByPass () == 0 && (MmioRead32((UINTN)&CrbReg-
> >CrbControlStatus) & PTP_CRB_CONTROL_AREA_STATUS_TPM_IDLE) == 0){
>      Status = PtpCrbWaitRegisterBits (
>                &CrbReg->CrbControlStatus,
>                PTP_CRB_CONTROL_AREA_STATUS_TPM_IDLE,
> @@ -330,7 +333,7 @@ PtpCrbTpmCommand (
>    // Goto Ready State if command is completed successfully and TPM
> support IdleBypass
>    // If not supported. flow down to GoIdle
>    //
> -  if (PcdGet8(PcdCRBIdleByPass) == 1) {
> +  if (GetCachedIdleByPass () == 1) {
>      MmioWrite32((UINTN)&CrbReg->CrbControlRequest,
> PTP_CRB_CONTROL_AREA_REQUEST_COMMAND_READY);
>      return Status;
>    }
> @@ -350,7 +353,7 @@ PtpCrbTpmCommand (
>    // Only enforce Idle state transition if execution fails when
> CRBIdleBypass==1
>    // Leave regular Idle delay at the beginning of next command execution
>    //
> -  if (PcdGet8(PcdCRBIdleByPass) == 1){
> +  if (GetCachedIdleByPass () == 1){
>      Status = PtpCrbWaitRegisterBits (
>                 &CrbReg->CrbControlStatus,
>                 PTP_CRB_CONTROL_AREA_STATUS_TPM_IDLE,
> @@ -519,7 +522,7 @@ DumpPtpInfo (
>    Vid = 0xFFFF;
>    Did = 0xFFFF;
>    Rid = 0xFF;
> -  PtpInterface = PcdGet8(PcdActiveTpmInterfaceType);
> +  PtpInterface = GetCachedPtpInterface ();
>    DEBUG ((EFI_D_INFO, "PtpInterface - %x\n", PtpInterface));
>    switch (PtpInterface) {
>    case Tpm2PtpInterfaceCrb:
> @@ -564,7 +567,7 @@ DTpm2SubmitCommand (
>  {
>    TPM2_PTP_INTERFACE_TYPE  PtpInterface;
> 
> -  PtpInterface = PcdGet8(PcdActiveTpmInterfaceType);
> +  PtpInterface = GetCachedPtpInterface ();
>    switch (PtpInterface) {
>    case Tpm2PtpInterfaceCrb:
>      return PtpCrbTpmCommand (
> @@ -603,7 +606,7 @@ DTpm2RequestUseTpm (
>  {
>    TPM2_PTP_INTERFACE_TYPE  PtpInterface;
> 
> -  PtpInterface = PcdGet8(PcdActiveTpmInterfaceType);
> +  PtpInterface = GetCachedPtpInterface ();
>    switch (PtpInterface) {
>    case Tpm2PtpInterfaceCrb:
>      return PtpCrbRequestUseTpm ((PTP_CRB_REGISTERS_PTR) (UINTN)
> PcdGet64 (PcdTpmBaseAddress));
> diff --git a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.h
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.h
> new file mode 100644
> index 000000000000..4eabb6cd182e
> --- /dev/null
> +++ b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.h
> @@ -0,0 +1,68 @@
> +/** @file
> +  This header file includes common internal fuction prototypes.
> +
> +Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved. <BR>
> +Copyright (c) Microsoft Corporation.
> +SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> +**/
> +
> +#ifndef _TPM2_DEVICE_LIB_DTPM_H_
> +#define _TPM2_DEVICE_LIB_DTPM_H_
> +
> +/**
> +  Return PTP interface type.
> +
> +  @param[in] Register                Pointer to PTP register.
> +
> +  @return PTP interface type.
> +**/
> +TPM2_PTP_INTERFACE_TYPE
> +Tpm2GetPtpInterface (
> +  IN VOID *Register
> +  );
> +
> +/**
> +  Return PTP CRB interface IdleByPass state.
> +
> +  @param[in] Register                Pointer to PTP register.
> +
> +  @return PTP CRB interface IdleByPass state.
> +**/
> +UINT8
> +Tpm2GetIdleByPass (
> +  IN VOID *Register
> +  );
> +
> +/**
> +  Return cached PTP interface type.
> +
> +  @return Cached PTP interface type.
> +**/
> +TPM2_PTP_INTERFACE_TYPE
> +GetCachedPtpInterface (
> +  VOID
> +  );
> +
> +/**
> +  Return cached PTP CRB interface IdleByPass state.
> +
> +  @return Cached PTP CRB interface IdleByPass state.
> +**/
> +UINT8
> +GetCachedIdleByPass (
> +  VOID
> +  );
> +
> +/**
> +  The common function cache current active TpmInterfaceType when
> needed.
> +
> +  @retval EFI_SUCCESS   DTPM2.0 instance is registered, or system does
> not support register DTPM2.0 instance
> +**/
> +EFI_STATUS
> +EFIAPI
> +InternalTpm2DeviceLibDTpmCommonConstructor (
> +  VOID
> +  );
> +
> +#endif // _TPM2_DEVICE_LIB_DTPM_H_
> diff --git
> a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> index 2b627504634d..be3a0053ccce 100644
> --- a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> +++ b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> @@ -11,6 +11,7 @@
>  #  only uses TPM 2.0 DTPM device.
>  #
>  # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) Microsoft Corporation.
>  # SPDX-License-Identifier: BSD-2-Clause-Patent
>  #
>  ##
> @@ -34,6 +35,8 @@ [Sources]
>    Tpm2Tis.c
>    Tpm2Ptp.c
>    Tpm2DeviceLibDTpm.c
> +  Tpm2DeviceLibDTpmBase.c
> +  Tpm2DeviceLibDTpm.h
> 
>  [Packages]
>    MdePkg/MdePkg.dec
> diff --git
> a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalon
> eMm.inf
> similarity index 70%
> copy from
> SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> copy to
> SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalone
> Mm.inf
> index 2b627504634d..18c08ad8bdcc 100644
> --- a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
> +++
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalon
> eMm.inf
> @@ -11,19 +11,20 @@
>  #  only uses TPM 2.0 DTPM device.
>  #
>  # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) Microsoft Corporation.
>  # SPDX-License-Identifier: BSD-2-Clause-Patent
>  #
>  ##
> 
>  [Defines]
>    INF_VERSION                    = 0x00010005
> -  BASE_NAME                      = Tpm2DeviceLibDTpm
> -  MODULE_UNI_FILE                = Tpm2DeviceLibDTpm.uni
> -  FILE_GUID                      = E54A3327-A345-4068-8842-70AC0D519855
> +  BASE_NAME                      = Tpm2DeviceLibDTpmStandaloneMm
> +  FILE_GUID                      = 9A5DB21A-FF0B-46D0-8672-B4F83FEF1F0E
>    MODULE_TYPE                    = BASE
>    VERSION_STRING                 = 1.0
> -  LIBRARY_CLASS                  = Tpm2DeviceLib|PEIM DXE_DRIVER
> DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
> +  LIBRARY_CLASS                  = Tpm2DeviceLib|MM_STANDALONE
>    CONSTRUCTOR                    = Tpm2DeviceLibConstructor
> +
>  #
>  # The following information is for reference only and not required by the
> build tools.
>  #
> @@ -34,6 +35,8 @@ [Sources]
>    Tpm2Tis.c
>    Tpm2Ptp.c
>    Tpm2DeviceLibDTpm.c
> +  Tpm2DeviceLibDTpmStandaloneMm.c
> +  Tpm2DeviceLibDTpm.h
> 
>  [Packages]
>    MdePkg/MdePkg.dec
> @@ -49,5 +52,3 @@ [LibraryClasses]
> 
>  [Pcd]
>    gEfiSecurityPkgTokenSpaceGuid.PcdTpmBaseAddress            ##
> CONSUMES
> -  gEfiSecurityPkgTokenSpaceGuid.PcdActiveTpmInterfaceType    ##
> PRODUCES
> -  gEfiSecurityPkgTokenSpaceGuid.PcdCRBIdleByPass             ## PRODUCES
> diff --git
> a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
> b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
> index 5f267f552ce3..31113d93ee41 100644
> --- a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
> +++ b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
> @@ -6,6 +6,7 @@
>  #  and PTP (Platform TPM Profile) functions.
>  #
>  # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
> +# Copyright (c) Microsoft Corporation
>  # SPDX-License-Identifier: BSD-2-Clause-Patent
>  #
>  ##
> @@ -30,6 +31,8 @@ [Sources]
>    Tpm2Tis.c
>    Tpm2Ptp.c
>    Tpm2InstanceLibDTpm.c
> +  Tpm2DeviceLibDTpmBase.c
> +  Tpm2DeviceLibDTpm.h
> 
>  [Packages]
>    MdePkg/MdePkg.dec
> diff --git a/SecurityPkg/SecurityPkg.dsc b/SecurityPkg/SecurityPkg.dsc
> index 7240b2573e4e..618420a56c33 100644
> --- a/SecurityPkg/SecurityPkg.dsc
> +++ b/SecurityPkg/SecurityPkg.dsc
> @@ -211,6 +211,7 @@ [Components]
>    SecurityPkg/Library/Tpm2DeviceLibTcg2/Tpm2DeviceLibTcg2.inf
>    SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
>    SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
> +
> SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpmStandalone
> Mm.inf
>    SecurityPkg/Library/Tpm2DeviceLibRouter/Tpm2DeviceLibRouterDxe.inf
>    SecurityPkg/Library/Tpm2DeviceLibRouter/Tpm2DeviceLibRouterPei.inf
> 
> --
> 2.28.0.windows.1


  reply	other threads:[~2020-12-28  0:08 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20201218185011.1366-1-kun.q@outlook.com>
2020-12-18 18:49 ` [PATCH v1 01/15] StandaloneMmPkg: StandaloneMmCoreEntryPoint: Extends support for X64 Kun Qin
2020-12-28  0:11   ` [edk2-devel] " Yao, Jiewen
2020-12-18 18:49 ` [PATCH v1 02/15] StandaloneMmPkg: StandaloneMmCoreHobLib: Extend support for x64 Mm Core Kun Qin
2020-12-28  0:12   ` Yao, Jiewen
2021-03-24 20:33     ` [edk2-devel] " Dawn
2020-12-18 18:49 ` [PATCH v1 03/15] StandaloneMmPkg: StandaloneMmCoreMemoryAllocationLib: Fix compiler warning Kun Qin
2020-12-28  0:14   ` Yao, Jiewen
2020-12-28  4:07     ` Kun Qin
2020-12-18 18:50 ` [PATCH v1 04/15] StandaloneMmPkg: StandaloneMmMemLib: Extends support for X64 architecture Kun Qin
2020-12-28  0:18   ` Yao, Jiewen
2020-12-28  4:15     ` Kun Qin
2020-12-28  6:24       ` Yao, Jiewen
2020-12-28  6:36         ` Kun Qin
2020-12-28  6:37           ` [edk2-devel] " Yao, Jiewen
2020-12-18 18:50 ` [PATCH v1 05/15] MdeModulePkg: SmmLockBoxSmmLib: Support StandaloneMm for SmmLockBoxLib Kun Qin
2020-12-22  8:35   ` [edk2-devel] " Wu, Hao A
2020-12-18 18:50 ` [PATCH v1 06/15] MdeModulePkg: SmmReportStatusCodeLib: ReportStatusCodeLib in StandaloneMm Kun Qin
2020-12-22  8:35   ` [edk2-devel] " Wu, Hao A
2020-12-22 19:15     ` Kun Qin
2020-12-23  6:09       ` Wu, Hao A
2020-12-24  1:53         ` 回复: " gaoliming
2020-12-24  9:11           ` Kun Qin
2020-12-29  1:23             ` 回复: " gaoliming
2020-12-29  1:31               ` Kun Qin
2020-12-18 18:50 ` [PATCH v1 07/15] MdeModulePkg: FirmwarePerformanceDataTable: Added StandaloneMm support Kun Qin
2020-12-22  8:36   ` Wu, Hao A
2020-12-22 20:06     ` [edk2-devel] " Kun Qin
2020-12-18 18:50 ` [PATCH v1 08/15] MdeModulePkg: ReportStatusCodeRouter: Support StandaloneMm RSC Router Kun Qin
2020-12-22  8:42   ` Wu, Hao A
2020-12-18 18:50 ` [PATCH v1 09/15] MdePkg: UefiDevicePathLib: Support UefiDevicePathLib under StandaloneMm Kun Qin
2021-01-04 18:32   ` [edk2-devel] " Kun Qin
2021-01-05 13:25     ` 回复: " gaoliming
2020-12-18 18:50 ` [PATCH v1 10/15] PcAtChipsetPkg: AcpiTimerLib: Added StandaloneMm instance of AcpiTimerLib Kun Qin
2021-01-04 18:30   ` [edk2-devel] " Kun Qin
2020-12-18 18:50 ` [PATCH v1 11/15] SecurityPkg: Tcg2PhysicalPresenceLib: Introduce StandaloneMm instance Kun Qin
2020-12-28  0:08   ` Yao, Jiewen
2020-12-18 18:50 ` [PATCH v1 12/15] SecurityPkg: Tcg2PpVendorLibNull: Added support for MM_STANDALONE type Kun Qin
2020-12-28  0:08   ` Yao, Jiewen
2020-12-18 18:50 ` [PATCH v1 13/15] SecurityPkg: Tpm2DeviceLibDTpm: Introduce StandaloneMm instance Kun Qin
2020-12-28  0:08   ` Yao, Jiewen [this message]
2020-12-18 18:50 ` [PATCH v1 14/15] UefiCpuPkg: CpuIo2Smm: Support of CpuIo driver under StandaloneMm Kun Qin
2021-01-04 18:31   ` [edk2-devel] " Kun Qin
2020-12-18 18:50 ` [PATCH v1 15/15] UefiCpuPkg: SmmCpuExceptionHandlerLib: Added StandaloneMm module support Kun Qin
2021-01-04 18:30   ` [edk2-devel] " Kun Qin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CY4PR11MB1288DA08BF502ED52BD1ED4A8CD90@CY4PR11MB1288.namprd11.prod.outlook.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox