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