]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
54039389fb12b5db6ce44aedcb10281b8ef55436
[mirror_edk2.git] / MdeModulePkg / Bus / Usb / UsbMassStorageDxe / UsbMassStorageDxe.inf
1 ## @file
2 # USB Mass Storage Driver that manages USB mass storage devices and produces Block I/O Protocol.
3 #
4 # The USB mass storage class is specified in two layers: the bottom layer
5 # is the transportation protocol. The top layer is the command set.
6 # The transportation layer provides the transportation of the command, data and result.
7 # The command set defines the command, data and result.
8 # The Bulk-Only-Transport and Control/Bulk/Interrupt transport are two transportation protocol.
9 # USB mass storage class adopts various industrial standard as its command set.
10 # This module refers to following specifications:
11 # 1. USB Mass Storage Specification for Bootability, Revision 1.0
12 # 2. USB Mass Storage Class Control/Bulk/Interrupt (CBI) Transport, Revision 1.1
13 # 3. USB Mass Storage Class Bulk-Only Transport, Revision 1.0.
14 # 4. UEFI Specification, v2.1
15 #
16 # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
17 #
18 # SPDX-License-Identifier: BSD-2-Clause-Patent
19 #
20 #
21 ##
22
23 [Defines]
24 INF_VERSION = 0x00010005
25 BASE_NAME = UsbMassStorageDxe
26 MODULE_UNI_FILE = UsbMassStorageDxe.uni
27 FILE_GUID = 9FB4B4A7-42C0-4bcd-8540-9BCC6711F83E
28 MODULE_TYPE = UEFI_DRIVER
29 VERSION_STRING = 1.0
30 ENTRY_POINT = USBMassStorageEntryPoint
31
32 #
33 # The following information is for reference only and not required by the build tools.
34 #
35 # VALID_ARCHITECTURES = IA32 X64 EBC
36 #
37 # DRIVER_BINDING = gUSBMassDriverBinding
38 # COMPONENT_NAME = gUsbMassStorageComponentName
39 # COMPONENT_NAME2 = gUsbMassStorageComponentName2
40 #
41
42 [Sources]
43 UsbMassBoot.h
44 UsbMassImpl.h
45 UsbMassBot.h
46 UsbMassBot.c
47 ComponentName.c
48 UsbMassImpl.c
49 UsbMassBoot.c
50 UsbMassCbi.h
51 UsbMass.h
52 UsbMassCbi.c
53 UsbMassDiskInfo.h
54 UsbMassDiskInfo.c
55
56 [Packages]
57 MdePkg/MdePkg.dec
58
59 [LibraryClasses]
60 BaseLib
61 MemoryAllocationLib
62 UefiLib
63 UefiBootServicesTableLib
64 UefiDriverEntryPoint
65 BaseMemoryLib
66 DebugLib
67 DevicePathLib
68
69
70 [Protocols]
71 gEfiUsbIoProtocolGuid ## TO_START
72 gEfiDevicePathProtocolGuid ## TO_START
73 gEfiBlockIoProtocolGuid ## BY_START
74 gEfiDiskInfoProtocolGuid ## BY_START
75
76 # [Event]
77 # EVENT_TYPE_RELATIVE_TIMER ## CONSUMES
78 #
79
80 [UserExtensions.TianoCore."ExtraFiles"]
81 UsbMassStorageDxeExtra.uni