1 | ## @file
|
---|
2 | # Component description file for QEMU Flash Fimware Volume Block DXE driver module.
|
---|
3 | #
|
---|
4 | # This DXE runtime driver implements and produces the Fimware Volue Block Protocol
|
---|
5 | # for a QEMU flash device.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # This program and the accompanying materials
|
---|
10 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
11 | # which accompanies this distribution. The full text of the license may be found at
|
---|
12 | # http://opensource.org/licenses/bsd-license.php
|
---|
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
15 | #
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = FvbServicesRuntimeDxe
|
---|
21 | FILE_GUID = 733cbac2-b23f-4b92-bc8e-fb01ce5907b7
|
---|
22 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
23 | VERSION_STRING = 1.0
|
---|
24 | ENTRY_POINT = FvbInitialize
|
---|
25 |
|
---|
26 | #
|
---|
27 | # The following information is for reference only and not required by the build tools.
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = IA32
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | FvbInfo.c
|
---|
34 | FwBlockService.c
|
---|
35 | QemuFlash.c
|
---|
36 |
|
---|
37 | [Packages]
|
---|
38 | MdePkg/MdePkg.dec
|
---|
39 | MdeModulePkg/MdeModulePkg.dec
|
---|
40 | OvmfPkg/OvmfPkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | MemoryAllocationLib
|
---|
45 | BaseMemoryLib
|
---|
46 | HobLib
|
---|
47 | DebugLib
|
---|
48 | UefiRuntimeLib
|
---|
49 | DxeServicesTableLib
|
---|
50 | BaseLib
|
---|
51 | UefiDriverEntryPoint
|
---|
52 | UefiLib
|
---|
53 | PcdLib
|
---|
54 |
|
---|
55 | [Guids]
|
---|
56 | gEfiEventVirtualAddressChangeGuid # ALWAYS_CONSUMED Create Event: EVENT_GROUP_GUID
|
---|
57 |
|
---|
58 | [Protocols]
|
---|
59 | gEfiFirmwareVolumeBlockProtocolGuid # PROTOCOL SOMETIMES_PRODUCED
|
---|
60 | gEfiDevicePathProtocolGuid # PROTOCOL SOMETIMES_PRODUCED
|
---|
61 |
|
---|
62 | [FixedPcd]
|
---|
63 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
|
---|
64 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
---|
65 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
|
---|
66 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase
|
---|
67 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwWorkingBase
|
---|
68 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwSpareBase
|
---|
69 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogSize
|
---|
70 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFdBaseAddress
|
---|
71 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareFdSize
|
---|
72 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareBlockSize
|
---|
73 |
|
---|
74 | [Pcd]
|
---|
75 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
|
---|
76 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
|
---|
77 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
|
---|
78 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogBase
|
---|
79 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
|
---|
80 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashVariablesEnable
|
---|
81 |
|
---|
82 |
|
---|
83 | [Depex]
|
---|
84 | TRUE
|
---|