1 | ## @file
|
---|
2 | # Component description file for QEMU Flash Firmware Volume Block DXE driver
|
---|
3 | # module.
|
---|
4 | #
|
---|
5 | # This DXE runtime driver implements and produces the Firmware Volue Block
|
---|
6 | # Protocol for a QEMU flash device.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = FvbServicesRuntimeDxe
|
---|
17 | FILE_GUID = 733cbac2-b23f-4b92-bc8e-fb01ce5907b7
|
---|
18 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | ENTRY_POINT = FvbInitialize
|
---|
21 |
|
---|
22 | #
|
---|
23 | # The following information is for reference only and not required by the build
|
---|
24 | # tools.
|
---|
25 | #
|
---|
26 | # VALID_ARCHITECTURES = IA32 X64
|
---|
27 | #
|
---|
28 |
|
---|
29 | [Sources]
|
---|
30 | FvbInfo.c
|
---|
31 | FwBlockService.c
|
---|
32 | FwBlockService.h
|
---|
33 | FwBlockServiceDxe.c
|
---|
34 | QemuFlash.c
|
---|
35 | QemuFlash.h
|
---|
36 | QemuFlashDxe.c
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | MdeModulePkg/MdeModulePkg.dec
|
---|
41 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
42 | OvmfPkg/OvmfPkg.dec
|
---|
43 |
|
---|
44 | [LibraryClasses]
|
---|
45 | BaseLib
|
---|
46 | BaseMemoryLib
|
---|
47 | DebugLib
|
---|
48 | DevicePathLib
|
---|
49 | DxeServicesTableLib
|
---|
50 | MemEncryptSevLib
|
---|
51 | MemoryAllocationLib
|
---|
52 | PcdLib
|
---|
53 | UefiBootServicesTableLib
|
---|
54 | UefiDriverEntryPoint
|
---|
55 | UefiRuntimeLib
|
---|
56 | CcExitLib
|
---|
57 |
|
---|
58 | [Guids]
|
---|
59 | gEfiEventVirtualAddressChangeGuid # ALWAYS_CONSUMED
|
---|
60 | # gEfiEventVirtualAddressChangeGuid # Create Event: EVENT_GROUP_GUID
|
---|
61 |
|
---|
62 | [Protocols]
|
---|
63 | gEfiFirmwareVolumeBlockProtocolGuid # PROTOCOL SOMETIMES_PRODUCED
|
---|
64 | gEfiDevicePathProtocolGuid # PROTOCOL SOMETIMES_PRODUCED
|
---|
65 |
|
---|
66 | [FixedPcd]
|
---|
67 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
|
---|
68 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
---|
69 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
|
---|
70 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase
|
---|
71 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwWorkingBase
|
---|
72 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwSpareBase
|
---|
73 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogSize
|
---|
74 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFdBaseAddress
|
---|
75 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareFdSize
|
---|
76 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareBlockSize
|
---|
77 |
|
---|
78 | [Pcd]
|
---|
79 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
|
---|
80 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
|
---|
81 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
|
---|
82 | gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashVariablesEnable
|
---|
83 |
|
---|
84 | [FeaturePcd]
|
---|
85 | gUefiOvmfPkgTokenSpaceGuid.PcdSmmSmramRequire
|
---|
86 |
|
---|
87 | [Depex]
|
---|
88 | TRUE
|
---|