]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib/FspWrapperApiTest.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / IntelFsp2WrapperPkg / Library / PeiFspWrapperApiTestLib / FspWrapperApiTest.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 #include <Library/BaseMemoryLib.h>
11 #include <Library/DebugLib.h>
12 #include <Library/HobLib.h>
13 #include <Guid/GuidHobFspEas.h>
14
15 /**
16 Test the output of FSP API - FspMemoryInit.
17
18 @param[in] FspmUpdDataPtr Address pointer to the FSP_MEMORY_INIT_PARAMS structure.
19 @param[in] HobListPtr Address of the HobList pointer.
20
21 @return test result on output of FspMemoryInit API.
22 **/
23 EFI_STATUS
24 EFIAPI
25 TestFspMemoryInitApiOutput (
26 IN VOID *FspmUpdDataPtr,
27 IN VOID **HobListPtr
28 )
29 {
30 DEBUG_CODE_BEGIN ();
31 EFI_PEI_HOB_POINTERS Hob;
32
33 Hob.Raw = (UINT8 *)(*(HobListPtr));
34 while (TRUE) {
35 if (END_OF_HOB_LIST (Hob) == TRUE) {
36 DEBUG ((DEBUG_INFO, "gFspBootLoaderTolumHobGuid not Found\n"));
37 break;
38 }
39
40 if ((CompareGuid (&Hob.ResourceDescriptor->Owner, &gFspBootLoaderTolumHobGuid))) {
41 DEBUG ((DEBUG_INFO, "gFspBootLoaderTolumHobGuid Found\n"));
42 DEBUG ((DEBUG_INFO, "Fill Boot Loader reserved memory range with 0x5A for testing purpose\n"));
43 SetMem ((VOID *)(UINTN)Hob.ResourceDescriptor->PhysicalStart, (UINTN)Hob.ResourceDescriptor->ResourceLength, 0x5A);
44 break;
45 }
46
47 Hob.Raw = GET_NEXT_HOB (Hob);
48 }
49
50 DEBUG_CODE_END ();
51
52 return RETURN_SUCCESS;
53 }
54
55 /**
56 Test the output of FSP API - TempRamExit.
57
58 @param[in] TempRamExitParam Address pointer to the TempRamExit parameters structure.
59
60 @return test result on output of TempRamExit API.
61 **/
62 EFI_STATUS
63 EFIAPI
64 TestFspTempRamExitApiOutput (
65 IN VOID *TempRamExitParam
66 )
67 {
68 return RETURN_SUCCESS;
69 }
70
71 /**
72 Test the output of FSP API - FspSiliconInit.
73
74 @param[in] FspsUpdDataPtr Address pointer to the Silicon Init parameters structure.
75
76 @return test result on output of FspSiliconInit API.
77 **/
78 EFI_STATUS
79 EFIAPI
80 TestFspSiliconInitApiOutput (
81 IN VOID *FspsUpdDataPtr
82 )
83 {
84 return RETURN_SUCCESS;
85 }