]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / OvmfPkg / EmuVariableFvbRuntimeDxe / Fvb.inf
1 ## @file
2 # Firmware Block Services to support emulating non-volatile variables
3 # by pretending that a memory buffer is storage for the NV variables.
4 #
5 # Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
6 #
7 # SPDX-License-Identifier: BSD-2-Clause-Patent
8 #
9 ##
10
11 [Defines]
12 INF_VERSION = 0x00010005
13 BASE_NAME = EmuVariableFvbRuntimeDxe
14 FILE_GUID = 22dc2b60-fe40-42ac-b01f-3ab1fad9aad8
15 MODULE_TYPE = DXE_RUNTIME_DRIVER
16 VERSION_STRING = 1.0
17 ENTRY_POINT = FvbInitialize
18
19 #
20 # The following information is for reference only and not required by the build tools.
21 #
22 # VALID_ARCHITECTURES = IA32 X64 EBC
23 #
24
25 [Sources]
26 Fvb.c
27 Fvb.h
28
29 [Packages]
30 MdePkg/MdePkg.dec
31 MdeModulePkg/MdeModulePkg.dec
32 OvmfPkg/OvmfPkg.dec
33
34 [LibraryClasses]
35 BaseLib
36 BaseMemoryLib
37 DebugLib
38 DxeServicesTableLib
39 HobLib
40 MemoryAllocationLib
41 PcdLib
42 PlatformFvbLib
43 UefiBootServicesTableLib
44 UefiDriverEntryPoint
45 UefiLib
46 UefiRuntimeLib
47
48 [Guids]
49 gEfiEventVirtualAddressChangeGuid # ALWAYS_CONSUMED Create Event: EVENT_GROUP_GUID
50
51 [Protocols]
52 gEfiFirmwareVolumeBlock2ProtocolGuid # PROTOCOL ALWAYS_PRODUCED
53 gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_PRODUCED
54
55 [FixedPcd]
56 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
57 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
58 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
59
60 [Pcd]
61 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
62 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64
63 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64
64 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved
65
66 [Depex]
67 TRUE
68