]> git.proxmox.com Git - mirror_edk2.git/commitdiff
SecurityPkg: Add TPM PTP support in TPM2 device lib.
authorYao, Jiewen <jiewen.yao@intel.com>
Tue, 26 Jan 2016 01:29:38 +0000 (01:29 +0000)
committerjyao1 <jyao1@Edk2>
Tue, 26 Jan 2016 01:29:38 +0000 (01:29 +0000)
TPM2 hardware may support PTP FIFO/TIS interface
or PTP CRB interface. The original lib only handles
PTP FIFO/TIS interface. This patch adds PTP CRB
interface support.
The current logic is that lib will runtime detect
TPM device interface (CRB or FIFO/TIS) and call
proper function to access hardware.

It is compatible for old TPM2 FIFO/TIS device and
new TPM2 CRB device.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com>
Reviewed-by: "Zhang, Chao B" <chao.b.zhang@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19740 6f19259b-4bc3-4df7-8a09-765794883524

SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.uni
SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.c
SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.inf
SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2InstanceLibDTpm.uni
SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c [new file with mode: 0644]
SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Tis.c

index 2d41e7ccd2ee251e0434407105aaf46dbb40da35..976972d98d2efbe53c9b7e5db271d459ffb5e315 100644 (file)
@@ -1,11 +1,12 @@
 ## @file\r
 ## @file\r
-#  Provides TPM 2.0 TIS functions for DTPM\r
+#  Provides TPM 2.0 TIS/PTP functions for DTPM\r
 #  \r
 #  \r
-#  This library implements TIS (TPM Interface Specification) functions which is \r
-#  used for every TPM 2.0 command. Choosing this library means platform uses and \r
+#  This library implements TIS (TPM Interface Specification) and\r
+#  PTP (Platform TPM Profile) functions which is\r
+#  used for every TPM 2.0 command. Choosing this library means platform uses and\r
 #  only uses TPM 2.0 DTPM device.\r
 #\r
 #  only uses TPM 2.0 DTPM device.\r
 #\r
-# Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution. The full text of the license may be found at\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution. The full text of the license may be found at\r
@@ -32,6 +33,7 @@
 \r
 [Sources]\r
   Tpm2Tis.c\r
 \r
 [Sources]\r
   Tpm2Tis.c\r
+  Tpm2Ptp.c\r
   Tpm2DeviceLibDTpm.c\r
 \r
 [Packages]\r
   Tpm2DeviceLibDTpm.c\r
 \r
 [Packages]\r
index 1f3709c0158ffddd336e8d17c64dd4939ac56635..94180ffd27dc46e0713f1103709d629b33959bf1 100644 (file)
@@ -1,11 +1,12 @@
 // /** @file\r
 // /** @file\r
-// Provides TPM 2.0 TIS functions for DTPM\r
+// Provides TPM 2.0 TIS/PTP functions for DTPM\r
 //\r
 //\r
-// This library implements TIS (TPM Interface Specification) functions which is\r
+// This library implements TIS (TPM Interface Specification) and\r
+// PTP (Platform TPM Profile) functions which is\r
 // used for every TPM 2.0 command. Choosing this library means platform uses and\r
 // only uses TPM 2.0 DTPM device.\r
 //\r
 // used for every TPM 2.0 command. Choosing this library means platform uses and\r
 // only uses TPM 2.0 DTPM device.\r
 //\r
-// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>\r
+// Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
 //\r
 // This program and the accompanying materials\r
 // are licensed and made available under the terms and conditions of the BSD License\r
 //\r
 // This program and the accompanying materials\r
 // are licensed and made available under the terms and conditions of the BSD License\r
@@ -17,7 +18,7 @@
 // **/\r
 \r
 \r
 // **/\r
 \r
 \r
-#string STR_MODULE_ABSTRACT             #language en-US "Provides TPM 2.0 TIS functions for DTPM"\r
+#string STR_MODULE_ABSTRACT             #language en-US "Provides TPM 2.0 TIS/PTP functions for DTPM"\r
 \r
 \r
-#string STR_MODULE_DESCRIPTION          #language en-US "This library implements TIS (TPM Interface Specification) functions which is used for every TPM 2.0 command. Choosing this library means platform uses and only uses TPM 2.0 DTPM device."\r
+#string STR_MODULE_DESCRIPTION          #language en-US "This library implements TIS (TPM Interface Specification) and PTP (Platform TPM Profile) functions which is used for every TPM 2.0 command. Choosing this library means platform uses and only uses TPM 2.0 DTPM device."\r
 \r
 \r
index 6a6a0423730c69f0b7e4f0fe53151c929f60e3b7..a50d266b8e8a8bea88a4b27e7a8dc82a3fb937df 100644 (file)
@@ -3,7 +3,7 @@
   It can be registered to Tpm2 Device router, to be active TPM2 engine,\r
   based on platform setting.\r
 \r
   It can be registered to Tpm2 Device router, to be active TPM2 engine,\r
   based on platform setting.\r
 \r
-Copyright (c) 2013, Intel Corporation. All rights reserved. <BR>\r
+Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved. <BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -21,6 +21,16 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
 #include <Guid/TpmInstance.h>\r
 \r
 \r
 #include <Guid/TpmInstance.h>\r
 \r
