2016-05-13 07:00:53 +02:00
|
|
|
/** @file
|
|
|
|
Sample to provide SecTemporaryRamDone function.
|
|
|
|
|
|
|
|
Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:06 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2016-05-13 07:00:53 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <PiPei.h>
|
|
|
|
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
2016-07-11 04:24:16 +02:00
|
|
|
#include <Library/FspWrapperApiLib.h>
|
|
|
|
#include <Library/FspWrapperPlatformLib.h>
|
|
|
|
#include <Guid/FspHeaderFile.h>
|
2016-05-13 07:00:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
This interface disables temporary memory in SEC Phase.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
SecPlatformDisableTemporaryMemory (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
VOID *TempRamExitParam;
|
|
|
|
FSP_INFO_HEADER *FspHeader;
|
|
|
|
|
|
|
|
FspHeader = FspFindFspHeader (PcdGet32(PcdFspmBaseAddress));
|
|
|
|
if (FspHeader == NULL) {
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG((DEBUG_INFO, "SecPlatformDisableTemporaryMemory enter\n"));
|
|
|
|
|
2016-07-11 04:24:16 +02:00
|
|
|
TempRamExitParam = UpdateTempRamExitParam ();
|
|
|
|
Status = CallTempRamExit (TempRamExitParam);
|
2016-05-13 07:00:53 +02:00
|
|
|
DEBUG((DEBUG_INFO, "TempRamExit status: 0x%x\n", Status));
|
|
|
|
ASSERT_EFI_ERROR(Status);
|
|
|
|
|
|
|
|
return ;
|
|
|
|
}
|