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 | #
|
Gao, Liming | c92c179 | 2014-08-27 09:33:09 +0000 | [diff] [blame] | 9 | # Copyright (c) 2007 - 2014, 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
|
myronporter | 2fc59a0 | 2010-06-25 21:56:02 +0000 | [diff] [blame] | 14 | # http://opensource.org/licenses/bsd-license.php.
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 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
|
Gao, Liming | c92c179 | 2014-08-27 09:33:09 +0000 | [diff] [blame] | 24 | MODULE_UNI_FILE = PeiPciSegmentLibPciCfg2.uni
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 25 | FILE_GUID = 254901AD-7DB7-45f8-93C8-93D579398D9F
|
| 26 | MODULE_TYPE = PEIM
|
| 27 | VERSION_STRING = 1.0
|
eric_tian | 555b51b | 2008-12-08 08:22:04 +0000 | [diff] [blame] | 28 | LIBRARY_CLASS = PciSegmentLib|PEIM SEC PEI_CORE
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 29 |
|
| 30 | #
|
| 31 | # The following information is for reference only and not required by the build tools.
|
| 32 | #
|
xli24 | e43e4b3 | 2008-11-24 05:55:41 +0000 | [diff] [blame] | 33 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC (EBC is for build only)
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 34 | #
|
| 35 |
|
lgao4 | 6bfbb5f | 2010-02-24 00:21:16 +0000 | [diff] [blame] | 36 | [Sources]
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 37 | PciSegmentLib.c
|
| 38 |
|
| 39 | [Packages]
|
| 40 | MdePkg/MdePkg.dec
|
| 41 |
|
| 42 | [LibraryClasses]
|
| 43 | PeiServicesTablePointerLib
|
| 44 | BaseLib
|
| 45 | DebugLib
|
| 46 | PeiServicesLib
|
| 47 |
|
| 48 | [Ppis]
|
jji4 | 0f46efe | 2009-01-09 07:48:37 +0000 | [diff] [blame] | 49 | gEfiPciCfg2PpiGuid ## CONSUMES
|
xli24 | 1a3eaf0 | 2008-11-11 08:33:02 +0000 | [diff] [blame] | 50 |
|
lzeng14 | 3397c6f | 2011-07-27 08:54:57 +0000 | [diff] [blame] | 51 | [Depex.common.PEIM]
|
qhuang8 | a0720bb | 2010-02-01 02:48:17 +0000 | [diff] [blame] | 52 | gEfiPciCfg2PpiGuid
|
| 53 |
|