]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.inf
Add ReadMe.txt to specify that the EFI image FatBinPkg provides does not contain...
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / IdeBus / Dxe / idebus.inf
1 #/** @file
2 # Component description file for PS2 keyboard module.
3 #
4 # IDE bus driver. This driver will enumerate IDE device and export the blockIo
5 # protocol for every device.
6 # Copyright (c) 2006 - 2007, Intel Corporation
7 #
8 # All rights reserved. This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #
15 #
16 #**/
17
18 ################################################################################
19 #
20 # Defines Section - statements that will be processed to create a Makefile.
21 #
22 ################################################################################
23 [Defines]
24 INF_VERSION = 0x00010005
25 BASE_NAME = IdeBus
26 FILE_GUID = 69FD8E47-A161-4550-B01A-5594CEB2B2B2
27 MODULE_TYPE = DXE_DRIVER
28 VERSION_STRING = 1.0
29 EDK_RELEASE_VERSION = 0x00020000
30 EFI_SPECIFICATION_VERSION = 0x00020000
31
32 ENTRY_POINT = InitializeIdeBus
33
34 #
35 # The following information is for reference only and not required by the build tools.
36 #
37 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
38 #
39 # DRIVER_BINDING = gIDEBusDriverBinding
40 # COMPONENT_NAME = gIDEBusComponentName
41 # Variable Guid C Name: gConfigurationGuid Variable Name: L"Configuration"
42 #
43 #
44
45 ################################################################################
46 #
47 # Sources Section - list of files that are required for the build to succeed.
48 #
49 ################################################################################
50
51 [Sources.common]
52 DriverDiagnostics.c
53 DriverConfiguration.c
54 ComponentName.h
55 ComponentName.c
56 atapi.c
57 ata.c
58 ide.c
59 idebus.c
60 idedata.h
61 ide.h
62 idebus.h
63
64
65 ################################################################################
66 #
67 # Package Dependency Section - list of Package files that are required for
68 # this module.
69 #
70 ################################################################################
71
72 [Packages]
73 MdePkg/MdePkg.dec
74 MdeModulePkg/MdeModulePkg.dec
75 IntelFrameworkPkg/IntelFrameworkPkg.dec
76
77
78
79 ################################################################################
80 #
81 # Library Class Section - list of Library Classes that are required for
82 # this module.
83 #
84 ################################################################################
85
86 [LibraryClasses]
87 DevicePathLib
88 UefiRuntimeServicesTableLib
89 UefiBootServicesTableLib
90 PerformanceLib
91 MemoryAllocationLib
92 ReportStatusCodeLib
93 BaseMemoryLib
94 UefiLib
95 BaseLib
96 UefiDriverEntryPoint
97 DebugLib
98
99
100 ################################################################################
101 #
102 # Guid C Name Section - list of Guids that this module uses or produces.
103 #
104 ################################################################################
105
106 [Guids]
107 gEfiDiskInfoIdeInterfaceGuid # SOMETIMES_CONSUMED
108
109
110 ################################################################################
111 #
112 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
113 # that this module uses or produces.
114 #
115 ################################################################################
116
117 [Protocols]
118 gEfiDiskInfoProtocolGuid # PROTOCOL BY_START
119 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
120 gEfiIdeControllerInitProtocolGuid # PROTOCOL TO_START
121 gEfiPciIoProtocolGuid # PROTOCOL TO_START
122 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
123