2016-05-13 07:00:53 +02:00
|
|
|
/** @file
|
|
|
|
This will be invoked only once. It will call FspMemoryInit API,
|
|
|
|
register TemporaryRamDonePpi to call TempRamExit API, and register MemoryDiscoveredPpi
|
|
|
|
notify to call FspSiliconInit API.
|
|
|
|
|
2019-04-12 10:54:47 +02:00
|
|
|
Copyright (c) 2014 - 2019, 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/PeimEntryPoint.h>
|
|
|
|
#include <Library/PeiServicesLib.h>
|
|
|
|
#include <Library/PeiServicesTablePointerLib.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#include <Library/HobLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Library/FspWrapperPlatformLib.h>
|
|
|
|
#include <Library/FspWrapperHobProcessLib.h>
|
|
|
|
#include <Library/TimerLib.h>
|
|
|
|
#include <Library/PerformanceLib.h>
|
|
|
|
#include <Library/FspWrapperApiLib.h>
|
|
|
|
|
|
|
|
#include <Ppi/FspSiliconInitDone.h>
|
|
|
|
#include <Ppi/EndOfPeiPhase.h>
|
|
|
|
#include <Ppi/MemoryDiscovered.h>
|
|
|
|
#include <Ppi/TemporaryRamDone.h>
|
|
|
|
#include <Ppi/SecPlatformInformation.h>
|
|
|
|
#include <Library/FspWrapperApiTestLib.h>
|
|
|
|
#include <FspEas.h>
|
2016-10-21 07:49:24 +02:00
|
|
|
#include <FspStatusCode.h>
|
2016-05-13 07:00:53 +02:00
|
|
|
|
|
|
|
extern EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc;
|
|
|
|
extern EFI_GUID gFspHobGuid;
|
|
|
|
|
|
|
|
/**
|
2019-04-22 12:05:25 +02:00
|
|
|
This function handles S3 resume task at the end of PEI.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@param[in] PeiServices Pointer to PEI Services Table.
|
|
|
|
@param[in] NotifyDesc Pointer to the descriptor for the Notification event that
|
|
|
|
caused this function to execute.
|
|
|
|
@param[in] Ppi Pointer to the PPI data associated with this function.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@retval EFI_STATUS Always return EFI_SUCCESS
|
2016-05-13 07:00:53 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
S3EndOfPeiNotify(
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
|
|
|
|
IN VOID *Ppi
|
|
|
|
);
|
|
|
|
|
|
|
|
EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc = {
|
|
|
|
(EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
|
|
|
&gEfiEndOfPeiSignalPpiGuid,
|
|
|
|
S3EndOfPeiNotify
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2019-04-22 12:05:25 +02:00
|
|
|
This function handles S3 resume task at the end of PEI.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@param[in] PeiServices Pointer to PEI Services Table.
|
|
|
|
@param[in] NotifyDesc Pointer to the descriptor for the Notification event that
|
|
|
|
caused this function to execute.
|
|
|
|
@param[in] Ppi Pointer to the PPI data associated with this function.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@retval EFI_STATUS Always return EFI_SUCCESS
|
2016-05-13 07:00:53 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
S3EndOfPeiNotify(
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
|
|
|
|
IN VOID *Ppi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
NOTIFY_PHASE_PARAMS NotifyPhaseParams;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
DEBUG((DEBUG_INFO, "S3EndOfPeiNotify enter\n"));
|
|
|
|
|
|
|
|
NotifyPhaseParams.Phase = EnumInitPhaseAfterPciEnumeration;
|
|
|
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
|
|
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration status: 0x%x\n", Status));
|
|
|
|
|
2016-06-17 04:38:09 +02:00
|
|
|
//
|
|
|
|
// Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status
|
|
|
|
//
|
|
|
|
if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) {
|
|
|
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration requested reset 0x%x\n", Status));
|
|
|
|
CallFspWrapperResetSystem ((UINT32)Status);
|
|
|
|
}
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
NotifyPhaseParams.Phase = EnumInitPhaseReadyToBoot;
|
|
|
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
|
|
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot status: 0x%x\n", Status));
|
|
|
|
|
2016-06-17 04:38:09 +02:00
|
|
|
//
|
|
|
|
// Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status
|
|
|
|
//
|
|
|
|
if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) {
|
|
|
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot requested reset 0x%x\n", Status));
|
|
|
|
CallFspWrapperResetSystem ((UINT32)Status);
|
|
|
|
}
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
NotifyPhaseParams.Phase = EnumInitPhaseEndOfFirmware;
|
|
|
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
|
|
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware status: 0x%x\n", Status));
|
|
|
|
|
2016-06-17 04:38:09 +02:00
|
|
|
//
|
|
|
|
// Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status
|
|
|
|
//
|
|
|
|
if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) {
|
|
|
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware requested reset 0x%x\n", Status));
|
|
|
|
CallFspWrapperResetSystem ((UINT32)Status);
|
|
|
|
}
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-23 03:22:45 +01:00
|
|
|
Return Hob list produced by FSP.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@param[in] PeiServices The pointer to the PEI Services Table.
|
|
|
|
@param[in] This The pointer to this instance of this PPI.
|
|
|
|
@param[out] FspHobList The pointer to Hob list produced by FSP.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2019-04-12 10:54:47 +02:00
|
|
|
@return EFI_SUCCESS Return Hob list produced by FSP successfully.
|
2016-05-13 07:00:53 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
FspSiliconInitDoneGetFspHobList (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN FSP_SILICON_INIT_DONE_PPI *This,
|
|
|
|
OUT VOID **FspHobList
|
|
|
|
);
|
|
|
|
|
|
|
|
FSP_SILICON_INIT_DONE_PPI mFspSiliconInitDonePpi = {
|
|
|
|
FspSiliconInitDoneGetFspHobList
|
|
|
|
};
|
|
|
|
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR mPeiFspSiliconInitDonePpi = {
|
|
|
|
EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST,
|
|
|
|
&gFspSiliconInitDonePpiGuid,
|
|
|
|
&mFspSiliconInitDonePpi
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-11-23 03:22:45 +01:00
|
|
|
Return Hob list produced by FSP.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@param[in] PeiServices The pointer to the PEI Services Table.
|
|
|
|
@param[in] This The pointer to this instance of this PPI.
|
|
|
|
@param[out] FspHobList The pointer to Hob list produced by FSP.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2019-04-12 10:54:47 +02:00
|
|
|
@return EFI_SUCCESS Return Hob list produced by FSP successfully.
|
2016-05-13 07:00:53 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
FspSiliconInitDoneGetFspHobList (
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN FSP_SILICON_INIT_DONE_PPI *This,
|
|
|
|
OUT VOID **FspHobList
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_HOB_GUID_TYPE *GuidHob;
|
|
|
|
|
|
|
|
GuidHob = GetFirstGuidHob (&gFspHobGuid);
|
|
|
|
if (GuidHob != NULL) {
|
|
|
|
*FspHobList = *(VOID **)GET_GUID_HOB_DATA(GuidHob);
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
} else {
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 10:54:47 +02:00
|
|
|
/**
|
|
|
|
This function is for FSP dispatch mode to perform post FSP-S process.
|
|
|
|
|
|
|
|
@param[in] PeiServices Pointer to PEI Services Table.
|
|
|
|
@param[in] NotifyDesc Pointer to the descriptor for the Notification event that
|
|
|
|
caused this function to execute.
|
|
|
|
@param[in] Ppi Pointer to the PPI data associated with this function.
|
|
|
|
|
|
|
|
@retval EFI_STATUS Status returned by PeiServicesInstallPpi ()
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
FspsWrapperEndOfPeiNotify (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
|
|
|
|
IN VOID *Ppi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
//
|
|
|
|
// This step may include platform specific process in some boot loaders so
|
|
|
|
// aligning the same behavior between API and Dispatch modes.
|
|
|
|
// Note: In Dispatch mode no FspHobList so passing NULL to function and
|
|
|
|
// expecting function will handle it.
|
|
|
|
//
|
|
|
|
PostFspsHobProcess (NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install FspSiliconInitDonePpi so that any other driver can consume this info.
|
|
|
|
//
|
|
|
|
Status = PeiServicesInstallPpi (&mPeiFspSiliconInitDonePpi);
|
|
|
|
ASSERT_EFI_ERROR(Status);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
EFI_PEI_NOTIFY_DESCRIPTOR mFspsWrapperEndOfPeiNotifyDesc = {
|
|
|
|
(EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
|
|
|
&gEfiEndOfPeiSignalPpiGuid,
|
|
|
|
FspsWrapperEndOfPeiNotify
|
|
|
|
};
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
/**
|
|
|
|
This function is called after PEI core discover memory and finish migration.
|
|
|
|
|
|
|
|
@param[in] PeiServices Pointer to PEI Services Table.
|
|
|
|
@param[in] NotifyDesc Pointer to the descriptor for the Notification event that
|
|
|
|
caused this function to execute.
|
|
|
|
@param[in] Ppi Pointer to the PPI data associated with this function.
|
|
|
|
|
|
|
|
@retval EFI_STATUS Always return EFI_SUCCESS
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiMemoryDiscoveredNotify (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
|
|
|
|
IN VOID *Ppi
|
|
|
|
);
|
|
|
|
|
|
|
|
EFI_PEI_NOTIFY_DESCRIPTOR mPeiMemoryDiscoveredNotifyDesc = {
|
|
|
|
(EFI_PEI_PPI_DESCRIPTOR_NOTIFY_CALLBACK | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
|
|
|
&gEfiPeiMemoryDiscoveredPpiGuid,
|
|
|
|
PeiMemoryDiscoveredNotify
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-11-23 03:22:45 +01:00
|
|
|
This function is called after PEI core discover memory and finish migration.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@param[in] PeiServices Pointer to PEI Services Table.
|
|
|
|
@param[in] NotifyDesc Pointer to the descriptor for the Notification event that
|
|
|
|
caused this function to execute.
|
|
|
|
@param[in] Ppi Pointer to the PPI data associated with this function.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
@retval EFI_STATUS Always return EFI_SUCCESS
|
2016-05-13 07:00:53 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
PeiMemoryDiscoveredNotify (
|
|
|
|
IN EFI_PEI_SERVICES **PeiServices,
|
|
|
|
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDesc,
|
|
|
|
IN VOID *Ppi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
FSP_INFO_HEADER *FspsHeaderPtr;
|
|
|
|
UINT64 TimeStampCounterStart;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
VOID *FspHobListPtr;
|
|
|
|
EFI_HOB_GUID_TYPE *GuidHob;
|
|
|
|
FSPS_UPD_COMMON *FspsUpdDataPtr;
|
|
|
|
UINTN *SourceData;
|
|
|
|
|
|
|
|
DEBUG ((DEBUG_INFO, "PeiMemoryDiscoveredNotify enter\n"));
|
2017-11-23 03:22:45 +01:00
|
|
|
FspsUpdDataPtr = NULL;
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
FspsHeaderPtr = (FSP_INFO_HEADER *)FspFindFspHeader (PcdGet32 (PcdFspsBaseAddress));
|
2016-06-30 03:13:24 +02:00
|
|
|
DEBUG ((DEBUG_INFO, "FspsHeaderPtr - 0x%x\n", FspsHeaderPtr));
|
|
|
|
if (FspsHeaderPtr == NULL) {
|
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
2017-11-23 03:22:45 +01:00
|
|
|
if (PcdGet32 (PcdFspsUpdDataAddress) == 0 && (FspsHeaderPtr->CfgRegionSize != 0) && (FspsHeaderPtr->CfgRegionOffset != 0)) {
|
|
|
|
//
|
|
|
|
// Copy default FSP-S UPD data from Flash
|
|
|
|
//
|
|
|
|
FspsUpdDataPtr = (FSPS_UPD_COMMON *)AllocateZeroPool ((UINTN)FspsHeaderPtr->CfgRegionSize);
|
|
|
|
ASSERT (FspsUpdDataPtr != NULL);
|
|
|
|
SourceData = (UINTN *)((UINTN)FspsHeaderPtr->ImageBase + (UINTN)FspsHeaderPtr->CfgRegionOffset);
|
|
|
|
CopyMem (FspsUpdDataPtr, SourceData, (UINTN)FspsHeaderPtr->CfgRegionSize);
|
|
|
|
} else {
|
|
|
|
FspsUpdDataPtr = (FSPS_UPD_COMMON *)PcdGet32 (PcdFspsUpdDataAddress);
|
|
|
|
ASSERT (FspsUpdDataPtr != NULL);
|
|
|
|
}
|
2016-05-13 07:00:53 +02:00
|
|
|
|
|
|
|
UpdateFspsUpdData ((VOID *)FspsUpdDataPtr);
|
|
|
|
|
|
|
|
TimeStampCounterStart = AsmReadTsc ();
|
2016-10-21 07:49:24 +02:00
|
|
|
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_SILICON_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_ENTRY);
|
2016-05-13 07:00:53 +02:00
|
|
|
Status = CallFspSiliconInit ((VOID *)FspsUpdDataPtr);
|
2016-10-21 07:49:24 +02:00
|
|
|
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, FSP_STATUS_CODE_SILICON_INIT | FSP_STATUS_CODE_COMMON_CODE | FSP_STATUS_CODE_API_EXIT);
|
2016-05-13 07:00:53 +02:00
|
|
|
DEBUG ((DEBUG_INFO, "Total time spent executing FspSiliconInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000)));
|
2016-06-17 04:38:09 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Reset the system if FSP API returned FSP_STATUS_RESET_REQUIRED status
|
|
|
|
//
|
|
|
|
if ((Status >= FSP_STATUS_RESET_REQUIRED_COLD) && (Status <= FSP_STATUS_RESET_REQUIRED_8)) {
|
|
|
|
DEBUG((DEBUG_INFO, "FspSiliconInitApi requested reset 0x%x\n", Status));
|
|
|
|
CallFspWrapperResetSystem ((UINT32)Status);
|
|
|
|
}
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspSiliconInitApi(), Status = %r\n", Status));
|
|
|
|
}
|
|
|
|
DEBUG((DEBUG_INFO, "FspSiliconInit status: 0x%x\n", Status));
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
|
|
|
|
Status = TestFspSiliconInitApiOutput ((VOID *)NULL);
|
|
|
|
if (RETURN_ERROR (Status)) {
|
|
|
|
DEBUG ((DEBUG_ERROR, "ERROR - TestFspSiliconInitApiOutput () fail, Status = %r\n", Status));
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now FspHobList complete, process it
|
|
|
|
//
|
|
|
|
GuidHob = GetFirstGuidHob (&gFspHobGuid);
|
|
|
|
ASSERT (GuidHob != NULL);
|
|
|
|
FspHobListPtr = *(VOID **)GET_GUID_HOB_DATA (GuidHob);
|
|
|
|
DEBUG ((DEBUG_INFO, "FspHobListPtr - 0x%x\n", FspHobListPtr));
|
|
|
|
PostFspsHobProcess (FspHobListPtr);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install FspSiliconInitDonePpi so that any other driver can consume this info.
|
|
|
|
//
|
|
|
|
Status = PeiServicesInstallPpi (&mPeiFspSiliconInitDonePpi);
|
|
|
|
ASSERT_EFI_ERROR(Status);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-22 12:05:25 +02:00
|
|
|
Do FSP initialization in API mode.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
2019-04-12 10:54:47 +02:00
|
|
|
@retval EFI_STATUS Always return EFI_SUCCESS
|
2016-05-13 07:00:53 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2019-04-12 10:54:47 +02:00
|
|
|
FspsWrapperInitApiMode (
|
2016-05-13 07:00:53 +02:00
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_BOOT_MODE BootMode;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Register MemoryDiscovered Nofity to run FspSiliconInit
|
|
|
|
//
|
|
|
|
Status = PeiServicesNotifyPpi (&mPeiMemoryDiscoveredNotifyDesc);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
2017-11-23 03:22:45 +01:00
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
//
|
|
|
|
// Register EndOfPei Notify for S3 to run FSP NotifyPhase
|
|
|
|
//
|
|
|
|
PeiServicesGetBootMode (&BootMode);
|
|
|
|
if (BootMode == BOOT_ON_S3_RESUME) {
|
|
|
|
Status = PeiServicesNotifyPpi (&mS3EndOfPeiNotifyDesc);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-04-12 10:54:47 +02:00
|
|
|
/**
|
2019-04-22 12:05:25 +02:00
|
|
|
Do FSP initialization in Dispatch mode.
|
2019-04-12 10:54:47 +02:00
|
|
|
|
|
|
|
@retval FSP initialization status.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
FspsWrapperInitDispatchMode (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
//
|
|
|
|
// FSP-S Wrapper running in Dispatch mode and reports FSP-S FV to PEI dispatcher.
|
|
|
|
//
|
|
|
|
PeiServicesInstallFvInfoPpi (
|
|
|
|
NULL,
|
|
|
|
(VOID *)(UINTN) PcdGet32 (PcdFspsBaseAddress),
|
|
|
|
(UINT32)((EFI_FIRMWARE_VOLUME_HEADER *) (UINTN) PcdGet32 (PcdFspsBaseAddress))->FvLength,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
//
|
|
|
|
// Register EndOfPei Nofity to run post FSP-S process.
|
|
|
|
//
|
|
|
|
Status = PeiServicesNotifyPpi (&mFspsWrapperEndOfPeiNotifyDesc);
|
|
|
|
ASSERT_EFI_ERROR (Status);
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2016-05-13 07:00:53 +02:00
|
|
|
/**
|
2019-04-22 12:05:25 +02:00
|
|
|
This is the entrypoint of PEIM.
|
2016-05-13 07:00:53 +02:00
|
|
|
|
|
|
|
@param[in] FileHandle Handle of the file being invoked.
|
|
|
|
@param[in] PeiServices Describes the list of possible PEI Services.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS if it completed successfully.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
FspsWrapperPeimEntryPoint (
|
|
|
|
IN EFI_PEI_FILE_HANDLE FileHandle,
|
|
|
|
IN CONST EFI_PEI_SERVICES **PeiServices
|
|
|
|
)
|
|
|
|
{
|
|
|
|
DEBUG ((DEBUG_INFO, "FspsWrapperPeimEntryPoint\n"));
|
|
|
|
|
2018-11-22 03:51:21 +01:00
|
|
|
if (PcdGet8 (PcdFspModeSelection) == 1) {
|
2019-04-12 10:54:47 +02:00
|
|
|
FspsWrapperInitApiMode ();
|
2018-11-22 02:44:28 +01:00
|
|
|
} else {
|
2019-04-12 10:54:47 +02:00
|
|
|
FspsWrapperInitDispatchMode ();
|
2018-11-22 02:44:28 +01:00
|
|
|
}
|
2016-05-13 07:00:53 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|