+/**\r
+  Dump PTP register information.\r
+\r
+  @param[in] Register                Pointer to PTP register.\r
+**/\r
+VOID\r
+DumpPtpInfo (\r
+  IN VOID *Register\r
+  );\r
+\r
 /**\r
   This service enables the sending of commands to the TPM2.\r
 \r
 /**\r
   This service enables the sending of commands to the TPM2.\r
 \r
@@ -79,6 +89,9 @@ Tpm2InstanceLibDTpmConstructor (
     //\r
     // Unsupported means platform policy does not need this instance enabled.\r
     //\r
     //\r
     // Unsupported means platform policy does not need this instance enabled.\r
     //\r
+    if (Status == EFI_SUCCESS) {\r
+      DumpPtpInfo ((VOID *) (UINTN) PcdGet64 (PcdTpmBaseAddress));\r
+    }\r
     return EFI_SUCCESS;\r
   }\r
   return Status;\r
     return EFI_SUCCESS;\r
   }\r
   return Status;\r
index 2a8f78beeb605de3ad77710c561af698a56736ff..22efb1ef4c9761b2ef6ddb7c257718813b536dfe 100644 (file)
@@ -1,10 +1,11 @@
 ## @file\r
 ## @file\r
-#  Provides a DTPM instance for TPM 2.0\r
+#  Provides a DTPM instance for TPM 2.0 TIS/PTP.\r
 #\r
 #\r
-#  This library can be registered to Tpm 2.0 device router, to be active TPM 2.0 \r
-#  engine, based on platform setting.\r
+#  This library can be registered to Tpm 2.0 device router, to be active TPM 2.0\r
+#  engine, based on platform setting. It supports both TIS (TPM Interface Specification)\r
+#  and PTP (Platform TPM Profile) functions.\r
 #\r
 #\r
-# Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>\r
+# Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution. The full text of the license may be found at\r
 # This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution. The full text of the license may be found at\r
@@ -32,6 +33,7 @@
 \r
 [Sources]\r
   Tpm2Tis.c\r
 \r
 [Sources]\r
   Tpm2Tis.c\r
+  Tpm2Ptp.c\r
   Tpm2InstanceLibDTpm.c\r
 \r
 [Packages]\r
   Tpm2InstanceLibDTpm.c\r
 \r
 [Packages]\r
index 7a0856cae36cbf93fcc336fd17b54bd2241e8afb..96bb2ad16356ff3feb3b660da8f479250df83d3b 100644 (file)
@@ -1,10 +1,11 @@
 // /** @file\r
 // /** @file\r
-// Provides a DTPM instance for TPM 2.0\r
+// Provides a DTPM instance for TPM 2.0 TIS/PTP\r
 //\r
 // This library can be registered to Tpm 2.0 device router, to be active TPM 2.0\r
 //\r
 // This library can be registered to Tpm 2.0 device router, to be active TPM 2.0\r
-// engine, based on platform setting.\r
+// engine, based on platform setting. It supports both TIS (TPM Interface Specification)\r
+// and PTP (Platform TPM Profile) functions.\r
 //\r
 //\r
-// Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved.<BR>\r
+// Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
 //\r
 // This program and the accompanying materials\r
 // are licensed and made available under the terms and conditions of the BSD License\r
 //\r
 // This program and the accompanying materials\r
 // are licensed and made available under the terms and conditions of the BSD License\r
@@ -16,7 +17,7 @@
 // **/\r
 \r
 \r
 // **/\r
 \r
 \r
-#string STR_MODULE_ABSTRACT             #language en-US "Provides a DTPM instance for TPM 2.0"\r
+#string STR_MODULE_ABSTRACT             #language en-US "Provides a DTPM instance for TPM 2.0 TIS/PTP"\r
 \r
 \r
-#string STR_MODULE_DESCRIPTION          #language en-US "This library can be registered to Tpm 2.0 device router, to be active TPM 2.0 engine, based on platform setting."\r
+#string STR_MODULE_DESCRIPTION          #language en-US "This library can be registered to Tpm 2.0 device router, to be active TPM 2.0 engine, based on platform setting. It supports both TIS (TPM Interface Specification) and PTP (Platform TPM Profile) functions."\r
 \r
 \r
