Last change
on this file since 99404 was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1014 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Provides the services to return FSP hob list.
|
---|
3 |
|
---|
4 | Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef _FSP_SILICON_INIT_DONE_H_
|
---|
10 | #define _FSP_SILICON_INIT_DONE_H_
|
---|
11 |
|
---|
12 | typedef struct _FSP_SILICON_INIT_DONE_PPI FSP_SILICON_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_SILICON_INIT_DONE_GET_FSP_HOB_LIST)(
|
---|
26 | IN CONST EFI_PEI_SERVICES **PeiServices,
|
---|
27 | IN FSP_SILICON_INIT_DONE_PPI *This,
|
---|
28 | OUT VOID **FspHobList
|
---|
29 | );
|
---|
30 |
|
---|
31 | struct _FSP_SILICON_INIT_DONE_PPI {
|
---|
32 | FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST GetFspHobList;
|
---|
33 | };
|
---|
34 |
|
---|
35 | extern EFI_GUID gFspSiliconInitDonePpiGuid;
|
---|
36 |
|
---|
37 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.