1## @file
2# Component description file for Nt32 Fimware Volume Block DXE driver module.
3#
4# This DXE runtime driver implements and produces the Fimware Volue Block Protocol on
5#  NT32 emulator.
6# Copyright (c) 2006 - 2010, 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
18[Defines]
19  INF_VERSION                    = 0x00010005
20  BASE_NAME                      = FvbServicesRuntimeDxe
21  FILE_GUID                      = BDFE5FAA-2A35-44bb-B17A-8084D4E2B9E9
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.h
35  FWBlockService.c
36
37[Packages]
38  MdePkg/MdePkg.dec
39  MdeModulePkg/MdeModulePkg.dec
40  Nt32Pkg/Nt32Pkg.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 ALWAYS_PRODUCED
60  gEfiDevicePathProtocolGuid                    # PROTOCOL SOMETIMES_PRODUCED
61
62[FixedPcd]
63  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
64  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
65  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
66  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoverySize
67  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize
68  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogSize
69
70[Pcd]
71  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
72  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
73  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
74  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareFdSize
75  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoveryBase
76  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogBase
77
78[Depex]
79  TRUE
80
81