]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2WrapperPkg/Library/BaseFspWrapperApiTestLibNull/FspWrapperApiTestNull.c
Add IntelFsp2Pkg and IntelFsp2WrapperPkg.
[mirror_edk2.git] / IntelFsp2WrapperPkg / Library / BaseFspWrapperApiTestLibNull / FspWrapperApiTestNull.c
1 /** @file
2 Provide FSP wrapper API test related function.
3
4 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php.
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include <PiPei.h>
16
17 /**
18 Test the output of FSP API - FspMemoryInit.
19
20 @param[in] FspmUpdDataPtr Address pointer to the FSP_MEMORY_INIT_PARAMS structure.
21 @param[in] HobListPtr Address of the HobList pointer.
22
23 @return test result on output of FspMemoryInit API.
24 **/
25 EFI_STATUS
26 EFIAPI
27 TestFspMemoryInitApiOutput (
28 IN VOID *FspmUpdDataPtr,
29 IN VOID **HobListPtr
30 )
31 {
32 return RETURN_UNSUPPORTED;
33 }
34
35 /**
36 Test the output of FSP API - TempRamExit.
37
38 @param[in] TempRamExitParam Address pointer to the TempRamExit parameters structure.
39
40 @return test result on output of TempRamExit API.
41 **/
42 EFI_STATUS
43 EFIAPI
44 TestFspTempRamExitApiOutput (
45 IN VOID *TempRamExitParam
46 )
47 {
48 return RETURN_UNSUPPORTED;
49 }
50
51 /**
52 Test the output of FSP API - FspSiliconInit.
53
54 @param[in] FspsUpdDataPtr Address pointer to the Silicon Init parameters structure.
55
56 @return test result on output of FspSiliconInit API.
57 **/
58 EFI_STATUS
59 EFIAPI
60 TestFspSiliconInitApiOutput (
61 IN VOID *FspsUpdDataPtr
62 )
63 {
64 return RETURN_UNSUPPORTED;
65 }