]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBus.inf
c4d5177d15dce47466d852cdabed3cce18befce2
[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 # Includes Section - list of Include locations that are required for
66 # this module.
67 #
68 ################################################################################
69
70 [Includes]
71
72 ################################################################################
73 #
74 # Package Dependency Section - list of Package files that are required for
75 # this module.
76 #
77 ################################################################################
78
79 [Packages]
80 MdePkg/MdePkg.dec
81 IntelFrameworkPkg/IntelFrameworkPkg.dec
82 MdeModulePkg/MdeModulePkg.dec
83 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
84
85
86 ################################################################################
87 #
88 # Library Class Section - list of Library Classes that are required for
89 # this module.
90 #
91 ################################################################################
92
93 [LibraryClasses]
94 PcdLib
95 BootScriptLib
96 ReportStatusCodeLib
97 UefiBootServicesTableLib
98 MemoryAllocationLib
99 BaseMemoryLib
100 DevicePathLib
101 UefiLib
102 UefiDriverEntryPoint
103 DebugLib
104
105
106 ################################################################################
107 #
108 # Guid C Name Section - list of Guids that this module uses or produces.
109 #
110 ################################################################################
111
112 [Guids]
113 gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED
114
115
116 ################################################################################
117 #
118 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
119 # that this module uses or produces.
120 #
121 ################################################################################
122
123 [Protocols]
124 gEfiIsaIoProtocolGuid # PROTOCOL BY_START
125 gEfiIsaAcpiProtocolGuid # PROTOCOL TO_START
126 gEfiPciIoProtocolGuid # PROTOCOL TO_START
127 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
128 gEfiGenericMemTestProtocolGuid # PROTOCOL TO_START
129
130
131 ################################################################################
132 #
133 # Pcd FEATURE_FLAG - list of PCDs that this module is coded for.
134 #
135 ################################################################################
136
137 [PcdsFeatureFlag.common]
138 PcdIsaBusOnlySupportSlaveDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
139 PcdIsaBusSupportDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
140 PcdIsaBusSupportIsaMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid
141