]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
MdePkg BaseCpuLib: Convert Ia32/CpuSleep.asm to NASM
[mirror_edk2.git] / MdePkg / Library / BaseCpuLib / BaseCpuLib.inf
1 ## @file
2 # Instance of CPU Library for various architecture.
3 #
4 # CPU Library implemented using ASM functions for IA-32 and X64,
5 # PAL CALLs for IPF, and empty functions for EBC.
6 #
7 # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
8 # Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
9 # Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.<BR>
10 #
11 # This program and the accompanying materials
12 # are licensed and made available under the terms and conditions of the BSD License
13 # which accompanies this distribution. The full text of the license may be found at
14 # http://opensource.org/licenses/bsd-license.php.
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 #
19 ##
20
21 [Defines]
22 INF_VERSION = 0x00010005
23 BASE_NAME = BaseCpuLib
24 MODULE_UNI_FILE = BaseCpuLib.uni
25 FILE_GUID = 4FBD2538-249C-4b50-8F4A-A9E66609CBF6
26 MODULE_TYPE = BASE
27 VERSION_STRING = 1.0
28 LIBRARY_CLASS = CpuLib
29
30
31 #
32 # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64
33 #
34
35 [Sources.IA32]
36 Ia32/CpuSleep.c | MSFT
37 Ia32/CpuFlushTlb.c | MSFT
38
39 Ia32/CpuSleep.nasm| INTEL
40 Ia32/CpuSleep.asm | INTEL
41 Ia32/CpuFlushTlb.asm | INTEL
42
43 Ia32/CpuSleepGcc.c | GCC
44 Ia32/CpuFlushTlbGcc.c | GCC
45
46 [Sources.X64]
47 X64/CpuFlushTlb.asm
48 X64/CpuSleep.asm
49
50 X64/CpuSleep.S | GCC
51 X64/CpuFlushTlb.S | GCC
52
53 [Sources.IPF]
54 Ipf/CpuFlushTlb.s
55 Ipf/CpuSleep.c
56
57 [Sources.EBC]
58 Ebc/CpuSleepFlushTlb.c
59
60 [Sources.ARM]
61 Arm/CpuFlushTlb.asm | RVCT
62 Arm/CpuSleep.asm | RVCT
63 Arm/CpuFlushTlb.S | GCC
64 Arm/CpuSleep.S | GCC
65
66 [Sources.AARCH64]
67 AArch64/CpuFlushTlb.S | GCC
68 AArch64/CpuSleep.S | GCC
69
70 [Packages]
71 MdePkg/MdePkg.dec
72
73
74 [LibraryClasses.IPF]
75 PalLib
76 BaseLib
77