1 | ## @file
|
---|
2 | # FSP-S wrapper PEI Module
|
---|
3 | #
|
---|
4 | # This PEIM initialize FSP.
|
---|
5 | # This will be invoked only once. It will call FspMemoryInit API,
|
---|
6 | # register TemporaryRamDonePpi to call TempRamExit API, and register MemoryDiscoveredPpi
|
---|
7 | # notify to call FspSiliconInit API.
|
---|
8 | #
|
---|
9 | # Copyright (c) 2014 - 2020, 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 = FspsWrapperPeim
|
---|
18 | FILE_GUID = 0D244DF9-6CE3-4133-A1CF-53200AB663AC
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | MODULE_TYPE = PEIM
|
---|
21 | ENTRY_POINT = FspsWrapperPeimEntryPoint
|
---|
22 |
|
---|
23 | #
|
---|
24 | # The following information is for reference only and not required by the build tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32
|
---|
27 | #
|
---|
28 |
|
---|
29 | [LibraryClasses]
|
---|
30 | PeimEntryPoint
|
---|
31 | PeiServicesLib
|
---|
32 | PeiServicesTablePointerLib
|
---|
33 | BaseLib
|
---|
34 | BaseMemoryLib
|
---|
35 | TimerLib
|
---|
36 | DebugLib
|
---|
37 | HobLib
|
---|
38 | MemoryAllocationLib
|
---|
39 | FspWrapperPlatformLib
|
---|
40 | FspWrapperHobProcessLib
|
---|
41 | UefiCpuLib
|
---|
42 | PeCoffGetEntryPointLib
|
---|
43 | PeCoffExtraActionLib
|
---|
44 | PerformanceLib
|
---|
45 | FspWrapperApiLib
|
---|
46 | FspWrapperApiTestLib
|
---|
47 | FspMeasurementLib
|
---|
48 |
|
---|
49 | [Packages]
|
---|
50 | MdePkg/MdePkg.dec
|
---|
51 | MdeModulePkg/MdeModulePkg.dec
|
---|
52 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
53 | SecurityPkg/SecurityPkg.dec
|
---|
54 | IntelFsp2Pkg/IntelFsp2Pkg.dec
|
---|
55 | IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
|
---|
56 |
|
---|
57 | [Ppis]
|
---|
58 | gTopOfTemporaryRamPpiGuid ## PRODUCES
|
---|
59 | gFspSiliconInitDonePpiGuid ## PRODUCES
|
---|
60 | gEfiEndOfPeiSignalPpiGuid ## PRODUCES
|
---|
61 | gEfiTemporaryRamDonePpiGuid ## PRODUCES
|
---|
62 | gEfiPeiMemoryDiscoveredPpiGuid ## NOTIFY
|
---|
63 | gEdkiiTcgPpiGuid ## NOTIFY
|
---|
64 | gEfiPeiFirmwareVolumeInfoMeasurementExcludedPpiGuid ## PRODUCES
|
---|
65 |
|
---|
66 | [Pcd]
|
---|
67 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspsBaseAddress ## CONSUMES
|
---|
68 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspsUpdDataAddress ## CONSUMES
|
---|
69 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection ## CONSUMES
|
---|
70 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspMeasurementConfig ## CONSUMES
|
---|
71 |
|
---|
72 | [Guids]
|
---|
73 | gFspHobGuid ## CONSUMES ## HOB
|
---|
74 | gFspApiPerformanceGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
75 |
|
---|
76 | [Sources]
|
---|
77 | FspsWrapperPeim.c
|
---|
78 |
|
---|
79 | [Depex]
|
---|
80 | gEfiPeiMemoryDiscoveredPpiGuid
|
---|