Retire TCG platform protocol, which will be replaced by PI Security Architecture protocol.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7848 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4
2009-03-10 07:57:15 +00:00
parent 351d6e7fcc
commit 4941d8817d
8 changed files with 2 additions and 145 deletions

View File

@ -621,37 +621,12 @@ CoreExitBootServices (
)
{
EFI_STATUS Status;
EFI_STATUS StatusTemp;
EFI_TCG_PLATFORM_PROTOCOL *TcgPlatformProtocol;
//
// Measure invocation of ExitBootServices,
// which is defined by TCG_EFI_Platform_1_20_Final Specification
//
TcgPlatformProtocol = NULL;
Status = CoreLocateProtocol (
&gEfiTcgPlatformProtocolGuid,
NULL,
(VOID **) &TcgPlatformProtocol
);
if (!EFI_ERROR (Status)) {
Status = TcgPlatformProtocol->MeasureAction (EFI_EXIT_BOOT_SERVICES_INVOCATION);
ASSERT_EFI_ERROR (Status);
}
//
// Terminate memory services if the MapKey matches
//
Status = CoreTerminateMemoryMap (MapKey);
if (EFI_ERROR (Status)) {
//
// Measure failure of ExitBootServices
//
if (TcgPlatformProtocol != NULL) {
StatusTemp = TcgPlatformProtocol->MeasureAction (EFI_EXIT_BOOT_SERVICES_FAILED);
ASSERT_EFI_ERROR (StatusTemp);
}
return Status;
}
@ -705,14 +680,6 @@ CoreExitBootServices (
//
gRuntime->AtRuntime = TRUE;
//
// Measure success of ExitBootServices
//
if (TcgPlatformProtocol != NULL) {
StatusTemp = TcgPlatformProtocol->MeasureAction (EFI_EXIT_BOOT_SERVICES_SUCCEEDED);
ASSERT_EFI_ERROR (StatusTemp);
}
return Status;
}