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