1 | ## @file
|
---|
2 | # FSP-I wrapper PEI Module
|
---|
3 | #
|
---|
4 | # This PEIM initialize FSP.
|
---|
5 | # This will be invoked only once. It will call FspSmmInit API,
|
---|
6 | # to call MmIplPei to load MM Core and dispatch all Standalone
|
---|
7 | # MM drivers.
|
---|
8 | #
|
---|
9 | # Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
---|
10 | #
|
---|
11 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010017
|
---|
17 | BASE_NAME = FspiWrapperPeim
|
---|
18 | FILE_GUID = 64D6CA11-6F4C-4B79-B77F-37A281CF0FCC
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | MODULE_TYPE = PEIM
|
---|
21 | ENTRY_POINT = FspiWrapperPeimEntryPoint
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64
|
---|
27 | #
|
---|
28 |
|
---|
29 | [LibraryClasses]
|
---|
30 | PeimEntryPoint
|
---|
31 | PeiServicesLib
|
---|
32 | PeiServicesTablePointerLib
|
---|
33 | BaseMemoryLib
|
---|
34 | TimerLib
|
---|
35 | DebugLib
|
---|
36 | HobLib
|
---|
37 | MemoryAllocationLib
|
---|
38 | FspWrapperPlatformLib
|
---|
39 | FspWrapperHobProcessLib
|
---|
40 | PerformanceLib
|
---|
41 | FspWrapperApiLib
|
---|
42 | FspWrapperApiTestLib
|
---|
43 | FspMeasurementLib
|
---|
44 |
|
---|
45 | [Packages]
|
---|
46 | MdePkg/MdePkg.dec
|
---|
47 | MdeModulePkg/MdeModulePkg.dec
|
---|
48 | IntelFsp2Pkg/IntelFsp2Pkg.dec
|
---|
49 | SecurityPkg/SecurityPkg.dec
|
---|
50 | IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
|
---|
51 |
|
---|
52 | [Ppis]
|
---|
53 | gEdkiiTcgPpiGuid ## NOTIFY
|
---|
54 | gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid ## PRODUCES
|
---|
55 |
|
---|
56 | [Pcd]
|
---|
57 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspiBaseAddress ## CONSUMES
|
---|
58 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection ## CONSUMES
|
---|
59 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspiUpdDataAddress ## CONSUMES
|
---|
60 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspMeasurementConfig ## CONSUMES
|
---|
61 |
|
---|
62 | [Guids]
|
---|
63 | gFspHobGuid ## CONSUMES ## HOB
|
---|
64 | gFspApiPerformanceGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
65 |
|
---|
66 | [Sources]
|
---|
67 | FspiWrapperPeim.c
|
---|
68 |
|
---|
69 | [Depex]
|
---|
70 | gEfiPeiMemoryDiscoveredPpiGuid
|
---|