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