Home | History | Annotate | Download | only in IsaBusDxe
      1 ## @file

      2 #  ISA Bus driver to manage the child devices attached to the ISA Host Controller.

      3 #

      4 #  This driver follows UEFI driver model and layers on ISA HC protocol defined

      5 #  in PI spec 1.2.1. It consumes the ISA Host Controller protocol produced by

      6 #  the ISA Host Controller and installs the ISA Host Controller Service Binding

      7 #  protocol on the ISA Host Controller's handle.

      8 #

      9 #  Copyright (c) 2015, 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 #  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 ##

     20 
     21 [Defines]
     22   INF_VERSION                    = 0x00010005
     23   BASE_NAME                      = IsaBusDxe
     24   MODULE_UNI_FILE                = IsaBusDxe.uni
     25   FILE_GUID                      = DCBE6D66-D928-4138-8041-358F35CBCF80
     26   MODULE_TYPE                    = UEFI_DRIVER
     27   VERSION_STRING                 = 1.0
     28   ENTRY_POINT                    = InitializeIsaBus
     29 
     30 #

     31 # The following information is for reference only and not required by the build tools.

     32 #

     33 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     34 #

     35 #  DRIVER_BINDING                =  gIsaBusDriverBinding

     36 #  COMPONENT_NAME                =  gIsaBusComponentName

     37 #  COMPONENT_NAME2               =  gIsaBusComponentName2

     38 #

     39 
     40 [Sources]
     41   IsaBusDxe.h
     42   IsaBusDxe.c
     43   ComponentName.h
     44   ComponentName.c
     45 
     46 [Packages]
     47   MdePkg/MdePkg.dec
     48 
     49 [LibraryClasses]
     50   UefiDriverEntryPoint
     51   UefiBootServicesTableLib
     52   BaseLib
     53   BaseMemoryLib
     54   MemoryAllocationLib
     55   UefiLib
     56   DebugLib
     57 
     58 [Protocols]
     59   ## CONSUMES 

     60   ## PRODUCES

     61   gEfiIsaHcProtocolGuid                 
     62   gEfiIsaHcServiceBindingProtocolGuid   ## PRODUCES

     63 
     64 [UserExtensions.TianoCore."ExtraFiles"]
     65   IsaBusDxeExtra.uni
     66