2 Provides the services to return FSP hob list.
\r
4 Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
\r
5 This program and the accompanying materials
\r
6 are licensed and made available under the terms and conditions of the BSD License
\r
7 which accompanies this distribution. The full text of the license may be found at
\r
8 http://opensource.org/licenses/bsd-license.php.
\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
\r
15 #ifndef _FSP_SILICON_INIT_DONE_H_
\r
16 #define _FSP_SILICON_INIT_DONE_H_
\r
18 typedef struct _FSP_SILICON_INIT_DONE_PPI FSP_SILICON_INIT_DONE_PPI;
\r
21 Return Hob list produced by FSP.
\r
23 @param[in] PeiServices The pointer to the PEI Services Table.
\r
24 @param[in] This The pointer to this instance of this PPI.
\r
25 @param[out] FspHobList The pointer to Hob list produced by FSP.
\r
27 @return EFI_SUCCESS FReturn Hob list produced by FSP successfully.
\r
31 (EFIAPI *FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST)(
\r
32 IN CONST EFI_PEI_SERVICES **PeiServices,
\r
33 IN FSP_SILICON_INIT_DONE_PPI *This,
\r
34 OUT VOID **FspHobList
\r
37 struct _FSP_SILICON_INIT_DONE_PPI {
\r
38 FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST GetFspHobList;
\r
41 extern EFI_GUID gFspSiliconInitDonePpiGuid;
\r