]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
MdePkg: Replace BSD License with BSD+Patent License
[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().
8 #
9 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
10 # Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
11 # Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
12 #
13 # SPDX-License-Identifier: BSD-2-Clause-Patent
14 #
15 ##
16
17 [Defines]
18 INF_VERSION = 0x00010005
19 BASE_NAME = BaseIoLibIntrinsic
20 MODULE_UNI_FILE = BaseIoLibIntrinsic.uni
21 FILE_GUID = 926c9cd0-4bb8-479b-9ac4-8a2a23f85307
22 MODULE_TYPE = BASE
23 VERSION_STRING = 1.0
24 LIBRARY_CLASS = IoLib
25
26
27 #
28 # VALID_ARCHITECTURES = IA32 X64 EBC ARM AARCH64
29 #
30
31 [Sources]
32 IoLibMmioBuffer.c
33 BaseIoLibIntrinsicInternal.h
34 IoHighLevel.c
35
36 [Sources.IA32]
37 IoLibGcc.c | GCC
38 IoLibMsc.c | MSFT
39 IoLibIcc.c | INTEL
40 IoLib.c
41 Ia32/IoFifo.nasm
42
43 [Sources.X64]
44 IoLibGcc.c | GCC
45 IoLibMsc.c | MSFT
46 IoLibIcc.c | INTEL
47 IoLib.c
48 X64/IoFifo.nasm
49
50 [Sources.EBC]
51 IoLibEbc.c
52 IoLib.c
53
54 [Sources.ARM]
55 IoLibArm.c
56
57 [Sources.AARCH64]
58 IoLibArm.c
59
60 [Packages]
61 MdePkg/MdePkg.dec
62
63 [LibraryClasses]
64 DebugLib
65 BaseLib
66