]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/DxeIplPeim/X64/VirtualMemory.h
MdeModulePkg/DxeIpl: support more NX related PCDs
[mirror_edk2.git] / MdeModulePkg / Core / DxeIplPeim / X64 / VirtualMemory.h
1 /** @file
2 x64 Long Mode Virtual Memory Management Definitions
3
4 References:
5 1) IA-32 Intel(R) Architecture Software Developer's Manual Volume 1:Basic Architecture, Intel
6 2) IA-32 Intel(R) Architecture Software Developer's Manual Volume 2:Instruction Set Reference, Intel
7 3) IA-32 Intel(R) Architecture Software Developer's Manual Volume 3:System Programmer's Guide, Intel
8 4) AMD64 Architecture Programmer's Manual Volume 2: System Programming
9
10 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
11 Copyright (c) 2017, AMD Incorporated. All rights reserved.<BR>
12
13 This program and the accompanying materials
14 are licensed and made available under the terms and conditions of the BSD License
15 which accompanies this distribution. The full text of the license may be found at
16 http://opensource.org/licenses/bsd-license.php
17
18 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
19 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
20
21 **/
22 #ifndef _VIRTUAL_MEMORY_H_
23 #define _VIRTUAL_MEMORY_H_
24
25
26 #define SYS_CODE64_SEL 0x38
27
28
29 #pragma pack(1)
30
31 typedef union {
32 struct {
33 UINT32 LimitLow : 16;
34 UINT32 BaseLow : 16;
35 UINT32 BaseMid : 8;
36 UINT32 Type : 4;
37 UINT32 System : 1;
38 UINT32 Dpl : 2;
39 UINT32 Present : 1;
40 UINT32 LimitHigh : 4;
41 UINT32 Software : 1;
42 UINT32 Reserved : 1;
43 UINT32 DefaultSize : 1;
44 UINT32 Granularity : 1;
45 UINT32 BaseHigh : 8;
46 } Bits;
47 UINT64 Uint64;
48 } IA32_GDT;
49
50 typedef struct {
51 IA32_IDT_GATE_DESCRIPTOR Ia32IdtEntry;
52 UINT32 Offset32To63;
53 UINT32 Reserved;
54 } X64_IDT_GATE_DESCRIPTOR;
55
56 //
57 // Page-Map Level-4 Offset (PML4) and
58 // Page-Directory-Pointer Offset (PDPE) entries 4K & 2MB
59 //
60
61 typedef union {
62 struct {
63 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
64 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
65 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
66 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
67 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
68 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
69 UINT64 Reserved:1; // Reserved
70 UINT64 MustBeZero:2; // Must Be Zero
71 UINT64 Available:3; // Available for use by system software
72 UINT64 PageTableBaseAddress:40; // Page Table Base Address
73 UINT64 AvabilableHigh:11; // Available for use by system software
74 UINT64 Nx:1; // No Execute bit
75 } Bits;
76 UINT64 Uint64;
77 } PAGE_MAP_AND_DIRECTORY_POINTER;
78
79 //
80 // Page Table Entry 4KB
81 //
82 typedef union {
83 struct {
84 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
85 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
86 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
87 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
88 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
89 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
90 UINT64 Dirty:1; // 0 = Not Dirty, 1 = written by processor on access to page
91 UINT64 PAT:1; //
92 UINT64 Global:1; // 0 = Not global page, 1 = global page TLB not cleared on CR3 write
93 UINT64 Available:3; // Available for use by system software
94 UINT64 PageTableBaseAddress:40; // Page Table Base Address
95 UINT64 AvabilableHigh:11; // Available for use by system software
96 UINT64 Nx:1; // 0 = Execute Code, 1 = No Code Execution
97 } Bits;
98 UINT64 Uint64;
99 } PAGE_TABLE_4K_ENTRY;
100
101 //
102 // Page Table Entry 2MB
103 //
104 typedef union {
105 struct {
106 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
107 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
108 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
109 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
110 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
111 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
112 UINT64 Dirty:1; // 0 = Not Dirty, 1 = written by processor on access to page
113 UINT64 MustBe1:1; // Must be 1
114 UINT64 Global:1; // 0 = Not global page, 1 = global page TLB not cleared on CR3 write
115 UINT64 Available:3; // Available for use by system software
116 UINT64 PAT:1; //
117 UINT64 MustBeZero:8; // Must be zero;
118 UINT64 PageTableBaseAddress:31; // Page Table Base Address
119 UINT64 AvabilableHigh:11; // Available for use by system software
120 UINT64 Nx:1; // 0 = Execute Code, 1 = No Code Execution
121 } Bits;
122 UINT64 Uint64;
123 } PAGE_TABLE_ENTRY;
124
125 //
126 // Page Table Entry 1GB
127 //
128 typedef union {
129 struct {
130 UINT64 Present:1; // 0 = Not present in memory, 1 = Present in memory
131 UINT64 ReadWrite:1; // 0 = Read-Only, 1= Read/Write
132 UINT64 UserSupervisor:1; // 0 = Supervisor, 1=User
133 UINT64 WriteThrough:1; // 0 = Write-Back caching, 1=Write-Through caching
134 UINT64 CacheDisabled:1; // 0 = Cached, 1=Non-Cached
135 UINT64 Accessed:1; // 0 = Not accessed, 1 = Accessed (set by CPU)
136 UINT64 Dirty:1; // 0 = Not Dirty, 1 = written by processor on access to page
137 UINT64 MustBe1:1; // Must be 1
138 UINT64 Global:1; // 0 = Not global page, 1 = global page TLB not cleared on CR3 write
139 UINT64 Available:3; // Available for use by system software
140 UINT64 PAT:1; //
141 UINT64 MustBeZero:17; // Must be zero;
142 UINT64 PageTableBaseAddress:22; // Page Table Base Address
143 UINT64 AvabilableHigh:11; // Available for use by system software
144 UINT64 Nx:1; // 0 = Execute Code, 1 = No Code Execution
145 } Bits;
146 UINT64 Uint64;
147 } PAGE_TABLE_1G_ENTRY;
148
149 #pragma pack()
150
151 #define CR0_WP BIT16
152
153 #define IA32_PG_P BIT0
154 #define IA32_PG_RW BIT1
155 #define IA32_PG_PS BIT7
156
157 #define PAGING_PAE_INDEX_MASK 0x1FF
158
159 #define PAGING_4K_ADDRESS_MASK_64 0x000FFFFFFFFFF000ull
160 #define PAGING_2M_ADDRESS_MASK_64 0x000FFFFFFFE00000ull
161 #define PAGING_1G_ADDRESS_MASK_64 0x000FFFFFC0000000ull
162
163 #define PAGING_L1_ADDRESS_SHIFT 12
164 #define PAGING_L2_ADDRESS_SHIFT 21
165 #define PAGING_L3_ADDRESS_SHIFT 30
166 #define PAGING_L4_ADDRESS_SHIFT 39
167
168 #define PAGING_PML4E_NUMBER 4
169
170 #define PAGE_TABLE_POOL_ALIGNMENT BASE_2MB
171 #define PAGE_TABLE_POOL_UNIT_SIZE SIZE_2MB
172 #define PAGE_TABLE_POOL_UNIT_PAGES EFI_SIZE_TO_PAGES (PAGE_TABLE_POOL_UNIT_SIZE)
173 #define PAGE_TABLE_POOL_ALIGN_MASK \
174 (~(EFI_PHYSICAL_ADDRESS)(PAGE_TABLE_POOL_ALIGNMENT - 1))
175
176 typedef struct {
177 VOID *NextPool;
178 UINTN Offset;
179 UINTN FreePages;
180 } PAGE_TABLE_POOL;
181
182 /**
183 Check if Execute Disable Bit (IA32_EFER.NXE) should be enabled or not.
184
185 @retval TRUE IA32_EFER.NXE should be enabled.
186 @retval FALSE IA32_EFER.NXE should not be enabled.
187
188 **/
189 BOOLEAN
190 IsEnableNonExecNeeded (
191 VOID
192 );
193
194 /**
195 Enable Execute Disable Bit.
196
197 **/
198 VOID
199 EnableExecuteDisableBit (
200 VOID
201 );
202
203 /**
204 Split 2M page to 4K.
205
206 @param[in] PhysicalAddress Start physical address the 2M page covered.
207 @param[in, out] PageEntry2M Pointer to 2M page entry.
208 @param[in] StackBase Stack base address.
209 @param[in] StackSize Stack size.
210
211 **/
212 VOID
213 Split2MPageTo4K (
214 IN EFI_PHYSICAL_ADDRESS PhysicalAddress,
215 IN OUT UINT64 *PageEntry2M,
216 IN EFI_PHYSICAL_ADDRESS StackBase,
217 IN UINTN StackSize
218 );
219
220 /**
221 Allocates and fills in the Page Directory and Page Table Entries to
222 establish a 1:1 Virtual to Physical mapping.
223
224 @param[in] StackBase Stack base address.
225 @param[in] StackSize Stack size.
226
227 @return The address of 4 level page map.
228
229 **/
230 UINTN
231 CreateIdentityMappingPageTables (
232 IN EFI_PHYSICAL_ADDRESS StackBase,
233 IN UINTN StackSize
234 );
235
236
237 /**
238
239 Fix up the vector number in the vector code.
240
241 @param VectorBase Base address of the vector handler.
242 @param VectorNum Index of vector.
243
244 **/
245 VOID
246 EFIAPI
247 AsmVectorFixup (
248 VOID *VectorBase,
249 UINT8 VectorNum
250 );
251
252
253 /**
254
255 Get the information of vector template.
256
257 @param TemplateBase Base address of the template code.
258
259 @return Size of the Template code.
260
261 **/
262 UINTN
263 EFIAPI
264 AsmGetVectorTemplatInfo (
265 OUT VOID **TemplateBase
266 );
267
268 /**
269 Clear legacy memory located at the first 4K-page.
270
271 This function traverses the whole HOB list to check if memory from 0 to 4095
272 exists and has not been allocated, and then clear it if so.
273
274 @param HobStart The start of HobList passed to DxeCore.
275
276 **/
277 VOID
278 ClearFirst4KPage (
279 IN VOID *HobStart
280 );
281
282 /**
283 Return configure status of NULL pointer detection feature.
284
285 @return TRUE NULL pointer detection feature is enabled
286 @return FALSE NULL pointer detection feature is disabled
287 **/
288 BOOLEAN
289 IsNullDetectionEnabled (
290 VOID
291 );
292
293 /**
294 Prevent the memory pages used for page table from been overwritten.
295
296 @param[in] PageTableBase Base address of page table (CR3).
297 @param[in] Level4Paging Level 4 paging flag.
298
299 **/
300 VOID
301 EnablePageTableProtection (
302 IN UINTN PageTableBase,
303 IN BOOLEAN Level4Paging
304 );
305
306 /**
307 This API provides a way to allocate memory for page table.
308
309 This API can be called more than once to allocate memory for page tables.
310
311 Allocates the number of 4KB pages and returns a pointer to the allocated
312 buffer. The buffer returned is aligned on a 4KB boundary.
313
314 If Pages is 0, then NULL is returned.
315 If there is not enough memory remaining to satisfy the request, then NULL is
316 returned.
317
318 @param Pages The number of 4 KB pages to allocate.
319
320 @return A pointer to the allocated buffer or NULL if allocation fails.
321
322 **/
323 VOID *
324 AllocatePageTableMemory (
325 IN UINTN Pages
326 );
327
328 #endif