1 | ## @file
|
---|
2 | # FSP DXE Module
|
---|
3 | #
|
---|
4 | # This driver will register two callbacks to call fsp's notifies.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2014 - 2017, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # This program and the accompanying materials
|
---|
9 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
10 | # which accompanies this distribution. The full text of the license may be found at
|
---|
11 | # http://opensource.org/licenses/bsd-license.php.
|
---|
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
14 | #
|
---|
15 | ##
|
---|
16 |
|
---|
17 | [Defines]
|
---|
18 | INF_VERSION = 0x00010005
|
---|
19 | BASE_NAME = FspWrapperNotifyDxe
|
---|
20 | FILE_GUID = AD61999A-507E-47E6-BA28-79CC609FA1A4
|
---|
21 | MODULE_TYPE = DXE_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | ENTRY_POINT = FspWrapperNotifyDxeEntryPoint
|
---|
24 |
|
---|
25 | #
|
---|
26 | # The following information is for reference only and not required by the build tools.
|
---|
27 | #
|
---|
28 | # VALID_ARCHITECTURES = IA32 X64
|
---|
29 | #
|
---|
30 |
|
---|
31 | [Sources]
|
---|
32 | FspWrapperNotifyDxe.c
|
---|
33 | LoadBelow4G.c
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdePkg/MdePkg.dec
|
---|
37 | IntelFsp2Pkg/IntelFsp2Pkg.dec
|
---|
38 | IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
|
---|
39 |
|
---|
40 | [LibraryClasses]
|
---|
41 | UefiDriverEntryPoint
|
---|
42 | UefiBootServicesTableLib
|
---|
43 | DebugLib
|
---|
44 | BaseMemoryLib
|
---|
45 | UefiLib
|
---|
46 | FspWrapperApiLib
|
---|
47 | PeCoffLib
|
---|
48 | CacheMaintenanceLib
|
---|
49 | DxeServicesLib
|
---|
50 | PerformanceLib
|
---|
51 | HobLib
|
---|
52 | FspWrapperPlatformLib
|
---|
53 |
|
---|
54 | [Protocols]
|
---|
55 | gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
|
---|
56 | gAddPerfRecordProtocolGuid ## SOMETIMES_CONSUMES
|
---|
57 |
|
---|
58 | [Guids]
|
---|
59 | gFspApiPerformanceGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
60 | gEfiEventExitBootServicesGuid ## CONSUMES ## Event
|
---|
61 | gFspHobGuid ## CONSUMES ## HOB
|
---|
62 |
|
---|
63 | [Pcd]
|
---|
64 | gIntelFsp2WrapperTokenSpaceGuid.PcdFspsBaseAddress ## CONSUMES
|
---|
65 | gIntelFsp2WrapperTokenSpaceGuid.PcdSkipFspApi ## CONSUMES
|
---|
66 |
|
---|
67 | [Depex]
|
---|
68 | TRUE
|
---|