X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=IntelFspWrapperPkg%2FFspInitPei%2FFspInitPei.h;h=6d70f0c2ab12afb3063565a61a6de2f892ddb4e1;hb=a0767bae298443c91bae1e1fb43eb0ed9a436004;hp=5118cd04e362e66aa5560976fa6e65f1616e87d0;hpb=a33a2f62218e6e49a25d63474b7fe423d8ee4b71;p=mirror_edk2.git diff --git a/IntelFspWrapperPkg/FspInitPei/FspInitPei.h b/IntelFspWrapperPkg/FspInitPei/FspInitPei.h index 5118cd04e3..6d70f0c2ab 100644 --- a/IntelFspWrapperPkg/FspInitPei/FspInitPei.h +++ b/IntelFspWrapperPkg/FspInitPei/FspInitPei.h @@ -1,7 +1,7 @@ /** @file This is PEIM header file. - Copyright (c) 2014, Intel Corporation. All rights reserved.
+ Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -32,7 +32,33 @@ #include #include +#include +#include extern EFI_PEI_NOTIFY_DESCRIPTOR mS3EndOfPeiNotifyDesc; +/** + Do FSP initialization based on FspApi version 1. + + @param[in] FspHeader FSP header pointer. + + @return FSP initialization status. +**/ +EFI_STATUS +PeiFspInitV1 ( + IN FSP_INFO_HEADER *FspHeader + ); + +/** + Do FSP initialization based on FspApi version 2. + + @param[in] FspHeader FSP header pointer. + + @return FSP initialization status. +**/ +EFI_STATUS +PeiFspInitV2 ( + IN FSP_INFO_HEADER *FspHeader + ); + #endif