]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / DiskIoDxe / DiskIoDxe.inf
1 ## @file
2 # Module that lays Disk I/O protocol on every Block I/O protocol.
3 #
4 # This module produces Disk I/O protocol to abstract the block accesses
5 # of the Block I/O protocol to a more general offset-length protocol
6 # to provide byte-oriented access to block media. It adds this protocol
7 # to any Block I/O interface that appears in the system that does not
8 # already have a Disk I/O protocol. File systems and other disk access
9 # code utilize the Disk I/O protocol.
10 #
11 # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
12 # SPDX-License-Identifier: BSD-2-Clause-Patent
13 #
14 ##
15
16 [Defines]
17 INF_VERSION = 0x00010005
18 BASE_NAME = DiskIoDxe
19 MODULE_UNI_FILE = DiskIoDxe.uni
20 FILE_GUID = 6B38F7B4-AD98-40e9-9093-ACA2B5A253C4
21 MODULE_TYPE = UEFI_DRIVER
22 VERSION_STRING = 1.0
23 ENTRY_POINT = InitializeDiskIo
24
25 #
26 # The following information is for reference only and not required by the build tools.
27 #
28 # VALID_ARCHITECTURES = IA32 X64 EBC
29 #
30 # DRIVER_BINDING = gDiskIoDriverBinding
31 # COMPONENT_NAME = gDiskIoComponentName
32 # COMPONENT_NAME2 = gDiskIoComponentName2
33 #
34
35 [Sources]
36 ComponentName.c
37 DiskIo.h
38 DiskIo.c
39
40
41 [Packages]
42 MdePkg/MdePkg.dec
43 MdeModulePkg/MdeModulePkg.dec
44
45 [LibraryClasses]
46 UefiBootServicesTableLib
47 MemoryAllocationLib
48 BaseMemoryLib
49 BaseLib
50 UefiLib
51 UefiDriverEntryPoint
52 DebugLib
53 PcdLib
54
55 [Protocols]
56 gEfiDiskIoProtocolGuid ## BY_START
57 gEfiDiskIo2ProtocolGuid ## BY_START
58 gEfiBlockIoProtocolGuid ## TO_START
59 gEfiBlockIo2ProtocolGuid ## TO_START
60
61 [Pcd]
62 gEfiMdeModulePkgTokenSpaceGuid.PcdDiskIoDataBufferBlockNum ## SOMETIMES_CONSUMES
63
64 [UserExtensions.TianoCore."ExtraFiles"]
65 DiskIoDxeExtra.uni