1## @file 2# Generates ISA I/O Protocols based on the ISA ACPI Protocol instances. 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 an LPC bridge. 8# 9# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> 10# 11# 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 MODULE_UNI_FILE = IsaBusDxe.uni 24 FILE_GUID = 240612B5-A063-11d4-9A3A-0090273FC14D 25 MODULE_TYPE = UEFI_DRIVER 26 VERSION_STRING = 1.0 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] 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 ## BY_START 63 gEfiDevicePathProtocolGuid ## BY_START 64 gEfiIsaAcpiProtocolGuid ## TO_START 65 gEfiPciIoProtocolGuid ## TO_START 66 gEfiDevicePathProtocolGuid ## TO_START 67 gEfiGenericMemTestProtocolGuid ## TO_START 68 69[Pcd] 70 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSupportedFeatures ## CONSUMES 71 72[UserExtensions.TianoCore."ExtraFiles"] 73 IsaBusDxeExtra.uni 74