]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
65e5686be55010959ad00ac93d744341595ab5ef
[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 PnP
5 # Protocol, produces an instance of the ISA I/O Protocol for every ISA
6 # Controller found, loads and initializes all ISA Device Drivers, matches ISA
7 # Device Drivers with their respective ISA Controllers in a deterministic
8 # manner, and informs a ISA Device Driver when it is to start managing an ISA
9 # Controller.
10 #
11 # Copyright (c) 2006 - 2007, Intel Corporation<BR>
12 # All rights reserved. This program and the accompanying materials
13 # are licensed and made available under the terms and conditions of the BSD License
14 # which accompanies this distribution. The full text of the license may be found at
15 # http://opensource.org/licenses/bsd-license.php
16 #
17 #
18 #**/
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = IsaBusDxe
23 FILE_GUID = 240612B5-A063-11d4-9A3A-0090273FC14D
24 MODULE_TYPE = DXE_DRIVER
25 VERSION_STRING = 1.0
26 EDK_RELEASE_VERSION = 0x00020000
27 EFI_SPECIFICATION_VERSION = 0x00020000
28
29 ENTRY_POINT = InitializeIsaBus
30
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32
33 [Sources.common]
34 ComponentName.c
35 IsaIo.c
36 IsaBus.c
37 IsaIo.h
38 IsaBus.h
39 IsaAcpi.h
40 ComponentName.h
41
42 [Packages]
43 MdePkg/MdePkg.dec
44 IntelFrameworkPkg/IntelFrameworkPkg.dec
45 MdeModulePkg/MdeModulePkg.dec
46
47 [LibraryClasses]
48 PcdLib
49 BootScriptLib
50 ReportStatusCodeLib
51 UefiBootServicesTableLib
52 MemoryAllocationLib
53 BaseMemoryLib
54 DevicePathLib
55 UefiLib
56 UefiDriverEntryPoint
57 DebugLib
58
59 [Guids]
60 gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED
61
62 [Protocols]
63 gEfiIsaIoProtocolGuid # PROTOCOL BY_START
64 gEfiIsaAcpiProtocolGuid # PROTOCOL TO_START
65 gEfiPciIoProtocolGuid # PROTOCOL TO_START
66 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
67 gEfiGenericMemTestProtocolGuid # PROTOCOL TO_START
68
69 [PcdsFeatureFlag.common]
70 PcdIsaBusOnlySupportSlaveDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
71 PcdIsaBusSupportDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
72 PcdIsaBusSupportIsaMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid
73