1 | ## @file
|
---|
2 | # Sample to provide FSP wrapper hob process related function.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | ################################################################################
|
---|
11 | #
|
---|
12 | # Defines Section - statements that will be processed to create a Makefile.
|
---|
13 | #
|
---|
14 | ################################################################################
|
---|
15 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = PeiFspWrapperHobProcessLibSample
|
---|
18 | FILE_GUID = 864693E2-EDE8-4DF8-8871-38C0BAA157EB
|
---|
19 | MODULE_TYPE = SEC
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = FspWrapperHobProcessLib
|
---|
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 | ################################################################################
|
---|
30 | #
|
---|
31 | # Sources Section - list of files that are required for the build to succeed.
|
---|
32 | #
|
---|
33 | ################################################################################
|
---|
34 |
|
---|
35 | [Sources]
|
---|
36 | FspWrapperHobProcessLibSample.c
|
---|
37 |
|
---|
38 |
|
---|
39 | ################################################################################
|
---|
40 | #
|
---|
41 | # Package Dependency Section - list of Package files that are required for
|
---|
42 | # this module.
|
---|
43 | #
|
---|
44 | ################################################################################
|
---|
45 |
|
---|
46 | [Packages]
|
---|
47 | MdePkg/MdePkg.dec
|
---|
48 | MdeModulePkg/MdeModulePkg.dec
|
---|
49 | IntelFsp2Pkg/IntelFsp2Pkg.dec
|
---|
50 | IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
|
---|
51 |
|
---|
52 | [LibraryClasses]
|
---|
53 | BaseLib
|
---|
54 | BaseMemoryLib
|
---|
55 | HobLib
|
---|
56 | DebugLib
|
---|
57 | FspWrapperPlatformLib
|
---|
58 | PeiServicesLib
|
---|
59 | PeiServicesTablePointerLib
|
---|
60 |
|
---|
61 | [Pcd]
|
---|
62 | gIntelFsp2WrapperTokenSpaceGuid.PcdPeiMinMemSize ## CONSUMES
|
---|
63 | gIntelFsp2WrapperTokenSpaceGuid.PcdPeiRecoveryMinMemSize ## CONSUMES
|
---|
64 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspModeSelection ## CONSUMES
|
---|
65 |
|
---|
66 | [Guids]
|
---|
67 | gFspReservedMemoryResourceHobGuid ## CONSUMES ## HOB
|
---|
68 | gEfiMemoryTypeInformationGuid ## CONSUMES ## GUID
|
---|
69 | gPcdDataBaseHobGuid ## CONSUMES ## HOB
|
---|
70 |
|
---|
71 | [Ppis]
|
---|
72 | gEfiPeiCapsulePpiGuid ## CONSUMES
|
---|