lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 1 | ## @file
|
xli24 | e43e4b3 | 2008-11-24 05:55:41 +0000 | [diff] [blame] | 2 | # PCI Segment Library that layers on top of the PCI CFG2 PPI.
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 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 | #
|
hhtian | 19388d2 | 2010-04-23 16:37:43 +0000 | [diff] [blame^] | 9 | # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 10 | #
|
hhtian | 19388d2 | 2010-04-23 16:37:43 +0000 | [diff] [blame^] | 11 | # This program and the accompanying materials
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 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 | #
|
qhuang8 | 3432b0c | 2010-03-31 16:32:04 +0000 | [diff] [blame] | 19 | ##
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 20 |
|
| 21 | [Defines]
|
| 22 | INF_VERSION = 0x00010005
|
| 23 | BASE_NAME = PeiPciSegmentLibPciCfg2
|
| 24 | FILE_GUID = 254901AD-7DB7-45f8-93C8-93D579398D9F
|
| 25 | MODULE_TYPE = PEIM
|
| 26 | VERSION_STRING = 1.0
|
eric_tian | 555b51b | 2008-12-08 08:22:04 +0000 | [diff] [blame] | 27 | LIBRARY_CLASS = PciSegmentLib|PEIM SEC PEI_CORE
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 28 |
|
| 29 | #
|
| 30 | # The following information is for reference only and not required by the build tools.
|
| 31 | #
|
xli24 | e43e4b3 | 2008-11-24 05:55:41 +0000 | [diff] [blame] | 32 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 33 | #
|
| 34 |
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 35 | [Sources]
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 36 | PciSegmentLib.c
|
| 37 |
|
| 38 | [Packages]
|
| 39 | MdePkg/MdePkg.dec
|
| 40 |
|
| 41 | [LibraryClasses]
|
| 42 | PeiServicesTablePointerLib
|
| 43 | BaseLib
|
| 44 | DebugLib
|
| 45 | PeiServicesLib
|
| 46 |
|
| 47 | [Ppis]
|
jji4 | 0f46efe | 2009-01-09 07:48:37 +0000 | [diff] [blame] | 48 | gEfiPciCfg2PpiGuid ## CONSUMES
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 49 |
|
qhuang8 | a0720bb | 2010-02-01 02:48:17 +0000 | [diff] [blame] | 50 | [Depex]
|
| 51 | gEfiPciCfg2PpiGuid
|
| 52 |
|