]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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
d1102dba 16# Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
e237e7ae 17#\r
9d510e61 18# SPDX-License-Identifier: BSD-2-Clause-Patent\r
e237e7ae 19#\r
20#\r
6bfbb5f0 21##\r
e237e7ae 22\r
e237e7ae 23[Defines]\r
24 INF_VERSION = 0x00010005\r
25 BASE_NAME = UsbMassStorageDxe\r
6036e94d 26 MODULE_UNI_FILE = UsbMassStorageDxe.uni\r
e237e7ae 27 FILE_GUID = 9FB4B4A7-42C0-4bcd-8540-9BCC6711F83E\r
d3f16117 28 MODULE_TYPE = UEFI_DRIVER\r
e237e7ae 29 VERSION_STRING = 1.0\r
e237e7ae 30 ENTRY_POINT = USBMassStorageEntryPoint\r
31\r
32#\r
33# The following information is for reference only and not required by the build tools.\r
34#\r
de005223 35# VALID_ARCHITECTURES = IA32 X64 EBC\r
e237e7ae 36#\r
d1102dba 37# DRIVER_BINDING = gUSBMassDriverBinding\r
d354ab7f 38# COMPONENT_NAME = gUsbMassStorageComponentName\r
39# COMPONENT_NAME2 = gUsbMassStorageComponentName2\r
40#\r
e237e7ae 41\r
6bfbb5f0 42[Sources]\r
e237e7ae 43 UsbMassBoot.h\r
44 UsbMassImpl.h\r
45 UsbMassBot.h\r
46 UsbMassBot.c\r
47 ComponentName.c\r
48 UsbMassImpl.c\r
49 UsbMassBoot.c\r
50 UsbMassCbi.h\r
51 UsbMass.h\r
52 UsbMassCbi.c\r
08cd9702 53 UsbMassDiskInfo.h\r
54 UsbMassDiskInfo.c\r
e237e7ae 55\r
e237e7ae 56[Packages]\r
57 MdePkg/MdePkg.dec\r
e237e7ae 58\r
e237e7ae 59[LibraryClasses]\r
776a705e 60 BaseLib\r
e237e7ae 61 MemoryAllocationLib\r
62 UefiLib\r
63 UefiBootServicesTableLib\r
64 UefiDriverEntryPoint\r
65 BaseMemoryLib\r
66 DebugLib\r
c7e39923 67 DevicePathLib\r
e237e7ae 68\r
69\r
e237e7ae 70[Protocols]\r
7772b176 71 gEfiUsbIoProtocolGuid ## TO_START\r
72 gEfiDevicePathProtocolGuid ## TO_START\r
73 gEfiBlockIoProtocolGuid ## BY_START\r
39840c50 74 gEfiDiskInfoProtocolGuid ## BY_START\r
6036e94d
SZ
75\r
76# [Event]\r
77# EVENT_TYPE_RELATIVE_TIMER ## CONSUMES\r
78#\r
79\r
80[UserExtensions.TianoCore."ExtraFiles"]\r
81 UsbMassStorageDxeExtra.uni\r