]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/ResetVector/Vtf0/PageTables.inc
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / UefiCpuPkg / ResetVector / Vtf0 / PageTables.inc
CommitLineData
60d8bb9f
AA
1;------------------------------------------------------------------------------\r
2; @file\r
3; Definitions of Page Table Entry for the reset vector module\r
4;\r
5; Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>\r
6; SPDX-License-Identifier: BSD-2-Clause-Patent\r
7;\r
8;------------------------------------------------------------------------------\r
9\r
10%define PAGE_PRESENT 0x01\r
11%define PAGE_READ_WRITE 0x02\r
12%define PAGE_USER_SUPERVISOR 0x04\r
13%define PAGE_WRITE_THROUGH 0x08\r
14%define PAGE_CACHE_DISABLE 0x010\r
15%define PAGE_ACCESSED 0x020\r
16%define PAGE_DIRTY 0x040\r
17%define PAGE_SIZE 0x080\r
18%define PAGE_GLOBAL 0x0100\r
19%define PAGE_2M_PAT 0x01000\r
20\r