]> git.proxmox.com Git - mirror_edk2.git/commitdiff
SecurityPkg/TrEEVendorLib: remove TrEE.
authorJiewen Yao <jiewen.yao@intel.com>
Wed, 14 Mar 2018 13:55:53 +0000 (21:55 +0800)
committerJiewen Yao <jiewen.yao@intel.com>
Fri, 16 Mar 2018 06:19:52 +0000 (14:19 +0800)
TrEE is deprecated. We need use Tcg2.

Cc: Chao B Zhang <chao.b.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jiewen Yao <jiewen.yao@intel.com>
Reviewed-by: Chao B Zhang <chao.b.zhang@intel.com>
SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.c [deleted file]
SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.inf [deleted file]
SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.uni [deleted file]

diff --git a/SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.c b/SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.c
deleted file mode 100644 (file)
index efd477a..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-/** @file\r
-  NULL TrEE PP Vendor library instance that does not support any vendor specific PPI.\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 <Library/DebugLib.h>\r
-#include <Library/TrEEPpVendorLib.h>\r
-\r
-/**\r
-  Check and execute the requested physical presence command.\r
-\r
-  This API should be invoked in BIOS boot phase to process pending request.\r
-  \r
-  Caution: This function may receive untrusted input.\r
-  \r
-  If OperationRequest < 128, then ASSERT().\r
-\r
-  @param[in]      PlatformAuth     platform auth value. NULL means no platform auth change.\r
-  @param[in]      OperationRequest TPM physical presence operation request.\r
-  @param[in, out] ManagementFlags  BIOS TPM Management Flags.\r
-  @param[out]     ResetRequired    If reset is required to vendor settings in effect.\r
-                                   True, it indicates the reset is required.\r
-                                   False, it indicates the reset is not required.\r
-\r
-  @return TPM Operation Response to OS Environment.\r
-**/\r
-UINT32\r
-EFIAPI\r
-TrEEPpVendorLibExecutePendingRequest (\r
-  IN TPM2B_AUTH             *PlatformAuth,  OPTIONAL\r
-  IN UINT32                 OperationRequest,\r
-  IN OUT UINT32             *ManagementFlags,\r
-  OUT BOOLEAN               *ResetRequired\r
-  )\r
-{\r
-  ASSERT (OperationRequest >= TREE_PHYSICAL_PRESENCE_VENDOR_SPECIFIC_OPERATION);\r
-  return TREE_PP_OPERATION_RESPONSE_BIOS_FAILURE;\r
-}\r
-\r
-/**\r
-  Check if there is a valid physical presence command request.\r
-\r
-  This API should be invoked in BIOS boot phase to process pending request.\r
-  \r
-  Caution: This function may receive untrusted input.\r
-\r
-  If OperationRequest < 128, then ASSERT().\r
-\r
-  @param[in]      OperationRequest TPM physical presence operation request.\r
-  @param[in]      ManagementFlags  BIOS TPM Management Flags.\r
-  @param[out]     RequestConfirmed If the physical presence operation command required user confirm from UI.\r
-                                   True, it indicates the command doesn't require user confirm.\r
-                                   False, it indicates the command need user confirm from UI.\r
-\r
-  @retval  TRUE        Physical Presence operation command is valid.\r
-  @retval  FALSE       Physical Presence operation command is invalid.\r
-**/\r
-BOOLEAN\r
-EFIAPI\r
-TrEEPpVendorLibHasValidRequest (\r
-  IN UINT32                 OperationRequest,\r
-  IN UINT32                 ManagementFlags,\r
-  OUT BOOLEAN               *RequestConfirmed\r
-  )\r
-{\r
-  ASSERT (OperationRequest >= TREE_PHYSICAL_PRESENCE_VENDOR_SPECIFIC_OPERATION);\r
-  return FALSE;\r
-}\r
-\r
-/**\r
-  The callback for TPM vendor specific physical presence which is called for\r
-  Submit TPM Operation Request to Pre-OS Environment and\r
-  Submit TPM Operation Request to Pre-OS Environment 2.\r
-\r
-  This API should be invoked in OS runtime phase to interface with ACPI method.\r
-\r
-  Caution: This function may receive untrusted input.\r
-  \r
-  If OperationRequest < 128, then ASSERT().\r
-\r
-  @param[in]      OperationRequest TPM physical presence operation request.\r
-  @param[in]      ManagementFlags  BIOS TPM Management Flags.\r
-\r
-  @return Return Code for Submit TPM Operation Request to Pre-OS Environment and\r
-          Submit TPM Operation Request to Pre-OS Environment 2.\r
-**/\r
-UINT32\r
-EFIAPI\r
-TrEEPpVendorLibSubmitRequestToPreOSFunction (\r
-  IN UINT32                 OperationRequest,\r
-  IN UINT32                 ManagementFlags\r
-  )\r
-{\r
-  ASSERT (OperationRequest >= TREE_PHYSICAL_PRESENCE_VENDOR_SPECIFIC_OPERATION);\r
-  return TREE_PP_SUBMIT_REQUEST_TO_PREOS_NOT_IMPLEMENTED;\r
-}\r
-\r
-/**\r
-  The callback for TPM vendor specific physical presence which is called for\r
-  Get User Confirmation Status for Operation.\r
-\r
-  This API should be invoked in OS runtime phase to interface with ACPI method.\r
-\r
-  Caution: This function may receive untrusted input.\r
-  \r
-  If OperationRequest < 128, then ASSERT().\r
-\r
-  @param[in]      OperationRequest TPM physical presence operation request.\r
-  @param[in]      ManagementFlags  BIOS TPM Management Flags.\r
-\r
-  @return Return Code for Get User Confirmation Status for Operation.\r
-**/\r
-UINT32\r
-EFIAPI\r
-TrEEPpVendorLibGetUserConfirmationStatusFunction (\r
-  IN UINT32                 OperationRequest,\r
-  IN UINT32                 ManagementFlags\r
-  )\r
-{\r
-  ASSERT (OperationRequest >= TREE_PHYSICAL_PRESENCE_VENDOR_SPECIFIC_OPERATION);\r
-  return TREE_PP_GET_USER_CONFIRMATION_NOT_IMPLEMENTED;\r
-}\r
diff --git a/SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.inf b/SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.inf
deleted file mode 100644 (file)
index 81144e9..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-## @file\r
-#  NULL TrEE PP Vendor library instance that does not support any vendor specific PPI\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
-# 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
-[Defines]\r
-  INF_VERSION                    = 0x00010005\r
-  BASE_NAME                      = TrEEPpVendorLibNull\r
-  MODULE_UNI_FILE                = TrEEPpVendorLibNull.uni\r
-  FILE_GUID                      = FB76E42B-EA77-48F3-A61D-208FF0535F92\r
-  MODULE_TYPE                    = DXE_DRIVER\r
-  VERSION_STRING                 = 1.0\r
-  LIBRARY_CLASS                  = TrEEPpVendorLib|DXE_RUNTIME_DRIVER DXE_SMM_DRIVER DXE_DRIVER\r
-\r
-#\r
-# The following information is for reference only and not required by the build tools.\r
-#\r
-#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC\r
-#\r
-\r
-[Sources]\r
-  TrEEPpVendorLibNull.c\r
-\r
-[Packages]\r
-  MdePkg/MdePkg.dec\r
-  SecurityPkg/SecurityPkg.dec\r
-  \r
-[LibraryClasses]\r
-  DebugLib
\ No newline at end of file
diff --git a/SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.uni b/SecurityPkg/Library/TrEEPpVendorLibNull/TrEEPpVendorLibNull.uni
deleted file mode 100644 (file)
index 7463e8f..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// /** @file\r
-// NULL TrEE PP Vendor library instance that does not support any vendor specific PPI\r
-//\r
-// Copyright (c) 2015, 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
-// which accompanies this distribution. The full text of the license may be found at\r
-// http://opensource.org/licenses/bsd-license.php\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
-#string STR_MODULE_ABSTRACT             #language en-US "NULL TrEE PP Vendor library instance that does not support any vendor specific PPI"\r
-\r
-#string STR_MODULE_DESCRIPTION          #language en-US "NULL TrEE PP Vendor library instance that does not support any vendor specific PPI."\r
-\r