Last change
on this file since 89715 was 80721, checked in by vboxsync, 6 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
857 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Provide FSP wrapper hob process related function.
|
---|
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_WRAPPER_HOB_PROCESS_LIB_H__
|
---|
10 | #define __FSP_WRAPPER_HOB_PROCESS_LIB_H__
|
---|
11 |
|
---|
12 | /**
|
---|
13 | Post FSP-M HOB process for Memory Resource Descriptor.
|
---|
14 |
|
---|
15 | @param[in] FspHobList Pointer to the HOB data structure produced by FSP.
|
---|
16 |
|
---|
17 | @return If platform process the FSP hob list successfully.
|
---|
18 | **/
|
---|
19 | EFI_STATUS
|
---|
20 | EFIAPI
|
---|
21 | PostFspmHobProcess (
|
---|
22 | IN VOID *FspHobList
|
---|
23 | );
|
---|
24 |
|
---|
25 | /**
|
---|
26 | Post FSP-S HOB process (not Memory Resource Descriptor).
|
---|
27 |
|
---|
28 | @param[in] FspHobList Pointer to the HOB data structure produced by FSP.
|
---|
29 |
|
---|
30 | @return If platform process the FSP hob list successfully.
|
---|
31 | **/
|
---|
32 | EFI_STATUS
|
---|
33 | EFIAPI
|
---|
34 | PostFspsHobProcess (
|
---|
35 | IN VOID *FspHobList
|
---|
36 | );
|
---|
37 |
|
---|
38 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.