]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseCpuLib/AArch64/CpuFlushTlb.asm
MdePkg/Library/BaseCpuLib: Enable VS2017/ARM64 builds
[mirror_edk2.git] / MdePkg / Library / BaseCpuLib / AArch64 / CpuFlushTlb.asm
CommitLineData
55f67014
PB
1;------------------------------------------------------------------------------\r
2;\r
3; CpuFlushTlb() for ARM\r
4;\r
5; Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
6; Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
7; Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.<BR>\r
8; This program and the accompanying materials\r
9; are licensed and made available under the terms and conditions of the BSD License\r
10; which accompanies this distribution. The full text of the license may be found at\r
11; http://opensource.org/licenses/bsd-license.php.\r
12;\r
13; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15;\r
16;------------------------------------------------------------------------------\r
17\r
18 EXPORT CpuFlushTlb\r
19 AREA BaseCpuLib_LowLevel, CODE, READONLY\r
20\r
21;/**\r
22; Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.\r
23;\r
24; Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.\r
25;\r
26;**/\r
27;VOID\r
28;EFIAPI\r
29;CpuFlushTlb (\r
30; VOID\r
31; );\r
32;\r
33CpuFlushTlb\r
34 tlbi vmalle1 // Invalidate Inst TLB and Data TLB\r
35 dsb sy\r
36 isb\r
37 ret\r
38\r
39 END\r