]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspWrapperPkg/Include/Ppi/FspInitDone.h
DynamicTablesPkg: GTDT updates for ACPI 6.3
[mirror_edk2.git] / IntelFspWrapperPkg / Include / Ppi / FspInitDone.h
1 /** @file
2 Provides the services to return FSP hob list.
3
4 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #ifndef _FSP_INIT_DONE_H_
10 #define _FSP_INIT_DONE_H_
11
12 typedef struct _FSP_INIT_DONE_PPI FSP_INIT_DONE_PPI;
13
14 /**
15 Return Hob list produced by FSP.
16
17 @param[in] PeiServices The pointer to the PEI Services Table.
18 @param[in] This The pointer to this instance of this PPI.
19 @param[out] FspHobList The pointer to Hob list produced by FSP.
20
21 @return EFI_SUCCESS FReturn Hob list produced by FSP successfully.
22 **/
23 typedef
24 EFI_STATUS
25 (EFIAPI *FSP_INIT_DONE_GET_FSP_HOB_LIST)(
26 IN CONST EFI_PEI_SERVICES **PeiServices,
27 IN FSP_INIT_DONE_PPI *This,
28 OUT VOID **FspHobList
29 );
30
31 struct _FSP_INIT_DONE_PPI {
32 FSP_INIT_DONE_GET_FSP_HOB_LIST GetFspHobList;
33 };
34
35 extern EFI_GUID gFspInitDonePpiGuid;
36
37 #endif