VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib/FspWrapperApiTest.c@ 99404

Last change on this file since 99404 was 99404, checked in by vboxsync, 23 months ago

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • Property svn:eol-style set to native
File size: 2.0 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#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**/
23EFI_STATUS
24EFIAPI
25TestFspMemoryInitApiOutput (
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**/
62EFI_STATUS
63EFIAPI
64TestFspTempRamExitApiOutput (
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**/
78EFI_STATUS
79EFIAPI
80TestFspSiliconInitApiOutput (
81 IN VOID *FspsUpdDataPtr
82 )
83{
84 return RETURN_SUCCESS;
85}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette