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

      2 # PCI Segment Library that layers on top of the PCI CFG2 PPI.

      3 #

      4 # This library produces the APIs from the PCI Segment Library and

      5 #  implements these APIs by calling into the EFI_PEI_PCI CFG2 PPI. One or more

      6 #  EFI_PEI_PCI CFG2 PPIs are typically produced by a chipset specific PEIM.

      7 #  This library instance should only be used platforms with multiple PCI segments.

      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 #  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                      = PeiPciSegmentLibPciCfg2
     24   MODULE_UNI_FILE                = PeiPciSegmentLibPciCfg2.uni
     25   FILE_GUID                      = 254901AD-7DB7-45f8-93C8-93D579398D9F
     26   MODULE_TYPE                    = PEIM
     27   VERSION_STRING                 = 1.0
     28   LIBRARY_CLASS                  = PciSegmentLib|PEIM SEC PEI_CORE
     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 (EBC is for build only)

     34 #

     35 
     36 [Sources]
     37   PciSegmentLib.c
     38 
     39 [Packages]
     40   MdePkg/MdePkg.dec
     41 
     42 [LibraryClasses]
     43   PeiServicesTablePointerLib
     44   BaseLib
     45   DebugLib
     46   PeiServicesLib
     47 
     48 [Ppis]
     49   gEfiPciCfg2PpiGuid                            ##  CONSUMES

     50 
     51 [Depex.common.PEIM]
     52   gEfiPciCfg2PpiGuid
     53 
     54