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 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = FspWrapperNotifyDxe
|
---|
15 | FILE_GUID = AD61999A-507E-47E6-BA28-79CC609FA1A4
|
---|
16 | MODULE_TYPE = DXE_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | ENTRY_POINT = FspWrapperNotifyDxeEntryPoint
|
---|
19 |
|
---|
20 | #
|
---|
21 | # The following information is for reference only and not required by the build tools.
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | FspWrapperNotifyDxe.c
|
---|
28 | LoadBelow4G.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | IntelFsp2Pkg/IntelFsp2Pkg.dec
|
---|
33 | IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec
|
---|
34 |
|
---|
35 | [LibraryClasses]
|
---|
36 | UefiDriverEntryPoint
|
---|
37 | UefiBootServicesTableLib
|
---|
38 | DebugLib
|
---|
39 | BaseMemoryLib
|
---|
40 | UefiLib
|
---|
41 | FspWrapperApiLib
|
---|
42 | PeCoffLib
|
---|
43 | CacheMaintenanceLib
|
---|
44 | DxeServicesLib
|
---|
45 | PerformanceLib
|
---|
46 | HobLib
|
---|
47 | FspWrapperPlatformLib
|
---|
48 |
|
---|
49 | [Protocols]
|
---|
50 | gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
|
---|
51 | gAddPerfRecordProtocolGuid ## SOMETIMES_CONSUMES
|
---|
52 |
|
---|
53 | [Guids]
|
---|
54 | gFspApiPerformanceGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
55 | gEfiEventExitBootServicesGuid ## CONSUMES ## Event
|
---|
56 | gFspHobGuid ## CONSUMES ## HOB
|
---|
57 |
|
---|
58 | [Pcd]
|
---|
59 | gIntelFsp2WrapperTokenSpaceGuid.PcdSkipFspApi ## CONSUMES
|
---|
60 |
|
---|
61 | [Depex]
|
---|
62 | TRUE
|
---|