1 | ## @file
|
---|
2 | # Instance of PCI Library based on PCI CF8 Library.
|
---|
3 | #
|
---|
4 | # PCI Library that uses I/O ports 0xCF8 and 0xCFC to perform
|
---|
5 | # PCI Configuration cycles. Layers on top of one PCI CF8 Library instance.
|
---|
6 | #
|
---|
7 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
8 | #
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = BasePciLibCf8
|
---|
17 | MODULE_UNI_FILE = BasePciLibCf8.uni
|
---|
18 | FILE_GUID = 28bde99c-e8a7-4e3e-9a8a-e66cd64f31c6
|
---|
19 | MODULE_TYPE = BASE
|
---|
20 | VERSION_STRING = 1.0
|
---|
21 | LIBRARY_CLASS = PciLib
|
---|
22 |
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | PciLib.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 |
|
---|
33 | [LibraryClasses]
|
---|
34 | PciCf8Lib
|
---|
35 |
|
---|