1. Update files header.

2. Added missing libraries in inf files.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5431 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff 2008-07-09 07:21:21 +00:00
parent cbc1082c98
commit 5c57f3eaea
8 changed files with 19 additions and 24 deletions

View File

@ -1,9 +1,9 @@
#/** @file #/** @file
# Component description file for Base PCI Cf8 Library. # This driver implemnets one PCI Cf8 Library instance.
# #
# PCI CF8 Library that uses I/O ports 0xCF8 and 0xCFC to perform PCI Configuration cycles. # PCI CF8 Library that uses I/O ports 0xCF8 and 0xCFC to perform PCI Configuration cycles.
# Layers on top of an I/O Library instance. # Layers on top of an I/O Library instance.
# Copyright (c) 2007, Intel Corporation. # Copyright (c) 2007 - 2008, Intel Corporation.
# #
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License # are licensed and made available under the terms and conditions of the BSD License
@ -25,7 +25,6 @@
EDK_RELEASE_VERSION = 0x00020000 EDK_RELEASE_VERSION = 0x00020000
EFI_SPECIFICATION_VERSION = 0x00020000 EFI_SPECIFICATION_VERSION = 0x00020000
# #
# VALID_ARCHITECTURES = IA32 X64 IPF EBC # VALID_ARCHITECTURES = IA32 X64 IPF EBC
# #
@ -33,11 +32,11 @@
[Sources.common] [Sources.common]
PciLib.c PciLib.c
[Packages] [Packages]
MdePkg/MdePkg.dec MdePkg/MdePkg.dec
[LibraryClasses] [LibraryClasses]
BaseLib
DebugLib DebugLib
IoLib IoLib

View File

@ -1,7 +1,8 @@
/** @file /** @file
PCI Library. PCI CF8 Library functions that use I/O ports 0xCF8 and 0xCFC to perform PCI Configuration cycles.
Layers on top of an I/O Library instance.
Copyright (c) 2006, Intel Corporation<BR> Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at which accompanies this distribution. The full text of the license may be found at

View File

@ -1,9 +1,9 @@
#/** @file #/** @file
# Component description file for Base PCI Express Library. # This driver implements one PCI Express Library instance.
# #
# PCI Express Library that uses the 256 MB PCI Express MMIO window to perform # PCI Express Library that uses the 256 MB PCI Express MMIO window to perform
# PCI Configuration cycles. Layers on top of an I/O Library instance. # PCI Configuration cycles. Layers on top of an I/O Library instance.
# Copyright (c) 2007, Intel Corporation. # Copyright (c) 2007 - 2008, Intel Corporation.
# #
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License # are licensed and made available under the terms and conditions of the BSD License
@ -35,8 +35,8 @@
[Packages] [Packages]
MdePkg/MdePkg.dec MdePkg/MdePkg.dec
[LibraryClasses] [LibraryClasses]
BaseLib
PcdLib PcdLib
DebugLib DebugLib
IoLib IoLib

View File

@ -1,6 +1,4 @@
/** @file /** @file
PCI Library.
Functions in this library instance make use of MMIO functions in IoLib to Functions in this library instance make use of MMIO functions in IoLib to
access memory mapped PCI configuration space. access memory mapped PCI configuration space.

View File

@ -1,9 +1,9 @@
#/** @file #/** @file
# Component description file for PCI CF8 Base PCI Library # This driver implements one PCI Library instance based on PCI CF8 Library.
# #
# PCI Library that uses I/O ports 0xCF8 and 0xCFC to perform # PCI Library that uses I/O ports 0xCF8 and 0xCFC to perform
# PCI Configuration cycles. Layers on top of an I/O Library instance. # PCI Configuration cycles. Layers on top of one PCI CF8 Library instance.
# Copyright (c) 2007, Intel Corporation. # Copyright (c) 2007 - 2008, Intel Corporation.
# #
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License # are licensed and made available under the terms and conditions of the BSD License
@ -32,11 +32,9 @@
[Sources.common] [Sources.common]
PciLib.c PciLib.c
[Packages] [Packages]
MdePkg/MdePkg.dec MdePkg/MdePkg.dec
[LibraryClasses] [LibraryClasses]
PciCf8Lib PciCf8Lib

View File

@ -1,5 +1,6 @@
/** @file /** @file
PCI Library using Port CF8/CFC access. PCI Library functions that use I/O ports 0xCF8 and 0xCFC to perform
PCI Configuration cycles. Layers on top of one PCI CF8 Library instance.
Copyright (c) 2006 - 2008, Intel Corporation<BR> Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials All rights reserved. This program and the accompanying materials
@ -15,7 +16,6 @@
#include <Base.h> #include <Base.h>
#include <Library/PciLib.h> #include <Library/PciLib.h>
#include <Library/PciCf8Lib.h> #include <Library/PciCf8Lib.h>

View File

@ -1,9 +1,9 @@
#/** @file #/** @file
# Component description file for PCI Express Base PCI Library. # This driver impements one PCI Library based on PCI Express Library.
# #
# PCI Library that uses the 256 MB PCI Express MMIO window to perform PCI # PCI Library that uses the 256 MB PCI Express MMIO window to perform PCI
# Configuration cycles. Layers on top of an I/O Library instance. # Configuration cycles. Layers on one PCI Express Library instance.
# Copyright (c) 2007, Intel Corporation. # Copyright (c) 2007 - 2008, Intel Corporation.
# #
# All rights reserved. This program and the accompanying materials # All rights reserved. This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License # are licensed and made available under the terms and conditions of the BSD License
@ -33,7 +33,6 @@
[Sources.common] [Sources.common]
PciLib.c PciLib.c
[Packages] [Packages]
MdePkg/MdePkg.dec MdePkg/MdePkg.dec

View File

@ -1,5 +1,6 @@
/** @file /** @file
PCI Library using PC Express access. PCI Library functions that use the 256 MB PCI Express MMIO window to perform PCI
Configuration cycles. Layers on PCI Express Library.
Copyright (c) 2006 - 2008, Intel Corporation<BR> Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials All rights reserved. This program and the accompanying materials
@ -15,7 +16,6 @@
#include <Base.h> #include <Base.h>
#include <Library/PciLib.h> #include <Library/PciLib.h>
#include <Library/PciExpressLib.h> #include <Library/PciExpressLib.h>