]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
ISA Bus driver code scrub.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / IsaBusDxe.inf
1 #/** @file
2 # Component description file for IsaBus module.
3 #
4 # Discovers all the ISA Controllers and their resources by using the ISA ACPI
5 # Protocol, produces an instance of the ISA I/O Protocol for every ISA
6 # Controller found. This driver is designed to manage a PCI-to-ISA bridge Device
7 # such as LPC bridge.
8 #
9 # Copyright (c) 2007 - 2009, Intel Corporation
10 #
11 # All rights reserved. This program and the accompanying materials
12 # are licensed and made available under the terms and conditions of the BSD License
13 # which accompanies this distribution. The full text of the license may be found at
14 # http://opensource.org/licenses/bsd-license.php
15 #
16 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18 #**/
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = IsaBusDxe
23 FILE_GUID = 240612B5-A063-11d4-9A3A-0090273FC14D
24 MODULE_TYPE = UEFI_DRIVER
25 VERSION_STRING = 1.0
26 EFI_SPECIFICATION_VERSION = 0x00020000
27 ENTRY_POINT = InitializeIsaBus
28
29 #
30 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
31 # DRIVER_BINDING = gIsaBusControllerDriver
32 # COMPONENT_NAME = gIsaBusComponentName;
33 # COMPONENT_NAME2 = gIsaBusComponentName2;
34 #
35
36 [Sources.common]
37 ComponentName.c
38 IsaIo.c
39 IsaBus.c
40 InternalIsaIo.h
41 InternalIsaBus.h
42 ComponentName.h
43
44 [Packages]
45 MdePkg/MdePkg.dec
46 IntelFrameworkPkg/IntelFrameworkPkg.dec
47 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
48 MdeModulePkg/MdeModulePkg.dec
49
50 [LibraryClasses]
51 PcdLib
52 ReportStatusCodeLib
53 UefiBootServicesTableLib
54 MemoryAllocationLib
55 BaseMemoryLib
56 DevicePathLib
57 UefiLib
58 UefiDriverEntryPoint
59 DebugLib
60
61 [Protocols]
62 gEfiIsaIoProtocolGuid # PROTOCOL BY_START
63 gEfiIsaAcpiProtocolGuid # PROTOCOL TO_START
64 gEfiPciIoProtocolGuid # PROTOCOL TO_START
65 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
66 gEfiGenericMemTestProtocolGuid # PROTOCOL TO_START
67
68 [FeaturePcd.common]
69 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusOnlySupportSlaveDma
70 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSupportDma
71 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSupportIsaMemory
72
73