summaryrefslogtreecommitdiffstats
path: root/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
diff options
context:
space:
mode:
authorJiewen Yao <jiewen.yao@intel.com>2016-06-17 10:38:09 +0800
committerJiewen Yao <jiewen.yao@intel.com>2016-06-18 07:17:04 +0800
commitf862a3b6f9dc026ea0e108fd548c65c75346bada (patch)
treee4bea06d7085e1ef497ae93c8b6518d5359a8dc5 /IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
parente918029fbce507f7de5b99112582fd41993e58c5 (diff)
downloadedk2-f862a3b6f9dc026ea0e108fd548c65c75346bada.tar.gz
edk2-f862a3b6f9dc026ea0e108fd548c65c75346bada.tar.bz2
edk2-f862a3b6f9dc026ea0e108fd548c65c75346bada.zip
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>
Diffstat (limited to 'IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h')
-rw-r--r--IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h b/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
index 30dc8df5da..25f4eca797 100644
--- a/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
+++ b/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
@@ -70,4 +70,17 @@ GetS3MemoryInfo (
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