]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBus.inf
Add DxeBootScriptLibNull in IntelFrameworkPkg.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / IsaBus.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 # Copyright (c) 2006 - 2007, Intel Corporation.
11 #
12 # All rights reserved.
13 # This software and associated documentation (if any) is furnished
14 # under a license and may only be used or copied in accordance
15 # with the terms of the license. Except as permitted by such
16 # license, no part of this software or documentation may be
17 # reproduced, stored in a retrieval system, or transmitted in any
18 # form or by any means without the express written consent of
19 # Intel Corporation.
20 #
21 #
22 #**/
23
24 ################################################################################
25 #
26 # Defines Section - statements that will be processed to create a Makefile.
27 #
28 ################################################################################
29 [Defines]
30 INF_VERSION = 0x00010005
31 BASE_NAME = IsaBus
32 FILE_GUID = 240612B5-A063-11d4-9A3A-0090273FC14D
33 MODULE_TYPE = DXE_DRIVER
34 VERSION_STRING = 1.0
35 EDK_RELEASE_VERSION = 0x00020000
36 EFI_SPECIFICATION_VERSION = 0x00020000
37
38 ENTRY_POINT = InitializeIsaBus
39
40 #
41 # The following information is for reference only and not required by the build tools.
42 #
43 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
44 #
45 # DRIVER_BINDING = gIsaBusControllerDriver
46 # COMPONENT_NAME = gIsaBusComponentName
47 #
48
49 ################################################################################
50 #
51 # Sources Section - list of files that are required for the build to succeed.
52 #
53 ################################################################################
54
55 [Sources.common]
56 ComponentName.c
57 IsaIo.c
58 IsaBus.c
59 IsaIo.h
60 IsaBus.h
61 IsaAcpi.h
62 ComponentName.h
63 CommonHeader.h
64 EntryPoint.c
65
66
67 ################################################################################
68 #
69 # Includes Section - list of Include locations that are required for
70 # this module.
71 #
72 ################################################################################
73
74 [Includes]
75
76 ################################################################################
77 #
78 # Package Dependency Section - list of Package files that are required for
79 # this module.
80 #
81 ################################################################################
82
83 [Packages]
84 MdePkg/MdePkg.dec
85 IntelFrameworkPkg/IntelFrameworkPkg.dec
86 MdeModulePkg/MdeModulePkg.dec
87 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
88
89
90 ################################################################################
91 #
92 # Library Class Section - list of Library Classes that are required for
93 # this module.
94 #
95 ################################################################################
96
97 [LibraryClasses]
98 PcdLib
99 BootScriptLib
100 ReportStatusCodeLib
101 UefiBootServicesTableLib
102 MemoryAllocationLib
103 BaseMemoryLib
104 DevicePathLib
105 UefiLib
106 UefiDriverEntryPoint
107 DebugLib
108
109
110 ################################################################################
111 #
112 # Guid C Name Section - list of Guids that this module uses or produces.
113 #
114 ################################################################################
115
116 [Guids]
117 gEfiStatusCodeSpecificDataGuid # ALWAYS_CONSUMED
118
119
120 ################################################################################
121 #
122 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
123 # that this module uses or produces.
124 #
125 ################################################################################
126
127 [Protocols]
128 gEfiIsaIoProtocolGuid # PROTOCOL BY_START
129 gEfiIsaAcpiProtocolGuid # PROTOCOL TO_START
130 gEfiPciIoProtocolGuid # PROTOCOL TO_START
131 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
132 gEfiGenericMemTestProtocolGuid # PROTOCOL TO_START
133
134
135 ################################################################################
136 #
137 # Pcd FEATURE_FLAG - list of PCDs that this module is coded for.
138 #
139 ################################################################################
140
141 [PcdsFeatureFlag.common]
142 PcdIsaBusOnlySupportSlaveDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
143 PcdIsaBusSupportDma|gEfiIntelFrameworkModulePkgTokenSpaceGuid
144 PcdIsaBusSupportIsaMemory|gEfiIntelFrameworkModulePkgTokenSpaceGuid
145