VirtualBox

source: vbox/trunk/include/VBox/x86.h@ 8006

Last change on this file since 8006 was 7730, checked in by vboxsync, 16 years ago

Added CPUMSet/GetGuestEFER.
Corrected NX bit handling.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 79.0 KB
Line 
1/** @file
2 * X86 (and AMD64) Structures and Definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26/*
27 * x86.mac is generated from this file using:
28 * sed -e '/__VBox_x86_h__/d' -e '/#define/!d' -e 's/#define/%define/' include/VBox/x86.h
29 */
30
31#ifndef ___VBox_x86_h
32#define ___VBox_x86_h
33
34#include <VBox/types.h>
35
36/* Workaround for Solaris sys/regset.h defining CS, DS */
37#if defined(RT_OS_SOLARIS)
38# undef CS
39# undef DS
40#endif
41
42/** @defgroup grp_x86 x86 Types and Definitions
43 * @{
44 */
45
46/**
47 * EFLAGS Bits.
48 */
49typedef struct X86EFLAGSBITS
50{
51 /** Bit 0 - CF - Carry flag - Status flag. */
52 unsigned u1CF : 1;
53 /** Bit 1 - 1 - Reserved flag. */
54 unsigned u1Reserved0 : 1;
55 /** Bit 2 - PF - Parity flag - Status flag. */
56 unsigned u1PF : 1;
57 /** Bit 3 - 0 - Reserved flag. */
58 unsigned u1Reserved1 : 1;
59 /** Bit 4 - AF - Auxiliary carry flag - Status flag. */
60 unsigned u1AF : 1;
61 /** Bit 5 - 0 - Reserved flag. */
62 unsigned u1Reserved2 : 1;
63 /** Bit 6 - ZF - Zero flag - Status flag. */
64 unsigned u1ZF : 1;
65 /** Bit 7 - SF - Signed flag - Status flag. */
66 unsigned u1SF : 1;
67 /** Bit 8 - TF - Trap flag - System flag. */
68 unsigned u1TF : 1;
69 /** Bit 9 - IF - Interrupt flag - System flag. */
70 unsigned u1IF : 1;
71 /** Bit 10 - DF - Direction flag - Control flag. */
72 unsigned u1DF : 1;
73 /** Bit 11 - OF - Overflow flag - Status flag. */
74 unsigned u1OF : 1;
75 /** Bit 12-13 - IOPL - I/O prvilege level flag - System flag. */
76 unsigned u2IOPL : 2;
77 /** Bit 14 - NT - Nested task flag - System flag. */
78 unsigned u1NT : 1;
79 /** Bit 15 - 0 - Reserved flag. */
80 unsigned u1Reserved3 : 1;
81 /** Bit 16 - RF - Resume flag - System flag. */
82 unsigned u1RF : 1;
83 /** Bit 17 - VM - Virtual 8086 mode - System flag. */
84 unsigned u1VM : 1;
85 /** Bit 18 - AC - Alignment check flag - System flag. Works with CR0.AM. */
86 unsigned u1AC : 1;
87 /** Bit 19 - VIF - Virtual interupt flag - System flag. */
88 unsigned u1VIF : 1;
89 /** Bit 20 - VIP - Virtual interupt pending flag - System flag. */
90 unsigned u1VIP : 1;
91 /** Bit 21 - ID - CPUID flag - System flag. If this responds to flipping CPUID is supported. */
92 unsigned u1ID : 1;
93 /** Bit 22-31 - 0 - Reserved flag. */
94 unsigned u10Reserved4 : 10;
95} X86EFLAGSBITS;
96/** Pointer to EFLAGS bits. */
97typedef X86EFLAGSBITS *PX86EFLAGSBITS;
98/** Pointer to const EFLAGS bits. */
99typedef const X86EFLAGSBITS *PCX86EFLAGSBITS;
100
101/**
102 * EFLAGS.
103 */
104typedef union X86EFLAGS
105{
106 /** The bitfield view. */
107 X86EFLAGSBITS Bits;
108 /** The 8-bit view. */
109 uint8_t au8[4];
110 /** The 16-bit view. */
111 uint16_t au16[2];
112 /** The 32-bit view. */
113 uint32_t au32[1];
114 /** The 32-bit view. */
115 uint32_t u32;
116 /** The plain unsigned view. */
117 uint32_t u;
118} X86EFLAGS;
119/** Pointer to EFLAGS. */
120typedef X86EFLAGS *PX86EFLAGS;
121/** Pointer to const EFLAGS. */
122typedef const X86EFLAGS *PCX86EFLAGS;
123
124/**
125 * RFLAGS (32 upper bits are reserved).
126 */
127typedef union X86RFLAGS
128{
129 /** The bitfield view. */
130 X86EFLAGSBITS Bits;
131 /** The 8-bit view. */
132 uint8_t au8[8];
133 /** The 16-bit view. */
134 uint16_t au16[4];
135 /** The 32-bit view. */
136 uint32_t au32[2];
137 /** The 64-bit view. */
138 uint64_t au64[1];
139 /** The 64-bit view. */
140 uint64_t u64;
141 /** The plain unsigned view. */
142 uint64_t u;
143} X86RFLAGS;
144/** Pointer to RFLAGS. */
145typedef X86RFLAGS *PX86RFLAGS;
146/** Pointer to const RFLAGS. */
147typedef const X86RFLAGS *PCX86RFLAGS;
148
149
150/** @name EFLAGS
151 * @{
152 */
153/** Bit 0 - CF - Carry flag - Status flag. */
154#define X86_EFL_CF RT_BIT(0)
155/** Bit 2 - PF - Parity flag - Status flag. */
156#define X86_EFL_PF RT_BIT(2)
157/** Bit 4 - AF - Auxiliary carry flag - Status flag. */
158#define X86_EFL_AF RT_BIT(4)
159/** Bit 6 - ZF - Zero flag - Status flag. */
160#define X86_EFL_ZF RT_BIT(6)
161/** Bit 7 - SF - Signed flag - Status flag. */
162#define X86_EFL_SF RT_BIT(7)
163/** Bit 8 - TF - Trap flag - System flag. */
164#define X86_EFL_TF RT_BIT(8)
165/** Bit 9 - IF - Interrupt flag - System flag. */
166#define X86_EFL_IF RT_BIT(9)
167/** Bit 10 - DF - Direction flag - Control flag. */
168#define X86_EFL_DF RT_BIT(10)
169/** Bit 11 - OF - Overflow flag - Status flag. */
170#define X86_EFL_OF RT_BIT(11)
171/** Bit 12-13 - IOPL - I/O prvilege level flag - System flag. */
172#define X86_EFL_IOPL (RT_BIT(12) | RT_BIT(13))
173/** Bit 14 - NT - Nested task flag - System flag. */
174#define X86_EFL_NT RT_BIT(14)
175/** Bit 16 - RF - Resume flag - System flag. */
176#define X86_EFL_RF RT_BIT(16)
177/** Bit 17 - VM - Virtual 8086 mode - System flag. */
178#define X86_EFL_VM RT_BIT(17)
179/** Bit 18 - AC - Alignment check flag - System flag. Works with CR0.AM. */
180#define X86_EFL_AC RT_BIT(18)
181/** Bit 19 - VIF - Virtual interupt flag - System flag. */
182#define X86_EFL_VIF RT_BIT(19)
183/** Bit 20 - VIP - Virtual interupt pending flag - System flag. */
184#define X86_EFL_VIP RT_BIT(20)
185/** Bit 21 - ID - CPUID flag - System flag. If this responds to flipping CPUID is supported. */
186#define X86_EFL_ID RT_BIT(21)
187/** IOPL shift. */
188#define X86_EFL_IOPL_SHIFT 12
189/** The the IOPL level from the flags. */
190#define X86_EFL_GET_IOPL(efl) (((efl) >> X86_EFL_IOPL_SHIFT) & 3)
191/** @} */
192
193
194/** CPUID Feature information - ECX.
195 * CPUID query with EAX=1.
196 */
197typedef struct X86CPUIDFEATECX
198{
199 /** Bit 0 - SSE3 - Supports SSE3 or not. */
200 unsigned u1SSE3 : 1;
201 /** Reserved. */
202 unsigned u2Reserved1 : 2;
203 /** Bit 3 - MONITOR - Supports MONITOR/MWAIT. */
204 unsigned u1Monitor : 1;
205 /** Bit 4 - CPL-DS - CPL Qualified Debug Store. */
206 unsigned u1CPLDS : 1;
207 /** Bit 5 - VMX - Virtual Machine Technology. */
208 unsigned u1VMX : 1;
209 /** Reserved. */
210 unsigned u1Reserved2 : 1;
211 /** Bit 7 - EST - Enh. SpeedStep Tech. */
212 unsigned u1EST : 1;
213 /** Bit 8 - TM2 - Terminal Monitor 2. */
214 unsigned u1TM2 : 1;
215 /** Bit 9 - SSSE3 - Supplemental Streaming SIMD Extensions 3. */
216 unsigned u1SSSE3 : 1;
217 /** Bit 10 - CNTX-ID - L1 Context ID. */
218 unsigned u1CNTXID : 1;
219 /** Reserved. */
220 unsigned u2Reserved4 : 2;
221 /** Bit 13 - CX16 - CMPXCHG16B. */
222 unsigned u1CX16 : 1;
223 /** Bit 14 - xTPR Update Control. Processor supports changing IA32_MISC_ENABLES[bit 23]. */
224 unsigned u1TPRUpdate : 1;
225 /** Reserved. */
226 unsigned u17Reserved5 : 17;
227
228} X86CPUIDFEATECX;
229/** Pointer to CPUID Feature Information - ECX. */
230typedef X86CPUIDFEATECX *PX86CPUIDFEATECX;
231/** Pointer to const CPUID Feature Information - ECX. */
232typedef const X86CPUIDFEATECX *PCX86CPUIDFEATECX;
233
234
235/** CPUID Feature Information - EDX.
236 * CPUID query with EAX=1.
237 */
238typedef struct X86CPUIDFEATEDX
239{
240 /** Bit 0 - FPU - x87 FPU on Chip. */
241 unsigned u1FPU : 1;
242 /** Bit 1 - VME - Virtual 8086 Mode Enhancements. */
243 unsigned u1VME : 1;
244 /** Bit 2 - DE - Debugging extensions. */
245 unsigned u1DE : 1;
246 /** Bit 3 - PSE - Page Size Extension. */
247 unsigned u1PSE : 1;
248 /** Bit 4 - TSC - Time Stamp Counter. */
249 unsigned u1TSC : 1;
250 /** Bit 5 - MSR - Model Specific Registers RDMSR and WRMSR Instructions. */
251 unsigned u1MSR : 1;
252 /** Bit 6 - PAE - Physical Address Extension. */
253 unsigned u1PAE : 1;
254 /** Bit 7 - MCE - Machine Check Exception. */
255 unsigned u1MCE : 1;
256 /** Bit 8 - CX8 - CMPXCHG8B instruction. */
257 unsigned u1CX8 : 1;
258 /** Bit 9 - APIC - APIC On-Chick. */
259 unsigned u1APIC : 1;
260 /** Bit 10 - Reserved. */
261 unsigned u1Reserved1 : 1;
262 /** Bit 11 - SEP - SYSENTER and SYSEXIT. */
263 unsigned u1SEP : 1;
264 /** Bit 12 - MTRR - Memory Type Range Registers. */
265 unsigned u1MTRR : 1;
266 /** Bit 13 - PGE - PTE Global Bit. */
267 unsigned u1PGE : 1;
268 /** Bit 14 - MCA - Machine Check Architecture. */
269 unsigned u1MCA : 1;
270 /** Bit 15 - CMOV - Conditional Move Instructions. */
271 unsigned u1CMOV : 1;
272 /** Bit 16 - PAT - Page Attribute Table. */
273 unsigned u1PAT : 1;
274 /** Bit 17 - PSE-36 - 36-bit Page Size Extention. */
275 unsigned u1PSE36 : 1;
276 /** Bit 18 - PSN - Processor Serial Number. */
277 unsigned u1PSN : 1;
278 /** Bit 19 - CLFSH - CLFLUSH Instruction. */
279 unsigned u1CLFSH : 1;
280 /** Bit 20 - Reserved. */
281 unsigned u1Reserved2 : 1;
282 /** Bit 21 - DS - Debug Store. */
283 unsigned u1DS : 1;
284 /** Bit 22 - ACPI - Thermal Monitor and Software Controlled Clock Facilities. */
285 unsigned u1ACPI : 1;
286 /** Bit 23 - MMX - Intel MMX 'Technology'. */
287 unsigned u1MMX : 1;
288 /** Bit 24 - FXSR - FXSAVE and FXRSTOR Instructions. */
289 unsigned u1FXSR : 1;
290 /** Bit 25 - SSE - SSE Support. */
291 unsigned u1SSE : 1;
292 /** Bit 26 - SSE2 - SSE2 Support. */
293 unsigned u1SSE2 : 1;
294 /** Bit 27 - SS - Self Snoop. */
295 unsigned u1SS : 1;
296 /** Bit 28 - HTT - Hyper-Threading Technology. */
297 unsigned u1HTT : 1;
298 /** Bit 29 - TM - Thermal Monitor. */
299 unsigned u1TM : 1;
300 /** Bit 30 - Reserved - . */
301 unsigned u1Reserved3 : 1;
302 /** Bit 31 - PBE - Pending Break Enabled. */
303 unsigned u1PBE : 1;
304} X86CPUIDFEATEDX;
305/** Pointer to CPUID Feature Information - EDX. */
306typedef X86CPUIDFEATEDX *PX86CPUIDFEATEDX;
307/** Pointer to const CPUID Feature Information - EDX. */
308typedef const X86CPUIDFEATEDX *PCX86CPUIDFEATEDX;
309
310/** @name CPUID Vendor information.
311 * CPUID query with EAX=0.
312 * @{
313 */
314#define X86_CPUID_VENDOR_INTEL_EBX 0x756e6547 /* Genu */
315#define X86_CPUID_VENDOR_INTEL_ECX 0x6c65746e /* ntel */
316#define X86_CPUID_VENDOR_INTEL_EDX 0x49656e69 /* ineI */
317
318#define X86_CPUID_VENDOR_AMD_EBX 0x68747541 /* Auth */
319#define X86_CPUID_VENDOR_AMD_ECX 0x444d4163 /* cAMD */
320#define X86_CPUID_VENDOR_AMD_EDX 0x69746e65 /* enti */
321/** @} */
322
323
324/** @name CPUID Feature information.
325 * CPUID query with EAX=1.
326 * @{
327 */
328/** ECX Bit 0 - SSE3 - Supports SSE3 or not. */
329#define X86_CPUID_FEATURE_ECX_SSE3 RT_BIT(0)
330/** ECX Bit 3 - MONITOR - Supports MONITOR/MWAIT. */
331#define X86_CPUID_FEATURE_ECX_MONITOR RT_BIT(3)
332/** ECX Bit 4 - CPL-DS - CPL Qualified Debug Store. */
333#define X86_CPUID_FEATURE_ECX_CPLDS RT_BIT(4)
334/** ECX Bit 5 - VMX - Virtual Machine Technology. */
335#define X86_CPUID_FEATURE_ECX_VMX RT_BIT(5)
336/** ECX Bit 7 - EST - Enh. SpeedStep Tech. */
337#define X86_CPUID_FEATURE_ECX_EST RT_BIT(7)
338/** ECX Bit 8 - TM2 - Terminal Monitor 2. */
339#define X86_CPUID_FEATURE_ECX_TM2 RT_BIT(8)
340/** ECX Bit 9 - SSSE3 - Supplemental Streaming SIMD Extensions 3. */
341#define X86_CPUID_FEATURE_ECX_SSSE3 RT_BIT(9)
342/** ECX Bit 10 - CNTX-ID - L1 Context ID. */
343#define X86_CPUID_FEATURE_ECX_CNTXID RT_BIT(10)
344/** ECX Bit 13 - CX16 - CMPXCHG16B. */
345#define X86_CPUID_FEATURE_ECX_CX16 RT_BIT(13)
346/** ECX Bit 14 - xTPR Update Control. Processor supports changing IA32_MISC_ENABLES[bit 23]. */
347#define X86_CPUID_FEATURE_ECX_TPRUPDATE RT_BIT(14)
348/** ECX Bit 23 - POPCOUNT instruction. */
349#define X86_CPUID_FEATURE_ECX_POPCOUNT RT_BIT(23)
350
351
352/** Bit 0 - FPU - x87 FPU on Chip. */
353#define X86_CPUID_FEATURE_EDX_FPU RT_BIT(0)
354/** Bit 1 - VME - Virtual 8086 Mode Enhancements. */
355#define X86_CPUID_FEATURE_EDX_VME RT_BIT(1)
356/** Bit 2 - DE - Debugging extensions. */
357#define X86_CPUID_FEATURE_EDX_DE RT_BIT(2)
358/** Bit 3 - PSE - Page Size Extension. */
359#define X86_CPUID_FEATURE_EDX_PSE RT_BIT(3)
360/** Bit 4 - TSC - Time Stamp Counter. */
361#define X86_CPUID_FEATURE_EDX_TSC RT_BIT(4)
362/** Bit 5 - MSR - Model Specific Registers RDMSR and WRMSR Instructions. */
363#define X86_CPUID_FEATURE_EDX_MSR RT_BIT(5)
364/** Bit 6 - PAE - Physical Address Extension. */
365#define X86_CPUID_FEATURE_EDX_PAE RT_BIT(6)
366/** Bit 7 - MCE - Machine Check Exception. */
367#define X86_CPUID_FEATURE_EDX_MCE RT_BIT(7)
368/** Bit 8 - CX8 - CMPXCHG8B instruction. */
369#define X86_CPUID_FEATURE_EDX_CX8 RT_BIT(8)
370/** Bit 9 - APIC - APIC On-Chip. */
371#define X86_CPUID_FEATURE_EDX_APIC RT_BIT(9)
372/** Bit 11 - SEP - SYSENTER and SYSEXIT. */
373#define X86_CPUID_FEATURE_EDX_SEP RT_BIT(11)
374/** Bit 12 - MTRR - Memory Type Range Registers. */
375#define X86_CPUID_FEATURE_EDX_MTRR RT_BIT(12)
376/** Bit 13 - PGE - PTE Global Bit. */
377#define X86_CPUID_FEATURE_EDX_PGE RT_BIT(13)
378/** Bit 14 - MCA - Machine Check Architecture. */
379#define X86_CPUID_FEATURE_EDX_MCA RT_BIT(14)
380/** Bit 15 - CMOV - Conditional Move Instructions. */
381#define X86_CPUID_FEATURE_EDX_CMOV RT_BIT(15)
382/** Bit 16 - PAT - Page Attribute Table. */
383#define X86_CPUID_FEATURE_EDX_PAT RT_BIT(16)
384/** Bit 17 - PSE-36 - 36-bit Page Size Extention. */
385#define X86_CPUID_FEATURE_EDX_PSE36 RT_BIT(17)
386/** Bit 18 - PSN - Processor Serial Number. */
387#define X86_CPUID_FEATURE_EDX_PSN RT_BIT(18)
388/** Bit 19 - CLFSH - CLFLUSH Instruction. */
389#define X86_CPUID_FEATURE_EDX_CLFSH RT_BIT(19)
390/** Bit 21 - DS - Debug Store. */
391#define X86_CPUID_FEATURE_EDX_DS RT_BIT(21)
392/** Bit 22 - ACPI - Termal Monitor and Software Controlled Clock Facilities. */
393#define X86_CPUID_FEATURE_EDX_ACPI RT_BIT(22)
394/** Bit 23 - MMX - Intel MMX Technology. */
395#define X86_CPUID_FEATURE_EDX_MMX RT_BIT(23)
396/** Bit 24 - FXSR - FXSAVE and FXRSTOR Instructions. */
397#define X86_CPUID_FEATURE_EDX_FXSR RT_BIT(24)
398/** Bit 25 - SSE - SSE Support. */
399#define X86_CPUID_FEATURE_EDX_SSE RT_BIT(25)
400/** Bit 26 - SSE2 - SSE2 Support. */
401#define X86_CPUID_FEATURE_EDX_SSE2 RT_BIT(26)
402/** Bit 27 - SS - Self Snoop. */
403#define X86_CPUID_FEATURE_EDX_SS RT_BIT(27)
404/** Bit 28 - HTT - Hyper-Threading Technology. */
405#define X86_CPUID_FEATURE_EDX_HTT RT_BIT(28)
406/** Bit 29 - TM - Therm. Monitor. */
407#define X86_CPUID_FEATURE_EDX_TM RT_BIT(29)
408/** Bit 31 - PBE - Pending Break Enabled. */
409#define X86_CPUID_FEATURE_EDX_PBE RT_BIT(31)
410/** @} */
411
412
413/** @name CPUID AMD Feature information.
414 * CPUID query with EAX=0x80000001.
415 * @{
416 */
417/** Bit 0 - FPU - x87 FPU on Chip. */
418#define X86_CPUID_AMD_FEATURE_EDX_FPU RT_BIT(0)
419/** Bit 1 - VME - Virtual 8086 Mode Enhancements. */
420#define X86_CPUID_AMD_FEATURE_EDX_VME RT_BIT(1)
421/** Bit 2 - DE - Debugging extensions. */
422#define X86_CPUID_AMD_FEATURE_EDX_DE RT_BIT(2)
423/** Bit 3 - PSE - Page Size Extension. */
424#define X86_CPUID_AMD_FEATURE_EDX_PSE RT_BIT(3)
425/** Bit 4 - TSC - Time Stamp Counter. */
426#define X86_CPUID_AMD_FEATURE_EDX_TSC RT_BIT(4)
427/** Bit 5 - MSR - K86 Model Specific Registers RDMSR and WRMSR Instructions. */
428#define X86_CPUID_AMD_FEATURE_EDX_MSR RT_BIT(5)
429/** Bit 6 - PAE - Physical Address Extension. */
430#define X86_CPUID_AMD_FEATURE_EDX_PAE RT_BIT(6)
431/** Bit 7 - MCE - Machine Check Exception. */
432#define X86_CPUID_AMD_FEATURE_EDX_MCE RT_BIT(7)
433/** Bit 8 - CX8 - CMPXCHG8B instruction. */
434#define X86_CPUID_AMD_FEATURE_EDX_CX8 RT_BIT(8)
435/** Bit 9 - APIC - APIC On-Chip. */
436#define X86_CPUID_AMD_FEATURE_EDX_APIC RT_BIT(9)
437/** Bit 11 - SEP - AMD SYSCALL and SYSRET. */
438#define X86_CPUID_AMD_FEATURE_EDX_SEP RT_BIT(11)
439/** Bit 12 - MTRR - Memory Type Range Registers. */
440#define X86_CPUID_AMD_FEATURE_EDX_MTRR RT_BIT(12)
441/** Bit 13 - PGE - PTE Global Bit. */
442#define X86_CPUID_AMD_FEATURE_EDX_PGE RT_BIT(13)
443/** Bit 14 - MCA - Machine Check Architecture. */
444#define X86_CPUID_AMD_FEATURE_EDX_MCA RT_BIT(14)
445/** Bit 15 - CMOV - Conditional Move Instructions. */
446#define X86_CPUID_AMD_FEATURE_EDX_CMOV RT_BIT(15)
447/** Bit 16 - PAT - Page Attribute Table. */
448#define X86_CPUID_AMD_FEATURE_EDX_PAT RT_BIT(16)
449/** Bit 17 - PSE-36 - 36-bit Page Size Extention. */
450#define X86_CPUID_AMD_FEATURE_EDX_PSE36 RT_BIT(17)
451/** Bit 20 - NX - AMD No-Execute Page Protection. */
452#define X86_CPUID_AMD_FEATURE_EDX_NX RT_BIT(20)
453/** Bit 22 - AXMMX - AMD Extensions to MMX Instructions. */
454#define X86_CPUID_AMD_FEATURE_EDX_AXMMX RT_BIT(22)
455/** Bit 23 - MMX - Intel MMX Technology. */
456#define X86_CPUID_AMD_FEATURE_EDX_MMX RT_BIT(23)
457/** Bit 24 - FXSR - FXSAVE and FXRSTOR Instructions. */
458#define X86_CPUID_AMD_FEATURE_EDX_FXSR RT_BIT(24)
459/** Bit 25 - FFXSR - AMD fast FXSAVE and FXRSTOR Instructions. */
460#define X86_CPUID_AMD_FEATURE_EDX_FFXSR RT_BIT(25)
461/** Bit 26 - PAGE1GB - AMD 1GB large page support. */
462#define X86_CPUID_AMD_FEATURE_EDX_PAGE1GB RT_BIT(26)
463/** Bit 27 - RDTSCP - AMD RDTSCP instruction. */
464#define X86_CPUID_AMD_FEATURE_EDX_RDTSCP RT_BIT(27)
465/** Bit 29 - LM - AMD Long Mode. */
466#define X86_CPUID_AMD_FEATURE_EDX_LONG_MODE RT_BIT(29)
467/** Bit 30 - 3DNOWEXT - AMD Extensions to 3DNow. */
468#define X86_CPUID_AMD_FEATURE_EDX_3DNOW_EX RT_BIT(30)
469/** Bit 31 - 3DNOW - AMD 3DNow. */
470#define X86_CPUID_AMD_FEATURE_EDX_3DNOW RT_BIT(31)
471
472/** Bit 0 - LAHF/SAHF - AMD LAHF and SAHF in 64-bit mode. */
473#define X86_CPUID_AMD_FEATURE_ECX_LAHF_SAHF RT_BIT(0)
474/** Bit 1 - CMPL - Core multi-processing legacy mode. */
475#define X86_CPUID_AMD_FEATURE_ECX_CMPL RT_BIT(1)
476/** Bit 2 - SVM - AMD VM extensions. */
477#define X86_CPUID_AMD_FEATURE_ECX_SVM RT_BIT(2)
478/** Bit 3 - EXTAPIC - AMD extended APIC registers starting at 0x400. */
479#define X86_CPUID_AMD_FEATURE_ECX_EXT_APIC RT_BIT(3)
480/** Bit 4 - CR8L - AMD LOCK MOV CR0 means MOV CR8. */
481#define X86_CPUID_AMD_FEATURE_ECX_CR8L RT_BIT(4)
482/** Bit 5 - ABM - AMD Advanced bit manipulation. LZCNT instruction support. */
483#define X86_CPUID_AMD_FEATURE_ECX_ABM RT_BIT(5)
484/** Bit 6 - SSE4A - AMD EXTRQ, INSERTQ, MOVNTSS, and MOVNTSD instruction support. */
485#define X86_CPUID_AMD_FEATURE_ECX_SSE4A RT_BIT(6)
486/** Bit 7 - MISALIGNSSE - AMD Misaligned SSE mode. */
487#define X86_CPUID_AMD_FEATURE_ECX_MISALNSSE RT_BIT(7)
488/** Bit 8 - 3DNOWPRF - AMD PREFETCH and PREFETCHW instruction support. */
489#define X86_CPUID_AMD_FEATURE_ECX_3DNOWPRF RT_BIT(8)
490/** Bit 9 - OSVW - AMD OS visible workaround. */
491#define X86_CPUID_AMD_FEATURE_ECX_OSVW RT_BIT(9)
492/** Bit 12 - SKINIT - AMD SKINIT: SKINIT, STGI, and DEV support. */
493#define X86_CPUID_AMD_FEATURE_ECX_SKINIT RT_BIT(12)
494/** Bit 13 - WDT - AMD Watchdog timer support. */
495#define X86_CPUID_AMD_FEATURE_ECX_WDT RT_BIT(13)
496
497/** @} */
498
499
500/** @name CR0
501 * @{ */
502/** Bit 0 - PE - Protection Enabled */
503#define X86_CR0_PE RT_BIT(0)
504#define X86_CR0_PROTECTION_ENABLE RT_BIT(0)
505/** Bit 1 - MP - Monitor Coprocessor */
506#define X86_CR0_MP RT_BIT(1)
507#define X86_CR0_MONITOR_COPROCESSOR RT_BIT(1)
508/** Bit 2 - EM - Emulation. */
509#define X86_CR0_EM RT_BIT(2)
510#define X86_CR0_EMULATE_FPU RT_BIT(2)
511/** Bit 3 - TS - Task Switch. */
512#define X86_CR0_TS RT_BIT(3)
513#define X86_CR0_TASK_SWITCH RT_BIT(3)
514/** Bit 4 - ET - Extension flag. ('hardcoded' to 1) */
515#define X86_CR0_ET RT_BIT(4)
516#define X86_CR0_EXTENSION_TYPE RT_BIT(4)
517/** Bit 5 - NE - Numeric error. */
518#define X86_CR0_NE RT_BIT(5)
519#define X86_CR0_NUMERIC_ERROR RT_BIT(5)
520/** Bit 16 - WP - Write Protect. */
521#define X86_CR0_WP RT_BIT(16)
522#define X86_CR0_WRITE_PROTECT RT_BIT(16)
523/** Bit 18 - AM - Alignment Mask. */
524#define X86_CR0_AM RT_BIT(18)
525#define X86_CR0_ALIGMENT_MASK RT_BIT(18)
526/** Bit 29 - NW - Not Write-though. */
527#define X86_CR0_NW RT_BIT(29)
528#define X86_CR0_NOT_WRITE_THROUGH RT_BIT(29)
529/** Bit 30 - WP - Cache Disable. */
530#define X86_CR0_CD RT_BIT(30)
531#define X86_CR0_CACHE_DISABLE RT_BIT(30)
532/** Bit 31 - PG - Paging. */
533#define X86_CR0_PG RT_BIT(31)
534#define X86_CR0_PAGING RT_BIT(31)
535/** @} */
536
537
538/** @name CR3
539 * @{ */
540/** Bit 3 - PWT - Page-level Writes Transparent. */
541#define X86_CR3_PWT RT_BIT(3)
542/** Bit 4 - PCD - Page-level Cache Disable. */
543#define X86_CR3_PCD RT_BIT(4)
544/** Bits 12-31 - - Page directory page number. */
545#define X86_CR3_PAGE_MASK (0xfffff000)
546/** Bits 5-31 - - PAE Page directory page number. */
547#define X86_CR3_PAE_PAGE_MASK (0xffffffe0)
548/** @} */
549
550
551/** @name CR4
552 * @{ */
553/** Bit 0 - VME - Virtual-8086 Mode Extensions. */
554#define X86_CR4_VME RT_BIT(0)
555/** Bit 1 - PVI - Protected-Mode Virtual Interrupts. */
556#define X86_CR4_PVI RT_BIT(1)
557/** Bit 2 - TSD - Time Stamp Disable. */
558#define X86_CR4_TSD RT_BIT(2)
559/** Bit 3 - DE - Debugging Extensions. */
560#define X86_CR4_DE RT_BIT(3)
561/** Bit 4 - PSE - Page Size Extension. */
562#define X86_CR4_PSE RT_BIT(4)
563/** Bit 5 - PAE - Physical Address Extension. */
564#define X86_CR4_PAE RT_BIT(5)
565/** Bit 6 - MCE - Machine-Check Enable. */
566#define X86_CR4_MCE RT_BIT(6)
567/** Bit 7 - PGE - Page Global Enable. */
568#define X86_CR4_PGE RT_BIT(7)
569/** Bit 8 - PCE - Performance-Monitoring Counter Enable. */
570#define X86_CR4_PCE RT_BIT(8)
571/** Bit 9 - OSFSXR - Operating System Support for FXSAVE and FXRSTORE instruction. */
572#define X86_CR4_OSFSXR RT_BIT(9)
573/** Bit 10 - OSXMMEEXCPT - Operating System Support for Unmasked SIMD Floating-Point Exceptions. */
574#define X86_CR4_OSXMMEEXCPT RT_BIT(10)
575/** Bit 13 - VMXE - VMX mode is enabled. */
576#define X86_CR4_VMXE RT_BIT(13)
577/** @} */
578
579
580/** @name DR6
581 * @{ */
582/** Bit 0 - B0 - Breakpoint 0 condition detected. */
583#define X86_DR6_B0 RT_BIT(0)
584/** Bit 1 - B1 - Breakpoint 1 condition detected. */
585#define X86_DR6_B1 RT_BIT(1)
586/** Bit 2 - B2 - Breakpoint 2 condition detected. */
587#define X86_DR6_B2 RT_BIT(2)
588/** Bit 3 - B3 - Breakpoint 3 condition detected. */
589#define X86_DR6_B3 RT_BIT(3)
590/** Bit 13 - BD - Debug register access detected. Corresponds to the X86_DR7_GD bit. */
591#define X86_DR6_BD RT_BIT(13)
592/** Bit 14 - BS - Single step */
593#define X86_DR6_BS RT_BIT(14)
594/** Bit 15 - BT - Task switch. (TSS T bit.) */
595#define X86_DR6_BT RT_BIT(15)
596/** @} */
597
598
599/** @name DR7
600 * @{ */
601/** Bit 0 - L0 - Local breakpoint enable. Cleared on task switch. */
602#define X86_DR7_L0 RT_BIT(0)
603/** Bit 1 - G0 - Global breakpoint enable. Not cleared on task switch. */
604#define X86_DR7_G0 RT_BIT(1)
605/** Bit 2 - L1 - Local breakpoint enable. Cleared on task switch. */
606#define X86_DR7_L1 RT_BIT(2)
607/** Bit 3 - G1 - Global breakpoint enable. Not cleared on task switch. */
608#define X86_DR7_G1 RT_BIT(3)
609/** Bit 4 - L2 - Local breakpoint enable. Cleared on task switch. */
610#define X86_DR7_L2 RT_BIT(4)
611/** Bit 5 - G2 - Global breakpoint enable. Not cleared on task switch. */
612#define X86_DR7_G2 RT_BIT(5)
613/** Bit 6 - L3 - Local breakpoint enable. Cleared on task switch. */
614#define X86_DR7_L3 RT_BIT(6)
615/** Bit 7 - G3 - Global breakpoint enable. Not cleared on task switch. */
616#define X86_DR7_G3 RT_BIT(7)
617/** Bit 8 - LE - Local breakpoint exact. (Not supported (read ignored) by P6 and later.) */
618#define X86_DR7_LE RT_BIT(8)
619/** Bit 9 - GE - Local breakpoint exact. (Not supported (read ignored) by P6 and later.) */
620#define X86_DR7_GE RT_BIT(9)
621
622/** Bit 13 - GD - General detect enable. Enables emulators to get exceptions when
623 * any DR register is accessed. */
624#define X86_DR7_GD RT_BIT(13)
625/** Bit 16 & 17 - R/W0 - Read write field 0. Values X86_DR7_RW_*. */
626#define X86_DR7_RW0_MASK (3 << 16)
627/** Bit 18 & 19 - LEN0 - Length field 0. Values X86_DR7_LEN_*. */
628#define X86_DR7_LEN0_MASK (3 << 18)
629/** Bit 20 & 21 - R/W1 - Read write field 0. Values X86_DR7_RW_*. */
630#define X86_DR7_RW1_MASK (3 << 20)
631/** Bit 22 & 23 - LEN1 - Length field 0. Values X86_DR7_LEN_*. */
632#define X86_DR7_LEN1_MASK (3 << 22)
633/** Bit 24 & 25 - R/W2 - Read write field 0. Values X86_DR7_RW_*. */
634#define X86_DR7_RW2_MASK (3 << 24)
635/** Bit 26 & 27 - LEN2 - Length field 0. Values X86_DR7_LEN_*. */
636#define X86_DR7_LEN2_MASK (3 << 26)
637/** Bit 28 & 29 - R/W3 - Read write field 0. Values X86_DR7_RW_*. */
638#define X86_DR7_RW3_MASK (3 << 28)
639/** Bit 30 & 31 - LEN3 - Length field 0. Values X86_DR7_LEN_*. */
640#define X86_DR7_LEN3_MASK (3 << 30)
641
642/** Bits which must be 1s. */
643#define X86_DR7_MB1_MASK (RT_BIT(10))
644
645/** Calcs the L bit of Nth breakpoint.
646 * @param iBp The breakpoint number [0..3].
647 */
648#define X86_DR7_L(iBp) ( 1 << (iBp * 2) )
649
650/** Calcs the G bit of Nth breakpoint.
651 * @param iBp The breakpoint number [0..3].
652 */
653#define X86_DR7_G(iBp) ( 1 << (iBp * 2 + 1) )
654
655/** @name Read/Write values.
656 * @{ */
657/** Break on instruction fetch only. */
658#define X86_DR7_RW_EO 0
659/** Break on write only. */
660#define X86_DR7_RW_WO 1
661/** Break on I/O read/write. This is only defined if CR4.DE is set. */
662#define X86_DR7_RW_IO 2
663/** Break on read or write (but not instruction fetches). */
664#define X86_DR7_RW_RW 3
665/** @} */
666
667/** Shifts a X86_DR7_RW_* value to its right place.
668 * @param iBp The breakpoint number [0..3].
669 * @param fRw One of the X86_DR7_RW_* value.
670 */
671#define X86_DR7_RW(iBp, fRw) ( (fRw) << ((iBp) * 4 + 16) )
672
673/** @name Length values.
674 * @{ */
675#define X86_DR7_LEN_BYTE 0
676#define X86_DR7_LEN_WORD 1
677#define X86_DR7_LEN_QWORD 2 /**< AMD64 long mode only. */
678#define X86_DR7_LEN_DWORD 3
679/** @} */
680
681/** Shifts a X86_DR7_LEN_* value to its right place.
682 * @param iBp The breakpoint number [0..3].
683 * @param cb One of the X86_DR7_LEN_* values.
684 */
685#define X86_DR7_LEN(iBp, cb) ( (cb) << ((iBp) * 4 + 18) )
686
687/** Mask used to check if any breakpoints are enabled. */
688#define X86_DR7_ENABLED_MASK (RT_BIT(0) | RT_BIT(1) | RT_BIT(2) | RT_BIT(3) | RT_BIT(4) | RT_BIT(6) | RT_BIT(7))
689
690/** @} */
691
692
693/** @name Machine Specific Registers
694 * @{
695 */
696/** CPU Feature control. */
697#define MSR_IA32_FEATURE_CONTROL 0x3A
698#define MSR_IA32_FEATURE_CONTROL_LOCK RT_BIT(0)
699#define MSR_IA32_FEATURE_CONTROL_VMXON RT_BIT(2)
700
701
702#ifndef MSR_IA32_SYSENTER_CS /* qemu cpu.h klugde */
703/** SYSENTER_CS - the R0 CS, indirectly giving R0 SS, R3 CS and R3 DS.
704 * R0 SS == CS + 8
705 * R3 CS == CS + 16
706 * R3 SS == CS + 24
707 */
708#define MSR_IA32_SYSENTER_CS 0x174
709/** SYSENTER_ESP - the R0 ESP. */
710#define MSR_IA32_SYSENTER_ESP 0x175
711/** SYSENTER_EIP - the R0 EIP. */
712#define MSR_IA32_SYSENTER_EIP 0x176
713#endif
714
715/* Page Attribute Table. */
716#define IA32_CR_PAT 0x277
717
718/** Basic VMX information. */
719#define MSR_IA32_VMX_BASIC_INFO 0x480
720/** Allowed settings for pin-based VM execution controls */
721#define MSR_IA32_VMX_PINBASED_CTLS 0x481
722/** Allowed settings for proc-based VM execution controls */
723#define MSR_IA32_VMX_PROCBASED_CTLS 0x482
724/** Allowed settings for the VMX exit controls. */
725#define MSR_IA32_VMX_EXIT_CTLS 0x483
726/** Allowed settings for the VMX entry controls. */
727#define MSR_IA32_VMX_ENTRY_CTLS 0x484
728/** Misc VMX info. */
729#define MSR_IA32_VMX_MISC 0x485
730/** Fixed cleared bits in CR0. */
731#define MSR_IA32_VMX_CR0_FIXED0 0x486
732/** Fixed set bits in CR0. */
733#define MSR_IA32_VMX_CR0_FIXED1 0x487
734/** Fixed cleared bits in CR4. */
735#define MSR_IA32_VMX_CR4_FIXED0 0x488
736/** Fixed set bits in CR4. */
737#define MSR_IA32_VMX_CR4_FIXED1 0x489
738/** Information for enumerating fields in the VMCS. */
739#define MSR_IA32_VMX_VMCS_ENUM 0x48A
740
741
742/** K6 EFER - Extended Feature Enable Register. */
743#define MSR_K6_EFER 0xc0000080
744/** @todo document EFER */
745/** Bit 0 - SCE - System call extensions (SYSCALL / SYSRET). (R/W) */
746#define MSR_K6_EFER_SCE RT_BIT(0)
747/** Bit 8 - LME - Long mode enabled. (R/W) */
748#define MSR_K6_EFER_LME RT_BIT(8)
749/** Bit 10 - LMA - Long mode active. (R) */
750#define MSR_K6_EFER_LMA RT_BIT(10)
751/** Bit 11 - NXE - No-Execute Page Protection Enabled. (R/W) */
752#define MSR_K6_EFER_NXE RT_BIT(11)
753/** Bit 12 - SVME - Secure VM Extension Enabled. (R/W) */
754#define MSR_K6_EFER_SVME RT_BIT(12)
755/** Bit 13 - LMSLE - Long Mode Segment Limit Enable. (R/W?) */
756#define MSR_K6_EFER_LMSLE RT_BIT(13)
757/** Bit 14 - FFXSR - Fast FXSAVE / FXRSTOR (skip XMM*). (R/W) */
758#define MSR_K6_EFER_FFXSR RT_BIT(14)
759/** K6 STAR - SYSCALL/RET targets. */
760#define MSR_K6_STAR 0xc0000081
761/** Shift value for getting the SYSRET CS and SS value. */
762#define MSR_K6_STAR_SYSRET_CS_SS_SHIFT 48
763/** Shift value for getting the SYSCALL CS and SS value. */
764#define MSR_K6_STAR_SYSCALL_CS_SS_SHIFT 32
765/** Selector mask for use after shifting. */
766#define MSR_K6_STAR_SEL_MASK 0xffff
767/** The mask which give the SYSCALL EIP. */
768#define MSR_K6_STAR_SYSCALL_EIP_MASK 0xffffffff
769/** K6 WHCR - Write Handling Control Register. */
770#define MSR_K6_WHCR 0xc0000082
771/** K6 UWCCR - UC/WC Cacheability Control Register. */
772#define MSR_K6_UWCCR 0xc0000085
773/** K6 PSOR - Processor State Observability Register. */
774#define MSR_K6_PSOR 0xc0000087
775/** K6 PFIR - Page Flush/Invalidate Register. */
776#define MSR_K6_PFIR 0xc0000088
777
778#define MSR_K7_EVNTSEL0 0xc0010000
779#define MSR_K7_EVNTSEL1 0xc0010001
780#define MSR_K7_EVNTSEL2 0xc0010002
781#define MSR_K7_EVNTSEL3 0xc0010003
782#define MSR_K7_PERFCTR0 0xc0010004
783#define MSR_K7_PERFCTR1 0xc0010005
784#define MSR_K7_PERFCTR2 0xc0010006
785#define MSR_K7_PERFCTR3 0xc0010007
786
787/** K8 LSTAR - Long mode SYSCALL target (RIP). */
788#define MSR_K8_LSTAR 0xc0000082
789/** K8 CSTAR - Compatibility mode SYSCALL target (RIP). */
790#define MSR_K8_CSTAR 0xc0000083
791/** K8 SF_MASK - SYSCALL flag mask. (aka SFMASK) */
792#define MSR_K8_SF_MASK 0xc0000084
793/** K8 FS.base - The 64-bit base FS register. */
794#define MSR_K8_FS_BASE 0xc0000100
795/** K8 GS.base - The 64-bit base GS register. */
796#define MSR_K8_GS_BASE 0xc0000101
797/** K8 KernelGSbase - Used with SWAPGS. */
798#define MSR_K8_KERNEL_GS_BASE 0xc0000102
799#define MSR_K8_TSC_AUX 0xc0000103
800#define MSR_K8_SYSCFG 0xc0010010
801#define MSR_K8_HWCR 0xc0010015
802#define MSR_K8_IORRBASE0 0xc0010016
803#define MSR_K8_IORRMASK0 0xc0010017
804#define MSR_K8_IORRBASE1 0xc0010018
805#define MSR_K8_IORRMASK1 0xc0010019
806#define MSR_K8_TOP_MEM1 0xc001001a
807#define MSR_K8_TOP_MEM2 0xc001001d
808#define MSR_K8_VM_CR 0xc0010114
809#define MSR_K8_VM_CR_SVM_DISABLE RT_BIT(4)
810
811#define MSR_K8_IGNNE 0xc0010115
812#define MSR_K8_SMM_CTL 0xc0010116
813/** SVM - VM_HSAVE_PA - Physical address for saving and restoring
814 * host state during world switch.
815 */
816#define MSR_K8_VM_HSAVE_PA 0xc0010117
817
818/** @} */
819
820
821/** @name Page Table / Directory / Directory Pointers / L4.
822 * @{
823 */
824
825/** Page table/directory entry as an unsigned integer. */
826typedef uint32_t X86PGUINT;
827/** Pointer to a page table/directory table entry as an unsigned integer. */
828typedef X86PGUINT *PX86PGUINT;
829
830/** Number of entries in a 32-bit PT/PD. */
831#define X86_PG_ENTRIES 1024
832
833
834/** PAE page table/page directory/pdpt/l4/l5 entry as an unsigned integer. */
835typedef uint64_t X86PGPAEUINT;
836/** Pointer to a PAE page table/page directory/pdpt/l4/l5 entry as an unsigned integer. */
837typedef X86PGPAEUINT *PX86PGPAEUINT;
838
839/** Number of entries in a PAE PT/PD. */
840#define X86_PG_PAE_ENTRIES 512
841/** Number of entries in a PAE PDPT. */
842#define X86_PG_PAE_PDPE_ENTRIES 4
843
844/** Number of entries in an AMD64 PT/PD/PDPT/L4/L5. */
845#define X86_PG_AMD64_ENTRIES X86_PG_PAE_ENTRIES
846/** Number of entries in an AMD64 PDPT.
847 * Just for complementing X86_PG_PAE_PDPE_ENTRIES, using X86_PG_AMD64_ENTRIES for this is fine too. */
848#define X86_PG_AMD64_PDPE_ENTRIES X86_PG_AMD64_ENTRIES
849
850/** The size of a 4KB page. */
851#define X86_PAGE_4K_SIZE _4K
852/** The page shift of a 4KB page. */
853#define X86_PAGE_4K_SHIFT 12
854/** The 4KB page offset mask. */
855#define X86_PAGE_4K_OFFSET_MASK 0xfff
856/** The 4KB page base mask for virtual addresses. */
857#define X86_PAGE_4K_BASE_MASK 0xfffffffffffff000ULL
858/** The 4KB page base mask for virtual addresses - 32bit version. */
859#define X86_PAGE_4K_BASE_MASK_32 0xfffff000U
860
861/** The size of a 2MB page. */
862#define X86_PAGE_2M_SIZE _2M
863/** The page shift of a 2MB page. */
864#define X86_PAGE_2M_SHIFT 21
865/** The 2MB page offset mask. */
866#define X86_PAGE_2M_OFFSET_MASK 0x001fffff
867/** The 2MB page base mask for virtual addresses. */
868#define X86_PAGE_2M_BASE_MASK 0xffffffffffe00000ULL
869/** The 2MB page base mask for virtual addresses - 32bit version. */
870#define X86_PAGE_2M_BASE_MASK_32 0xffe00000U
871
872/** The size of a 4MB page. */
873#define X86_PAGE_4M_SIZE _4M
874/** The page shift of a 4MB page. */
875#define X86_PAGE_4M_SHIFT 22
876/** The 4MB page offset mask. */
877#define X86_PAGE_4M_OFFSET_MASK 0x003fffff
878/** The 4MB page base mask for virtual addresses. */
879#define X86_PAGE_4M_BASE_MASK 0xffffffffffc00000ULL
880/** The 4MB page base mask for virtual addresses - 32bit version. */
881#define X86_PAGE_4M_BASE_MASK_32 0xffc00000U
882
883
884
885/** @name Page Table Entry
886 * @{
887 */
888/** Bit 0 - P - Present bit. */
889#define X86_PTE_P RT_BIT(0)
890/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
891#define X86_PTE_RW RT_BIT(1)
892/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
893#define X86_PTE_US RT_BIT(2)
894/** Bit 3 - PWT - Page level write thru bit. */
895#define X86_PTE_PWT RT_BIT(3)
896/** Bit 4 - PCD - Page level cache disable bit. */
897#define X86_PTE_PCD RT_BIT(4)
898/** Bit 5 - A - Access bit. */
899#define X86_PTE_A RT_BIT(5)
900/** Bit 6 - D - Dirty bit. */
901#define X86_PTE_D RT_BIT(6)
902/** Bit 7 - PAT - Page Attribute Table index bit. Reserved and 0 if not supported. */
903#define X86_PTE_PAT RT_BIT(7)
904/** Bit 8 - G - Global flag. */
905#define X86_PTE_G RT_BIT(8)
906/** Bits 9-11 - - Available for use to system software. */
907#define X86_PTE_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
908/** Bits 12-31 - - Physical Page number of the next level. */
909#define X86_PTE_PG_MASK ( 0xfffff000 )
910
911/** Bits 12-51 - - PAE - Physical Page number of the next level. */
912#if 1 /* we're using this internally and have to mask of the top 16-bit. */
913#define X86_PTE_PAE_PG_MASK ( 0x0000fffffffff000ULL )
914#else
915#define X86_PTE_PAE_PG_MASK ( 0x000ffffffffff000ULL )
916#endif
917/** Bits 63 - NX - PAE - No execution flag. */
918#define X86_PTE_PAE_NX RT_BIT_64(63)
919
920/**
921 * Page table entry.
922 */
923typedef struct X86PTEBITS
924{
925 /** Flags whether(=1) or not the page is present. */
926 unsigned u1Present : 1;
927 /** Read(=0) / Write(=1) flag. */
928 unsigned u1Write : 1;
929 /** User(=1) / Supervisor (=0) flag. */
930 unsigned u1User : 1;
931 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
932 unsigned u1WriteThru : 1;
933 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
934 unsigned u1CacheDisable : 1;
935 /** Accessed flag.
936 * Indicates that the page have been read or written to. */
937 unsigned u1Accessed : 1;
938 /** Dirty flag.
939 * Indicates that the page have been written to. */
940 unsigned u1Dirty : 1;
941 /** Reserved / If PAT enabled, bit 2 of the index. */
942 unsigned u1PAT : 1;
943 /** Global flag. (Ignored in all but final level.) */
944 unsigned u1Global : 1;
945 /** Available for use to system software. */
946 unsigned u3Available : 3;
947 /** Physical Page number of the next level. */
948 unsigned u20PageNo : 20;
949} X86PTEBITS;
950/** Pointer to a page table entry. */
951typedef X86PTEBITS *PX86PTEBITS;
952/** Pointer to a const page table entry. */
953typedef const X86PTEBITS *PCX86PTEBITS;
954
955/**
956 * Page table entry.
957 */
958typedef union X86PTE
959{
960 /** Bit field view. */
961 X86PTEBITS n;
962 /** Unsigned integer view */
963 X86PGUINT u;
964 /** 32-bit view. */
965 uint32_t au32[1];
966 /** 16-bit view. */
967 uint16_t au16[2];
968 /** 8-bit view. */
969 uint8_t au8[4];
970} X86PTE;
971/** Pointer to a page table entry. */
972typedef X86PTE *PX86PTE;
973/** Pointer to a const page table entry. */
974typedef const X86PTE *PCX86PTE;
975
976
977/**
978 * PAE page table entry.
979 */
980typedef struct X86PTEPAEBITS
981{
982 /** Flags whether(=1) or not the page is present. */
983 uint32_t u1Present : 1;
984 /** Read(=0) / Write(=1) flag. */
985 uint32_t u1Write : 1;
986 /** User(=1) / Supervisor(=0) flag. */
987 uint32_t u1User : 1;
988 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
989 uint32_t u1WriteThru : 1;
990 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
991 uint32_t u1CacheDisable : 1;
992 /** Accessed flag.
993 * Indicates that the page have been read or written to. */
994 uint32_t u1Accessed : 1;
995 /** Dirty flag.
996 * Indicates that the page have been written to. */
997 uint32_t u1Dirty : 1;
998 /** Reserved / If PAT enabled, bit 2 of the index. */
999 uint32_t u1PAT : 1;
1000 /** Global flag. (Ignored in all but final level.) */
1001 uint32_t u1Global : 1;
1002 /** Available for use to system software. */
1003 uint32_t u3Available : 3;
1004 /** Physical Page number of the next level - Low Part. Don't use this. */
1005 uint32_t u20PageNoLow : 20;
1006 /** Physical Page number of the next level - High Part. Don't use this. */
1007 uint32_t u20PageNoHigh : 20;
1008 /** MBZ bits */
1009 uint32_t u11Reserved : 11;
1010 /** No Execute flag. */
1011 uint32_t u1NoExecute : 1;
1012} X86PTEPAEBITS;
1013/** Pointer to a page table entry. */
1014typedef X86PTEPAEBITS *PX86PTEPAEBITS;
1015/** Pointer to a page table entry. */
1016typedef const X86PTEPAEBITS *PCX86PTEPAEBITS;
1017
1018/**
1019 * PAE Page table entry.
1020 */
1021typedef union X86PTEPAE
1022{
1023 /** Bit field view. */
1024 X86PTEPAEBITS n;
1025 /** Unsigned integer view */
1026 X86PGPAEUINT u;
1027 /** 32-bit view. */
1028 uint32_t au32[2];
1029 /** 16-bit view. */
1030 uint16_t au16[4];
1031 /** 8-bit view. */
1032 uint8_t au8[8];
1033} X86PTEPAE;
1034/** Pointer to a PAE page table entry. */
1035typedef X86PTEPAE *PX86PTEPAE;
1036/** Pointer to a const PAE page table entry. */
1037typedef const X86PTEPAE *PCX86PTEPAE;
1038/** @} */
1039
1040/**
1041 * Page table.
1042 */
1043typedef struct X86PT
1044{
1045 /** PTE Array. */
1046 X86PTE a[X86_PG_ENTRIES];
1047} X86PT;
1048/** Pointer to a page table. */
1049typedef X86PT *PX86PT;
1050/** Pointer to a const page table. */
1051typedef const X86PT *PCX86PT;
1052
1053/** The page shift to get the PT index. */
1054#define X86_PT_SHIFT 12
1055/** The PT index mask (apply to a shifted page address). */
1056#define X86_PT_MASK 0x3ff
1057
1058
1059/**
1060 * Page directory.
1061 */
1062typedef struct X86PTPAE
1063{
1064 /** PTE Array. */
1065 X86PTEPAE a[X86_PG_PAE_ENTRIES];
1066} X86PTPAE;
1067/** Pointer to a page table. */
1068typedef X86PTPAE *PX86PTPAE;
1069/** Pointer to a const page table. */
1070typedef const X86PTPAE *PCX86PTPAE;
1071
1072/** The page shift to get the PA PTE index. */
1073#define X86_PT_PAE_SHIFT 12
1074/** The PAE PT index mask (apply to a shifted page address). */
1075#define X86_PT_PAE_MASK 0x1ff
1076
1077
1078/** @name 4KB Page Directory Entry
1079 * @{
1080 */
1081/** Bit 0 - P - Present bit. */
1082#define X86_PDE_P RT_BIT(0)
1083/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1084#define X86_PDE_RW RT_BIT(1)
1085/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1086#define X86_PDE_US RT_BIT(2)
1087/** Bit 3 - PWT - Page level write thru bit. */
1088#define X86_PDE_PWT RT_BIT(3)
1089/** Bit 4 - PCD - Page level cache disable bit. */
1090#define X86_PDE_PCD RT_BIT(4)
1091/** Bit 5 - A - Access bit. */
1092#define X86_PDE_A RT_BIT(5)
1093/** Bit 7 - PS - Page size attribute.
1094 * Clear mean 4KB pages, set means large pages (2/4MB). */
1095#define X86_PDE_PS RT_BIT(7)
1096/** Bits 9-11 - - Available for use to system software. */
1097#define X86_PDE_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1098/** Bits 12-31 - - Physical Page number of the next level. */
1099#define X86_PDE_PG_MASK ( 0xfffff000 )
1100
1101/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1102#if 1 /* we're using this internally and have to mask of the top 16-bit. */
1103#define X86_PDE_PAE_PG_MASK ( 0x0000fffffffff000ULL )
1104#else
1105#define X86_PDE_PAE_PG_MASK ( 0x000ffffffffff000ULL )
1106#endif
1107/** Bits 63 - NX - PAE - No execution flag. */
1108#define X86_PDE_PAE_NX RT_BIT_64(63)
1109
1110/**
1111 * Page directory entry.
1112 */
1113typedef struct X86PDEBITS
1114{
1115 /** Flags whether(=1) or not the page is present. */
1116 unsigned u1Present : 1;
1117 /** Read(=0) / Write(=1) flag. */
1118 unsigned u1Write : 1;
1119 /** User(=1) / Supervisor (=0) flag. */
1120 unsigned u1User : 1;
1121 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1122 unsigned u1WriteThru : 1;
1123 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1124 unsigned u1CacheDisable : 1;
1125 /** Accessed flag.
1126 * Indicates that the page have been read or written to. */
1127 unsigned u1Accessed : 1;
1128 /** Reserved / Ignored (dirty bit). */
1129 unsigned u1Reserved0 : 1;
1130 /** Size bit if PSE is enabled - in any event it's 0. */
1131 unsigned u1Size : 1;
1132 /** Reserved / Ignored (global bit). */
1133 unsigned u1Reserved1 : 1;
1134 /** Available for use to system software. */
1135 unsigned u3Available : 3;
1136 /** Physical Page number of the next level. */
1137 unsigned u20PageNo : 20;
1138} X86PDEBITS;
1139/** Pointer to a page directory entry. */
1140typedef X86PDEBITS *PX86PDEBITS;
1141/** Pointer to a const page directory entry. */
1142typedef const X86PDEBITS *PCX86PDEBITS;
1143
1144
1145/**
1146 * PAE page directory entry.
1147 */
1148typedef struct X86PDEPAEBITS
1149{
1150 /** Flags whether(=1) or not the page is present. */
1151 uint32_t u1Present : 1;
1152 /** Read(=0) / Write(=1) flag. */
1153 uint32_t u1Write : 1;
1154 /** User(=1) / Supervisor (=0) flag. */
1155 uint32_t u1User : 1;
1156 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1157 uint32_t u1WriteThru : 1;
1158 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1159 uint32_t u1CacheDisable : 1;
1160 /** Accessed flag.
1161 * Indicates that the page have been read or written to. */
1162 uint32_t u1Accessed : 1;
1163 /** Reserved / Ignored (dirty bit). */
1164 uint32_t u1Reserved0 : 1;
1165 /** Size bit if PSE is enabled - in any event it's 0. */
1166 uint32_t u1Size : 1;
1167 /** Reserved / Ignored (global bit). / */
1168 uint32_t u1Reserved1 : 1;
1169 /** Available for use to system software. */
1170 uint32_t u3Available : 3;
1171 /** Physical Page number of the next level - Low Part. Don't use! */
1172 uint32_t u20PageNoLow : 20;
1173 /** Physical Page number of the next level - High Part. Don't use! */
1174 uint32_t u20PageNoHigh : 20;
1175 /** MBZ bits */
1176 uint32_t u11Reserved : 11;
1177 /** No Execute flag. */
1178 uint32_t u1NoExecute : 1;
1179} X86PDEPAEBITS;
1180/** Pointer to a page directory entry. */
1181typedef X86PDEPAEBITS *PX86PDEPAEBITS;
1182/** Pointer to a const page directory entry. */
1183typedef const X86PDEPAEBITS *PCX86PDEPAEBITS;
1184
1185/** @} */
1186
1187
1188/** @name 2/4MB Page Directory Entry
1189 * @{
1190 */
1191/** Bit 0 - P - Present bit. */
1192#define X86_PDE4M_P RT_BIT(0)
1193/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1194#define X86_PDE4M_RW RT_BIT(1)
1195/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1196#define X86_PDE4M_US RT_BIT(2)
1197/** Bit 3 - PWT - Page level write thru bit. */
1198#define X86_PDE4M_PWT RT_BIT(3)
1199/** Bit 4 - PCD - Page level cache disable bit. */
1200#define X86_PDE4M_PCD RT_BIT(4)
1201/** Bit 5 - A - Access bit. */
1202#define X86_PDE4M_A RT_BIT(5)
1203/** Bit 6 - D - Dirty bit. */
1204#define X86_PDE4M_D RT_BIT(6)
1205/** Bit 7 - PS - Page size attribute. Clear mean 4KB pages, set means large pages (2/4MB). */
1206#define X86_PDE4M_PS RT_BIT(7)
1207/** Bit 8 - G - Global flag. */
1208#define X86_PDE4M_G RT_BIT(8)
1209/** Bits 9-11 - AVL - Available for use to system software. */
1210#define X86_PDE4M_AVL (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1211/** Bit 12 - PAT - Page Attribute Table index bit. Reserved and 0 if not supported. */
1212#define X86_PDE4M_PAT RT_BIT(12)
1213/** Shift to get from X86_PTE_PAT to X86_PDE4M_PAT. */
1214#define X86_PDE4M_PAT_SHIFT (12 - 7)
1215/** Bits 22-31 - - Physical Page number. */
1216#define X86_PDE4M_PG_MASK ( 0xffc00000 )
1217/** Bits 13-20 - - Physical Page number high part (32-39 bits). AMD64 hack. */
1218#define X86_PDE4M_PG_HIGH_MASK ( 0x001fe000 )
1219/** The number of bits to the high part of the page number. */
1220#define X86_PDE4M_PG_HIGH_SHIFT 19
1221
1222/** Bits 21-51 - - PAE & AMD64 - Physical Page number.
1223 * (Bits 40-51 (long mode) & bits 36-51 (pae legacy) are reserved according to the Intel docs; AMD allows for more.) */
1224#define X86_PDE2M_PAE_PG_MASK ( 0x000fffffffe00000ULL )
1225/** Bits 63 - NX - PAE & AMD64 - No execution flag. */
1226#define X86_PDE2M_PAE_NX X86_PDE2M_PAE_NX
1227
1228/**
1229 * 4MB page directory entry.
1230 */
1231typedef struct X86PDE4MBITS
1232{
1233 /** Flags whether(=1) or not the page is present. */
1234 unsigned u1Present : 1;
1235 /** Read(=0) / Write(=1) flag. */
1236 unsigned u1Write : 1;
1237 /** User(=1) / Supervisor (=0) flag. */
1238 unsigned u1User : 1;
1239 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1240 unsigned u1WriteThru : 1;
1241 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1242 unsigned u1CacheDisable : 1;
1243 /** Accessed flag.
1244 * Indicates that the page have been read or written to. */
1245 unsigned u1Accessed : 1;
1246 /** Dirty flag.
1247 * Indicates that the page have been written to. */
1248 unsigned u1Dirty : 1;
1249 /** Page size flag - always 1 for 4MB entries. */
1250 unsigned u1Size : 1;
1251 /** Global flag. */
1252 unsigned u1Global : 1;
1253 /** Available for use to system software. */
1254 unsigned u3Available : 3;
1255 /** Reserved / If PAT enabled, bit 2 of the index. */
1256 unsigned u1PAT : 1;
1257 /** Bits 32-39 of the page number on AMD64.
1258 * This AMD64 hack allows accessing 40bits of physical memory without PAE. */
1259 unsigned u8PageNoHigh : 8;
1260 /** Reserved. */
1261 unsigned u1Reserved : 1;
1262 /** Physical Page number of the page. */
1263 unsigned u10PageNo : 10;
1264} X86PDE4MBITS;
1265/** Pointer to a page table entry. */
1266typedef X86PDE4MBITS *PX86PDE4MBITS;
1267/** Pointer to a const page table entry. */
1268typedef const X86PDE4MBITS *PCX86PDE4MBITS;
1269
1270
1271/**
1272 * 2MB PAE page directory entry.
1273 */
1274typedef struct X86PDE2MPAEBITS
1275{
1276 /** Flags whether(=1) or not the page is present. */
1277 uint32_t u1Present : 1;
1278 /** Read(=0) / Write(=1) flag. */
1279 uint32_t u1Write : 1;
1280 /** User(=1) / Supervisor(=0) flag. */
1281 uint32_t u1User : 1;
1282 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1283 uint32_t u1WriteThru : 1;
1284 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1285 uint32_t u1CacheDisable : 1;
1286 /** Accessed flag.
1287 * Indicates that the page have been read or written to. */
1288 uint32_t u1Accessed : 1;
1289 /** Dirty flag.
1290 * Indicates that the page have been written to. */
1291 uint32_t u1Dirty : 1;
1292 /** Page size flag - always 1 for 2MB entries. */
1293 uint32_t u1Size : 1;
1294 /** Global flag. */
1295 uint32_t u1Global : 1;
1296 /** Available for use to system software. */
1297 uint32_t u3Available : 3;
1298 /** Reserved / If PAT enabled, bit 2 of the index. */
1299 uint32_t u1PAT : 1;
1300 /** Reserved. */
1301 uint32_t u9Reserved : 9;
1302 /** Physical Page number of the next level - Low part. Don't use! */
1303 uint32_t u10PageNoLow : 10;
1304 /** Physical Page number of the next level - High part. Don't use! */
1305 uint32_t u20PageNoHigh : 20;
1306 /** MBZ bits */
1307 uint32_t u11Reserved : 11;
1308 /** No Execute flag. */
1309 uint32_t u1NoExecute : 1;
1310} X86PDE2MPAEBITS;
1311/** Pointer to a 4MB PAE page table entry. */
1312typedef X86PDE2MPAEBITS *PX86PDE2MPAEBITS;
1313/** Pointer to a 4MB PAE page table entry. */
1314typedef const X86PDE2MPAEBITS *PCX86PDE2MPAEBITS;
1315
1316/** @} */
1317
1318/**
1319 * Page directory entry.
1320 */
1321typedef union X86PDE
1322{
1323 /** Normal view. */
1324 X86PDEBITS n;
1325 /** 4MB view (big). */
1326 X86PDE4MBITS b;
1327 /** Unsigned integer view. */
1328 X86PGUINT u;
1329 /** 8 bit unsigned integer view. */
1330 uint8_t au8[4];
1331 /** 16 bit unsigned integer view. */
1332 uint16_t au16[2];
1333 /** 32 bit unsigned integer view. */
1334 uint32_t au32[1];
1335} X86PDE;
1336/** Pointer to a page directory entry. */
1337typedef X86PDE *PX86PDE;
1338/** Pointer to a const page directory entry. */
1339typedef const X86PDE *PCX86PDE;
1340
1341/**
1342 * PAE page directory entry.
1343 */
1344typedef union X86PDEPAE
1345{
1346 /** Normal view. */
1347 X86PDEPAEBITS n;
1348 /** 2MB page view (big). */
1349 X86PDE2MPAEBITS b;
1350 /** Unsigned integer view. */
1351 X86PGPAEUINT u;
1352 /** 8 bit unsigned integer view. */
1353 uint8_t au8[8];
1354 /** 16 bit unsigned integer view. */
1355 uint16_t au16[4];
1356 /** 32 bit unsigned integer view. */
1357 uint32_t au32[2];
1358} X86PDEPAE;
1359/** Pointer to a page directory entry. */
1360typedef X86PDEPAE *PX86PDEPAE;
1361/** Pointer to a const page directory entry. */
1362typedef const X86PDEPAE *PCX86PDEPAE;
1363
1364/**
1365 * Page directory.
1366 */
1367typedef struct X86PD
1368{
1369 /** PDE Array. */
1370 X86PDE a[X86_PG_ENTRIES];
1371} X86PD;
1372/** Pointer to a page directory. */
1373typedef X86PD *PX86PD;
1374/** Pointer to a const page directory. */
1375typedef const X86PD *PCX86PD;
1376
1377/** The page shift to get the PD index. */
1378#define X86_PD_SHIFT 22
1379/** The PD index mask (apply to a shifted page address). */
1380#define X86_PD_MASK 0x3ff
1381
1382
1383/**
1384 * PAE page directory.
1385 */
1386typedef struct X86PDPAE
1387{
1388 /** PDE Array. */
1389 X86PDEPAE a[X86_PG_PAE_ENTRIES];
1390} X86PDPAE;
1391/** Pointer to a PAE page directory. */
1392typedef X86PDPAE *PX86PDPAE;
1393/** Pointer to a const PAE page directory. */
1394typedef const X86PDPAE *PCX86PDPAE;
1395
1396/** The page shift to get the PAE PD index. */
1397#define X86_PD_PAE_SHIFT 21
1398/** The PAE PD index mask (apply to a shifted page address). */
1399#define X86_PD_PAE_MASK 0x1ff
1400
1401
1402/** @name Page Directory Pointer Table Entry (PAE)
1403 * @{
1404 */
1405/** Bit 0 - P - Present bit. */
1406#define X86_PDPE_P RT_BIT(0)
1407/** Bit 1 - R/W - Read (clear) / Write (set) bit. Long Mode only. */
1408#define X86_PDPE_RW RT_BIT(1)
1409/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. Long Mode only. */
1410#define X86_PDPE_US RT_BIT(2)
1411/** Bit 3 - PWT - Page level write thru bit. */
1412#define X86_PDPE_PWT RT_BIT(3)
1413/** Bit 4 - PCD - Page level cache disable bit. */
1414#define X86_PDPE_PCD RT_BIT(4)
1415/** Bit 5 - A - Access bit. Long Mode only. */
1416#define X86_PDPE_A RT_BIT(5)
1417/** Bits 9-11 - - Available for use to system software. */
1418#define X86_PDPE_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1419/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1420#if 1 /* we're using this internally and have to mask of the top 16-bit. */
1421#define X86_PDPE_PG_MASK ( 0x0000fffffffff000ULL )
1422#else
1423#define X86_PDPE_PG_MASK ( 0x000ffffffffff000ULL )
1424#endif
1425/** Bits 63 - NX - PAE - No execution flag. Long Mode only. */
1426#define X86_PDPE_NX RT_BIT_64(63)
1427
1428/**
1429 * Page directory pointer table entry.
1430 */
1431typedef struct X86PDPEBITS
1432{
1433 /** Flags whether(=1) or not the page is present. */
1434 uint32_t u1Present : 1;
1435 /** Read(=0) / Write(=1) flag. */
1436 uint32_t u1Write : 1;
1437 /** User(=1) / Supervisor (=0) flag. */
1438 uint32_t u1User : 1;
1439 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1440 uint32_t u1WriteThru : 1;
1441 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1442 uint32_t u1CacheDisable : 1;
1443 /** Accessed flag.
1444 * Indicates that the page have been read or written to. */
1445 uint32_t u1Accessed : 1;
1446 /** Chunk of reserved bits. */
1447 uint32_t u3Reserved : 3;
1448 /** Available for use to system software. */
1449 uint32_t u3Available : 3;
1450 /** Physical Page number of the next level - Low Part. Don't use! */
1451 uint32_t u20PageNoLow : 20;
1452 /** Physical Page number of the next level - High Part. Don't use! */
1453 uint32_t u20PageNoHigh : 20;
1454 /** MBZ bits */
1455 uint32_t u11Reserved : 11;
1456 /** No Execute flag. */
1457 uint32_t u1NoExecute : 1;
1458} X86PDPEBITS;
1459/** Pointer to a page directory pointer table entry. */
1460typedef X86PDPEBITS *PX86PTPEBITS;
1461/** Pointer to a const page directory pointer table entry. */
1462typedef const X86PDPEBITS *PCX86PTPEBITS;
1463
1464/**
1465 * Page directory pointer table entry.
1466 */
1467typedef union X86PDPE
1468{
1469 /** Normal view. */
1470 X86PDPEBITS n;
1471 /** Unsigned integer view. */
1472 X86PGPAEUINT u;
1473 /** 8 bit unsigned integer view. */
1474 uint8_t au8[8];
1475 /** 16 bit unsigned integer view. */
1476 uint16_t au16[4];
1477 /** 32 bit unsigned integer view. */
1478 uint32_t au32[2];
1479} X86PDPE;
1480/** Pointer to a page directory pointer table entry. */
1481typedef X86PDPE *PX86PDPE;
1482/** Pointer to a const page directory pointer table entry. */
1483typedef const X86PDPE *PCX86PDPE;
1484
1485
1486/**
1487 * Page directory pointer table.
1488 */
1489typedef struct X86PDPT
1490{
1491 /** PDE Array. */
1492 X86PDPE a[X86_PG_AMD64_PDPE_ENTRIES];
1493} X86PDPT;
1494/** Pointer to a page directory pointer table. */
1495typedef X86PDPT *PX86PDPT;
1496/** Pointer to a const page directory pointer table. */
1497typedef const X86PDPT *PCX86PDPT;
1498
1499/** The page shift to get the PDPT index. */
1500#define X86_PDPT_SHIFT 30
1501/** The PDPT index mask (apply to a shifted page address). (32 bits PAE) */
1502#define X86_PDPT_MASK_PAE 0x3
1503/** The PDPT index mask (apply to a shifted page address). (64 bits PAE)*/
1504#define X86_PDPT_MASK_AMD64 0x1ff
1505
1506/** @} */
1507
1508
1509/** @name Page Map Level-4 Entry (Long Mode PAE)
1510 * @{
1511 */
1512/** Bit 0 - P - Present bit. */
1513#define X86_PML4E_P RT_BIT(0)
1514/** Bit 1 - R/W - Read (clear) / Write (set) bit. */
1515#define X86_PML4E_RW RT_BIT(1)
1516/** Bit 2 - U/S - User (set) / Supervisor (clear) bit. */
1517#define X86_PML4E_US RT_BIT(2)
1518/** Bit 3 - PWT - Page level write thru bit. */
1519#define X86_PML4E_PWT RT_BIT(3)
1520/** Bit 4 - PCD - Page level cache disable bit. */
1521#define X86_PML4E_PCD RT_BIT(4)
1522/** Bit 5 - A - Access bit. */
1523#define X86_PML4E_A RT_BIT(5)
1524/** Bits 9-11 - - Available for use to system software. */
1525#define X86_PML4E_AVL_MASK (RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
1526/** Bits 12-51 - - PAE - Physical Page number of the next level. */
1527#if 1 /* we're using this internally and have to mask of the top 16-bit. */
1528#define X86_PML4E_PG_MASK ( 0x0000fffffffff000ULL )
1529#else
1530#define X86_PML4E_PG_MASK ( 0x000ffffffffff000ULL )
1531#endif
1532/** Bits 63 - NX - PAE - No execution flag. */
1533#define X86_PML4E_NX RT_BIT_64(63)
1534
1535/**
1536 * Page Map Level-4 Entry
1537 */
1538typedef struct X86PML4EBITS
1539{
1540 /** Flags whether(=1) or not the page is present. */
1541 uint32_t u1Present : 1;
1542 /** Read(=0) / Write(=1) flag. */
1543 uint32_t u1Write : 1;
1544 /** User(=1) / Supervisor (=0) flag. */
1545 uint32_t u1User : 1;
1546 /** Write Thru flag. If PAT enabled, bit 0 of the index. */
1547 uint32_t u1WriteThru : 1;
1548 /** Cache disabled flag. If PAT enabled, bit 1 of the index. */
1549 uint32_t u1CacheDisable : 1;
1550 /** Accessed flag.
1551 * Indicates that the page have been read or written to. */
1552 uint32_t u1Accessed : 1;
1553 /** Chunk of reserved bits. */
1554 uint32_t u3Reserved : 3;
1555 /** Available for use to system software. */
1556 uint32_t u3Available : 3;
1557 /** Physical Page number of the next level - Low Part. Don't use! */
1558 uint32_t u20PageNoLow : 20;
1559 /** Physical Page number of the next level - High Part. Don't use! */
1560 uint32_t u20PageNoHigh : 20;
1561 /** MBZ bits */
1562 uint32_t u11Reserved : 11;
1563 /** No Execute flag. */
1564 uint32_t u1NoExecute : 1;
1565} X86PML4EBITS;
1566/** Pointer to a page map level-4 entry. */
1567typedef X86PML4EBITS *PX86PML4EBITS;
1568/** Pointer to a const page map level-4 entry. */
1569typedef const X86PML4EBITS *PCX86PML4EBITS;
1570
1571/**
1572 * Page Map Level-4 Entry.
1573 */
1574typedef union X86PML4E
1575{
1576 /** Normal view. */
1577 X86PML4EBITS n;
1578 /** Unsigned integer view. */
1579 X86PGPAEUINT u;
1580 /** 8 bit unsigned integer view. */
1581 uint8_t au8[8];
1582 /** 16 bit unsigned integer view. */
1583 uint16_t au16[4];
1584 /** 32 bit unsigned integer view. */
1585 uint32_t au32[2];
1586} X86PML4E;
1587/** Pointer to a page map level-4 entry. */
1588typedef X86PML4E *PX86PML4E;
1589/** Pointer to a const page map level-4 entry. */
1590typedef const X86PML4E *PCX86PML4E;
1591
1592
1593/**
1594 * Page Map Level-4.
1595 */
1596typedef struct X86PML4
1597{
1598 /** PDE Array. */
1599 X86PML4E a[X86_PG_PAE_ENTRIES];
1600} X86PML4;
1601/** Pointer to a page map level-4. */
1602typedef X86PML4 *PX86PML4;
1603/** Pointer to a const page map level-4. */
1604typedef const X86PML4 *PCX86PML4;
1605
1606/** The page shift to get the PML4 index. */
1607#define X86_PML4_SHIFT 39
1608/** The PML4 index mask (apply to a shifted page address). */
1609#define X86_PML4_MASK 0x1ff
1610
1611/** @} */
1612
1613/** @} */
1614
1615
1616/**
1617 * 80-bit MMX/FPU register type.
1618 */
1619typedef struct X86FPUMMX
1620{
1621 uint8_t reg[10];
1622} X86FPUMMX;
1623/** Pointer to a 80-bit MMX/FPU register type. */
1624typedef X86FPUMMX *PX86FPUMMX;
1625/** Pointer to a const 80-bit MMX/FPU register type. */
1626typedef const X86FPUMMX *PCX86FPUMMX;
1627
1628/**
1629 * FPU state (aka FSAVE/FRSTOR Memory Region).
1630 */
1631#pragma pack(1)
1632typedef struct X86FPUSTATE
1633{
1634 /** Control word. */
1635 uint16_t FCW;
1636 /** Alignment word */
1637 uint16_t Dummy1;
1638 /** Status word. */
1639 uint16_t FSW;
1640 /** Alignment word */
1641 uint16_t Dummy2;
1642 /** Tag word */
1643 uint16_t FTW;
1644 /** Alignment word */
1645 uint16_t Dummy3;
1646
1647 /** Instruction pointer. */
1648 uint32_t FPUIP;
1649 /** Code selector. */
1650 uint16_t CS;
1651 /** Opcode. */
1652 uint16_t FOP;
1653 /** FOO. */
1654 uint32_t FPUOO;
1655 /** FOS. */
1656 uint32_t FPUOS;
1657 /** FPU view - todo. */
1658 X86FPUMMX regs[8];
1659} X86FPUSTATE;
1660#pragma pack()
1661/** Pointer to a FPU state. */
1662typedef X86FPUSTATE *PX86FPUSTATE;
1663/** Pointer to a const FPU state. */
1664typedef const X86FPUSTATE *PCX86FPUSTATE;
1665
1666/**
1667 * FPU Extended state (aka FXSAVE/FXRSTORE Memory Region).
1668 */
1669#pragma pack(1)
1670typedef struct X86FXSTATE
1671{
1672 /** Control word. */
1673 uint16_t FCW;
1674 /** Status word. */
1675 uint16_t FSW;
1676 /** Tag word (it's a byte actually). */
1677 uint8_t FTW;
1678 uint8_t huh1;
1679 /** Opcode. */
1680 uint16_t FOP;
1681 /** Instruction pointer. */
1682 uint32_t FPUIP;
1683 /** Code selector. */
1684 uint16_t CS;
1685 uint16_t Rsvrd1;
1686 /* - offset 16 - */
1687 /** Data pointer. */
1688 uint32_t FPUDP;
1689 /** Data segment */
1690 uint16_t DS;
1691 uint16_t Rsrvd2;
1692 uint32_t MXCSR;
1693 uint32_t MXCSR_MASK;
1694 /* - offset 32 - */
1695 union
1696 {
1697 /** MMX view. */
1698 uint64_t mmx;
1699 /** FPU view - todo. */
1700 X86FPUMMX fpu;
1701 /** 8-bit view. */
1702 uint8_t au8[16];
1703 /** 16-bit view. */
1704 uint16_t au16[8];
1705 /** 32-bit view. */
1706 uint32_t au32[4];
1707 /** 64-bit view. */
1708 uint64_t au64[2];
1709 /** 128-bit view. (yeah, very helpful) */
1710 uint128_t au128[1];
1711 } aRegs[8];
1712 /* - offset 160 - */
1713 union
1714 {
1715 /** XMM Register view *. */
1716 uint128_t xmm;
1717 /** 8-bit view. */
1718 uint8_t au8[16];
1719 /** 16-bit view. */
1720 uint16_t au16[8];
1721 /** 32-bit view. */
1722 uint32_t au32[4];
1723 /** 64-bit view. */
1724 uint64_t au64[2];
1725 /** 128-bit view. (yeah, very helpful) */
1726 uint128_t au128[1];
1727 } aXMM[16]; /* 8 registers in 32 bits mode; 16 in long mode */
1728 /* - offset 416 - */
1729 uint32_t au32RsrvdRest[(512 - 416) / sizeof(uint32_t)];
1730} X86FXSTATE;
1731#pragma pack()
1732/** Pointer to a FPU Extended state. */
1733typedef X86FXSTATE *PX86FXSTATE;
1734/** Pointer to a const FPU Extended state. */
1735typedef const X86FXSTATE *PCX86FXSTATE;
1736
1737
1738/** @name Selector Descriptor
1739 * @{
1740 */
1741
1742/**
1743 * Generic descriptor table entry
1744 */
1745#pragma pack(1)
1746typedef struct X86DESCGENERIC
1747{
1748 /** Limit - Low word. */
1749 unsigned u16LimitLow : 16;
1750 /** Base address - lowe word.
1751 * Don't try set this to 24 because MSC is doing studing things then. */
1752 unsigned u16BaseLow : 16;
1753 /** Base address - first 8 bits of high word. */
1754 unsigned u8BaseHigh1 : 8;
1755 /** Segment Type. */
1756 unsigned u4Type : 4;
1757 /** Descriptor Type. System(=0) or code/data selector */
1758 unsigned u1DescType : 1;
1759 /** Descriptor Privelege level. */
1760 unsigned u2Dpl : 2;
1761 /** Flags selector present(=1) or not. */
1762 unsigned u1Present : 1;
1763 /** Segment limit 16-19. */
1764 unsigned u4LimitHigh : 4;
1765 /** Available for system software. */
1766 unsigned u1Available : 1;
1767 /** Reserved - 0. */
1768 unsigned u1Reserved : 1;
1769 /** This flags meaning depends on the segment type. Try make sense out
1770 * of the intel manual yourself. */
1771 unsigned u1DefBig : 1;
1772 /** Granularity of the limit. If set 4KB granularity is used, if
1773 * clear byte. */
1774 unsigned u1Granularity : 1;
1775 /** Base address - highest 8 bits. */
1776 unsigned u8BaseHigh2 : 8;
1777} X86DESCGENERIC;
1778#pragma pack()
1779/** Pointer to a generic descriptor entry. */
1780typedef X86DESCGENERIC *PX86DESCGENERIC;
1781/** Pointer to a const generic descriptor entry. */
1782typedef const X86DESCGENERIC *PCX86DESCGENERIC;
1783
1784
1785/**
1786 * Descriptor attributes.
1787 */
1788typedef struct X86DESCATTRBITS
1789{
1790 /** Segment Type. */
1791 unsigned u4Type : 4;
1792 /** Descriptor Type. System(=0) or code/data selector */
1793 unsigned u1DescType : 1;
1794 /** Descriptor Privelege level. */
1795 unsigned u2Dpl : 2;
1796 /** Flags selector present(=1) or not. */
1797 unsigned u1Present : 1;
1798 /** Segment limit 16-19. */
1799 unsigned u4LimitHigh : 4;
1800 /** Available for system software. */
1801 unsigned u1Available : 1;
1802 /** Reserved - 0. */
1803 unsigned u1Reserved : 1;
1804 /** This flags meaning depends on the segment type. Try make sense out
1805 * of the intel manual yourself. */
1806 unsigned u1DefBig : 1;
1807 /** Granularity of the limit. If set 4KB granularity is used, if
1808 * clear byte. */
1809 unsigned u1Granularity : 1;
1810} X86DESCATTRBITS;
1811
1812
1813#pragma pack(1)
1814typedef union X86DESCATTR
1815{
1816 /** Normal view. */
1817 X86DESCATTRBITS n;
1818 /** Unsigned integer view. */
1819 uint32_t u;
1820} X86DESCATTR;
1821#pragma pack()
1822
1823/** Pointer to descriptor attributes. */
1824typedef X86DESCATTR *PX86DESCATTR;
1825/** Pointer to const descriptor attributes. */
1826typedef const X86DESCATTR *PCX86DESCATTR;
1827
1828
1829/**
1830 * Descriptor table entry.
1831 */
1832#pragma pack(1)
1833typedef union X86DESC
1834{
1835 /** Generic descriptor view. */
1836 X86DESCGENERIC Gen;
1837#if 0
1838 /** IDT view. */
1839 VBOXIDTE Idt;
1840#endif
1841
1842 /** 8 bit unsigned interger view. */
1843 uint8_t au8[8];
1844 /** 16 bit unsigned interger view. */
1845 uint16_t au16[4];
1846 /** 32 bit unsigned interger view. */
1847 uint32_t au32[2];
1848} X86DESC;
1849#pragma pack()
1850/** Pointer to descriptor table entry. */
1851typedef X86DESC *PX86DESC;
1852/** Pointer to const descriptor table entry. */
1853typedef const X86DESC *PCX86DESC;
1854
1855
1856/**
1857 * 64 bits generic descriptor table entry
1858 * Note: most of these bits have no meaning in long mode.
1859 */
1860#pragma pack(1)
1861typedef struct X86DESC64GENERIC
1862{
1863 /** Limit - Low word - *IGNORED*. */
1864 unsigned u16LimitLow : 16;
1865 /** Base address - lowe word. - *IGNORED*
1866 * Don't try set this to 24 because MSC is doing studing things then. */
1867 unsigned u16BaseLow : 16;
1868 /** Base address - first 8 bits of high word. - *IGNORED* */
1869 unsigned u8BaseHigh1 : 8;
1870 /** Segment Type. */
1871 unsigned u4Type : 4;
1872 /** Descriptor Type. System(=0) or code/data selector */
1873 unsigned u1DescType : 1;
1874 /** Descriptor Privelege level. */
1875 unsigned u2Dpl : 2;
1876 /** Flags selector present(=1) or not. */
1877 unsigned u1Present : 1;
1878 /** Segment limit 16-19. - *IGNORED* */
1879 unsigned u4LimitHigh : 4;
1880 /** Available for system software. - *IGNORED* */
1881 unsigned u1Available : 1;
1882 /** Long mode flag. */
1883 unsigned u1Long : 1;
1884 /** This flags meaning depends on the segment type. Try make sense out
1885 * of the intel manual yourself. */
1886 unsigned u1DefBig : 1;
1887 /** Granularity of the limit. If set 4KB granularity is used, if
1888 * clear byte. - *IGNORED* */
1889 unsigned u1Granularity : 1;
1890 /** Base address - highest 8 bits. - *IGNORED* */
1891 unsigned u8BaseHigh2 : 8;
1892 /** Base address - bits 63-32. */
1893 unsigned u32BaseHigh3 : 32;
1894 unsigned u8Reserved : 8;
1895 unsigned u5Zeros : 5;
1896 unsigned u19Reserved : 19;
1897} X86DESC64GENERIC;
1898#pragma pack()
1899/** Pointer to a generic descriptor entry. */
1900typedef X86DESC64GENERIC *PX86DESC64GENERIC;
1901/** Pointer to a const generic descriptor entry. */
1902typedef const X86DESC64GENERIC *PCX86DESC64GENERIC;
1903
1904/**
1905 * System descriptor table entry (64 bits)
1906 */
1907#pragma pack(1)
1908typedef struct X86DESC64SYSTEM
1909{
1910 /** Limit - Low word. */
1911 unsigned u16LimitLow : 16;
1912 /** Base address - lowe word.
1913 * Don't try set this to 24 because MSC is doing studing things then. */
1914 unsigned u16BaseLow : 16;
1915 /** Base address - first 8 bits of high word. */
1916 unsigned u8BaseHigh1 : 8;
1917 /** Segment Type. */
1918 unsigned u4Type : 4;
1919 /** Descriptor Type. System(=0) or code/data selector */
1920 unsigned u1DescType : 1;
1921 /** Descriptor Privelege level. */
1922 unsigned u2Dpl : 2;
1923 /** Flags selector present(=1) or not. */
1924 unsigned u1Present : 1;
1925 /** Segment limit 16-19. */
1926 unsigned u4LimitHigh : 4;
1927 /** Available for system software. */
1928 unsigned u1Available : 1;
1929 /** Reserved - 0. */
1930 unsigned u1Reserved : 1;
1931 /** This flags meaning depends on the segment type. Try make sense out
1932 * of the intel manual yourself. */
1933 unsigned u1DefBig : 1;
1934 /** Granularity of the limit. If set 4KB granularity is used, if
1935 * clear byte. */
1936 unsigned u1Granularity : 1;
1937 /** Base address - bits 31-24. */
1938 unsigned u8BaseHigh2 : 8;
1939 /** Base address - bits 63-32. */
1940 unsigned u32BaseHigh3 : 32;
1941 unsigned u8Reserved : 8;
1942 unsigned u5Zeros : 5;
1943 unsigned u19Reserved : 19;
1944} X86DESC64SYSTEM;
1945#pragma pack()
1946/** Pointer to a generic descriptor entry. */
1947typedef X86DESC64SYSTEM *PX86DESC64SYSTEM;
1948/** Pointer to a const generic descriptor entry. */
1949typedef const X86DESC64SYSTEM *PCX86DESC64SYSTEM;
1950
1951
1952/**
1953 * Descriptor table entry.
1954 */
1955#pragma pack(1)
1956typedef union X86DESC64
1957{
1958 /** Generic descriptor view. */
1959 X86DESC64GENERIC Gen;
1960 /** System descriptor view. */
1961 X86DESC64SYSTEM System;
1962#if 0
1963 X86DESC64GATE Gate;
1964#endif
1965
1966 /** 8 bit unsigned interger view. */
1967 uint8_t au8[16];
1968 /** 16 bit unsigned interger view. */
1969 uint16_t au16[8];
1970 /** 32 bit unsigned interger view. */
1971 uint32_t au32[4];
1972 /** 64 bit unsigned interger view. */
1973 uint64_t au64[2];
1974} X86DESC64;
1975#pragma pack()
1976/** Pointer to descriptor table entry. */
1977typedef X86DESC64 *PX86DESC64;
1978/** Pointer to const descriptor table entry. */
1979typedef const X86DESC64 *PCX86DESC64;
1980
1981#if HC_ARCH_BITS == 64
1982typedef X86DESC64 X86DESCHC;
1983typedef X86DESC64 *PX86DESCHC;
1984#else
1985typedef X86DESC X86DESCHC;
1986typedef X86DESC *PX86DESCHC;
1987#endif
1988
1989/** @name Selector Descriptor Types.
1990 * @{
1991 */
1992
1993/** @name Non-System Selector Types.
1994 * @{ */
1995/** Code(=set)/Data(=clear) bit. */
1996#define X86_SEL_TYPE_CODE 8
1997/** Memory(=set)/System(=clear) bit. */
1998#define X86_SEL_TYPE_MEMORY RT_BIT(4)
1999/** Accessed bit. */
2000#define X86_SEL_TYPE_ACCESSED 1
2001/** Expand down bit (for data selectors only). */
2002#define X86_SEL_TYPE_DOWN 4
2003/** Conforming bit (for code selectors only). */
2004#define X86_SEL_TYPE_CONF 4
2005/** Write bit (for data selectors only). */
2006#define X86_SEL_TYPE_WRITE 2
2007/** Read bit (for code selectors only). */
2008#define X86_SEL_TYPE_READ 2
2009
2010/** Read only selector type. */
2011#define X86_SEL_TYPE_RO 0
2012/** Accessed read only selector type. */
2013#define X86_SEL_TYPE_RO_ACC (0 | X86_SEL_TYPE_ACCESSED)
2014/** Read write selector type. */
2015#define X86_SEL_TYPE_RW 2
2016/** Accessed read write selector type. */
2017#define X86_SEL_TYPE_RW_ACC (2 | X86_SEL_TYPE_ACCESSED)
2018/** Expand down read only selector type. */
2019#define X86_SEL_TYPE_RO_DOWN 4
2020/** Accessed expand down read only selector type. */
2021#define X86_SEL_TYPE_RO_DOWN_ACC (4 | X86_SEL_TYPE_ACCESSED)
2022/** Expand down read write selector type. */
2023#define X86_SEL_TYPE_RW_DOWN 6
2024/** Accessed expand down read write selector type. */
2025#define X86_SEL_TYPE_RW_DOWN_ACC (6 | X86_SEL_TYPE_ACCESSED)
2026/** Execute only selector type. */
2027#define X86_SEL_TYPE_EO (0 | X86_SEL_TYPE_CODE)
2028/** Accessed execute only selector type. */
2029#define X86_SEL_TYPE_EO_ACC (0 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2030/** Execute and read selector type. */
2031#define X86_SEL_TYPE_ER (2 | X86_SEL_TYPE_CODE)
2032/** Accessed execute and read selector type. */
2033#define X86_SEL_TYPE_ER_ACC (2 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2034/** Conforming execute only selector type. */
2035#define X86_SEL_TYPE_EO_CONF (4 | X86_SEL_TYPE_CODE)
2036/** Accessed Conforming execute only selector type. */
2037#define X86_SEL_TYPE_EO_CONF_ACC (4 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2038/** Conforming execute and write selector type. */
2039#define X86_SEL_TYPE_ER_CONF (6 | X86_SEL_TYPE_CODE)
2040/** Accessed Conforming execute and write selector type. */
2041#define X86_SEL_TYPE_ER_CONF_ACC (6 | X86_SEL_TYPE_CODE | X86_SEL_TYPE_ACCESSED)
2042/** @} */
2043
2044
2045/** @name System Selector Types.
2046 * @{ */
2047/** Undefined system selector type. */
2048#define X86_SEL_TYPE_SYS_UNDEFINED 0
2049/** 286 TSS selector. */
2050#define X86_SEL_TYPE_SYS_286_TSS_AVAIL 1
2051/** LDT selector. */
2052#define X86_SEL_TYPE_SYS_LDT 2
2053/** 286 TSS selector - Busy. */
2054#define X86_SEL_TYPE_SYS_286_TSS_BUSY 3
2055/** 286 Callgate selector. */
2056#define X86_SEL_TYPE_SYS_286_CALL_GATE 4
2057/** Taskgate selector. */
2058#define X86_SEL_TYPE_SYS_TASK_GATE 5
2059/** 286 Interrupt gate selector. */
2060#define X86_SEL_TYPE_SYS_286_INT_GATE 6
2061/** 286 Trapgate selector. */
2062#define X86_SEL_TYPE_SYS_286_TRAP_GATE 7
2063/** Undefined system selector. */
2064#define X86_SEL_TYPE_SYS_UNDEFINED2 8
2065/** 386 TSS selector. */
2066#define X86_SEL_TYPE_SYS_386_TSS_AVAIL 9
2067/** Undefined system selector. */
2068#define X86_SEL_TYPE_SYS_UNDEFINED3 0xA
2069/** 386 TSS selector - Busy. */
2070#define X86_SEL_TYPE_SYS_386_TSS_BUSY 0xB
2071/** 386 Callgate selector. */
2072#define X86_SEL_TYPE_SYS_386_CALL_GATE 0xC
2073/** Undefined system selector. */
2074#define X86_SEL_TYPE_SYS_UNDEFINED4 0xD
2075/** 386 Interruptgate selector. */
2076#define X86_SEL_TYPE_SYS_386_INT_GATE 0xE
2077/** 386 Trapgate selector. */
2078#define X86_SEL_TYPE_SYS_386_TRAP_GATE 0xF
2079/** @} */
2080
2081/** @name AMD64 System Selector Types.
2082 * @{ */
2083#define AMD64_SEL_TYPE_SYS_LDT 2
2084/** 286 TSS selector - Busy. */
2085#define AMD64_SEL_TYPE_SYS_TSS_AVAIL 9
2086/** 386 TSS selector - Busy. */
2087#define AMD64_SEL_TYPE_SYS_TSS_BUSY 0xB
2088/** 386 Callgate selector. */
2089#define AMD64_SEL_TYPE_SYS_CALL_GATE 0xC
2090/** 386 Interruptgate selector. */
2091#define AMD64_SEL_TYPE_SYS_INT_GATE 0xE
2092/** 386 Trapgate selector. */
2093#define AMD64_SEL_TYPE_SYS_TRAP_GATE 0xF
2094/** @} */
2095
2096/** @} */
2097
2098
2099/** @name Descriptor Table Entry Flag Masks.
2100 * These are for the 2nd 32-bit word of a descriptor.
2101 * @{ */
2102/** Bits 8-11 - TYPE - Descriptor type mask. */
2103#define X86_DESC_TYPE_MASK (RT_BIT(8) | RT_BIT(9) | RT_BIT(10) | RT_BIT(11))
2104/** Bit 12 - S - System (=0) or Code/Data (=1). */
2105#define X86_DESC_S RT_BIT(12)
2106/** Bits 13-14 - DPL - Descriptor Privilege Level. */
2107#define X86_DESC_DPL (RT_BIT(13) | RT_BIT(14))
2108/** Bit 15 - P - Present. */
2109#define X86_DESC_P RT_BIT(15)
2110/** Bit 20 - AVL - Available for system software. */
2111#define X86_DESC_AVL RT_BIT(20)
2112/** Bit 22 - DB - Default operation size. 0 = 16 bit, 1 = 32 bit. */
2113#define X86_DESC_DB RT_BIT(22)
2114/** Bit 23 - G - Granularity of the limit. If set 4KB granularity is
2115 * used, if clear byte. */
2116#define X86_DESC_G RT_BIT(23)
2117/** @} */
2118
2119/** @} */
2120
2121
2122/** @name Selectors.
2123 * @{
2124 */
2125
2126/**
2127 * The shift used to convert a selector from and to index an index (C).
2128 */
2129#define X86_SEL_SHIFT 3
2130
2131/**
2132 * The shift used to convert a selector from and to index an index (C).
2133 */
2134#define AMD64_SEL_SHIFT 4
2135
2136#if HC_ARCH_BITS == 64
2137#define X86_SEL_SHIFT_HC AMD64_SEL_SHIFT
2138#else
2139#define X86_SEL_SHIFT_HC X86_SEL_SHIFT
2140#endif
2141
2142/**
2143 * The mask used to mask off the table indicator and CPL of an selector.
2144 */
2145#define X86_SEL_MASK 0xfff8
2146
2147/**
2148 * The bit indicating that a selector is in the LDT and not in the GDT.
2149 */
2150#define X86_SEL_LDT 0x0004
2151/**
2152 * The bit mask for getting the RPL of a selector.
2153 */
2154#define X86_SEL_RPL 0x0003
2155
2156/** @} */
2157
2158
2159/**
2160 * x86 Exceptions/Faults/Traps.
2161 */
2162typedef enum X86XCPT
2163{
2164 /** \#DE - Divide error. */
2165 X86_XCPT_DE = 0x00,
2166 /** \#DB - Debug event (single step, DRx, ..) */
2167 X86_XCPT_DB = 0x01,
2168 /** NMI - Non-Maskable Interrupt */
2169 X86_XCPT_NMI = 0x02,
2170 /** \#BP - Breakpoint (INT3). */
2171 X86_XCPT_BP = 0x03,
2172 /** \#OF - Overflow (INTO). */
2173 X86_XCPT_OF = 0x04,
2174 /** \#BR - Bound range exceeded (BOUND). */
2175 X86_XCPT_BR = 0x05,
2176 /** \#UD - Undefined opcode. */
2177 X86_XCPT_UD = 0x06,
2178 /** \#NM - Device not available (math coprocessor device). */
2179 X86_XCPT_NM = 0x07,
2180 /** \#DF - Double fault. */
2181 X86_XCPT_DF = 0x08,
2182 /** ??? - Coprocessor segment overrun (obsolete). */
2183 X86_XCPT_CO_SEG_OVERRUN = 0x09,
2184 /** \#TS - Taskswitch (TSS). */
2185 X86_XCPT_TS = 0x0a,
2186 /** \#NP - Segment no present. */
2187 X86_XCPT_NP = 0x0b,
2188 /** \#SS - Stack segment fault. */
2189 X86_XCPT_SS = 0x0c,
2190 /** \#GP - General protection fault. */
2191 X86_XCPT_GP = 0x0d,
2192 /** \#PF - Page fault. */
2193 X86_XCPT_PF = 0x0e,
2194 /* 0x0f is reserved. */
2195 /** \#MF - Math fault (FPU). */
2196 X86_XCPT_MF = 0x10,
2197 /** \#AC - Alignment check. */
2198 X86_XCPT_AC = 0x11,
2199 /** \#MC - Machine check. */
2200 X86_XCPT_MC = 0x12,
2201 /** \#XF - SIMD Floating-Pointer Exception. */
2202 X86_XCPT_XF = 0x13
2203} X86XCPT;
2204/** Pointer to a x86 exception code. */
2205typedef X86XCPT *PX86XCPT;
2206/** Pointer to a const x86 exception code. */
2207typedef const X86XCPT *PCX86XCPT;
2208
2209
2210/** @name Trap Error Codes
2211 * @{
2212 */
2213/** External indicator. */
2214#define X86_TRAP_ERR_EXTERNAL 1
2215/** IDT indicator. */
2216#define X86_TRAP_ERR_IDT 2
2217/** Descriptor table indicator - If set LDT, if clear GDT. */
2218#define X86_TRAP_ERR_TI 4
2219/** Mask for getting the selector. */
2220#define X86_TRAP_ERR_SEL_MASK 0xfff8
2221/** Shift for getting the selector table index (C type index). */
2222#define X86_TRAP_ERR_SEL_SHIFT 3
2223/** @} */
2224
2225
2226/** @name \#PF Trap Error Codes
2227 * @{
2228 */
2229/** Bit 0 - P - Not present (clear) or page level protection (set) fault. */
2230#define X86_TRAP_PF_P RT_BIT(0)
2231/** Bit 1 - R/W - Read (clear) or write (set) access. */
2232#define X86_TRAP_PF_RW RT_BIT(1)
2233/** Bit 2 - U/S - CPU executing in user mode (set) or supervisor mode (clear). */
2234#define X86_TRAP_PF_US RT_BIT(2)
2235/** Bit 3 - RSVD- Reserved bit violation (set), i.e. reserved bit was set to 1. */
2236#define X86_TRAP_PF_RSVD RT_BIT(3)
2237/** Bit 4 - I/D - Instruction fetch (set) / Data access (clear) - PAE + NXE. */
2238#define X86_TRAP_PF_ID RT_BIT(4)
2239/** @} */
2240
2241#pragma pack(1)
2242/**
2243 * 32-bit IDTR/GDTR.
2244 */
2245typedef struct X86XDTR32
2246{
2247 /** Size of the descriptor table. */
2248 uint16_t cb;
2249 /** Address of the descriptor table. */
2250 uint32_t uAddr;
2251} X86XDTR32, *PX86XDTR32;
2252#pragma pack()
2253
2254#pragma pack(1)
2255/**
2256 * 64-bit IDTR/GDTR.
2257 */
2258typedef struct X86XDTR64
2259{
2260 /** Size of the descriptor table. */
2261 uint16_t cb;
2262 /** Address of the descriptor table. */
2263 uint64_t uAddr;
2264} X86XDTR64, *PX86XDTR64;
2265#pragma pack()
2266
2267/** @} */
2268
2269#endif
2270
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use