Vishal Bhoj | 82c8071 | 2015-12-15 21:13:33 +0530 | [diff] [blame^] | 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 |
|
| 34 | [Packages]
|
| 35 | MdePkg/MdePkg.dec
|
| 36 | IntelFspPkg/IntelFspPkg.dec
|
| 37 | IntelFspWrapperPkg/IntelFspWrapperPkg.dec
|
| 38 |
|
| 39 | [LibraryClasses]
|
| 40 | UefiDriverEntryPoint
|
| 41 | UefiBootServicesTableLib
|
| 42 | DebugLib
|
| 43 | BaseMemoryLib
|
| 44 | UefiLib
|
| 45 | FspApiLib
|
| 46 |
|
| 47 | [Protocols]
|
| 48 | gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
|
| 49 |
|
| 50 | [Pcd]
|
| 51 | gFspWrapperTokenSpaceGuid.PcdFlashFvFspBase ## CONSUMES
|
| 52 | gFspWrapperTokenSpaceGuid.PcdFlashFvFspSize ## CONSUMES
|
| 53 |
|
| 54 | [Depex]
|
| 55 | TRUE
|