• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# Produces an instance of the ISA I/O Protocol for every SIO controller.
3#
4# Produces an instance of the ISA I/O Protocol for every SIO controller. The ISA
5# I/O protocols are installed based off of the information provided by each
6# instance of the SIO Protocol found.
7#
8# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
9#
10# This program and the accompanying materials
11# are licensed and made available under the terms and conditions of the BSD License
12# which accompanies this distribution. The full text of the license may be found at
13# http://opensource.org/licenses/bsd-license.php
14#
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = IsaIoDxe
22  MODULE_UNI_FILE                = IsaIoDxe.uni
23  FILE_GUID                      = 61AD3083-DCAD-4850-A50C-73B23B3B14F9
24  MODULE_TYPE                    = UEFI_DRIVER
25  VERSION_STRING                 = 1.0
26  ENTRY_POINT                    = InitializeIsaIo
27
28#
29#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
30#  DRIVER_BINDING                = gIsaIoDriver
31#  COMPONENT_NAME                = gIsaIoComponentName;
32#  COMPONENT_NAME2               = gIsaIoComponentName2;
33#
34
35[Sources]
36  ComponentName.h
37  ComponentName.c
38  IsaIo.h
39  IsaIo.c
40  IsaDriver.h
41  IsaDriver.c
42
43[Packages]
44  MdePkg/MdePkg.dec
45  IntelFrameworkPkg/IntelFrameworkPkg.dec
46  IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
47  MdeModulePkg/MdeModulePkg.dec
48
49[LibraryClasses]
50  PcdLib
51  ReportStatusCodeLib
52  UefiBootServicesTableLib
53  MemoryAllocationLib
54  BaseMemoryLib
55  DevicePathLib
56  UefiLib
57  UefiDriverEntryPoint
58  DebugLib
59
60[Protocols]
61  gEfiIsaIoProtocolGuid                         ## BY_START
62  gEfiSioProtocolGuid                           ## TO_START
63  gEfiPciIoProtocolGuid                         ## TO_START
64  gEfiDevicePathProtocolGuid                    ## TO_START
65  gEfiGenericMemTestProtocolGuid                ## TO_START
66
67[Pcd]
68  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSupportedFeatures  ## CONSUMES
69
70[UserExtensions.TianoCore."ExtraFiles"]
71  IsaIoDxeExtra.uni
72