]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBus.inf
Removed IntelframeworkPkg contamination from MdeModulePkg modules.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / IsaBus.inf
1 #/** @file
2 # Component description file for IsaBus module.
3 #
4 # Discovers all the ISA Controllers and their resources by using the ISA PnP
5 # Protocol, produces an instance of the ISA I/O Protocol for every ISA
6 # Controller found, loads and initializes all ISA Device Drivers, matches ISA
7 # Device Drivers with their respective ISA Controllers in a deterministic
8 # manner, and informs a ISA Device Driver when it is to start managing an ISA
9 # Controller.
10 #
11 # Copyright (c) 2006 - 2007, Intel Corporation<BR>
12 # All rights reserved. This program and the accompanying materials
13 # are licensed and made available under the terms and conditions of the BSD License
14 # which accompanies this distribution. The full text of the license may be found at
15 # http://opensource.org/licenses/bsd-license.php
16 #
17 #
18 #**/
19
20 ################################################################################
21 #
22 # Defines Section - statements that will be processed to create a Makefile.
23 #
24 ################################################################################
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = IsaBus
28 FILE_GUID = 240612B5-A063-11d4-9A3A-0090273FC14D
29 MODULE_TYPE = DXE_DRIVER
30 VERSION_STRING = 1.0
31 EDK_RELEASE_VERSION = 0x00020000
32 EFI_SPECIFICATION_VERSION = 0x00020000
33
34 ENTRY_POINT = InitializeIsaBus
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
40 #
41 # DRIVER_BINDING = gIsaBusControllerDriver
42 # COMPONENT_NAME = gIsaBusComponentName
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 ComponentName.c
53 IsaIo.c
54 IsaBus.c
55 IsaIo.h
56 IsaBus.h
57 IsaAcpi.h
58 ComponentName.h
59 CommonHeader.h
60 EntryPoint.c
61
62
63 ################################################################################
64 #
65 # Package Dependency Section - list of Package files that are required for
66 # this module.
67 #
68 ################################################################################
69
70 [Packages]
71 MdePkg/MdePkg.dec
72 MdeModulePkg/MdeModulePkg.dec
73 IntelFrameworkPkg/IntelFrameworkPkg.dec
74 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
75
76
77 ################################################################################
78 #
79 # Library Class Section - list of Library Classes that are required for
80 # this module.
81 #
82 ################################################################################
83
84 [LibraryClasses]
85 PcdLib
86 BootScriptLib
87 ReportStatusCodeLib
88 UefiBootServicesTableLib
89 MemoryAllocationLib
90 BaseMemoryLib
91 DevicePathLib
92 UefiLib
93 UefiDriverEntryPoint
94 DebugLib
95
96
97 ################################################################################
98 #
99 # Guid C Name Section - list of Guids that this module uses or produces.
100 #
101 ################################################################################
102
103 [Guids]
104 gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED
105
106
107 ################################################################################
108 #
109 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
110 # that this module uses or produces.
111 #
112 ################################################################################
113
114 [Protocols]
115 gEfiIsaIoProtocolGuid # PROTOCOL BY_START
116 gEfiIsaAcpiProtocolGuid # PROTOCOL TO_START
117 gEfiPciIoProtocolGuid # PROTOCOL TO_START
118 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
119 gEfiGenericMemTestProtocolGuid # PROTOCOL TO_START
120
121
122 ################################################################################
123 #
124 # Pcd FEATURE_FLAG - list of PCDs that this module is coded for.
125 #
126 ################################################################################
127
128 [PcdsFeatureFlag.common]
129 PcdIsaBusOnlySupportSlaveDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
130 PcdIsaBusSupportDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
131 PcdIsaBusSupportIsaMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid
132