]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
1. EDK_RELEASE_VERSION removed;
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / IsaBusDxe.inf
CommitLineData
c21fc3e8 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
f8cd287b 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
c21fc3e8 10#\r
4ee6846f 11# Copyright (c) 2007 - 2009, Intel Corporation\r
c21fc3e8 12#\r
f8cd287b 13# All rights reserved. This program and the accompanying materials\r
14# are licensed and made available under the terms and conditions of the BSD License\r
15# which accompanies this distribution. The full text of the license may be found at\r
16# http://opensource.org/licenses/bsd-license.php\r
c21fc3e8 17#\r
f8cd287b 18# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
19# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
c21fc3e8 20#**/\r
21\r
22[Defines]\r
23 INF_VERSION = 0x00010005\r
24 BASE_NAME = IsaBusDxe\r
25 FILE_GUID = 240612B5-A063-11d4-9A3A-0090273FC14D\r
1a8802f7 26 MODULE_TYPE = UEFI_DRIVER\r
c21fc3e8 27 VERSION_STRING = 1.0\r
c21fc3e8 28 EFI_SPECIFICATION_VERSION = 0x00020000\r
c21fc3e8 29 ENTRY_POINT = InitializeIsaBus\r
30\r
31# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
32\r
33[Sources.common]\r
34 ComponentName.c\r
35 IsaIo.c\r
36 IsaBus.c\r
1cf79a5e 37 InternalIsaIo.h\r
38 InternalIsaBus.h\r
c21fc3e8 39 ComponentName.h\r
40\r
41[Packages]\r
42 MdePkg/MdePkg.dec\r
43 IntelFrameworkPkg/IntelFrameworkPkg.dec\r
888b8afb 44 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec\r
c21fc3e8 45 MdeModulePkg/MdeModulePkg.dec\r
46\r
47[LibraryClasses]\r
48 PcdLib\r
c21fc3e8 49 ReportStatusCodeLib\r
50 UefiBootServicesTableLib\r
51 MemoryAllocationLib\r
52 BaseMemoryLib\r
53 DevicePathLib\r
54 UefiLib\r
55 UefiDriverEntryPoint\r
56 DebugLib\r
57\r
58[Guids]\r
59 gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED\r
60\r
61[Protocols]\r
62 gEfiIsaIoProtocolGuid # PROTOCOL BY_START\r
63 gEfiIsaAcpiProtocolGuid # PROTOCOL TO_START\r
64 gEfiPciIoProtocolGuid # PROTOCOL TO_START\r
65 gEfiDevicePathProtocolGuid # PROTOCOL TO_START\r
66 gEfiGenericMemTestProtocolGuid # PROTOCOL TO_START\r
67\r
b3af5df6 68[FeaturePcd.common]\r
69 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusOnlySupportSlaveDma\r
70 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSupportDma\r
71 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSupportIsaMemory\r
c21fc3e8 72\r
1a8802f7 73\r