]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
MdeModulePkg: INF/DEC file updates to EDK II packages
[mirror_edk2.git] / MdeModulePkg / Bus / Ata / AtaBusDxe / AtaBusDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
58727f29 2# ATA Bus driver to enumerate and identfy ATA devices.\r
ad86a50a 3#\r
4# This driver follows UEFI driver model and layers on ATA Pass Thru protocol defined\r
5# in UEFI spec 2.2. It installs Block IO and Disk Info protocol for each ATA device\r
6# it enumerates and identifies successfully.\r
7#\r
6036e94d 8# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>\r
ad86a50a 9#\r
cd5ebaa0 10# This program and the accompanying materials\r
ad86a50a 11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17#\r
6bfbb5f0 18##\r
ad86a50a 19\r
20[Defines]\r
21 INF_VERSION = 0x00010005\r
22 BASE_NAME = AtaBusDxe\r
6036e94d 23 MODULE_UNI_FILE = AtaBusDxe.uni\r
ad86a50a 24 FILE_GUID = 19DF145A-B1D4-453f-8507-38816676D7F6\r
25 MODULE_TYPE = UEFI_DRIVER\r
26 VERSION_STRING = 1.0\r
27 ENTRY_POINT = InitializeAtaBus\r
28\r
29#\r
30# The following information is for reference only and not required by the build tools.\r
31#\r
32# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
33#\r
58727f29 34# DRIVER_BINDING = gAtaBusDriverBinding\r
ad86a50a 35# COMPONENT_NAME = gAtaBusComponentName\r
58727f29 36# COMPONENT_NAME2 = gAtaBusComponentName2\r
ad86a50a 37#\r
38#\r
39\r
6bfbb5f0 40[Sources]\r
ad86a50a 41 AtaBus.h\r
42 AtaBus.c\r
43 AtaPassThruExecute.c\r
44 ComponentName.c\r
58727f29 45\r
ad86a50a 46[Packages]\r
47 MdePkg/MdePkg.dec\r
48\r
49[LibraryClasses]\r
50 DevicePathLib\r
51 UefiBootServicesTableLib\r
90398d55 52 UefiRuntimeServicesTableLib\r
ad86a50a 53 MemoryAllocationLib\r
54 BaseMemoryLib\r
55 UefiLib\r
56 BaseLib\r
57 UefiDriverEntryPoint\r
58 DebugLib\r
58727f29 59 TimerLib\r
37623a5c 60 ReportStatusCodeLib\r
ad86a50a 61\r
62[Guids]\r
6036e94d
SZ
63 gEfiDiskInfoIdeInterfaceGuid ## SOMETIMES_PRODUCES ## UNDEFINED\r
64 gEfiDiskInfoAhciInterfaceGuid ## SOMETIMES_PRODUCES ## UNDEFINED\r
65 gEfiMemoryOverwriteControlDataGuid ## SOMETIMES_CONSUMES ## Variable:L"MemoryOverwriteRequestControl"\r
ad86a50a 66\r
67[Protocols]\r
6036e94d
SZ
68 gEfiDiskInfoProtocolGuid ## BY_START\r
69 gEfiBlockIoProtocolGuid ## BY_START\r
70 gEfiBlockIo2ProtocolGuid ## BY_START\r
71 ## TO_START\r
72 ## BY_START\r
73 gEfiDevicePathProtocolGuid\r
74 gEfiAtaPassThruProtocolGuid ## TO_START\r
75 gEfiStorageSecurityCommandProtocolGuid ## BY_START\r
ad86a50a 76\r
6036e94d
SZ
77[UserExtensions.TianoCore."ExtraFiles"]\r
78 AtaBusDxeExtra.uni\r