]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
MdePkg/ProcessorBind: add defines for page allocation granularity
[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 - 2015, 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 # This program and the accompanying materials
14 # are licensed and made available under the terms and conditions of the BSD License
15 # which accompanies this distribution. The full text of the license may be found at
16 # http://opensource.org/licenses/bsd-license.php.
17 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19 #
20 ##
21
22 [Defines]
23 INF_VERSION = 0x00010005
24 BASE_NAME = BaseIoLibIntrinsic
25 MODULE_UNI_FILE = BaseIoLibIntrinsic.uni
26 FILE_GUID = 926c9cd0-4bb8-479b-9ac4-8a2a23f85307
27 MODULE_TYPE = BASE
28 VERSION_STRING = 1.0
29 LIBRARY_CLASS = IoLib
30
31
32 #
33 # VALID_ARCHITECTURES = IA32 X64 EBC IPF ARM AARCH64
34 #
35
36 [Sources]
37 IoLibMmioBuffer.c
38 BaseIoLibIntrinsicInternal.h
39 IoHighLevel.c
40
41 [Sources.IA32]
42 IoLibGcc.c | GCC
43 IoLibMsc.c | MSFT
44 IoLibIcc.c | INTEL
45 IoLib.c
46 Ia32/IoFifo.nasm
47 Ia32/IoFifo.asm
48
49 [Sources.X64]
50 IoLibGcc.c | GCC
51 IoLibMsc.c | MSFT
52 IoLibIcc.c | INTEL
53 IoLib.c
54 X64/IoFifo.nasm
55 X64/IoFifo.asm
56
57 [Sources.EBC]
58 IoLibEbc.c
59 IoLib.c
60
61 [Sources.IPF]
62 IoLibIpf.c
63
64 [Sources.ARM]
65 IoLibArm.c
66
67 [Sources.AARCH64]
68 IoLibArm.c
69
70 [Packages]
71 MdePkg/MdePkg.dec
72
73 [LibraryClasses]
74 DebugLib
75 BaseLib
76
77 [LibraryClasses.IPF]
78 PcdLib
79
80 [Pcd.IPF]
81 gEfiMdePkgTokenSpaceGuid.PcdIoBlockBaseAddressForIpf ## SOMETIMES_CONSUMES
82