]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.h
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / X64 / VirtualMemory.h
CommitLineData
f3b33289 1/** @file\r
2 x64 Long Mode Virtual Memory Management Definitions \r
3\r
4 References:\r
48557c65 5 1) IA-32 Intel(R) Architecture Software Developer's Manual Volume 1:Basic Architecture, Intel\r
6 2) IA-32 Intel(R) Architecture Software Developer's Manual Volume 2:Instruction Set Reference, Intel\r
7 3) IA-32 Intel(R) Architecture Software Developer's Manual Volume 3:System Programmer's Guide, Intel\r
f3b33289 8 4) AMD64 Architecture Programmer's Manual Volume 2: System Programming\r
9\r
cd5ebaa0
HT
10Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
11This program and the accompanying materials\r
f3b33289 12are licensed and made available under the terms and conditions of the BSD License\r
13which accompanies this distribution. The full text of the license may be found at\r
14http://opensource.org/licenses/bsd-license.php\r
15\r
16THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
18\r
19**/ \r
20#ifndef _VIRTUAL_MEMORY_H_\r
21#define _VIRTUAL_MEMORY_H_\r
22\r
23\r
24#define SYS_CODE64_SEL 0x38\r
25\r
26#pragma pack(1)\r
27\r
28typedef union {\r
29 struct {\r
30 UINT32 LimitLow : 16;\r
31 UINT32 BaseLow : 16;\r
32 UINT32 BaseMid : 8;\r
33 UINT32 Type : 4;\r
34 UINT32 System : 1;\r
35 UINT32 Dpl : 2;\r
36 UINT32 Present : 1;\r
37 UINT32 LimitHigh : 4;\r
38 UINT32 Software : 1;\r
39 UINT32 Reserved : 1;\r
40 UINT32 DefaultSize : 1;\r
41 UINT32 Granularity : 1;\r
42 UINT32 BaseHigh : 8;\r
43 } Bits;\r
44 UINT64 Uint64;\r
45} IA32_GDT;\r
46\r
47typedef struct {\r
48 IA32_IDT_GATE_DESCRIPTOR Ia32IdtEntry;\r
49 UINT32 Offset32To63;\r
50 UINT32 Reserved;\r
51} X64_IDT_GATE_DESCRIPTOR;\r
52\r
53//\r
54// Page-Map Level-4 Offset (PML4) and\r
55// Page-Directory-Pointer Offset (PDPE) entries 4K & 2MB\r
56//\r
57\r
58typedef union {\r
59 struct {\r
60 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory\r
61 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write\r
62 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User\r
63 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching\r
64 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached\r
65 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)\r
66 UINT64 Reserved:1; // Reserved\r
67 UINT64 MustBeZero:2; // Must Be Zero\r
68 UINT64 Available:3; // Available for use by system software\r
69 UINT64 PageTableBaseAddress:40; // Page Table Base Address\r
70 UINT64 AvabilableHigh:11; // Available for use by system software\r
71 UINT64 Nx:1; // No Execute bit\r
72 } Bits;\r
73 UINT64 Uint64;\r
74} PAGE_MAP_AND_DIRECTORY_POINTER;\r
75\r
76//\r
77// Page Table Entry 2MB\r
78//\r
79typedef union {\r
80 struct {\r
81 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory\r
82 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write\r
83 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User\r
84 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching\r
85 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached\r
86 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)\r
87 UINT64 Dirty:1; // 0 = Not Dirty, 1 = written by processor on access to page\r
88 UINT64 MustBe1:1; // Must be 1 \r
89 UINT64 Global:1; // 0 = Not global page, 1 = global page TLB not cleared on CR3 write\r
90 UINT64 Available:3; // Available for use by system software\r
91 UINT64 PAT:1; //\r
92 UINT64 MustBeZero:8; // Must be zero;\r
93 UINT64 PageTableBaseAddress:31; // Page Table Base Address\r
94 UINT64 AvabilableHigh:11; // Available for use by system software\r
95 UINT64 Nx:1; // 0 = Execute Code, 1 = No Code Execution\r
96 } Bits;\r
97 UINT64 Uint64;\r
98} PAGE_TABLE_ENTRY;\r
99\r
100#pragma pack()\r
101\r
102\r
f3b33289 103/**\r
104 Allocates and fills in the Page Directory and Page Table Entries to\r
105 establish a 1:1 Virtual to Physical mapping.\r
106\r
107 @param NumberOfProcessorPhysicalAddressBits Number of processor address bits \r
108 to use. Limits the number of page \r
109 table entries to the physical \r
110 address space. \r
111\r
48557c65 112 @return The address of 4 level page map.\r
f3b33289 113\r
114**/\r
115UINTN\r
116CreateIdentityMappingPageTables (\r
117 VOID\r
118 );\r
119\r
120\r
f3b33289 121/**\r
122 \r
123 Fix up the vector number in the vector code.\r
124 \r
125 @param VectorBase Base address of the vector handler.\r
f3b33289 126 @param VectorNum Index of vector.\r
127\r
128**/\r
129VOID\r
130EFIAPI\r
131AsmVectorFixup (\r
132 VOID *VectorBase,\r
133 UINT8 VectorNum\r
134 );\r
135\r
136\r
f3b33289 137/**\r
138 \r
139 Get the information of vector template.\r
140 \r
141 @param TemplateBase Base address of the template code.\r
142 \r
143 @return Size of the Template code.\r
144\r
145**/\r
146UINTN\r
147EFIAPI\r
148AsmGetVectorTemplatInfo (\r
149 OUT VOID **TemplateBase\r
150 );\r
151\r
152\r
153#endif \r