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