Last change
on this file since 80924 was 80721, checked in by vboxsync, 5 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:
1.2 KB
|
Line | |
---|
1 | /** @file
|
---|
2 | Provide FSP wrapper API test related function.
|
---|
3 |
|
---|
4 | Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #include <PiPei.h>
|
---|
10 |
|
---|
11 | /**
|
---|
12 | Test the output of FSP API - FspMemoryInit.
|
---|
13 |
|
---|
14 | @param[in] FspmUpdDataPtr Address pointer to the FSP_MEMORY_INIT_PARAMS structure.
|
---|
15 | @param[in] HobListPtr Address of the HobList pointer.
|
---|
16 |
|
---|
17 | @return test result on output of FspMemoryInit API.
|
---|
18 | **/
|
---|
19 | EFI_STATUS
|
---|
20 | EFIAPI
|
---|
21 | TestFspMemoryInitApiOutput (
|
---|
22 | IN VOID *FspmUpdDataPtr,
|
---|
23 | IN VOID **HobListPtr
|
---|
24 | )
|
---|
25 | {
|
---|
26 | return RETURN_UNSUPPORTED;
|
---|
27 | }
|
---|
28 |
|
---|
29 | /**
|
---|
30 | Test the output of FSP API - TempRamExit.
|
---|
31 |
|
---|
32 | @param[in] TempRamExitParam Address pointer to the TempRamExit parameters structure.
|
---|
33 |
|
---|
34 | @return test result on output of TempRamExit API.
|
---|
35 | **/
|
---|
36 | EFI_STATUS
|
---|
37 | EFIAPI
|
---|
38 | TestFspTempRamExitApiOutput (
|
---|
39 | IN VOID *TempRamExitParam
|
---|
40 | )
|
---|
41 | {
|
---|
42 | return RETURN_UNSUPPORTED;
|
---|
43 | }
|
---|
44 |
|
---|
45 | /**
|
---|
46 | Test the output of FSP API - FspSiliconInit.
|
---|
47 |
|
---|
48 | @param[in] FspsUpdDataPtr Address pointer to the Silicon Init parameters structure.
|
---|
49 |
|
---|
50 | @return test result on output of FspSiliconInit API.
|
---|
51 | **/
|
---|
52 | EFI_STATUS
|
---|
53 | EFIAPI
|
---|
54 | TestFspSiliconInitApiOutput (
|
---|
55 | IN VOID *FspsUpdDataPtr
|
---|
56 | )
|
---|
57 | {
|
---|
58 | return RETURN_UNSUPPORTED;
|
---|
59 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.