mirror of https://github.com/acidanthera/audk.git
IntelFsp2WrapperPkg: Add support to handle ResetRequired return Status from FSP.
As per FSP 2.0 spec, FSP shall not trigger system reset and instead it shall return from the FSP API to the BL/Wrapper with the required reset type. The changes are to handle the ResetRequired return code from FSP APIs and provide lib interface for platform to trigger the actual reset. Cc: Giri P Mudusuru <giri.p.mudusuru@intel.com> Cc: Amy Chan <amy.chan@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Satya Yarlagadda <satya.p.yarlagadda@intel.com> Signed-off-by: Jiewen Yao <jiewen.yao@intel.com> Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
This commit is contained in:
parent
e918029fbc
commit
f862a3b6f9
|
@ -22,6 +22,7 @@
|
||||||
#include <Library/BaseMemoryLib.h>
|
#include <Library/BaseMemoryLib.h>
|
||||||
#include <Library/UefiLib.h>
|
#include <Library/UefiLib.h>
|
||||||
#include <Library/FspWrapperApiLib.h>
|
#include <Library/FspWrapperApiLib.h>
|
||||||
|
#include <Library/FspWrapperPlatformLib.h>
|
||||||
#include <Library/PerformanceLib.h>
|
#include <Library/PerformanceLib.h>
|
||||||
#include <Library/HobLib.h>
|
#include <Library/HobLib.h>
|
||||||
|
|
||||||
|
@ -93,6 +94,15 @@ OnPciEnumerationComplete (
|
||||||
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x6000);
|
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x6000);
|
||||||
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
||||||
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x607F);
|
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x607F);
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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 NotifyPhase AfterPciEnumeration requested reset 0x%x\n", Status));
|
||||||
|
CallFspWrapperResetSystem ((UINT32)Status);
|
||||||
|
}
|
||||||
|
|
||||||
if (Status != EFI_SUCCESS) {
|
if (Status != EFI_SUCCESS) {
|
||||||
DEBUG((DEBUG_ERROR, "FSP NotifyPhase AfterPciEnumeration failed, status: 0x%x\n", Status));
|
DEBUG((DEBUG_ERROR, "FSP NotifyPhase AfterPciEnumeration failed, status: 0x%x\n", Status));
|
||||||
} else {
|
} else {
|
||||||
|
@ -130,6 +140,15 @@ OnReadyToBoot (
|
||||||
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x4000);
|
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x4000);
|
||||||
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
||||||
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x407F);
|
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x407F);
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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 NotifyPhase ReadyToBoot requested reset 0x%x\n", Status));
|
||||||
|
CallFspWrapperResetSystem ((UINT32)Status);
|
||||||
|
}
|
||||||
|
|
||||||
if (Status != EFI_SUCCESS) {
|
if (Status != EFI_SUCCESS) {
|
||||||
DEBUG((DEBUG_ERROR, "FSP NotifyPhase ReadyToBoot failed, status: 0x%x\n", Status));
|
DEBUG((DEBUG_ERROR, "FSP NotifyPhase ReadyToBoot failed, status: 0x%x\n", Status));
|
||||||
} else {
|
} else {
|
||||||
|
@ -179,6 +198,15 @@ OnEndOfFirmware (
|
||||||
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x2000);
|
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x2000);
|
||||||
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
||||||
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x207F);
|
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x207F);
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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 NotifyPhase EndOfFirmware requested reset 0x%x\n", Status));
|
||||||
|
CallFspWrapperResetSystem ((UINT32)Status);
|
||||||
|
}
|
||||||
|
|
||||||
if (Status != EFI_SUCCESS) {
|
if (Status != EFI_SUCCESS) {
|
||||||
DEBUG((DEBUG_ERROR, "FSP NotifyPhase EndOfFirmware failed, status: 0x%x\n", Status));
|
DEBUG((DEBUG_ERROR, "FSP NotifyPhase EndOfFirmware failed, status: 0x%x\n", Status));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
DxeServicesLib
|
DxeServicesLib
|
||||||
PerformanceLib
|
PerformanceLib
|
||||||
HobLib
|
HobLib
|
||||||
|
FspWrapperPlatformLib
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
|
gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
|
||||||
|
|
|
@ -88,6 +88,15 @@ PeiFspMemoryInit (
|
||||||
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, TimeStampCounterStart, 0xD000);
|
PERF_START_EX(&gFspApiPerformanceGuid, "EventRec", NULL, TimeStampCounterStart, 0xD000);
|
||||||
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0xD07F);
|
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0xD07F);
|
||||||
DEBUG ((DEBUG_INFO, "Total time spent executing FspMemoryInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000)));
|
DEBUG ((DEBUG_INFO, "Total time spent executing FspMemoryInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000)));
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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, "FspMemoryInitApi requested reset 0x%x\n", Status));
|
||||||
|
CallFspWrapperResetSystem ((UINT32)Status);
|
||||||
|
}
|
||||||
|
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspMemoryInitApi(), Status = %r\n", Status));
|
DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspMemoryInitApi(), Status = %r\n", Status));
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,14 +94,38 @@ S3EndOfPeiNotify(
|
||||||
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
||||||
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration status: 0x%x\n", Status));
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase AfterPciEnumeration status: 0x%x\n", Status));
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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);
|
||||||
|
}
|
||||||
|
|
||||||
NotifyPhaseParams.Phase = EnumInitPhaseReadyToBoot;
|
NotifyPhaseParams.Phase = EnumInitPhaseReadyToBoot;
|
||||||
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
||||||
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot status: 0x%x\n", Status));
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase ReadyToBoot status: 0x%x\n", Status));
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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);
|
||||||
|
}
|
||||||
|
|
||||||
NotifyPhaseParams.Phase = EnumInitPhaseEndOfFirmware;
|
NotifyPhaseParams.Phase = EnumInitPhaseEndOfFirmware;
|
||||||
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
Status = CallFspNotifyPhase (&NotifyPhaseParams);
|
||||||
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware status: 0x%x\n", Status));
|
DEBUG((DEBUG_INFO, "FSP S3NotifyPhase EndOfFirmware status: 0x%x\n", Status));
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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);
|
||||||
|
}
|
||||||
|
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,6 +253,15 @@ PeiMemoryDiscoveredNotify (
|
||||||
Status = CallFspSiliconInit ((VOID *)FspsUpdDataPtr);
|
Status = CallFspSiliconInit ((VOID *)FspsUpdDataPtr);
|
||||||
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x907F);
|
PERF_END_EX(&gFspApiPerformanceGuid, "EventRec", NULL, 0, 0x907F);
|
||||||
DEBUG ((DEBUG_INFO, "Total time spent executing FspSiliconInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000)));
|
DEBUG ((DEBUG_INFO, "Total time spent executing FspSiliconInitApi: %d millisecond\n", DivU64x32 (GetTimeInNanoSecond (AsmReadTsc () - TimeStampCounterStart), 1000000)));
|
||||||
|
|
||||||
|
//
|
||||||
|
// 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);
|
||||||
|
}
|
||||||
|
|
||||||
if (EFI_ERROR(Status)) {
|
if (EFI_ERROR(Status)) {
|
||||||
DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspSiliconInitApi(), Status = %r\n", Status));
|
DEBUG ((DEBUG_ERROR, "ERROR - Failed to execute FspSiliconInitApi(), Status = %r\n", Status));
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,4 +70,17 @@ GetS3MemoryInfo (
|
||||||
OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase
|
OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
Perform platform related reset in FSP wrapper.
|
||||||
|
|
||||||
|
This function will reset the system with requested ResetType.
|
||||||
|
|
||||||
|
@param[in] FspStatusResetType The type of reset the platform has to perform.
|
||||||
|
**/
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
CallFspWrapperResetSystem (
|
||||||
|
IN UINT32 FspStatusResetType
|
||||||
|
);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -81,3 +81,23 @@ GetS3MemoryInfo (
|
||||||
{
|
{
|
||||||
return EFI_UNSUPPORTED;
|
return EFI_UNSUPPORTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Perform platform related reset in FSP wrapper.
|
||||||
|
|
||||||
|
This function will reset the system with requested ResetType.
|
||||||
|
|
||||||
|
@param[in] FspStatusResetType The type of reset the platform has to perform.
|
||||||
|
**/
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
CallFspWrapperResetSystem (
|
||||||
|
IN UINT32 FspStatusResetType
|
||||||
|
)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Perform reset according to the type.
|
||||||
|
//
|
||||||
|
|
||||||
|
CpuDeadLoop();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue