]>
Commit | Line | Data |
---|---|---|
7b202cb0 | 1 | ## @file\r |
c281c698 | 2 | # Description file for the Atapi Pass Thru driver.\r |
823f7d4f | 3 | #\r |
4 | # This driver simulates SCSI devices with Atapi devices to test the SCSI io\r | |
5 | # protocol.\r | |
ac1ca104 | 6 | # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r |
823f7d4f | 7 | #\r |
ac1ca104 | 8 | # This program and the accompanying materials\r |
823f7d4f | 9 | # are licensed and made available under the terms and conditions of the BSD License\r |
10 | # which accompanies this distribution. The full text of the license may be found at\r | |
11 | # http://opensource.org/licenses/bsd-license.php\r | |
12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
14 | #\r | |
15 | #\r | |
7b202cb0 | 16 | ##\r |
823f7d4f | 17 | \r |
18 | [Defines]\r | |
19 | INF_VERSION = 0x00010005\r | |
c281c698 | 20 | BASE_NAME = AtapiPassThruDxe\r |
823f7d4f | 21 | FILE_GUID = E49061CE-99A7-41d3-AB3A-36E5CFBAD63E\r |
22 | MODULE_TYPE = UEFI_DRIVER\r | |
23 | VERSION_STRING = 1.0\r | |
823f7d4f | 24 | \r |
25 | ENTRY_POINT = InitializeAtapiPassThru\r | |
26 | \r | |
0e27fefd LG |
27 | PCI_VENDOR_ID = 0x8086\r |
28 | PCI_DEVICE_ID = 0x2921\r | |
29 | PCI_CLASS_CODE = 0x010100\r | |
30 | PCI_REVISION = 0x0003\r | |
31 | \r | |
823f7d4f | 32 | #\r |
33 | # The following information is for reference only and not required by the build tools.\r | |
34 | #\r | |
35 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
36 | #\r | |
37 | # DRIVER_BINDING = gAtapiScsiPassThruDriverBinding \r | |
38 | # COMPONENT_NAME = gAtapiScsiPassThruComponentName \r | |
39 | #\r | |
40 | \r | |
7b202cb0 | 41 | [Sources]\r |
4cc9af6c | 42 | DriverSupportedEfiVersion.c\r |
823f7d4f | 43 | ComponentName.c\r |
44 | AtapiPassThru.c\r | |
45 | AtapiPassThru.h\r | |
46 | \r | |
47 | \r | |
48 | [Packages]\r | |
49 | MdePkg/MdePkg.dec\r | |
50 | OptionRomPkg/OptionRomPkg.dec\r | |
51 | \r | |
52 | [LibraryClasses]\r | |
53 | UefiBootServicesTableLib\r | |
54 | MemoryAllocationLib\r | |
55 | BaseMemoryLib\r | |
56 | UefiLib\r | |
57 | BaseLib\r | |
58 | UefiDriverEntryPoint\r | |
59 | DebugLib\r | |
3501cc99 | 60 | DevicePathLib\r |
823f7d4f | 61 | \r |
62 | \r | |
63 | [Protocols]\r | |
64 | gEfiScsiPassThruProtocolGuid # PROTOCOL BY_START\r | |
65 | gEfiExtScsiPassThruProtocolGuid # PROTOCOL BY_START\r | |
66 | gEfiPciIoProtocolGuid # PROTOCOL TO_START\r | |
4cc9af6c | 67 | gEfiDriverSupportedEfiVersionProtocolGuid # PROTOCOL ALWAYS_PRODUCED\r |
823f7d4f | 68 | \r |
69 | [FeaturePcd]\r | |
70 | gOptionRomPkgTokenSpaceGuid.PcdSupportScsiPassThru\r | |
71 | gOptionRomPkgTokenSpaceGuid.PcdSupportExtScsiPassThru\r | |
4cc9af6c | 72 | \r |
73 | [Pcd]\r | |
74 | gOptionRomPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion\r | |
75 | \r |