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