• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  Sample to provide FSP wrapper hob process related function.
3#
4#  Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
5#
6#  This program and the accompanying materials
7#  are licensed and made available under the terms and conditions of the BSD License
8#  which accompanies this distribution. The full text of the license may be found at
9#  http://opensource.org/licenses/bsd-license.php.
10#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13##
14
15################################################################################
16#
17# Defines Section - statements that will be processed to create a Makefile.
18#
19################################################################################
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = PeiFspWrapperHobProcessLibSample
23  FILE_GUID                      = 864693E2-EDE8-4DF8-8871-38C0BAA157EB
24  MODULE_TYPE                    = SEC
25  VERSION_STRING                 = 1.0
26  LIBRARY_CLASS                  = FspWrapperHobProcessLib
27
28#
29# The following information is for reference only and not required by the build tools.
30#
31#  VALID_ARCHITECTURES           = IA32 X64
32#
33
34################################################################################
35#
36# Sources Section - list of files that are required for the build to succeed.
37#
38################################################################################
39
40[Sources]
41  FspWrapperHobProcessLibSample.c
42
43
44################################################################################
45#
46# Package Dependency Section - list of Package files that are required for
47#                              this module.
48#
49################################################################################
50
51[Packages]
52  MdePkg/MdePkg.dec
53  MdeModulePkg/MdeModulePkg.dec
54  IntelFsp2Pkg/IntelFsp2Pkg.dec
55  IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
56
57[LibraryClasses]
58  BaseLib
59  BaseMemoryLib
60  HobLib
61  DebugLib
62  FspWrapperPlatformLib
63  PeiServicesLib
64  PeiServicesTablePointerLib
65
66[Pcd]
67  gIntelFsp2WrapperTokenSpaceGuid.PcdPeiMinMemSize          ## CONSUMES
68  gIntelFsp2WrapperTokenSpaceGuid.PcdPeiRecoveryMinMemSize  ## CONSUMES
69
70[Guids]
71  gFspReservedMemoryResourceHobGuid                       ## CONSUMES ## HOB
72  gEfiMemoryTypeInformationGuid                           ## CONSUMES ## GUID
73  gPcdDataBaseHobGuid                                     ## CONSUMES ## HOB
74
75[Ppis]
76  gEfiPeiCapsulePpiGuid                                   ## CONSUMES
77