1 | ## @file
|
---|
2 | # FSP DXE Module
|
---|
3 | #
|
---|
4 | # This driver will register two callbacks to call fsp's notifies.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2014 - 2015, 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 = FspNotifyDxe
|
---|
20 | FILE_GUID = 8714C537-6D4B-4247-AA6C-29E8495F9100
|
---|
21 | MODULE_TYPE = DXE_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 | ENTRY_POINT = FspDxeEntryPoint
|
---|
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 | FspNotifyDxe.c
|
---|
33 | LoadBelow4G.c
|
---|
34 |
|
---|
35 | [Packages]
|
---|
36 | MdePkg/MdePkg.dec
|
---|
37 | IntelFspPkg/IntelFspPkg.dec
|
---|
38 | IntelFspWrapperPkg/IntelFspWrapperPkg.dec
|
---|
39 |
|
---|
40 | [LibraryClasses]
|
---|
41 | UefiDriverEntryPoint
|
---|
42 | UefiBootServicesTableLib
|
---|
43 | DebugLib
|
---|
44 | BaseMemoryLib
|
---|
45 | UefiLib
|
---|
46 | FspApiLib
|
---|
47 | PeCoffLib
|
---|
48 | CacheMaintenanceLib
|
---|
49 | DxeServicesLib
|
---|
50 |
|
---|
51 | [Protocols]
|
---|
52 | gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
|
---|
53 |
|
---|
54 | [Pcd]
|
---|
55 | gFspWrapperTokenSpaceGuid.PcdFlashFvFspBase ## CONSUMES
|
---|
56 | gFspWrapperTokenSpaceGuid.PcdFlashFvSecondFspBase ## CONSUMES
|
---|
57 | gFspWrapperTokenSpaceGuid.PcdFlashFvFspSize ## CONSUMES
|
---|
58 |
|
---|
59 | [Depex]
|
---|
60 | TRUE
|
---|