]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2WrapperPkg/Library/BaseFspWrapperApiTestLibNull/FspWrapperApiTestNull.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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 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 }