1 | ## @file
|
---|
2 | # I/O Library instance based on EFI_CPU_IO2_PROTOCOL.
|
---|
3 | #
|
---|
4 | # I/O Library implementation that uses the CPU I/O2 Protocol for I/O and MMIO operations.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = DxeIoLibCpuIo2
|
---|
15 | MODULE_UNI_FILE = DxeIoLibCpuIo2.uni
|
---|
16 | FILE_GUID = 33D33BF3-349E-4768-9459-836A9F7558FB
|
---|
17 | MODULE_TYPE = DXE_DRIVER
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | LIBRARY_CLASS = IoLib|DXE_DRIVER
|
---|
20 | CONSTRUCTOR = IoLibConstructor
|
---|
21 |
|
---|
22 | #
|
---|
23 | # The following information is for reference only and not required by the build tools.
|
---|
24 | #
|
---|
25 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
26 | #
|
---|
27 |
|
---|
28 | [Sources]
|
---|
29 | IoLibMmioBuffer.c
|
---|
30 | DxeCpuIo2LibInternal.h
|
---|
31 | IoHighLevel.c
|
---|
32 | IoLib.c
|
---|
33 |
|
---|
34 | [Packages]
|
---|
35 | MdePkg/MdePkg.dec
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | BaseLib
|
---|
39 | DebugLib
|
---|
40 | UefiBootServicesTableLib
|
---|
41 |
|
---|
42 | [Protocols]
|
---|
43 | gEfiCpuIo2ProtocolGuid ## CONSUMES
|
---|
44 |
|
---|
45 | [Depex]
|
---|
46 | gEfiCpuIo2ProtocolGuid
|
---|
47 |
|
---|