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