]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Include/Library/CpuLib.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Include / Library / CpuLib.h
... / ...
CommitLineData
1/** @file\r
2 Provides CPU architecture specific functions that can not be defined\r
3 in the Base Library due to dependencies on the PAL Library\r
4\r
5 The CPU Library provides services to flush CPU TLBs and place the CPU in a sleep state.\r
6 The implementation of these services on Itanium processors requires the use of PAL Calls.\r
7 PAL Calls require PEI and DXE specific mechanisms to look up PAL Entry Point.\r
8 As a result, these services could not be defined in the Base Library.\r
9\r
10Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
11SPDX-License-Identifier: BSD-2-Clause-Patent\r
12\r
13**/\r
14\r
15#ifndef __CPU_LIB_H__\r
16#define __CPU_LIB_H__\r
17\r
18/**\r
19 Places the CPU in a sleep state until an interrupt is received.\r
20\r
21 Places the CPU in a sleep state until an interrupt is received. If interrupts\r
22 are disabled prior to calling this function, then the CPU will be placed in a\r
23 sleep state indefinitely.\r
24\r
25**/\r
26VOID\r
27EFIAPI\r
28CpuSleep (\r
29 VOID\r
30 );\r
31\r
32/**\r
33 Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.\r
34\r
35 Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.\r
36\r
37**/\r
38VOID\r
39EFIAPI\r
40CpuFlushTlb (\r
41 VOID\r
42 );\r
43\r
44\r
45#endif\r