]> git.proxmox.com Git - mirror_edk2.git/blob - IntelSiliconPkg/IntelVTdDxe/IntelVTdDxe.inf
6a61c13d27b89ddad4a6784e09fa82f85c5938a3
[mirror_edk2.git] / IntelSiliconPkg / IntelVTdDxe / IntelVTdDxe.inf
1 ## @file
2 # Intel VTd DXE Driver.
3 #
4 # This driver initializes VTd engine based upon DMAR ACPI tables
5 # and provide DMA protection to PCI or ACPI device.
6 #
7 # Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
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 #
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 = IntelVTdDxe
21 MODULE_UNI_FILE = IntelVTdDxe.uni
22 FILE_GUID = 987555D6-595D-4CFA-B895-59B89368BD4D
23 MODULE_TYPE = DXE_DRIVER
24 VERSION_STRING = 1.0
25 ENTRY_POINT = IntelVTdInitialize
26
27 #
28 # The following information is for reference only and not required by the build tools.
29 #
30 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
31 #
32 #
33
34 [Sources]
35 IntelVTdDxe.c
36 BmDma.c
37 DmaProtection.c
38 DmaProtection.h
39 DmarAcpiTable.c
40 PciInfo.c
41 TranslationTable.c
42 TranslationTableEx.c
43 VtdReg.c
44
45 [Packages]
46 MdePkg/MdePkg.dec
47 MdeModulePkg/MdeModulePkg.dec
48 IntelSiliconPkg/IntelSiliconPkg.dec
49
50 [LibraryClasses]
51 DebugLib
52 UefiDriverEntryPoint
53 UefiBootServicesTableLib
54 BaseLib
55 IoLib
56 PciSegmentLib
57 BaseMemoryLib
58 MemoryAllocationLib
59 UefiLib
60
61 [Guids]
62 gEfiEventExitBootServicesGuid ## CONSUMES ## Event
63 gEfiAcpi20TableGuid ## CONSUMES ## SystemTable
64 gEfiAcpiTableGuid ## CONSUMES ## SystemTable
65
66 [Protocols]
67 gEdkiiIoMmuProtocolGuid ## PRODUCES
68 gEfiAcpiSdtProtocolGuid ## CONSUMES
69 gEfiPciIoProtocolGuid ## CONSUMES
70 gEfiPciEnumerationCompleteProtocolGuid ## CONSUMES
71 gEdkiiPlatformVTdPolicyProtocolGuid ## SOMETIMES_CONSUMES
72
73 [Depex]
74 gEfiPciRootBridgeIoProtocolGuid AND
75 gEfiAcpiSdtProtocolGuid
76
77 [UserExtensions.TianoCore."ExtraFiles"]
78 IntelVTdDxeExtra.uni
79