]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
1. EDK_RELEASE_VERSION removed;
[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 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32
33 [Sources.common]
34 ComponentName.c
35 IsaIo.c
36 IsaBus.c
37 InternalIsaIo.h
38 InternalIsaBus.h
39 ComponentName.h
40
41 [Packages]
42 MdePkg/MdePkg.dec
43 IntelFrameworkPkg/IntelFrameworkPkg.dec
44 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
45 MdeModulePkg/MdeModulePkg.dec
46
47 [LibraryClasses]
48 PcdLib
49 ReportStatusCodeLib
50 UefiBootServicesTableLib
51 MemoryAllocationLib
52 BaseMemoryLib
53 DevicePathLib
54 UefiLib
55 UefiDriverEntryPoint
56 DebugLib
57
58 [Guids]
59 gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED
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