Last change
on this file since 98412 was 85718, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1023 bytes
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver produces Extended SCSI Pass Thru Protocol instances for
|
---|
3 | # LSI Fusion MPT SCSI devices.
|
---|
4 | #
|
---|
5 | # Copyright (C) 2020, Oracle and/or its affiliates.
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 1.29
|
---|
13 | BASE_NAME = MptScsiDxe
|
---|
14 | FILE_GUID = 2B3DB5DD-B315-4961-8454-0AFF3C811B19
|
---|
15 | MODULE_TYPE = UEFI_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | ENTRY_POINT = MptScsiEntryPoint
|
---|
18 |
|
---|
19 | [Sources]
|
---|
20 | MptScsi.c
|
---|
21 |
|
---|
22 | [Packages]
|
---|
23 | MdePkg/MdePkg.dec
|
---|
24 | OvmfPkg/OvmfPkg.dec
|
---|
25 |
|
---|
26 | [LibraryClasses]
|
---|
27 | BaseLib
|
---|
28 | BaseMemoryLib
|
---|
29 | DebugLib
|
---|
30 | MemoryAllocationLib
|
---|
31 | PcdLib
|
---|
32 | UefiBootServicesTableLib
|
---|
33 | UefiDriverEntryPoint
|
---|
34 | UefiLib
|
---|
35 |
|
---|
36 | [Protocols]
|
---|
37 | gEfiExtScsiPassThruProtocolGuid ## BY_START
|
---|
38 | gEfiPciIoProtocolGuid ## TO_START
|
---|
39 |
|
---|
40 | [FixedPcd]
|
---|
41 | gUefiOvmfPkgTokenSpaceGuid.PcdMptScsiMaxTargetLimit ## CONSUMES
|
---|
42 |
|
---|
43 | [Pcd]
|
---|
44 | gUefiOvmfPkgTokenSpaceGuid.PcdMptScsiStallPerPollUsec ## CONSUMES
|
---|
Note:
See
TracBrowser
for help on using the repository browser.