diff --git a/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c b/SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2Ptp.c
new file mode 100644 (file)
index 0000000..a627bbd
--- /dev/null
@@ -0,0 +1,537 @@
+/** @file\r
+  PTP (Platform TPM Profile) CRB (Command Response Buffer) interface used by dTPM2.0 library.\r
+\r
+Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>\r
+This program and the accompanying materials\r
+are licensed and made available under the terms and conditions of the BSD License\r
+which accompanies this distribution.  The full text of the license may be found at\r
+http://opensource.org/licenses/bsd-license.php\r
+\r
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+**/\r
+\r
+#include <IndustryStandard/Tpm20.h>\r
+\r
+#include <Library/BaseLib.h>\r
+#include <Library/BaseMemoryLib.h>\r
+#include <Library/IoLib.h>\r
+#include <Library/TimerLib.h>\r
+#include <Library/DebugLib.h>\r
+#include <Library/Tpm2DeviceLib.h>\r
+#include <Library/PcdLib.h>\r
+\r
+#include <IndustryStandard/TpmPtp.h>\r
+#include <IndustryStandard/TpmTis.h>\r
+\r
+typedef enum {\r
+  PtpInterfaceTis,\r
+  PtpInterfaceFifo,\r
+  PtpInterfaceCrb,\r
+  PtpInterfaceMax,\r
+} PTP_INTERFACE_TYPE;\r
+\r
+//\r
+// Execution of the command may take from several seconds to minutes for certain\r
+// commands, such as key generation.\r
+//\r
+#define PTP_TIMEOUT_MAX             (90000 * 1000)  // 90s\r
+\r
+//\r
+// Max TPM command/reponse length\r
+//\r
+#define TPMCMDBUFLENGTH             0x500\r
+\r
+/**\r
+  Check whether TPM PTP register exist.\r
+\r
+  @param[in] Reg  Pointer to PTP register.\r
+\r
+  @retval    TRUE    TPM PTP exists.\r
+  @retval    FALSE   TPM PTP is not found.\r
+**/\r
+BOOLEAN\r
+IsPtpPresence (\r
+  IN VOID *Reg\r
+  )\r
+{\r
+  UINT8                             RegRead;\r
+\r
+  RegRead = MmioRead8 ((UINTN)Reg);\r
+  if (RegRead == 0xFF) {\r
+    //\r
+    // No TPM chip\r
+    //\r
+    return FALSE;\r
+  }\r
+  return TRUE;\r
+}\r
+\r
+/**\r
+  Check whether the value of a TPM chip register satisfies the input BIT setting.\r
+\r
+  @param[in]  Register     Address port of register to be checked.\r
+  @param[in]  BitSet       Check these data bits are set.\r
+  @param[in]  BitClear     Check these data bits are clear.\r
+  @param[in]  TimeOut      The max wait time (unit MicroSecond) when checking register.\r
+\r
+  @retval     EFI_SUCCESS  The register satisfies the check bit.\r
+  @retval     EFI_TIMEOUT  The register can't run into the expected status in time.\r
+**/\r
+EFI_STATUS\r
+PtpCrbWaitRegisterBits (\r
+  IN      UINT32                    *Register,\r
+  IN      UINT32                    BitSet,\r
+  IN      UINT32                    BitClear,\r
+  IN      UINT32                    TimeOut\r
+  )\r
+{\r
+  UINT32                            RegRead;\r
+  UINT32                            WaitTime;\r
+\r
+  for (WaitTime = 0; WaitTime < TimeOut; WaitTime += 30){\r
+    RegRead = MmioRead32 ((UINTN)Register);\r
+    if ((RegRead & BitSet) == BitSet && (RegRead & BitClear) == 0) {\r
+      return EFI_SUCCESS;\r
+    }\r
+    MicroSecondDelay (30);\r
+  }\r
+  return EFI_TIMEOUT;\r
+}\r
+\r
+/**\r
+  Get the control of TPM chip.\r
+\r
+  @param[in] CrbReg                Pointer to CRB register.\r
+\r
+  @retval    EFI_SUCCESS           Get the control of TPM chip.\r
+  @retval    EFI_INVALID_PARAMETER CrbReg is NULL.\r
+  @retval    EFI_NOT_FOUND         TPM chip doesn't exit.\r
+  @retval    EFI_TIMEOUT           Can't get the TPM control in time.\r
+**/\r
+EFI_STATUS\r
+PtpCrbRequestUseTpm (\r
+  IN      PTP_CRB_REGISTERS_PTR      CrbReg\r
+  )\r
+{\r
+  EFI_STATUS                        Status;\r
+\r
+  if (!IsPtpPresence (CrbReg)) {\r
+    return EFI_NOT_FOUND;\r
+  }\r
+\r
+  MmioWrite32((UINTN)&CrbReg->LocalityControl, PTP_CRB_LOCALITY_CONTROL_REQUEST_ACCESS);\r
+  Status = PtpCrbWaitRegisterBits (\r
+             &CrbReg->LocalityStatus,\r
+             PTP_CRB_LOCALITY_STATUS_GRANTED,\r
+             0,\r
+             PTP_TIMEOUT_A\r
+             );\r
+  return Status;\r
+}\r
+\r
+/**\r
+  Send a command to TPM for execution and return response data.\r
+\r
+  @param[in]      CrbReg        TPM register space base address.\r
+  @param[in]      BufferIn      Buffer for command data.\r
+  @param[in]      SizeIn        Size of command data.\r
+  @param[in, out] BufferOut     Buffer for response data.\r
+  @param[in, out] SizeOut       Size of response data.\r
+\r
+  @retval EFI_SUCCESS           Operation completed successfully.\r
+  @retval EFI_BUFFER_TOO_SMALL  Response data buffer is too small.\r
+  @retval EFI_DEVICE_ERROR      Unexpected device behavior.\r
+  @retval EFI_UNSUPPORTED       Unsupported TPM version\r
+\r
+**/\r
+EFI_STATUS\r
+PtpCrbTpmCommand (\r
+  IN     PTP_CRB_REGISTERS_PTR      CrbReg,\r
+  IN     UINT8                      *BufferIn,\r
+  IN     UINT32                     SizeIn,\r
+  IN OUT UINT8                      *BufferOut,\r
+  IN OUT UINT32                     *SizeOut\r
+  )\r
+{\r
+  EFI_STATUS                        Status;\r
+  UINT32                            Index;\r
+  UINT32                            TpmOutSize;\r
+  UINT16                            Data16;\r
+  UINT32                            Data32;\r
+\r
+  DEBUG_CODE (\r
+    UINTN  DebugSize;\r
+\r
+    DEBUG ((EFI_D_VERBOSE, "PtpCrbTpmCommand Send - "));\r
+    if (SizeIn > 0x100) {\r
+      DebugSize = 0x40;\r
+    } else {\r
+      DebugSize = SizeIn;\r
+    }\r
+    for (Index = 0; Index < DebugSize; Index++) {\r
+      DEBUG ((EFI_D_VERBOSE, "%02x ", BufferIn[Index]));\r
+    }\r
+    if (DebugSize != SizeIn) {\r
+      DEBUG ((EFI_D_VERBOSE, "...... "));\r
+      for (Index = SizeIn - 0x20; Index < SizeIn; Index++) {\r
+        DEBUG ((EFI_D_VERBOSE, "%02x ", BufferIn[Index]));\r
+      }\r
+    }\r
+    DEBUG ((EFI_D_VERBOSE, "\n"));\r
+  );\r
+  TpmOutSize = 0;\r
+\r
+  //\r
+  // STEP 0:\r
+  // Ready is any time the TPM is ready to receive a command, following a write\r
+  // of 1 by software to Request.cmdReady, as indicated by the Status field\r
+  // being cleared to 0.\r
+  //\r
+  MmioWrite32((UINTN)&CrbReg->CrbControlRequest, PTP_CRB_CONTROL_AREA_REQUEST_COMMAND_READY);\r
+  Status = PtpCrbWaitRegisterBits (\r
+             &CrbReg->CrbControlRequest,\r
+             0,\r
+             PTP_CRB_CONTROL_AREA_REQUEST_COMMAND_READY,\r
+             PTP_TIMEOUT_C\r
+             );\r
+  if (EFI_ERROR (Status)) {\r
+    Status = EFI_DEVICE_ERROR;\r
+    goto Exit;\r
+  }\r
+  Status = PtpCrbWaitRegisterBits (\r
+             &CrbReg->CrbControlStatus,\r
+             0,\r
+             PTP_CRB_CONTROL_AREA_STATUS_TPM_IDLE,\r
+             PTP_TIMEOUT_C\r
+             );\r
+  if (EFI_ERROR (Status)) {\r
+    Status = EFI_DEVICE_ERROR;\r
+    goto Exit;\r
+  }\r
+\r
+  //\r
+  // STEP 1:\r
+  // Command Reception occurs following a Ready state between the write of the\r
+  // first byte of a command to the Command Buffer and the receipt of a write\r
+  // of 1 to Start.\r
+  //\r
+  for (Index = 0; Index < SizeIn; Index++) {\r
+    MmioWrite8 ((UINTN)&CrbReg->CrbDataBuffer[Index], BufferIn[Index]);\r
+  }\r
+  MmioWrite32 ((UINTN)&CrbReg->CrbControlCommandAddressHigh, (UINT32)RShiftU64 ((UINTN)CrbReg->CrbDataBuffer, 32));\r
+  MmioWrite32 ((UINTN)&CrbReg->CrbControlCommandAddressLow, (UINT32)(UINTN)CrbReg->CrbDataBuffer);\r
+  MmioWrite32 ((UINTN)&CrbReg->CrbControlCommandSize, sizeof(CrbReg->CrbDataBuffer));\r
+\r
+  MmioWrite64 ((UINTN)&CrbReg->CrbControlResponseAddrss, (UINT32)(UINTN)CrbReg->CrbDataBuffer);\r
+  MmioWrite32 ((UINTN)&CrbReg->CrbControlResponseSize, sizeof(CrbReg->CrbDataBuffer));\r
+\r
+  //\r
+  // STEP 2:\r
+  // Command Execution occurs after receipt of a 1 to Start and the TPM\r
+  // clearing Start to 0.\r
+  //\r
+  MmioWrite32((UINTN)&CrbReg->CrbControlStart, PTP_CRB_CONTROL_START);\r
+  Status = PtpCrbWaitRegisterBits (\r
+             &CrbReg->CrbControlStart,\r
+             0,\r
+             PTP_CRB_CONTROL_START,\r
+             PTP_TIMEOUT_MAX\r
+             );\r
+  if (EFI_ERROR (Status)) {\r
+    Status = EFI_DEVICE_ERROR;\r
+    goto Exit;\r
+  }\r
+\r
+  //\r
+  // STEP 3:\r
+  // Command Completion occurs after completion of a command (indicated by the\r
+  // TPM clearing TPM_CRB_CTRL_Start_x to 0) and before a write of a 1 by the\r
+  // software to Request.goIdle.\r
+  //\r
+\r
+  //\r
+  // Get response data header\r
+  //\r
+  for (Index = 0; Index < sizeof (TPM2_RESPONSE_HEADER); Index++) {\r
+    BufferOut[Index] = MmioRead8 ((UINTN)&CrbReg->CrbDataBuffer[Index]);\r
+  }\r
+  DEBUG_CODE (\r
+    DEBUG ((EFI_D_VERBOSE, "PtpCrbTpmCommand ReceiveHeader - "));\r
+    for (Index = 0; Index < sizeof (TPM2_RESPONSE_HEADER); Index++) {\r
+      DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index]));\r
+    }\r
+    DEBUG ((EFI_D_VERBOSE, "\n"));\r
+  );\r
+  //\r
+  // Check the reponse data header (tag, parasize and returncode)\r
+  //\r
+  CopyMem (&Data16, BufferOut, sizeof (UINT16));\r
+  // TPM2 should not use this RSP_COMMAND\r
+  if (SwapBytes16 (Data16) == TPM_ST_RSP_COMMAND) {\r
+    DEBUG ((EFI_D_ERROR, "TPM2: TPM_ST_RSP error - %x\n", TPM_ST_RSP_COMMAND));\r
+    Status = EFI_UNSUPPORTED;\r
+    goto Exit;\r
+  }\r
+\r
+  CopyMem (&Data32, (BufferOut + 2), sizeof (UINT32));\r
+  TpmOutSize  = SwapBytes32 (Data32);\r
+  if (*SizeOut < TpmOutSize) {\r
+    Status = EFI_BUFFER_TOO_SMALL;\r
+    goto Exit;\r
+  }\r
+  *SizeOut = TpmOutSize;\r
+  //\r
+  // Continue reading the remaining data\r
+  //\r
+  for (Index = sizeof (TPM2_RESPONSE_HEADER); Index < TpmOutSize; Index++) {\r
+    BufferOut[Index] = MmioRead8 ((UINTN)&CrbReg->CrbDataBuffer[Index]);\r
+  }\r
+Exit:\r
+  DEBUG_CODE (\r
+    DEBUG ((EFI_D_VERBOSE, "PtpCrbTpmCommand Receive - "));\r
+    for (Index = 0; Index < TpmOutSize; Index++) {\r
+      DEBUG ((EFI_D_VERBOSE, "%02x ", BufferOut[Index]));\r
+    }\r
+    DEBUG ((EFI_D_VERBOSE, "\n"));\r
+  );\r
+\r
+  //\r
+  // STEP 4:\r
+  // Idle is any time TPM_CRB_CTRL_STS_x.Status.goIdle is 1.\r
+  //\r
+  MmioWrite32((UINTN)&CrbReg->CrbControlRequest, PTP_CRB_CONTROL_AREA_REQUEST_GO_IDLE);\r
+  return Status;\r
+}\r
+\r
+/**\r
+  Send a command to TPM for execution and return response data.\r
+\r
+  @param[in]      TisReg        TPM register space base address.\r
+  @param[in]      BufferIn      Buffer for command data.\r
+  @param[in]      SizeIn        Size of command data.\r
+  @param[in, out] BufferOut     Buffer for response data.\r
+  @param[in, out] SizeOut       Size of response data.\r
+\r
+  @retval EFI_SUCCESS           Operation completed successfully.\r
+  @retval EFI_BUFFER_TOO_SMALL  Response data buffer is too small.\r
+  @retval EFI_DEVICE_ERROR      Unexpected device behavior.\r
+  @retval EFI_UNSUPPORTED       Unsupported TPM version\r
+\r
+**/\r
+EFI_STATUS\r
+Tpm2TisTpmCommand (\r
+  IN     TIS_PC_REGISTERS_PTR       TisReg,\r
+  IN     UINT8                      *BufferIn,\r
+  IN     UINT32                     SizeIn,\r
+  IN OUT UINT8                      *BufferOut,\r
+  IN OUT UINT32                     *SizeOut\r
+  );\r
+\r
+/**\r
+  Get the control of TPM chip by sending requestUse command TIS_PC_ACC_RQUUSE\r
+  to ACCESS Register in the time of default TIS_TIMEOUT_A.\r
+\r
+  @param[in] TisReg                Pointer to TIS register.\r
+\r
+  @retval    EFI_SUCCESS           Get the control of TPM chip.\r
+  @retval    EFI_INVALID_PARAMETER TisReg is NULL.\r
+  @retval    EFI_NOT_FOUND         TPM chip doesn't exit.\r
+  @retval    EFI_TIMEOUT           Can't get the TPM control in time.\r
+**/\r
+EFI_STATUS\r
+TisPcRequestUseTpm (\r
+  IN     TIS_PC_REGISTERS_PTR       TisReg\r
+  );\r
+\r
+/**\r
+  Return PTP interface type.\r
+\r
+  @param[in] Register                Pointer to PTP register.\r
+\r
+  @return PTP interface type.\r
+**/\r
+PTP_INTERFACE_TYPE\r
+GetPtpInterface (\r
+  IN VOID *Register\r
+  )\r
+{\r
+  PTP_CRB_INTERFACE_IDENTIFIER  InterfaceId;\r
+  PTP_FIFO_INTERFACE_CAPABILITY InterfaceCapability;\r
+\r
+  if (!IsPtpPresence (Register)) {\r
+    return PtpInterfaceMax;\r
+  }\r
+  //\r
+  // Check interface id\r
+  //\r
+  InterfaceId.Uint32 = MmioRead32 ((UINTN)&((PTP_CRB_REGISTERS *)Register)->InterfaceId);\r
+  InterfaceCapability.Uint32 = MmioRead32 ((UINTN)&((PTP_FIFO_REGISTERS *)Register)->InterfaceCapability);\r
+\r
+  if ((InterfaceId.Bits.InterfaceType == PTP_INTERFACE_IDENTIFIER_INTERFACE_TYPE_CRB) &&\r
+      (InterfaceId.Bits.InterfaceVersion == PTP_INTERFACE_IDENTIFIER_INTERFACE_VERSION_CRB) &&\r
+      (InterfaceId.Bits.CapCRB != 0)) {\r
+    return PtpInterfaceCrb;\r
+  }\r
+  if ((InterfaceId.Bits.InterfaceType == PTP_INTERFACE_IDENTIFIER_INTERFACE_TYPE_FIFO) &&\r
+      (InterfaceId.Bits.InterfaceVersion == PTP_INTERFACE_IDENTIFIER_INTERFACE_VERSION_FIFO) &&\r
+      (InterfaceId.Bits.CapFIFO != 0) &&\r
+      (InterfaceCapability.Bits.InterfaceVersion == INTERFACE_CAPABILITY_INTERFACE_VERSION_PTP)) {\r
+    return PtpInterfaceFifo;\r
+  }\r
+  return PtpInterfaceTis;\r
+}\r
+\r
+/**\r
+  Dump PTP register information.\r
+\r
+  @param[in] Register                Pointer to PTP register.\r
+**/\r
+VOID\r
+DumpPtpInfo (\r
+  IN VOID *Register\r
+  )\r
+{\r
+  PTP_CRB_INTERFACE_IDENTIFIER  InterfaceId;\r
+  PTP_FIFO_INTERFACE_CAPABILITY InterfaceCapability;\r
+  UINT8                         StatusEx;\r
+  UINT16                        Vid;\r
+  UINT16                        Did;\r
+  UINT8                         Rid;\r
+  PTP_INTERFACE_TYPE            PtpInterface;\r
+\r
+  if (!IsPtpPresence (Register)) {\r
+    return ;\r
+  }\r
+\r
+  InterfaceId.Uint32 = MmioRead32 ((UINTN)&((PTP_CRB_REGISTERS *)Register)->InterfaceId);\r
+  InterfaceCapability.Uint32 = MmioRead32 ((UINTN)&((PTP_FIFO_REGISTERS *)Register)->InterfaceCapability);\r
+  StatusEx = MmioRead8 ((UINTN)&((PTP_FIFO_REGISTERS *)Register)->StatusEx);\r
+\r
+  //\r
+  // Dump InterfaceId Register for PTP\r
+  //\r
+  DEBUG ((EFI_D_INFO, "InterfaceId - 0x%08x\n", InterfaceId.Uint32));\r
+  DEBUG ((EFI_D_INFO, "  InterfaceType    - 0x%02x\n", InterfaceId.Bits.InterfaceType));\r
+  if (InterfaceId.Bits.InterfaceType != PTP_INTERFACE_IDENTIFIER_INTERFACE_TYPE_TIS) {\r
+    DEBUG ((EFI_D_INFO, "  InterfaceVersion - 0x%02x\n", InterfaceId.Bits.InterfaceVersion));\r
+    DEBUG ((EFI_D_INFO, "  CapFIFO          - 0x%x\n", InterfaceId.Bits.CapFIFO));\r
+    DEBUG ((EFI_D_INFO, "  CapCRB           - 0x%x\n", InterfaceId.Bits.CapCRB));\r
+  }\r
+\r
+  //\r
+  // Dump Capability Register for TIS and FIFO\r
+  //\r
+  DEBUG ((EFI_D_INFO, "InterfaceCapability - 0x%08x\n", InterfaceCapability.Uint32));\r
+  if ((InterfaceId.Bits.InterfaceType == PTP_INTERFACE_IDENTIFIER_INTERFACE_TYPE_TIS) ||\r
+      (InterfaceId.Bits.InterfaceType == PTP_INTERFACE_IDENTIFIER_INTERFACE_TYPE_FIFO)) {\r
+    DEBUG ((EFI_D_INFO, "  InterfaceVersion - 0x%x\n", InterfaceCapability.Bits.InterfaceVersion));\r
+  }\r
+\r
+  //\r
+  // Dump StatusEx Register for PTP FIFO\r
+  //\r
+  DEBUG ((EFI_D_INFO, "StatusEx - 0x%02x\n", StatusEx));\r
+  if (InterfaceCapability.Bits.InterfaceVersion == INTERFACE_CAPABILITY_INTERFACE_VERSION_PTP) {\r
+    DEBUG ((EFI_D_INFO, "  TpmFamily - 0x%x\n", (StatusEx & PTP_FIFO_STS_EX_TPM_FAMILY) >> PTP_FIFO_STS_EX_TPM_FAMILY_OFFSET));\r
+  }\r
+\r
+  Vid = 0xFFFF;\r
+  Did = 0xFFFF;\r
+  Rid = 0xFF;\r
+  PtpInterface = GetPtpInterface (Register);\r
+  DEBUG ((EFI_D_INFO, "PtpInterface - %x\n", PtpInterface));\r
+  switch (PtpInterface) {\r
+  case PtpInterfaceCrb:\r
+    Vid = MmioRead16 ((UINTN)&((PTP_CRB_REGISTERS *)Register)->Vid);\r
+    Did = MmioRead16 ((UINTN)&((PTP_CRB_REGISTERS *)Register)->Did);\r
+    Rid = (UINT8)InterfaceId.Bits.Rid;\r
+    break;\r
+  case PtpInterfaceFifo:\r
+  case PtpInterfaceTis:\r
+    Vid = MmioRead16 ((UINTN)&((PTP_FIFO_REGISTERS *)Register)->Vid);\r
+    Did = MmioRead16 ((UINTN)&((PTP_FIFO_REGISTERS *)Register)->Did);\r
+    Rid = MmioRead8 ((UINTN)&((PTP_FIFO_REGISTERS *)Register)->Rid);\r
+    break;\r
+  default:\r
+    break;\r
+  }\r
+  DEBUG ((EFI_D_INFO, "VID - 0x%04x\n", Vid));\r
+  DEBUG ((EFI_D_INFO, "DID - 0x%04x\n", Did));\r
+  DEBUG ((EFI_D_INFO, "RID - 0x%02x\n", Rid));\r
+}\r
+\r
+/**\r
+  This service enables the sending of commands to the TPM2.\r
+\r
+  @param[in]      InputParameterBlockSize  Size of the TPM2 input parameter block.\r
+  @param[in]      InputParameterBlock      Pointer to the TPM2 input parameter block.\r
+  @param[in,out]  OutputParameterBlockSize Size of the TPM2 output parameter block.\r
+  @param[in]      OutputParameterBlock     Pointer to the TPM2 output parameter block.\r
+\r
+  @retval EFI_SUCCESS            The command byte stream was successfully sent to the device and a response was successfully received.\r
+  @retval EFI_DEVICE_ERROR       The command was not successfully sent to the device or a response was not successfully received from the device.\r
+  @retval EFI_BUFFER_TOO_SMALL   The output parameter block is too small.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+DTpm2SubmitCommand (\r
+  IN UINT32            InputParameterBlockSize,\r
+  IN UINT8             *InputParameterBlock,\r
+  IN OUT UINT32        *OutputParameterBlockSize,\r
+  IN UINT8             *OutputParameterBlock\r
+  )\r
+{\r
+  PTP_INTERFACE_TYPE  PtpInterface;\r
+\r
+  PtpInterface = GetPtpInterface ((VOID *) (UINTN) PcdGet64 (PcdTpmBaseAddress));\r
+  switch (PtpInterface) {\r
+  case PtpInterfaceCrb:\r
+    return PtpCrbTpmCommand (\r
+           (PTP_CRB_REGISTERS_PTR) (UINTN) PcdGet64 (PcdTpmBaseAddress),\r
+           InputParameterBlock,\r
+           InputParameterBlockSize,\r
+           OutputParameterBlock,\r
+           OutputParameterBlockSize\r
+           );\r
+  case PtpInterfaceFifo:\r
+  case PtpInterfaceTis:\r
+    return Tpm2TisTpmCommand (\r
+           (TIS_PC_REGISTERS_PTR) (UINTN) PcdGet64 (PcdTpmBaseAddress),\r
+           InputParameterBlock,\r
+           InputParameterBlockSize,\r
+           OutputParameterBlock,\r
+           OutputParameterBlockSize\r
+           );\r
+  default:\r
+    return EFI_NOT_FOUND;\r
+  }\r
+}\r
+\r
+/**\r
+  This service requests use TPM2.\r
+\r
+  @retval EFI_SUCCESS      Get the control of TPM2 chip.\r
+  @retval EFI_NOT_FOUND    TPM2 not found.\r
+  @retval EFI_DEVICE_ERROR Unexpected device behavior.\r
+**/\r
+EFI_STATUS\r
+EFIAPI\r
+DTpm2RequestUseTpm (\r
+  VOID\r
+  )\r
+{\r
+  PTP_INTERFACE_TYPE  PtpInterface;\r
+\r
+  PtpInterface = GetPtpInterface ((VOID *) (UINTN) PcdGet64 (PcdTpmBaseAddress));\r
+  switch (PtpInterface) {\r
+  case PtpInterfaceCrb:\r
+    return PtpCrbRequestUseTpm ((PTP_CRB_REGISTERS_PTR) (UINTN) PcdGet64 (PcdTpmBaseAddress));\r
+  case PtpInterfaceFifo:\r
+  case PtpInterfaceTis:\r
+    return TisPcRequestUseTpm ((TIS_PC_REGISTERS_PTR) (UINTN) PcdGet64 (PcdTpmBaseAddress));\r
+  default:\r
+    return EFI_NOT_FOUND;\r
+  }\r
+}\r
index 1276aea9c237827e5d86652235bef0b1236776d2..6cd7030df2a6c33c24917da8cd3b1183e1aee158 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   TIS (TPM Interface Specification) functions used by dTPM2.0 library.\r
   \r
 /** @file\r
   TIS (TPM Interface Specification) functions used by dTPM2.0 library.\r
   \r
-Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2013 - 2016, Intel Corporation. All rights reserved.<BR>\r
 (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>\r
 This program and the accompanying materials \r
 are licensed and made available under the terms and conditions of the BSD License \r
 (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>\r
 This program and the accompanying materials \r
 are licensed and made available under the terms and conditions of the BSD License \r
@@ -23,168 +23,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #include <Library/Tpm2DeviceLib.h>\r
 #include <Library/PcdLib.h>\r
 \r
 #include <Library/Tpm2DeviceLib.h>\r
 #include <Library/PcdLib.h>\r
 \r
-//\r
-// Set structure alignment to 1-byte\r
-//\r
-#pragma pack (1)\r
-\r
-//\r
-// Register set map as specified in TIS specification Chapter 10\r
-//\r
-typedef struct {\r
-  ///\r
-  /// Used to gain ownership for this particular port.\r
-  ///\r
-  UINT8                             Access;             // 0\r
-  UINT8                             Reserved1[7];       // 1\r
-  ///\r
-  /// Controls interrupts.\r
-  ///\r
-  UINT32                            IntEnable;          // 8\r
-  ///\r
-  /// SIRQ vector to be used by the TPM.\r
-  ///\r
-  UINT8                             IntVector;          // 0ch\r
-  UINT8                             Reserved2[3];       // 0dh\r
-  ///\r
-  /// What caused interrupt.\r
-  ///\r
-  UINT32                            IntSts;             // 10h\r
-  ///\r
-  /// Shows which interrupts are supported by that particular TPM.\r
-  ///\r
-  UINT32                            IntfCapability;     // 14h\r
-  ///\r
-  /// Status Register. Provides status of the TPM.\r
-  ///\r
-  UINT8                             Status;             // 18h\r
-  ///\r
-  /// Number of consecutive writes that can be done to the TPM.\r
-  ///\r
-  UINT16                            BurstCount;         // 19h\r
-  ///\r
-  /// TPM2 support CANCEL at BIT[24] of STATUS register (WO)\r
-  ///\r
-  UINT8                             StatusEx;           // 1Bh\r
-  UINT8                             Reserved3[8];\r
-  ///\r
-  /// Read or write FIFO, depending on transaction.\r
-  ///\r
-  UINT32                            DataFifo;           // 24h\r
-  UINT8                             Reserved4[0xed8];   // 28h\r
-  ///\r
-  /// Vendor ID\r
-  ///\r
-  UINT16                            Vid;                // 0f00h\r
-  ///\r
-  /// Device ID\r
-  ///\r
-  UINT16                            Did;                // 0f02h\r
-  ///\r
-  /// Revision ID\r
-  ///\r
-  UINT8                             Rid;                // 0f04h\r
-  ///\r
-  /// TCG defined configuration registers.\r
-  ///\r
-  UINT8                             TcgDefined[0x7b];   // 0f05h\r
-  ///\r
-  /// Alias to I/O legacy space.\r
-  ///\r
-  UINT32                            LegacyAddress1;     // 0f80h\r
-  ///\r
-  /// Additional 8 bits for I/O legacy space extension.\r
-  ///\r
-  UINT32                            LegacyAddress1Ex;   // 0f84h\r
-  ///\r
-  /// Alias to second I/O legacy space.\r
-  ///\r
-  UINT32                            LegacyAddress2;     // 0f88h\r
-  ///\r
-  /// Additional 8 bits for second I/O legacy space extension.\r
-  ///\r
-  UINT32                            LegacyAddress2Ex;   // 0f8ch\r
-  ///\r
-  /// Vendor-defined configuration registers.\r
-  ///\r
-  UINT8                             VendorDefined[0x70];// 0f90h\r
-} TIS_PC_REGISTERS;\r
-\r
-//\r
-// Restore original structure alignment\r
-//\r
-#pragma pack ()\r
-\r
-//\r
-// Define pointer types used to access TIS registers on PC\r
-//\r
-typedef TIS_PC_REGISTERS  *TIS_PC_REGISTERS_PTR;\r
-\r
-//\r
-// Define bits of ACCESS and STATUS registers\r
-//\r
-\r
-///\r
-/// This bit is a 1 to indicate that the other bits in this register are valid.\r
-///\r
-#define TIS_PC_VALID                BIT7\r
-///\r
-/// Indicate that this locality is active.\r
-///\r
-#define TIS_PC_ACC_ACTIVE           BIT5\r
-///\r
-/// Set to 1 to indicate that this locality had the TPM taken away while\r
-/// this locality had the TIS_PC_ACC_ACTIVE bit set.\r
-///\r
-#define TIS_PC_ACC_SEIZED           BIT4\r
-///\r
-/// Set to 1 to indicate that TPM MUST reset the\r
-/// TIS_PC_ACC_ACTIVE bit and remove ownership for localities less than the\r
-/// locality that is writing this bit.\r
-///\r
-#define TIS_PC_ACC_SEIZE            BIT3\r
-///\r
-/// When this bit is 1, another locality is requesting usage of the TPM.\r
-///\r
-#define TIS_PC_ACC_PENDIND          BIT2\r
-///\r
-/// Set to 1 to indicate that this locality is requesting to use TPM.\r
-///\r
-#define TIS_PC_ACC_RQUUSE           BIT1\r
-///\r
-/// A value of 1 indicates that a T/OS has not been established on the platform\r
-///\r
-#define TIS_PC_ACC_ESTABLISH        BIT0\r
-\r
-///\r
-/// When this bit is 1, TPM is in the Ready state, \r
-/// indicating it is ready to receive a new command.\r
-///\r
-#define TIS_PC_STS_READY            BIT6\r
-///\r
-/// Write a 1 to this bit to cause the TPM to execute that command.\r
-///\r
-#define TIS_PC_STS_GO               BIT5\r
-///\r
-/// This bit indicates that the TPM has data available as a response.\r
-///\r
-#define TIS_PC_STS_DATA             BIT4\r
-///\r
-/// The TPM sets this bit to a value of 1 when it expects another byte of data for a command.\r
-///\r
-#define TIS_PC_STS_EXPECT           BIT3\r
-///\r
-/// Writes a 1 to this bit to force the TPM to re-send the response.\r
-///\r
-#define TIS_PC_STS_RETRY            BIT1\r
-\r
-//\r
-// Default TimeOut value\r
-//\r
-#define TIS_TIMEOUT_A               (1000 * 1000)  // 1s\r
-#define TIS_TIMEOUT_B               (2000 * 1000)  // 2s\r
-#define TIS_TIMEOUT_C               (1000 * 1000)  // 1s\r
-#define TIS_TIMEOUT_D               (1000 * 1000)  // 1s\r
+#include <IndustryStandard/TpmTis.h>\r
 \r
 #define TIS_TIMEOUT_MAX             (90000 * 1000)  // 90s\r
 \r
 \r
 #define TIS_TIMEOUT_MAX             (90000 * 1000)  // 90s\r
 \r
@@ -546,7 +385,7 @@ Exit:
 **/\r
 EFI_STATUS\r
 EFIAPI\r
 **/\r
 EFI_STATUS\r
 EFIAPI\r
-DTpm2SubmitCommand (\r
+DTpm2TisSubmitCommand (\r
   IN UINT32            InputParameterBlockSize,\r
   IN UINT8             *InputParameterBlock,\r
   IN OUT UINT32        *OutputParameterBlockSize,\r
   IN UINT32            InputParameterBlockSize,\r
   IN UINT8             *InputParameterBlock,\r
   IN OUT UINT32        *OutputParameterBlockSize,\r
@@ -571,7 +410,7 @@ DTpm2SubmitCommand (
 **/\r
 EFI_STATUS\r
 EFIAPI\r
 **/\r
 EFI_STATUS\r
 EFIAPI\r
-DTpm2RequestUseTpm (\r
+DTpm2TisRequestUseTpm (\r
   VOID\r
   )\r
 {\r
   VOID\r
   )\r
 {\r