]> git.proxmox.com Git - mirror_edk2.git/blob - OptionRomPkg/AtapiPassThruDxe/AtapiPassThruDxe.inf
35ff58574d4a00f73a92707f8c725c915a402705
[mirror_edk2.git] / OptionRomPkg / AtapiPassThruDxe / AtapiPassThruDxe.inf
1 ## @file
2 # Description file for the Atapi Pass Thru driver.
3 #
4 # This driver simulates SCSI devices with Atapi devices to test the SCSI io
5 # protocol.
6 # Copyright (c) 2007 - 2010, Intel Corporation
7 #
8 # All rights reserved. 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 = AtapiPassThruDxe
21 FILE_GUID = E49061CE-99A7-41d3-AB3A-36E5CFBAD63E
22 MODULE_TYPE = UEFI_DRIVER
23 VERSION_STRING = 1.0
24 EDK_RELEASE_VERSION = 0x00020000
25 EFI_SPECIFICATION_VERSION = 0x00020000
26
27 ENTRY_POINT = InitializeAtapiPassThru
28
29 PCI_VENDOR_ID = 0x8086
30 PCI_DEVICE_ID = 0x2921
31 PCI_CLASS_CODE = 0x010100
32 PCI_REVISION = 0x0003
33
34 #
35 # The following information is for reference only and not required by the build tools.
36 #
37 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
38 #
39 # DRIVER_BINDING = gAtapiScsiPassThruDriverBinding
40 # COMPONENT_NAME = gAtapiScsiPassThruComponentName
41 #
42
43 [Sources]
44 DriverSupportedEfiVersion.c
45 ComponentName.c
46 AtapiPassThru.c
47 AtapiPassThru.h
48
49
50 [Packages]
51 MdePkg/MdePkg.dec
52 OptionRomPkg/OptionRomPkg.dec
53
54 [LibraryClasses]
55 UefiBootServicesTableLib
56 MemoryAllocationLib
57 BaseMemoryLib
58 UefiLib
59 BaseLib
60 UefiDriverEntryPoint
61 DebugLib
62 DevicePathLib
63
64
65 [Protocols]
66 gEfiScsiPassThruProtocolGuid # PROTOCOL BY_START
67 gEfiExtScsiPassThruProtocolGuid # PROTOCOL BY_START
68 gEfiPciIoProtocolGuid # PROTOCOL TO_START
69 gEfiDriverSupportedEfiVersionProtocolGuid # PROTOCOL ALWAYS_PRODUCED
70
71 [FeaturePcd]
72 gOptionRomPkgTokenSpaceGuid.PcdSupportScsiPassThru
73 gOptionRomPkgTokenSpaceGuid.PcdSupportExtScsiPassThru
74
75 [Pcd]
76 gOptionRomPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion
77