mirror of https://github.com/acidanthera/audk.git
26 lines
554 B
C
26 lines
554 B
C
|
/** @file
|
||
|
SEV Secret boot time HOB placement
|
||
|
|
||
|
Copyright (C) 2020 James Bottomley, IBM Corporation.
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
**/
|
||
|
#include <PiPei.h>
|
||
|
#include <Library/HobLib.h>
|
||
|
#include <Library/PcdLib.h>
|
||
|
|
||
|
EFI_STATUS
|
||
|
EFIAPI
|
||
|
InitializeSecretPei (
|
||
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
||
|
IN CONST EFI_PEI_SERVICES **PeiServices
|
||
|
)
|
||
|
{
|
||
|
BuildMemoryAllocationHob (
|
||
|
PcdGet32 (PcdSevLaunchSecretBase),
|
||
|
PcdGet32 (PcdSevLaunchSecretSize),
|
||
|
EfiBootServicesData
|
||
|
);
|
||
|
|
||
|
return EFI_SUCCESS;
|
||
|
}
|