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