]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseCpuLib/Ebc/CpuSleepFlushTlb.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Library / BaseCpuLib / Ebc / CpuSleepFlushTlb.c
1 /** @file
2 Base Library CPU Functions for EBC
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8 #include <Base.h>
9 #include <Library/DebugLib.h>
10
11 /**
12 Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
13
14 Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
15
16 **/
17 VOID
18 EFIAPI
19 CpuFlushTlb (
20 VOID
21 )
22 {
23 ASSERT (FALSE);
24 }
25
26 /**
27 Places the CPU in a sleep state until an interrupt is received.
28
29 Places the CPU in a sleep state until an interrupt is received. If interrupts
30 are disabled prior to calling this function, then the CPU will be placed in a
31 sleep state indefinitely.
32
33 **/
34 VOID
35 EFIAPI
36 CpuSleep (
37 VOID
38 )
39 {
40 }