]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
MdeModulePkg/UsbBusDxe: Add UsbControlTransfer() error check
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMassStorageDxe / UsbMassStorageDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
6036e94d 2# USB Mass Storage Driver that manages USB mass storage devices and produces Block I/O Protocol.\r
3e03cb4d 3#\r
4# The USB mass storage class is specified in two layers: the bottom layer\r
5# is the transportation protocol. The top layer is the command set.\r
6# The transportation layer provides the transportation of the command, data and result.\r
7# The command set defines the command, data and result.\r
8# The Bulk-Only-Transport and Control/Bulk/Interrupt transport are two transportation protocol.\r
9# USB mass storage class adopts various industrial standard as its command set.\r
7772b176 10# This module refers to following specifications:\r
11# 1. USB Mass Storage Specification for Bootability, Revision 1.0\r
12# 2. USB Mass Storage Class Control/Bulk/Interrupt (CBI) Transport, Revision 1.1\r
13# 3. USB Mass Storage Class Bulk-Only Transport, Revision 1.0.\r
14# 4. UEFI Specification, v2.1\r
e237e7ae 15#\r
6036e94d 16# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r
e237e7ae 17#\r
cd5ebaa0 18# This program and the accompanying materials\r
e237e7ae 19# are licensed and made available under the terms and conditions of the BSD License\r
20# which accompanies this distribution. The full text of the license may be found at\r
21# http://opensource.org/licenses/bsd-license.php\r
22#\r
23# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
24# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
25#\r
26#\r
6bfbb5f0 27##\r
e237e7ae 28\r
e237e7ae 29[Defines]\r
30 INF_VERSION = 0x00010005\r
31 BASE_NAME = UsbMassStorageDxe\r
6036e94d 32 MODULE_UNI_FILE = UsbMassStorageDxe.uni\r
e237e7ae 33 FILE_GUID = 9FB4B4A7-42C0-4bcd-8540-9BCC6711F83E\r
d3f16117 34 MODULE_TYPE = UEFI_DRIVER\r
e237e7ae 35 VERSION_STRING = 1.0\r
e237e7ae 36 ENTRY_POINT = USBMassStorageEntryPoint\r
37\r
38#\r
39# The following information is for reference only and not required by the build tools.\r
40#\r
41# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
42#\r
d354ab7f 43# DRIVER_BINDING = gUSBMassDriverBinding \r
44# COMPONENT_NAME = gUsbMassStorageComponentName\r
45# COMPONENT_NAME2 = gUsbMassStorageComponentName2\r
46#\r
e237e7ae 47\r
6bfbb5f0 48[Sources]\r
e237e7ae 49 UsbMassBoot.h\r
50 UsbMassImpl.h\r
51 UsbMassBot.h\r
52 UsbMassBot.c\r
53 ComponentName.c\r
54 UsbMassImpl.c\r
55 UsbMassBoot.c\r
56 UsbMassCbi.h\r
57 UsbMass.h\r
58 UsbMassCbi.c\r
08cd9702 59 UsbMassDiskInfo.h\r
60 UsbMassDiskInfo.c\r
e237e7ae 61\r
e237e7ae 62[Packages]\r
63 MdePkg/MdePkg.dec\r
e237e7ae 64\r
e237e7ae 65[LibraryClasses]\r
776a705e 66 BaseLib\r
e237e7ae 67 MemoryAllocationLib\r
68 UefiLib\r
69 UefiBootServicesTableLib\r
70 UefiDriverEntryPoint\r
71 BaseMemoryLib\r
72 DebugLib\r
c7e39923 73 DevicePathLib\r
e237e7ae 74\r
75\r
e237e7ae 76[Protocols]\r
7772b176 77 gEfiUsbIoProtocolGuid ## TO_START\r
78 gEfiDevicePathProtocolGuid ## TO_START\r
79 gEfiBlockIoProtocolGuid ## BY_START\r
39840c50 80 gEfiDiskInfoProtocolGuid ## BY_START\r
6036e94d
SZ
81\r
82# [Event]\r
83# EVENT_TYPE_RELATIVE_TIMER ## CONSUMES\r
84#\r
85\r
86[UserExtensions.TianoCore."ExtraFiles"]\r
87 UsbMassStorageDxeExtra.uni\r