]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/IdeBus/Dxe/idebus.inf
Add PciBus & IdeBus
[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 # Includes Section - list of Include locations that are required for
68 # this module.
69 #
70 ################################################################################
71
72 [Includes]
73 $(WORKSPACE)/MdePkg/Include
74 $(WORKSPACE)/MdeModulePkg/Include
75 $(WORKSPACE)/IntelFrameworkPkg/Include
76
77 ################################################################################
78 #
79 # Package Dependency Section - list of Package files that are required for
80 # this module.
81 #
82 ################################################################################
83
84 [Packages]
85 MdePkg/MdePkg.dec
86 MdeModulePkg/MdeModulePkg.dec
87 IntelFrameworkPkg/IntelFrameworkPkg.dec
88
89
90
91 ################################################################################
92 #
93 # Library Class Section - list of Library Classes that are required for
94 # this module.
95 #
96 ################################################################################
97
98 [LibraryClasses]
99 DevicePathLib
100 UefiRuntimeServicesTableLib
101 UefiBootServicesTableLib
102 PerformanceLib
103 MemoryAllocationLib
104 ReportStatusCodeLib
105 BaseMemoryLib
106 UefiLib
107 BaseLib
108 UefiDriverEntryPoint
109 DebugLib
110
111
112 ################################################################################
113 #
114 # Guid C Name Section - list of Guids that this module uses or produces.
115 #
116 ################################################################################
117
118 [Guids]
119 gEfiDiskInfoIdeInterfaceGuid # SOMETIMES_CONSUMED
120
121
122 ################################################################################
123 #
124 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
125 # that this module uses or produces.
126 #
127 ################################################################################
128
129 [Protocols]
130 gEfiDiskInfoProtocolGuid # PROTOCOL BY_START
131 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
132 gEfiIdeControllerInitProtocolGuid # PROTOCOL TO_START
133 gEfiPciIoProtocolGuid # PROTOCOL TO_START
134 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
135