]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
690b95d44033b9fe40699213d461fa2c069a4d2b
[mirror_edk2.git] / MdePkg / Library / BaseIoLibIntrinsic / BaseIoLibIntrinsic.inf
1 ## @file
2 # Instance of I/O Library using compiler intrinsics.
3 #
4 # I/O Library that uses compiler intrinsics to perform IN and OUT instructions
5 # for IA-32 and x64. On IPF, I/O port requests are translated into MMIO requests.
6 # MMIO requests are forwarded directly to memory. For EBC, I/O port requests
7 # ASSERT(). For ARM, AARCH64 and RISCV64, this I/O library only provides non I/O
8 # read and write.
9 #
10 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
11 # Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
12 # Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
13 # Portions Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
14 #
15 # SPDX-License-Identifier: BSD-2-Clause-Patent
16 #
17 ##
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = BaseIoLibIntrinsic
22 MODULE_UNI_FILE = BaseIoLibIntrinsic.uni
23 FILE_GUID = 926c9cd0-4bb8-479b-9ac4-8a2a23f85307
24 MODULE_TYPE = BASE
25 VERSION_STRING = 1.0
26 LIBRARY_CLASS = IoLib
27
28
29 #
30 # VALID_ARCHITECTURES = IA32 X64 EBC ARM AARCH64 RISCV64
31 #
32
33 [Sources]
34 IoLibMmioBuffer.c
35 BaseIoLibIntrinsicInternal.h
36 IoHighLevel.c
37
38 [Sources.IA32]
39 IoLibGcc.c | GCC
40 IoLibMsc.c | MSFT
41 IoLib.c
42 Ia32/IoFifo.nasm
43
44 [Sources.X64]
45 IoLibGcc.c | GCC
46 IoLibMsc.c | MSFT
47 IoLib.c
48 X64/IoFifo.nasm
49
50 [Sources.EBC]
51 IoLibEbc.c
52 IoLib.c
53
54 [Sources.ARM]
55 IoLibNoIo.c
56
57 [Sources.AARCH64]
58 IoLibNoIo.c
59
60 [Sources.RISCV64]
61 IoLibNoIo.c
62
63 [Packages]
64 MdePkg/MdePkg.dec
65
66 [LibraryClasses]
67 DebugLib
68 BaseLib
69