Last change
on this file since 89916 was 85718, checked in by vboxsync, 5 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.7 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # FSP-M 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 - 2019, 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 = FspmWrapperPeim
|
---|
18 | FILE_GUID = 9FAAD0FF-0E0C-4885-A738-BAB4E4FA1E66
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | MODULE_TYPE = PEIM
|
---|
21 | ENTRY_POINT = FspmWrapperPeimEntryPoint
|
---|
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 | MemoryAllocationLib
|
---|
36 | DebugLib
|
---|
37 | HobLib
|
---|
38 | FspWrapperPlatformLib
|
---|
39 | FspWrapperHobProcessLib
|
---|
40 | UefiCpuLib
|
---|
41 | PeCoffGetEntryPointLib
|
---|
42 | PeCoffExtraActionLib
|
---|
43 | PerformanceLib
|
---|
44 | TimerLib
|
---|
45 | FspWrapperApiLib
|
---|
46 | FspWrapperApiTestLib
|
---|
47 |
|
---|
48 | [Packages]
|
---|
49 | MdePkg/MdePkg.dec
|
---|
50 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
51 | IntelFsp2Pkg/IntelFsp2Pkg.dec
|
---|
52 | IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
|
---|
53 |
|
---|
54 | [Pcd]
|
---|
55 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspmBaseAddress ## CONSUMES
|
---|
56 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspmUpdDataAddress ## CONSUMES
|
---|
57 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection ## CONSUMES
|
---|
58 |
|
---|
59 | [Sources]
|
---|
60 | FspmWrapperPeim.c
|
---|
61 |
|
---|
62 | [Guids]
|
---|
63 | gFspHobGuid ## PRODUCES ## HOB
|
---|
64 | gFspApiPerformanceGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
65 |
|
---|
66 | [Depex]
|
---|
67 | gEfiPeiMasterBootModePpiGuid
|
---|
Note:
See
TracBrowser
for help on using the repository browser.