]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
1. Correct File header to ## @file
[mirror_edk2.git] / MdeModulePkg / Bus / Ata / AtaBusDxe / AtaBusDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
ad86a50a 2# ATA Bus driver to enumerate and identfy ATA devices. \r
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
6bfbb5f0 8# Copyright (c) 2009 - 2010, Intel Corporation\r
ad86a50a 9#\r
10# All rights reserved. This program and the accompanying materials\r
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
23 FILE_GUID = 19DF145A-B1D4-453f-8507-38816676D7F6\r
24 MODULE_TYPE = UEFI_DRIVER\r
25 VERSION_STRING = 1.0\r
26 ENTRY_POINT = InitializeAtaBus\r
27\r
28#\r
29# The following information is for reference only and not required by the build tools.\r
30#\r
31# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
32#\r
33# DRIVER_BINDING = gAtaBusDriverBinding \r
34# COMPONENT_NAME = gAtaBusComponentName\r
35# COMPONENT_NAME2 = gAtaBusComponentName2 \r
36#\r
37#\r
38\r
6bfbb5f0 39[Sources]\r
ad86a50a 40 AtaBus.h\r
41 AtaBus.c\r
42 AtaPassThruExecute.c\r
43 ComponentName.c\r
44 \r
45[Packages]\r
46 MdePkg/MdePkg.dec\r
47\r
48[LibraryClasses]\r
49 DevicePathLib\r
50 UefiBootServicesTableLib\r
51 MemoryAllocationLib\r
52 BaseMemoryLib\r
53 UefiLib\r
54 BaseLib\r
55 UefiDriverEntryPoint\r
56 DebugLib\r
57\r
58\r
59[Guids]\r
60 gEfiDiskInfoIdeInterfaceGuid # CONSUMES ## GUID\r
61 gEfiDiskInfoAhciInterfaceGuid # CONSUMES ## GUID\r
62\r
63[Protocols]\r
64 gEfiDiskInfoProtocolGuid # BY_START\r
65 gEfiBlockIoProtocolGuid # BY_START\r
66 gEfiAtaPassThruProtocolGuid # TO_START\r
67 gEfiDevicePathProtocolGuid # TO_START\r
68 \r
69\r
70\r