]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/Include/Register/Cpuid.h
UefiCpuPkg/LocalApicLib: Add GetProcessorLocation2ByApicId() API
[mirror_edk2.git] / UefiCpuPkg / Include / Register / Cpuid.h
1 /** @file
2 CPUID leaf definitions.
3
4 Provides defines for CPUID leaf indexes. Data structures are provided for
5 registers returned by a CPUID leaf that contain one or more bit fields.
6 If a register returned is a single 32-bit value, then a data structure is
7 not provided for that register.
8
9 Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR>
10 This program and the accompanying materials are licensed and made available under
11 the terms and conditions of the BSD License which accompanies this distribution.
12 The full text of the license may be found at
13 http://opensource.org/licenses/bsd-license.php
14
15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17
18 @par Specification Reference:
19 Intel(R) 64 and IA-32 Architectures Software Developer's Manual, Volume 2A,
20 November 2018, CPUID instruction.
21
22 **/
23
24 #ifndef __CPUID_H__
25 #define __CPUID_H__
26
27 /**
28 CPUID Signature Information
29
30 @param EAX CPUID_SIGNATURE (0x00)
31
32 @retval EAX Returns the highest value the CPUID instruction recognizes for
33 returning basic processor information. The value is returned is
34 processor specific.
35 @retval EBX First 4 characters of a vendor identification string.
36 @retval ECX Last 4 characters of a vendor identification string.
37 @retval EDX Middle 4 characters of a vendor identification string.
38
39 <b>Example usage</b>
40 @code
41 UINT32 Eax;
42 UINT32 Ebx;
43 UINT32 Ecx;
44 UINT32 Edx;
45
46 AsmCpuid (CPUID_SIGNATURE, &Eax, &Ebx, &Ecx, &Edx);
47 @endcode
48 **/
49 #define CPUID_SIGNATURE 0x00
50
51 ///
52 /// @{ CPUID signature values returned by Intel processors
53 ///
54 #define CPUID_SIGNATURE_GENUINE_INTEL_EBX SIGNATURE_32 ('G', 'e', 'n', 'u')
55 #define CPUID_SIGNATURE_GENUINE_INTEL_EDX SIGNATURE_32 ('i', 'n', 'e', 'I')
56 #define CPUID_SIGNATURE_GENUINE_INTEL_ECX SIGNATURE_32 ('n', 't', 'e', 'l')
57 ///
58 /// @}
59 ///
60
61
62 /**
63 CPUID Version Information
64
65 @param EAX CPUID_VERSION_INFO (0x01)
66
67 @retval EAX Returns Model, Family, Stepping Information described by the
68 type CPUID_VERSION_INFO_EAX.
69 @retval EBX Returns Brand, Cache Line Size, and Initial APIC ID described by
70 the type CPUID_VERSION_INFO_EBX.
71 @retval ECX CPU Feature Information described by the type
72 CPUID_VERSION_INFO_ECX.
73 @retval EDX CPU Feature Information described by the type
74 CPUID_VERSION_INFO_EDX.
75
76 <b>Example usage</b>
77 @code
78 CPUID_VERSION_INFO_EAX Eax;
79 CPUID_VERSION_INFO_EBX Ebx;
80 CPUID_VERSION_INFO_ECX Ecx;
81 CPUID_VERSION_INFO_EDX Edx;
82
83 AsmCpuid (CPUID_VERSION_INFO, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
84 @endcode
85 **/
86 #define CPUID_VERSION_INFO 0x01
87
88 /**
89 CPUID Version Information returned in EAX for CPUID leaf
90 #CPUID_VERSION_INFO.
91 **/
92 typedef union {
93 ///
94 /// Individual bit fields
95 ///
96 struct {
97 UINT32 SteppingId:4; ///< [Bits 3:0] Stepping ID
98 UINT32 Model:4; ///< [Bits 7:4] Model
99 UINT32 FamilyId:4; ///< [Bits 11:8] Family
100 UINT32 ProcessorType:2; ///< [Bits 13:12] Processor Type
101 UINT32 Reserved1:2; ///< [Bits 15:14] Reserved
102 UINT32 ExtendedModelId:4; ///< [Bits 19:16] Extended Model ID
103 UINT32 ExtendedFamilyId:8; ///< [Bits 27:20] Extended Family ID
104 UINT32 Reserved2:4; ///< Reserved
105 } Bits;
106 ///
107 /// All bit fields as a 32-bit value
108 ///
109 UINT32 Uint32;
110 } CPUID_VERSION_INFO_EAX;
111
112 ///
113 /// @{ Define value for bit field CPUID_VERSION_INFO_EAX.ProcessorType
114 ///
115 #define CPUID_VERSION_INFO_EAX_PROCESSOR_TYPE_ORIGINAL_OEM_PROCESSOR 0x00
116 #define CPUID_VERSION_INFO_EAX_PROCESSOR_TYPE_INTEL_OVERDRIVE_PROCESSOR 0x01
117 #define CPUID_VERSION_INFO_EAX_PROCESSOR_TYPE_DUAL_PROCESSOR 0x02
118 ///
119 /// @}
120 ///
121
122 /**
123 CPUID Version Information returned in EBX for CPUID leaf
124 #CPUID_VERSION_INFO.
125 **/
126 typedef union {
127 ///
128 /// Individual bit fields
129 ///
130 struct {
131 ///
132 /// [Bits 7:0] Provides an entry into a brand string table that contains
133 /// brand strings for IA-32 processors.
134 ///
135 UINT32 BrandIndex:8;
136 ///
137 /// [Bits 15:8] Indicates the size of the cache line flushed by the CLFLUSH
138 /// and CLFLUSHOPT instructions in 8-byte increments. This field was
139 /// introduced in the Pentium 4 processor.
140 ///
141 UINT32 CacheLineSize:8;
142 ///
143 /// [Bits 23:16] Maximum number of addressable IDs for logical processors
144 /// in this physical package.
145 ///
146 /// @note
147 /// The nearest power-of-2 integer that is not smaller than EBX[23:16] is
148 /// the number of unique initial APICIDs reserved for addressing different
149 /// logical processors in a physical package. This field is only valid if
150 /// CPUID.1.EDX.HTT[bit 28]= 1.
151 ///
152 UINT32 MaximumAddressableIdsForLogicalProcessors:8;
153 ///
154 /// [Bits 31:24] The 8-bit ID that is assigned to the local APIC on the
155 /// processor during power up. This field was introduced in the Pentium 4
156 /// processor.
157 ///
158 UINT32 InitialLocalApicId:8;
159 } Bits;
160 ///
161 /// All bit fields as a 32-bit value
162 ///
163 UINT32 Uint32;
164 } CPUID_VERSION_INFO_EBX;
165
166 /**
167 CPUID Version Information returned in ECX for CPUID leaf
168 #CPUID_VERSION_INFO.
169 **/
170 typedef union {
171 ///
172 /// Individual bit fields
173 ///
174 struct {
175 ///
176 /// [Bit 0] Streaming SIMD Extensions 3 (SSE3). A value of 1 indicates the
177 /// processor supports this technology
178 ///
179 UINT32 SSE3:1;
180 ///
181 /// [Bit 1] A value of 1 indicates the processor supports the PCLMULQDQ
182 /// instruction. Carryless Multiplication
183 ///
184 UINT32 PCLMULQDQ:1;
185 ///
186 /// [Bit 2] 64-bit DS Area. A value of 1 indicates the processor supports
187 /// DS area using 64-bit layout.
188 ///
189 UINT32 DTES64:1;
190 ///
191 /// [Bit 3] MONITOR/MWAIT. A value of 1 indicates the processor supports
192 /// this feature.
193 ///
194 UINT32 MONITOR:1;
195 ///
196 /// [Bit 4] CPL Qualified Debug Store. A value of 1 indicates the processor
197 /// supports the extensions to the Debug Store feature to allow for branch
198 /// message storage qualified by CPL
199 ///
200 UINT32 DS_CPL:1;
201 ///
202 /// [Bit 5] Virtual Machine Extensions. A value of 1 indicates that the
203 /// processor supports this technology.
204 ///
205 UINT32 VMX:1;
206 ///
207 /// [Bit 6] Safer Mode Extensions. A value of 1 indicates that the processor
208 /// supports this technology
209 ///
210 UINT32 SMX:1;
211 ///
212 /// [Bit 7] Enhanced Intel SpeedStep(R) technology. A value of 1 indicates
213 /// that the processor supports this technology
214 ///
215 UINT32 EIST:1;
216 ///
217 /// [Bit 8] Thermal Monitor 2. A value of 1 indicates whether the processor
218 /// supports this technology
219 ///
220 UINT32 TM2:1;
221 ///
222 /// [Bit 9] A value of 1 indicates the presence of the Supplemental Streaming
223 /// SIMD Extensions 3 (SSSE3). A value of 0 indicates the instruction
224 /// extensions are not present in the processor.
225 ///
226 UINT32 SSSE3:1;
227 ///
228 /// [Bit 10] L1 Context ID. A value of 1 indicates the L1 data cache mode
229 /// can be set to either adaptive mode or shared mode. A value of 0 indicates
230 /// this feature is not supported. See definition of the IA32_MISC_ENABLE MSR
231 /// Bit 24 (L1 Data Cache Context Mode) for details
232 ///
233 UINT32 CNXT_ID:1;
234 ///
235 /// [Bit 11] A value of 1 indicates the processor supports IA32_DEBUG_INTERFACE
236 /// MSR for silicon debug
237 ///
238 UINT32 SDBG:1;
239 ///
240 /// [Bit 12] A value of 1 indicates the processor supports FMA (Fused Multiple
241 /// Add) extensions using YMM state.
242 ///
243 UINT32 FMA:1;
244 ///
245 /// [Bit 13] CMPXCHG16B Available. A value of 1 indicates that the feature
246 /// is available.
247 ///
248 UINT32 CMPXCHG16B:1;
249 ///
250 /// [Bit 14] xTPR Update Control. A value of 1 indicates that the processor
251 /// supports changing IA32_MISC_ENABLE[Bit 23].
252 ///
253 UINT32 xTPR_Update_Control:1;
254 ///
255 /// [Bit 15] Perfmon and Debug Capability: A value of 1 indicates the
256 /// processor supports the performance and debug feature indication MSR
257 /// IA32_PERF_CAPABILITIES.
258 ///
259 UINT32 PDCM:1;
260 UINT32 Reserved:1;
261 ///
262 /// [Bit 17] Process-context identifiers. A value of 1 indicates that the
263 /// processor supports PCIDs and that software may set CR4.PCIDE to 1.
264 ///
265 UINT32 PCID:1;
266 ///
267 /// [Bit 18] A value of 1 indicates the processor supports the ability to
268 /// prefetch data from a memory mapped device. Direct Cache Access.
269 ///
270 UINT32 DCA:1;
271 ///
272 /// [Bit 19] A value of 1 indicates that the processor supports SSE4.1.
273 ///
274 UINT32 SSE4_1:1;
275 ///
276 /// [Bit 20] A value of 1 indicates that the processor supports SSE4.2.
277 ///
278 UINT32 SSE4_2:1;
279 ///
280 /// [Bit 21] A value of 1 indicates that the processor supports x2APIC
281 /// feature.
282 ///
283 UINT32 x2APIC:1;
284 ///
285 /// [Bit 22] A value of 1 indicates that the processor supports MOVBE
286 /// instruction.
287 ///
288 UINT32 MOVBE:1;
289 ///
290 /// [Bit 23] A value of 1 indicates that the processor supports the POPCNT
291 /// instruction.
292 ///
293 UINT32 POPCNT:1;
294 ///
295 /// [Bit 24] A value of 1 indicates that the processor's local APIC timer
296 /// supports one-shot operation using a TSC deadline value.
297 ///
298 UINT32 TSC_Deadline:1;
299 ///
300 /// [Bit 25] A value of 1 indicates that the processor supports the AESNI
301 /// instruction extensions.
302 ///
303 UINT32 AESNI:1;
304 ///
305 /// [Bit 26] A value of 1 indicates that the processor supports the
306 /// XSAVE/XRSTOR processor extended states feature, the XSETBV/XGETBV
307 /// instructions, and XCR0.
308 ///
309 UINT32 XSAVE:1;
310 ///
311 /// [Bit 27] A value of 1 indicates that the OS has set CR4.OSXSAVE[Bit 18]
312 /// to enable XSETBV/XGETBV instructions to access XCR0 and to support
313 /// processor extended state management using XSAVE/XRSTOR.
314 ///
315 UINT32 OSXSAVE:1;
316 ///
317 /// [Bit 28] A value of 1 indicates the processor supports the AVX instruction
318 /// extensions.
319 ///
320 UINT32 AVX:1;
321 ///
322 /// [Bit 29] A value of 1 indicates that processor supports 16-bit
323 /// floating-point conversion instructions.
324 ///
325 UINT32 F16C:1;
326 ///
327 /// [Bit 30] A value of 1 indicates that processor supports RDRAND instruction.
328 ///
329 UINT32 RDRAND:1;
330 ///
331 /// [Bit 31] Always returns 0.
332 ///
333 UINT32 NotUsed:1;
334 } Bits;
335 ///
336 /// All bit fields as a 32-bit value
337 ///
338 UINT32 Uint32;
339 } CPUID_VERSION_INFO_ECX;
340
341 /**
342 CPUID Version Information returned in EDX for CPUID leaf
343 #CPUID_VERSION_INFO.
344 **/
345 typedef union {
346 ///
347 /// Individual bit fields
348 ///
349 struct {
350 ///
351 /// [Bit 0] Floating Point Unit On-Chip. The processor contains an x87 FPU.
352 ///
353 UINT32 FPU:1;
354 ///
355 /// [Bit 1] Virtual 8086 Mode Enhancements. Virtual 8086 mode enhancements,
356 /// including CR4.VME for controlling the feature, CR4.PVI for protected
357 /// mode virtual interrupts, software interrupt indirection, expansion of
358 /// the TSS with the software indirection bitmap, and EFLAGS.VIF and
359 /// EFLAGS.VIP flags.
360 ///
361 UINT32 VME:1;
362 ///
363 /// [Bit 2] Debugging Extensions. Support for I/O breakpoints, including
364 /// CR4.DE for controlling the feature, and optional trapping of accesses to
365 /// DR4 and DR5.
366 ///
367 UINT32 DE:1;
368 ///
369 /// [Bit 3] Page Size Extension. Large pages of size 4 MByte are supported,
370 /// including CR4.PSE for controlling the feature, the defined dirty bit in
371 /// PDE (Page Directory Entries), optional reserved bit trapping in CR3,
372 /// PDEs, and PTEs.
373 ///
374 UINT32 PSE:1;
375 ///
376 /// [Bit 4] Time Stamp Counter. The RDTSC instruction is supported,
377 /// including CR4.TSD for controlling privilege.
378 ///
379 UINT32 TSC:1;
380 ///
381 /// [Bit 5] Model Specific Registers RDMSR and WRMSR Instructions. The
382 /// RDMSR and WRMSR instructions are supported. Some of the MSRs are
383 /// implementation dependent.
384 ///
385 UINT32 MSR:1;
386 ///
387 /// [Bit 6] Physical Address Extension. Physical addresses greater than 32
388 /// bits are supported: extended page table entry formats, an extra level in
389 /// the page translation tables is defined, 2-MByte pages are supported
390 /// instead of 4 Mbyte pages if PAE bit is 1.
391 ///
392 UINT32 PAE:1;
393 ///
394 /// [Bit 7] Machine Check Exception. Exception 18 is defined for Machine
395 /// Checks, including CR4.MCE for controlling the feature. This feature does
396 /// not define the model-specific implementations of machine-check error
397 /// logging, reporting, and processor shutdowns. Machine Check exception
398 /// handlers may have to depend on processor version to do model specific
399 /// processing of the exception, or test for the presence of the Machine
400 /// Check feature.
401 ///
402 UINT32 MCE:1;
403 ///
404 /// [Bit 8] CMPXCHG8B Instruction. The compare-and-exchange 8 bytes(64 bits)
405 /// instruction is supported (implicitly locked and atomic).
406 ///
407 UINT32 CX8:1;
408 ///
409 /// [Bit 9] APIC On-Chip. The processor contains an Advanced Programmable
410 /// Interrupt Controller (APIC), responding to memory mapped commands in the
411 /// physical address range FFFE0000H to FFFE0FFFH (by default - some
412 /// processors permit the APIC to be relocated).
413 ///
414 UINT32 APIC:1;
415 UINT32 Reserved1:1;
416 ///
417 /// [Bit 11] SYSENTER and SYSEXIT Instructions. The SYSENTER and SYSEXIT
418 /// and associated MSRs are supported.
419 ///
420 UINT32 SEP:1;
421 ///
422 /// [Bit 12] Memory Type Range Registers. MTRRs are supported. The MTRRcap
423 /// MSR contains feature bits that describe what memory types are supported,
424 /// how many variable MTRRs are supported, and whether fixed MTRRs are
425 /// supported.
426 ///
427 UINT32 MTRR:1;
428 ///
429 /// [Bit 13] Page Global Bit. The global bit is supported in paging-structure
430 /// entries that map a page, indicating TLB entries that are common to
431 /// different processes and need not be flushed. The CR4.PGE bit controls
432 /// this feature.
433 ///
434 UINT32 PGE:1;
435 ///
436 /// [Bit 14] Machine Check Architecture. A value of 1 indicates the Machine
437 /// Check Architecture of reporting machine errors is supported. The MCG_CAP
438 /// MSR contains feature bits describing how many banks of error reporting
439 /// MSRs are supported.
440 ///
441 UINT32 MCA:1;
442 ///
443 /// [Bit 15] Conditional Move Instructions. The conditional move instruction
444 /// CMOV is supported. In addition, if x87 FPU is present as indicated by the
445 /// CPUID.FPU feature bit, then the FCOMI and FCMOV instructions are supported.
446 ///
447 UINT32 CMOV:1;
448 ///
449 /// [Bit 16] Page Attribute Table. Page Attribute Table is supported. This
450 /// feature augments the Memory Type Range Registers (MTRRs), allowing an
451 /// operating system to specify attributes of memory accessed through a
452 /// linear address on a 4KB granularity.
453 ///
454 UINT32 PAT:1;
455 ///
456 /// [Bit 17] 36-Bit Page Size Extension. 4-MByte pages addressing physical
457 /// memory beyond 4 GBytes are supported with 32-bit paging. This feature
458 /// indicates that upper bits of the physical address of a 4-MByte page are
459 /// encoded in bits 20:13 of the page-directory entry. Such physical
460 /// addresses are limited by MAXPHYADDR and may be up to 40 bits in size.
461 ///
462 UINT32 PSE_36:1;
463 ///
464 /// [Bit 18] Processor Serial Number. The processor supports the 96-bit
465 /// processor identification number feature and the feature is enabled.
466 ///
467 UINT32 PSN:1;
468 ///
469 /// [Bit 19] CLFLUSH Instruction. CLFLUSH Instruction is supported.
470 ///
471 UINT32 CLFSH:1;
472 UINT32 Reserved2:1;
473 ///
474 /// [Bit 21] Debug Store. The processor supports the ability to write debug
475 /// information into a memory resident buffer. This feature is used by the
476 /// branch trace store (BTS) and precise event-based sampling (PEBS)
477 /// facilities.
478 ///
479 UINT32 DS:1;
480 ///
481 /// [Bit 22] Thermal Monitor and Software Controlled Clock Facilities. The
482 /// processor implements internal MSRs that allow processor temperature to
483 /// be monitored and processor performance to be modulated in predefined
484 /// duty cycles under software control.
485 ///
486 UINT32 ACPI:1;
487 ///
488 /// [Bit 23] Intel MMX Technology. The processor supports the Intel MMX
489 /// technology.
490 ///
491 UINT32 MMX:1;
492 ///
493 /// [Bit 24] FXSAVE and FXRSTOR Instructions. The FXSAVE and FXRSTOR
494 /// instructions are supported for fast save and restore of the floating
495 /// point context. Presence of this bit also indicates that CR4.OSFXSR is
496 /// available for an operating system to indicate that it supports the
497 /// FXSAVE and FXRSTOR instructions.
498 ///
499 UINT32 FXSR:1;
500 ///
501 /// [Bit 25] SSE. The processor supports the SSE extensions.
502 ///
503 UINT32 SSE:1;
504 ///
505 /// [Bit 26] SSE2. The processor supports the SSE2 extensions.
506 ///
507 UINT32 SSE2:1;
508 ///
509 /// [Bit 27] Self Snoop. The processor supports the management of
510 /// conflicting memory types by performing a snoop of its own cache
511 /// structure for transactions issued to the bus.
512 ///
513 UINT32 SS:1;
514 ///
515 /// [Bit 28] Max APIC IDs reserved field is Valid. A value of 0 for HTT
516 /// indicates there is only a single logical processor in the package and
517 /// software should assume only a single APIC ID is reserved. A value of 1
518 /// for HTT indicates the value in CPUID.1.EBX[23:16] (the Maximum number of
519 /// addressable IDs for logical processors in this package) is valid for the
520 /// package.
521 ///
522 UINT32 HTT:1;
523 ///
524 /// [Bit 29] Thermal Monitor. The processor implements the thermal monitor
525 /// automatic thermal control circuitry (TCC).
526 ///
527 UINT32 TM:1;
528 UINT32 Reserved3:1;
529 ///
530 /// [Bit 31] Pending Break Enable. The processor supports the use of the
531 /// FERR#/PBE# pin when the processor is in the stop-clock state (STPCLK# is
532 /// asserted) to signal the processor that an interrupt is pending and that
533 /// the processor should return to normal operation to handle the interrupt.
534 /// Bit 10 (PBE enable) in the IA32_MISC_ENABLE MSR enables this capability.
535 ///
536 UINT32 PBE:1;
537 } Bits;
538 ///
539 /// All bit fields as a 32-bit value
540 ///
541 UINT32 Uint32;
542 } CPUID_VERSION_INFO_EDX;
543
544
545 /**
546 CPUID Cache and TLB Information
547
548 @param EAX CPUID_CACHE_INFO (0x02)
549
550 @retval EAX Cache and TLB Information described by the type
551 CPUID_CACHE_INFO_CACHE_TLB.
552 CPUID_CACHE_INFO_CACHE_TLB.CacheDescriptor[0] always returns
553 0x01 and must be ignored. Only valid if
554 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
555 @retval EBX Cache and TLB Information described by the type
556 CPUID_CACHE_INFO_CACHE_TLB. Only valid if
557 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
558 @retval ECX Cache and TLB Information described by the type
559 CPUID_CACHE_INFO_CACHE_TLB. Only valid if
560 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
561 @retval EDX Cache and TLB Information described by the type
562 CPUID_CACHE_INFO_CACHE_TLB. Only valid if
563 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
564
565 <b>Example usage</b>
566 @code
567 CPUID_CACHE_INFO_CACHE_TLB Eax;
568 CPUID_CACHE_INFO_CACHE_TLB Ebx;
569 CPUID_CACHE_INFO_CACHE_TLB Ecx;
570 CPUID_CACHE_INFO_CACHE_TLB Edx;
571
572 AsmCpuid (CPUID_CACHE_INFO, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
573 @endcode
574
575 <b>Cache Descriptor values</b>
576 <table>
577 <tr><th>Value </th><th> Type </th><th> Description </th></tr>
578 <tr><td> 0x00 </td><td> General </td><td> Null descriptor, this byte contains no information</td></tr>
579 <tr><td> 0x01 </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, 4-way set associative, 32 entries</td></tr>
580 <tr><td> 0x02 </td><td> TLB </td><td> Instruction TLB: 4 MByte pages, fully associative, 2 entries</td></tr>
581 <tr><td> 0x03 </td><td> TLB </td><td> Data TLB: 4 KByte pages, 4-way set associative, 64 entries</td></tr>
582 <tr><td> 0x04 </td><td> TLB </td><td> Data TLB: 4 MByte pages, 4-way set associative, 8 entries</td></tr>
583 <tr><td> 0x05 </td><td> TLB </td><td> Data TLB1: 4 MByte pages, 4-way set associative, 32 entries</td></tr>
584 <tr><td> 0x06 </td><td> Cache </td><td> 1st-level instruction cache: 8 KBytes, 4-way set associative,
585 32 byte line size</td></tr>
586 <tr><td> 0x08 </td><td> Cache </td><td> 1st-level instruction cache: 16 KBytes, 4-way set associative,
587 32 byte line size</td></tr>
588 <tr><td> 0x09 </td><td> Cache </td><td> 1st-level instruction cache: 32KBytes, 4-way set associative,
589 64 byte line size</td></tr>
590 <tr><td> 0x0A </td><td> Cache </td><td> 1st-level data cache: 8 KBytes, 2-way set associative, 32 byte line size</td></tr>
591 <tr><td> 0x0B </td><td> TLB </td><td> Instruction TLB: 4 MByte pages, 4-way set associative, 4 entries</td></tr>
592 <tr><td> 0x0C </td><td> Cache </td><td> 1st-level data cache: 16 KBytes, 4-way set associative, 32 byte line size</td></tr>
593 <tr><td> 0x0D </td><td> Cache </td><td> 1st-level data cache: 16 KBytes, 4-way set associative, 64 byte line size</td></tr>
594 <tr><td> 0x0E </td><td> Cache </td><td> 1st-level data cache: 24 KBytes, 6-way set associative, 64 byte line size</td></tr>
595 <tr><td> 0x1D </td><td> Cache </td><td> 2nd-level cache: 128 KBytes, 2-way set associative, 64 byte line size</td></tr>
596 <tr><td> 0x21 </td><td> Cache </td><td> 2nd-level cache: 256 KBytes, 8-way set associative, 64 byte line size</td></tr>
597 <tr><td> 0x22 </td><td> Cache </td><td> 3rd-level cache: 512 KBytes, 4-way set associative, 64 byte line size,
598 2 lines per sector</td></tr>
599 <tr><td> 0x23 </td><td> Cache </td><td> 3rd-level cache: 1 MBytes, 8-way set associative, 64 byte line size,
600 2 lines per sector</td></tr>
601 <tr><td> 0x24 </td><td> Cache </td><td> 2nd-level cache: 1 MBytes, 16-way set associative, 64 byte line size</td></tr>
602 <tr><td> 0x25 </td><td> Cache </td><td> 3rd-level cache: 2 MBytes, 8-way set associative, 64 byte line size,
603 2 lines per sector</td></tr>
604 <tr><td> 0x29 </td><td> Cache </td><td> 3rd-level cache: 4 MBytes, 8-way set associative, 64 byte line size,
605 2 lines per sector</td></tr>
606 <tr><td> 0x2C </td><td> Cache </td><td> 1st-level data cache: 32 KBytes, 8-way set associative,
607 64 byte line size</td></tr>
608 <tr><td> 0x30 </td><td> Cache </td><td> 1st-level instruction cache: 32 KBytes, 8-way set associative,
609 64 byte line size</td></tr>
610 <tr><td> 0x40 </td><td> Cache </td><td> No 2nd-level cache or, if processor contains a valid 2nd-level cache,
611 no 3rd-level cache</td></tr>
612 <tr><td> 0x41 </td><td> Cache </td><td> 2nd-level cache: 128 KBytes, 4-way set associative, 32 byte line size</td></tr>
613 <tr><td> 0x42 </td><td> Cache </td><td> 2nd-level cache: 256 KBytes, 4-way set associative, 32 byte line size</td></tr>
614 <tr><td> 0x43 </td><td> Cache </td><td> 2nd-level cache: 512 KBytes, 4-way set associative, 32 byte line size</td></tr>
615 <tr><td> 0x44 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 4-way set associative, 32 byte line size</td></tr>
616 <tr><td> 0x45 </td><td> Cache </td><td> 2nd-level cache: 2 MByte, 4-way set associative, 32 byte line size</td></tr>
617 <tr><td> 0x46 </td><td> Cache </td><td> 3rd-level cache: 4 MByte, 4-way set associative, 64 byte line size</td></tr>
618 <tr><td> 0x47 </td><td> Cache </td><td> 3rd-level cache: 8 MByte, 8-way set associative, 64 byte line size</td></tr>
619 <tr><td> 0x48 </td><td> Cache </td><td> 2nd-level cache: 3MByte, 12-way set associative, 64 byte line size</td></tr>
620 <tr><td> 0x49 </td><td> Cache </td><td> 3rd-level cache: 4MB, 16-way set associative, 64-byte line size
621 (Intel Xeon processor MP, Family 0FH, Model 06H)<BR>
622 2nd-level cache: 4 MByte, 16-way set associative, 64 byte line size</td></tr>
623 <tr><td> 0x4A </td><td> Cache </td><td> 3rd-level cache: 6MByte, 12-way set associative, 64 byte line size</td></tr>
624 <tr><td> 0x4B </td><td> Cache </td><td> 3rd-level cache: 8MByte, 16-way set associative, 64 byte line size</td></tr>
625 <tr><td> 0x4C </td><td> Cache </td><td> 3rd-level cache: 12MByte, 12-way set associative, 64 byte line size</td></tr>
626 <tr><td> 0x4D </td><td> Cache </td><td> 3rd-level cache: 16MByte, 16-way set associative, 64 byte line size</td></tr>
627 <tr><td> 0x4E </td><td> Cache </td><td> 2nd-level cache: 6MByte, 24-way set associative, 64 byte line size</td></tr>
628 <tr><td> 0x4F </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, 32 entries</td></tr>
629 <tr><td> 0x50 </td><td> TLB </td><td> Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 64 entries</td></tr>
630 <tr><td> 0x51 </td><td> TLB </td><td> Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 128 entries</td></tr>
631 <tr><td> 0x52 </td><td> TLB </td><td> Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 256 entries</td></tr>
632 <tr><td> 0x55 </td><td> TLB </td><td> Instruction TLB: 2-MByte or 4-MByte pages, fully associative, 7 entries</td></tr>
633 <tr><td> 0x56 </td><td> TLB </td><td> Data TLB0: 4 MByte pages, 4-way set associative, 16 entries</td></tr>
634 <tr><td> 0x57 </td><td> TLB </td><td> Data TLB0: 4 KByte pages, 4-way associative, 16 entries</td></tr>
635 <tr><td> 0x59 </td><td> TLB </td><td> Data TLB0: 4 KByte pages, fully associative, 16 entries</td></tr>
636 <tr><td> 0x5A </td><td> TLB </td><td> Data TLB0: 2 MByte or 4 MByte pages, 4-way set associative, 32 entries</td></tr>
637 <tr><td> 0x5B </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages, 64 entries</td></tr>
638 <tr><td> 0x5C </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages,128 entries</td></tr>
639 <tr><td> 0x5D </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages,256 entries</td></tr>
640 <tr><td> 0x60 </td><td> Cache </td><td> 1st-level data cache: 16 KByte, 8-way set associative, 64 byte line size</td></tr>
641 <tr><td> 0x61 </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, fully associative, 48 entries</td></tr>
642 <tr><td> 0x63 </td><td> TLB </td><td> Data TLB: 2 MByte or 4 MByte pages, 4-way set associative,
643 32 entries and a separate array with 1 GByte pages, 4-way set associative,
644 4 entries</td></tr>
645 <tr><td> 0x64 </td><td> TLB </td><td> Data TLB: 4 KByte pages, 4-way set associative, 512 entries</td></tr>
646 <tr><td> 0x66 </td><td> Cache </td><td> 1st-level data cache: 8 KByte, 4-way set associative, 64 byte line size</td></tr>
647 <tr><td> 0x67 </td><td> Cache </td><td> 1st-level data cache: 16 KByte, 4-way set associative, 64 byte line size</td></tr>
648 <tr><td> 0x68 </td><td> Cache </td><td> 1st-level data cache: 32 KByte, 4-way set associative, 64 byte line size</td></tr>
649 <tr><td> 0x6A </td><td> Cache </td><td> uTLB: 4 KByte pages, 8-way set associative, 64 entries</td></tr>
650 <tr><td> 0x6B </td><td> Cache </td><td> DTLB: 4 KByte pages, 8-way set associative, 256 entries</td></tr>
651 <tr><td> 0x6C </td><td> Cache </td><td> DTLB: 2M/4M pages, 8-way set associative, 128 entries</td></tr>
652 <tr><td> 0x6D </td><td> Cache </td><td> DTLB: 1 GByte pages, fully associative, 16 entries</td></tr>
653 <tr><td> 0x70 </td><td> Cache </td><td> Trace cache: 12 K-uop, 8-way set associative</td></tr>
654 <tr><td> 0x71 </td><td> Cache </td><td> Trace cache: 16 K-uop, 8-way set associative</td></tr>
655 <tr><td> 0x72 </td><td> Cache </td><td> Trace cache: 32 K-uop, 8-way set associative</td></tr>
656 <tr><td> 0x76 </td><td> TLB </td><td> Instruction TLB: 2M/4M pages, fully associative, 8 entries</td></tr>
657 <tr><td> 0x78 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 4-way set associative, 64byte line size</td></tr>
658 <tr><td> 0x79 </td><td> Cache </td><td> 2nd-level cache: 128 KByte, 8-way set associative, 64 byte line size,
659 2 lines per sector</td></tr>
660 <tr><td> 0x7A </td><td> Cache </td><td> 2nd-level cache: 256 KByte, 8-way set associative, 64 byte line size,
661 2 lines per sector</td></tr>
662 <tr><td> 0x7B </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 8-way set associative, 64 byte line size,
663 2 lines per sector</td></tr>
664 <tr><td> 0x7C </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size,
665 2 lines per sector</td></tr>
666 <tr><td> 0x7D </td><td> Cache </td><td> 2nd-level cache: 2 MByte, 8-way set associative, 64byte line size</td></tr>
667 <tr><td> 0x7F </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 2-way set associative, 64-byte line size</td></tr>
668 <tr><td> 0x80 </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 8-way set associative, 64-byte line size</td></tr>
669 <tr><td> 0x82 </td><td> Cache </td><td> 2nd-level cache: 256 KByte, 8-way set associative, 32 byte line size</td></tr>
670 <tr><td> 0x83 </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 8-way set associative, 32 byte line size</td></tr>
671 <tr><td> 0x84 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 8-way set associative, 32 byte line size</td></tr>
672 <tr><td> 0x85 </td><td> Cache </td><td> 2nd-level cache: 2 MByte, 8-way set associative, 32 byte line size</td></tr>
673 <tr><td> 0x86 </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 4-way set associative, 64 byte line size</td></tr>
674 <tr><td> 0x87 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size</td></tr>
675 <tr><td> 0xA0 </td><td> DTLB </td><td> DTLB: 4k pages, fully associative, 32 entries</td></tr>
676 <tr><td> 0xB0 </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, 4-way set associative, 128 entries</td></tr>
677 <tr><td> 0xB1 </td><td> TLB </td><td> Instruction TLB: 2M pages, 4-way, 8 entries or 4M pages, 4-way, 4 entries</td></tr>
678 <tr><td> 0xB2 </td><td> TLB </td><td> Instruction TLB: 4KByte pages, 4-way set associative, 64 entries</td></tr>
679 <tr><td> 0xB3 </td><td> TLB </td><td> Data TLB: 4 KByte pages, 4-way set associative, 128 entries</td></tr>
680 <tr><td> 0xB4 </td><td> TLB </td><td> Data TLB1: 4 KByte pages, 4-way associative, 256 entries</td></tr>
681 <tr><td> 0xB5 </td><td> TLB </td><td> Instruction TLB: 4KByte pages, 8-way set associative, 64 entries</td></tr>
682 <tr><td> 0xB6 </td><td> TLB </td><td> Instruction TLB: 4KByte pages, 8-way set associative,
683 128 entries</td></tr>
684 <tr><td> 0xBA </td><td> TLB </td><td> Data TLB1: 4 KByte pages, 4-way associative, 64 entries</td></tr>
685 <tr><td> 0xC0 </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages, 4-way associative, 8 entries</td></tr>
686 <tr><td> 0xC1 </td><td> STLB </td><td> Shared 2nd-Level TLB: 4 KByte/2MByte pages, 8-way associative,
687 1024 entries</td></tr>
688 <tr><td> 0xC2 </td><td> DTLB </td><td> DTLB: 4 KByte/2 MByte pages, 4-way associative, 16 entries</td></tr>
689 <tr><td> 0xC3 </td><td> STLB </td><td> Shared 2nd-Level TLB: 4 KByte /2 MByte pages, 6-way associative,
690 1536 entries. Also 1GBbyte pages, 4-way, 16 entries.</td></tr>
691 <tr><td> 0xC4 </td><td> DTLB </td><td> DTLB: 2M/4M Byte pages, 4-way associative, 32 entries</td></tr>
692 <tr><td> 0xCA </td><td> STLB </td><td> Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries</td></tr>
693 <tr><td> 0xD0 </td><td> Cache </td><td> 3rd-level cache: 512 KByte, 4-way set associative, 64 byte line size</td></tr>
694 <tr><td> 0xD1 </td><td> Cache </td><td> 3rd-level cache: 1 MByte, 4-way set associative, 64 byte line size</td></tr>
695 <tr><td> 0xD2 </td><td> Cache </td><td> 3rd-level cache: 2 MByte, 4-way set associative, 64 byte line size</td></tr>
696 <tr><td> 0xD6 </td><td> Cache </td><td> 3rd-level cache: 1 MByte, 8-way set associative, 64 byte line size</td></tr>
697 <tr><td> 0xD7 </td><td> Cache </td><td> 3rd-level cache: 2 MByte, 8-way set associative, 64 byte line size</td></tr>
698 <tr><td> 0xD8 </td><td> Cache </td><td> 3rd-level cache: 4 MByte, 8-way set associative, 64 byte line size</td></tr>
699 <tr><td> 0xDC </td><td> Cache </td><td> 3rd-level cache: 1.5 MByte, 12-way set associative, 64 byte line size</td></tr>
700 <tr><td> 0xDD </td><td> Cache </td><td> 3rd-level cache: 3 MByte, 12-way set associative, 64 byte line size</td></tr>
701 <tr><td> 0xDE </td><td> Cache </td><td> 3rd-level cache: 6 MByte, 12-way set associative, 64 byte line size</td></tr>
702 <tr><td> 0xE2 </td><td> Cache </td><td> 3rd-level cache: 2 MByte, 16-way set associative, 64 byte line size</td></tr>
703 <tr><td> 0xE3 </td><td> Cache </td><td> 3rd-level cache: 4 MByte, 16-way set associative, 64 byte line size</td></tr>
704 <tr><td> 0xE4 </td><td> Cache </td><td> 3rd-level cache: 8 MByte, 16-way set associative, 64 byte line size</td></tr>
705 <tr><td> 0xEA </td><td> Cache </td><td> 3rd-level cache: 12MByte, 24-way set associative, 64 byte line size</td></tr>
706 <tr><td> 0xEB </td><td> Cache </td><td> 3rd-level cache: 18MByte, 24-way set associative, 64 byte line size</td></tr>
707 <tr><td> 0xEC </td><td> Cache </td><td> 3rd-level cache: 24MByte, 24-way set associative, 64 byte line size</td></tr>
708 <tr><td> 0xF0 </td><td> Prefetch</td><td> 64-Byte prefetching</td></tr>
709 <tr><td> 0xF1 </td><td> Prefetch</td><td> 128-Byte prefetching</td></tr>
710 <tr><td> 0xFE </td><td> General </td><td> CPUID leaf 2 does not report TLB descriptor information; use CPUID
711 leaf 18H to query TLB and other address translation parameters.</td></tr>
712 <tr><td> 0xFF </td><td> General </td><td> CPUID leaf 2 does not report cache descriptor information,
713 use CPUID leaf 4 to query cache parameters</td></tr>
714 </table>
715 **/
716 #define CPUID_CACHE_INFO 0x02
717
718 /**
719 CPUID Cache and TLB Information returned in EAX, EBX, ECX, and EDX for CPUID
720 leaf #CPUID_CACHE_INFO.
721 **/
722 typedef union {
723 ///
724 /// Individual bit fields
725 ///
726 struct {
727 UINT32 Reserved:31;
728 ///
729 /// [Bit 31] If 0, then the cache descriptor bytes in the register are valid.
730 /// if 1, then none of the cache descriptor bytes in the register are valid.
731 ///
732 UINT32 NotValid:1;
733 } Bits;
734 ///
735 /// Array of Cache and TLB descriptor bytes
736 ///
737 UINT8 CacheDescriptor[4];
738 ///
739 /// All bit fields as a 32-bit value
740 ///
741 UINT32 Uint32;
742 } CPUID_CACHE_INFO_CACHE_TLB;
743
744
745 /**
746 CPUID Processor Serial Number
747
748 Processor serial number (PSN) is not supported in the Pentium 4 processor
749 or later. On all models, use the PSN flag (returned using CPUID) to check
750 for PSN support before accessing the feature.
751
752 @param EAX CPUID_SERIAL_NUMBER (0x03)
753
754 @retval EAX Reserved.
755 @retval EBX Reserved.
756 @retval ECX Bits 31:0 of 96 bit processor serial number. (Available in
757 Pentium III processor only; otherwise, the value in this
758 register is reserved.)
759 @retval EDX Bits 63:32 of 96 bit processor serial number. (Available in
760 Pentium III processor only; otherwise, the value in this
761 register is reserved.)
762
763 <b>Example usage</b>
764 @code
765 UINT32 Ecx;
766 UINT32 Edx;
767
768 AsmCpuid (CPUID_SERIAL_NUMBER, NULL, NULL, &Ecx, &Edx);
769 @endcode
770 **/
771 #define CPUID_SERIAL_NUMBER 0x03
772
773
774 /**
775 CPUID Cache Parameters
776
777 @param EAX CPUID_CACHE_PARAMS (0x04)
778 @param ECX Cache Level. Valid values start at 0. Software can enumerate
779 the deterministic cache parameters for each level of the cache
780 hierarchy starting with an index value of 0, until the
781 parameters report the value associated with the CacheType
782 field in CPUID_CACHE_PARAMS_EAX is 0.
783
784 @retval EAX Returns cache type information described by the type
785 CPUID_CACHE_PARAMS_EAX.
786 @retval EBX Returns cache line and associativity information described by
787 the type CPUID_CACHE_PARAMS_EBX.
788 @retval ECX Returns the number of sets in the cache.
789 @retval EDX Returns cache WINVD/INVD behavior described by the type
790 CPUID_CACHE_PARAMS_EDX.
791
792 <b>Example usage</b>
793 @code
794 UINT32 CacheLevel;
795 CPUID_CACHE_PARAMS_EAX Eax;
796 CPUID_CACHE_PARAMS_EBX Ebx;
797 UINT32 Ecx;
798 CPUID_CACHE_PARAMS_EDX Edx;
799
800 CacheLevel = 0;
801 do {
802 AsmCpuidEx (
803 CPUID_CACHE_PARAMS, CacheLevel,
804 &Eax.Uint32, &Ebx.Uint32, &Ecx, &Edx.Uint32
805 );
806 CacheLevel++;
807 } while (Eax.Bits.CacheType != CPUID_CACHE_PARAMS_CACHE_TYPE_NULL);
808 @endcode
809 **/
810 #define CPUID_CACHE_PARAMS 0x04
811
812 /**
813 CPUID Cache Parameters Information returned in EAX for CPUID leaf
814 #CPUID_CACHE_PARAMS.
815 **/
816 typedef union {
817 ///
818 /// Individual bit fields
819 ///
820 struct {
821 ///
822 /// [Bits 4:0] Cache type field. If #CPUID_CACHE_PARAMS_CACHE_TYPE_NULL,
823 /// then there is no information for the requested cache level.
824 ///
825 UINT32 CacheType:5;
826 ///
827 /// [Bits 7:5] Cache level (Starts at 1).
828 ///
829 UINT32 CacheLevel:3;
830 ///
831 /// [Bit 8] Self Initializing cache level (does not need SW initialization).
832 ///
833 UINT32 SelfInitializingCache:1;
834 ///
835 /// [Bit 9] Fully Associative cache.
836 ///
837 UINT32 FullyAssociativeCache:1;
838 ///
839 /// [Bits 13:10] Reserved.
840 ///
841 UINT32 Reserved:4;
842 ///
843 /// [Bits 25:14] Maximum number of addressable IDs for logical processors
844 /// sharing this cache.
845 ///
846 /// Add one to the return value to get the result.
847 /// The nearest power-of-2 integer that is not smaller than (1 + EAX[25:14])
848 /// is the number of unique initial APIC IDs reserved for addressing
849 /// different logical processors sharing this cache.
850 ///
851 UINT32 MaximumAddressableIdsForLogicalProcessors:12;
852 ///
853 /// [Bits 31:26] Maximum number of addressable IDs for processor cores in
854 /// the physical package.
855 ///
856 /// The nearest power-of-2 integer that is not smaller than (1 + EAX[31:26])
857 /// is the number of unique Core_IDs reserved for addressing different
858 /// processor cores in a physical package. Core ID is a subset of bits of
859 /// the initial APIC ID.
860 /// The returned value is constant for valid initial values in ECX. Valid
861 /// ECX values start from 0.
862 ///
863 UINT32 MaximumAddressableIdsForProcessorCores:6;
864 } Bits;
865 ///
866 /// All bit fields as a 32-bit value
867 ///
868 UINT32 Uint32;
869 } CPUID_CACHE_PARAMS_EAX;
870
871 ///
872 /// @{ Define value for bit field CPUID_CACHE_PARAMS_EAX.CacheType
873 ///
874 #define CPUID_CACHE_PARAMS_CACHE_TYPE_NULL 0x00
875 #define CPUID_CACHE_PARAMS_CACHE_TYPE_DATA 0x01
876 #define CPUID_CACHE_PARAMS_CACHE_TYPE_INSTRUCTION 0x02
877 #define CPUID_CACHE_PARAMS_CACHE_TYPE_UNIFIED 0x03
878 ///
879 /// @}
880 ///
881
882 /**
883 CPUID Cache Parameters Information returned in EBX for CPUID leaf
884 #CPUID_CACHE_PARAMS.
885 **/
886 typedef union {
887 ///
888 /// Individual bit fields
889 ///
890 struct {
891 ///
892 /// [Bits 11:0] System Coherency Line Size. Add one to the return value to
893 /// get the result.
894 ///
895 UINT32 LineSize:12;
896 ///
897 /// [Bits 21:12] Physical Line Partitions. Add one to the return value to
898 /// get the result.
899 ///
900 UINT32 LinePartitions:10;
901 ///
902 /// [Bits 31:22] Ways of associativity. Add one to the return value to get
903 /// the result.
904 ///
905 UINT32 Ways:10;
906 } Bits;
907 ///
908 /// All bit fields as a 32-bit value
909 ///
910 UINT32 Uint32;
911 } CPUID_CACHE_PARAMS_EBX;
912
913 /**
914 CPUID Cache Parameters Information returned in EDX for CPUID leaf
915 #CPUID_CACHE_PARAMS.
916 **/
917 typedef union {
918 ///
919 /// Individual bit fields
920 ///
921 struct {
922 ///
923 /// [Bit 0] Write-Back Invalidate/Invalidate.
924 /// 0 = WBINVD/INVD from threads sharing this cache acts upon lower level
925 /// caches for threads sharing this cache.
926 /// 1 = WBINVD/INVD is not guaranteed to act upon lower level caches of
927 /// non-originating threads sharing this cache.
928 ///
929 UINT32 Invalidate:1;
930 ///
931 /// [Bit 1] Cache Inclusiveness.
932 /// 0 = Cache is not inclusive of lower cache levels.
933 /// 1 = Cache is inclusive of lower cache levels.
934 ///
935 UINT32 CacheInclusiveness:1;
936 ///
937 /// [Bit 2] Complex Cache Indexing.
938 /// 0 = Direct mapped cache.
939 /// 1 = A complex function is used to index the cache, potentially using all
940 /// address bits.
941 ///
942 UINT32 ComplexCacheIndexing:1;
943 UINT32 Reserved:29;
944 } Bits;
945 ///
946 /// All bit fields as a 32-bit value
947 ///
948 UINT32 Uint32;
949 } CPUID_CACHE_PARAMS_EDX;
950
951
952 /**
953 CPUID MONITOR/MWAIT Information
954
955 @param EAX CPUID_MONITOR_MWAIT (0x05)
956
957 @retval EAX Smallest monitor-line size in bytes described by the type
958 CPUID_MONITOR_MWAIT_EAX.
959 @retval EBX Largest monitor-line size in bytes described by the type
960 CPUID_MONITOR_MWAIT_EBX.
961 @retval ECX Enumeration of Monitor-Mwait extensions support described by
962 the type CPUID_MONITOR_MWAIT_ECX.
963 @retval EDX Sub C-states supported described by the type
964 CPUID_MONITOR_MWAIT_EDX.
965
966 <b>Example usage</b>
967 @code
968 CPUID_MONITOR_MWAIT_EAX Eax;
969 CPUID_MONITOR_MWAIT_EBX Ebx;
970 CPUID_MONITOR_MWAIT_ECX Ecx;
971 CPUID_MONITOR_MWAIT_EDX Edx;
972
973 AsmCpuid (CPUID_MONITOR_MWAIT, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
974 @endcode
975 **/
976 #define CPUID_MONITOR_MWAIT 0x05
977
978 /**
979 CPUID MONITOR/MWAIT Information returned in EAX for CPUID leaf
980 #CPUID_MONITOR_MWAIT.
981 **/
982 typedef union {
983 ///
984 /// Individual bit fields
985 ///
986 struct {
987 ///
988 /// [Bits 15:0] Smallest monitor-line size in bytes (default is processor's
989 /// monitor granularity).
990 ///
991 UINT32 SmallestMonitorLineSize:16;
992 UINT32 Reserved:16;
993 } Bits;
994 ///
995 /// All bit fields as a 32-bit value
996 ///
997 UINT32 Uint32;
998 } CPUID_MONITOR_MWAIT_EAX;
999
1000 /**
1001 CPUID MONITOR/MWAIT Information returned in EBX for CPUID leaf
1002 #CPUID_MONITOR_MWAIT.
1003 **/
1004 typedef union {
1005 ///
1006 /// Individual bit fields
1007 ///
1008 struct {
1009 ///
1010 /// [Bits 15:0] Largest monitor-line size in bytes (default is processor's
1011 /// monitor granularity).
1012 ///
1013 UINT32 LargestMonitorLineSize:16;
1014 UINT32 Reserved:16;
1015 } Bits;
1016 ///
1017 /// All bit fields as a 32-bit value
1018 ///
1019 UINT32 Uint32;
1020 } CPUID_MONITOR_MWAIT_EBX;
1021
1022 /**
1023 CPUID MONITOR/MWAIT Information returned in ECX for CPUID leaf
1024 #CPUID_MONITOR_MWAIT.
1025 **/
1026 typedef union {
1027 ///
1028 /// Individual bit fields
1029 ///
1030 struct {
1031 ///
1032 /// [Bit 0] If 0, then only EAX and EBX are valid. If 1, then EAX, EBX, ECX,
1033 /// and EDX are valid.
1034 ///
1035 UINT32 ExtensionsSupported:1;
1036 ///
1037 /// [Bit 1] Supports treating interrupts as break-event for MWAIT, even when
1038 /// interrupts disabled.
1039 ///
1040 UINT32 InterruptAsBreak:1;
1041 UINT32 Reserved:30;
1042 } Bits;
1043 ///
1044 /// All bit fields as a 32-bit value
1045 ///
1046 UINT32 Uint32;
1047 } CPUID_MONITOR_MWAIT_ECX;
1048
1049 /**
1050 CPUID MONITOR/MWAIT Information returned in EDX for CPUID leaf
1051 #CPUID_MONITOR_MWAIT.
1052
1053 @note
1054 The definition of C0 through C7 states for MWAIT extension are
1055 processor-specific C-states, not ACPI C-states.
1056 **/
1057 typedef union {
1058 ///
1059 /// Individual bit fields
1060 ///
1061 struct {
1062 ///
1063 /// [Bits 3:0] Number of C0 sub C-states supported using MWAIT.
1064 ///
1065 UINT32 C0States:4;
1066 ///
1067 /// [Bits 7:4] Number of C1 sub C-states supported using MWAIT.
1068 ///
1069 UINT32 C1States:4;
1070 ///
1071 /// [Bits 11:8] Number of C2 sub C-states supported using MWAIT.
1072 ///
1073 UINT32 C2States:4;
1074 ///
1075 /// [Bits 15:12] Number of C3 sub C-states supported using MWAIT.
1076 ///
1077 UINT32 C3States:4;
1078 ///
1079 /// [Bits 19:16] Number of C4 sub C-states supported using MWAIT.
1080 ///
1081 UINT32 C4States:4;
1082 ///
1083 /// [Bits 23:20] Number of C5 sub C-states supported using MWAIT.
1084 ///
1085 UINT32 C5States:4;
1086 ///
1087 /// [Bits 27:24] Number of C6 sub C-states supported using MWAIT.
1088 ///
1089 UINT32 C6States:4;
1090 ///
1091 /// [Bits 31:28] Number of C7 sub C-states supported using MWAIT.
1092 ///
1093 UINT32 C7States:4;
1094 } Bits;
1095 ///
1096 /// All bit fields as a 32-bit value
1097 ///
1098 UINT32 Uint32;
1099 } CPUID_MONITOR_MWAIT_EDX;
1100
1101
1102 /**
1103 CPUID Thermal and Power Management
1104
1105 @param EAX CPUID_THERMAL_POWER_MANAGEMENT (0x06)
1106
1107 @retval EAX Thermal and power management features described by the type
1108 CPUID_THERMAL_POWER_MANAGEMENT_EAX.
1109 @retval EBX Number of Interrupt Thresholds in Digital Thermal Sensor
1110 described by the type CPUID_THERMAL_POWER_MANAGEMENT_EBX.
1111 @retval ECX Performance features described by the type
1112 CPUID_THERMAL_POWER_MANAGEMENT_ECX.
1113 @retval EDX Reserved.
1114
1115 <b>Example usage</b>
1116 @code
1117 CPUID_THERMAL_POWER_MANAGEMENT_EAX Eax;
1118 CPUID_THERMAL_POWER_MANAGEMENT_EBX Ebx;
1119 CPUID_THERMAL_POWER_MANAGEMENT_ECX Ecx;
1120
1121 AsmCpuid (CPUID_THERMAL_POWER_MANAGEMENT, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, NULL);
1122 @endcode
1123 **/
1124 #define CPUID_THERMAL_POWER_MANAGEMENT 0x06
1125
1126 /**
1127 CPUID Thermal and Power Management Information returned in EAX for CPUID leaf
1128 #CPUID_THERMAL_POWER_MANAGEMENT.
1129 **/
1130 typedef union {
1131 ///
1132 /// Individual bit fields
1133 ///
1134 struct {
1135 ///
1136 /// [Bit 0] Digital temperature sensor is supported if set.
1137 ///
1138 UINT32 DigitalTemperatureSensor:1;
1139 ///
1140 /// [Bit 1] Intel Turbo Boost Technology Available (see IA32_MISC_ENABLE[38]).
1141 ///
1142 UINT32 TurboBoostTechnology:1;
1143 ///
1144 /// [Bit 2] APIC-Timer-always-running feature is supported if set.
1145 ///
1146 UINT32 ARAT:1;
1147 UINT32 Reserved1:1;
1148 ///
1149 /// [Bit 4] Power limit notification controls are supported if set.
1150 ///
1151 UINT32 PLN:1;
1152 ///
1153 /// [Bit 5] Clock modulation duty cycle extension is supported if set.
1154 ///
1155 UINT32 ECMD:1;
1156 ///
1157 /// [Bit 6] Package thermal management is supported if set.
1158 ///
1159 UINT32 PTM:1;
1160 ///
1161 /// [Bit 7] HWP base registers (IA32_PM_ENABLE[Bit 0], IA32_HWP_CAPABILITIES,
1162 /// IA32_HWP_REQUEST, IA32_HWP_STATUS) are supported if set.
1163 ///
1164 UINT32 HWP:1;
1165 ///
1166 /// [Bit 8] IA32_HWP_INTERRUPT MSR is supported if set.
1167 ///
1168 UINT32 HWP_Notification:1;
1169 ///
1170 /// [Bit 9] IA32_HWP_REQUEST[Bits 41:32] is supported if set.
1171 ///
1172 UINT32 HWP_Activity_Window:1;
1173 ///
1174 /// [Bit 10] IA32_HWP_REQUEST[Bits 31:24] is supported if set.
1175 ///
1176 UINT32 HWP_Energy_Performance_Preference:1;
1177 ///
1178 /// [Bit 11] IA32_HWP_REQUEST_PKG MSR is supported if set.
1179 ///
1180 UINT32 HWP_Package_Level_Request:1;
1181 UINT32 Reserved2:1;
1182 ///
1183 /// [Bit 13] HDC base registers IA32_PKG_HDC_CTL, IA32_PM_CTL1,
1184 /// IA32_THREAD_STALL MSRs are supported if set.
1185 ///
1186 UINT32 HDC:1;
1187 ///
1188 /// [Bit 14] Intel Turbo Boost Max Technology 3.0 available.
1189 ///
1190 UINT32 TurboBoostMaxTechnology30:1;
1191 ///
1192 /// [Bit 15] HWP Capabilities.
1193 /// Highest Performance change is supported if set.
1194 ///
1195 UINT32 HWPCapabilities:1;
1196 ///
1197 /// [Bit 16] HWP PECI override is supported if set.
1198 ///
1199 UINT32 HWPPECIOverride:1;
1200 ///
1201 /// [Bit 17] Flexible HWP is supported if set.
1202 ///
1203 UINT32 FlexibleHWP:1;
1204 ///
1205 /// [Bit 18] Fast access mode for the IA32_HWP_REQUEST MSR is supported if set.
1206 ///
1207 UINT32 FastAccessMode:1;
1208 UINT32 Reserved4:1;
1209 ///
1210 /// [Bit 20] Ignoring Idle Logical Processor HWP request is supported if set.
1211 ///
1212 UINT32 IgnoringIdleLogicalProcessorHWPRequest:1;
1213 UINT32 Reserved5:11;
1214 } Bits;
1215 ///
1216 /// All bit fields as a 32-bit value
1217 ///
1218 UINT32 Uint32;
1219 } CPUID_THERMAL_POWER_MANAGEMENT_EAX;
1220
1221 /**
1222 CPUID Thermal and Power Management Information returned in EBX for CPUID leaf
1223 #CPUID_THERMAL_POWER_MANAGEMENT.
1224 **/
1225 typedef union {
1226 ///
1227 /// Individual bit fields
1228 ///
1229 struct {
1230 ///
1231 /// {Bits 3:0] Number of Interrupt Thresholds in Digital Thermal Sensor.
1232 ///
1233 UINT32 InterruptThresholds:4;
1234 UINT32 Reserved:28;
1235 } Bits;
1236 ///
1237 /// All bit fields as a 32-bit value
1238 ///
1239 UINT32 Uint32;
1240 } CPUID_THERMAL_POWER_MANAGEMENT_EBX;
1241
1242 /**
1243 CPUID Thermal and Power Management Information returned in ECX for CPUID leaf
1244 #CPUID_THERMAL_POWER_MANAGEMENT.
1245 **/
1246 typedef union {
1247 ///
1248 /// Individual bit fields
1249 ///
1250 struct {
1251 ///
1252 /// [Bit 0] Hardware Coordination Feedback Capability (Presence of IA32_MPERF
1253 /// and IA32_APERF). The capability to provide a measure of delivered
1254 /// processor performance (since last reset of the counters), as a percentage
1255 /// of the expected processor performance when running at the TSC frequency.
1256 ///
1257 UINT32 HardwareCoordinationFeedback:1;
1258 UINT32 Reserved1:2;
1259 ///
1260 /// [Bit 3] If this bit is set, then the processor supports performance-energy
1261 /// bias preference and the architectural MSR called IA32_ENERGY_PERF_BIAS
1262 /// (1B0H).
1263 ///
1264 UINT32 PerformanceEnergyBias:1;
1265 UINT32 Reserved2:28;
1266 } Bits;
1267 ///
1268 /// All bit fields as a 32-bit value
1269 ///
1270 UINT32 Uint32;
1271 } CPUID_THERMAL_POWER_MANAGEMENT_ECX;
1272
1273
1274 /**
1275 CPUID Structured Extended Feature Flags Enumeration
1276
1277 @param EAX CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS (0x07)
1278 @param ECX CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO (0x00).
1279
1280 @note
1281 If ECX contains an invalid sub-leaf index, EAX/EBX/ECX/EDX return 0. Sub-leaf
1282 index n is invalid if n exceeds the value that sub-leaf 0 returns in EAX.
1283
1284 @retval EAX The maximum input value for ECX to retrieve sub-leaf information.
1285 @retval EBX Structured Extended Feature Flags described by the type
1286 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EBX.
1287 @retval EBX Structured Extended Feature Flags described by the type
1288 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_ECX.
1289 @retval EDX Reserved.
1290
1291 <b>Example usage</b>
1292 @code
1293 UINT32 Eax;
1294 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EBX Ebx;
1295 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_ECX Ecx;
1296 UINT32 SubLeaf;
1297
1298 AsmCpuidEx (
1299 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS,
1300 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO,
1301 &Eax, NULL, NULL, NULL
1302 );
1303 for (SubLeaf = 0; SubLeaf <= Eax; SubLeaf++) {
1304 AsmCpuidEx (
1305 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS,
1306 SubLeaf,
1307 NULL, &Ebx.Uint32, &Ecx.Uint32, NULL
1308 );
1309 }
1310 @endcode
1311 **/
1312 #define CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS 0x07
1313
1314 ///
1315 /// CPUID Structured Extended Feature Flags Enumeration sub-leaf
1316 ///
1317 #define CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO 0x00
1318
1319 /**
1320 CPUID Structured Extended Feature Flags Enumeration in EBX for CPUID leaf
1321 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS sub leaf
1322 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO.
1323 **/
1324 typedef union {
1325 ///
1326 /// Individual bit fields
1327 ///
1328 struct {
1329 ///
1330 /// [Bit 0] Supports RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE if 1.
1331 ///
1332 UINT32 FSGSBASE:1;
1333 ///
1334 /// [Bit 1] IA32_TSC_ADJUST MSR is supported if 1.
1335 ///
1336 UINT32 IA32_TSC_ADJUST:1;
1337 ///
1338 /// [Bit 2] Intel SGX is supported if 1. See section 37.7 "DISCOVERING SUPPORT
1339 /// FOR INTEL(R) SGX AND ENABLING ENCLAVE INSTRUCTIONS".
1340 ///
1341 UINT32 SGX:1;
1342 ///
1343 /// [Bit 3] If 1 indicates the processor supports the first group of advanced
1344 /// bit manipulation extensions (ANDN, BEXTR, BLSI, BLSMSK, BLSR, TZCNT)
1345 ///
1346 UINT32 BMI1:1;
1347 ///
1348 /// [Bit 4] Hardware Lock Elision
1349 ///
1350 UINT32 HLE:1;
1351 ///
1352 /// [Bit 5] If 1 indicates the processor supports AVX2 instruction extensions.
1353 ///
1354 UINT32 AVX2:1;
1355 ///
1356 /// [Bit 6] x87 FPU Data Pointer updated only on x87 exceptions if 1.
1357 ///
1358 UINT32 FDP_EXCPTN_ONLY:1;
1359 ///
1360 /// [Bit 7] Supports Supervisor-Mode Execution Prevention if 1.
1361 ///
1362 UINT32 SMEP:1;
1363 ///
1364 /// [Bit 8] If 1 indicates the processor supports the second group of
1365 /// advanced bit manipulation extensions (BZHI, MULX, PDEP, PEXT, RORX,
1366 /// SARX, SHLX, SHRX)
1367 ///
1368 UINT32 BMI2:1;
1369 ///
1370 /// [Bit 9] Supports Enhanced REP MOVSB/STOSB if 1.
1371 ///
1372 UINT32 EnhancedRepMovsbStosb:1;
1373 ///
1374 /// [Bit 10] If 1, supports INVPCID instruction for system software that
1375 /// manages process-context identifiers.
1376 ///
1377 UINT32 INVPCID:1;
1378 ///
1379 /// [Bit 11] Restricted Transactional Memory
1380 ///
1381 UINT32 RTM:1;
1382 ///
1383 /// [Bit 12] Supports Intel(R) Resource Director Technology (Intel(R) RDT)
1384 /// Monitoring capability if 1.
1385 ///
1386 UINT32 RDT_M:1;
1387 ///
1388 /// [Bit 13] Deprecates FPU CS and FPU DS values if 1.
1389 ///
1390 UINT32 DeprecateFpuCsDs:1;
1391 ///
1392 /// [Bit 14] Supports Intel(R) Memory Protection Extensions if 1.
1393 ///
1394 UINT32 MPX:1;
1395 ///
1396 /// [Bit 15] Supports Intel(R) Resource Director Technology (Intel(R) RDT)
1397 /// Allocation capability if 1.
1398 ///
1399 UINT32 RDT_A:1;
1400 ///
1401 /// [Bit 16] AVX512F.
1402 ///
1403 UINT32 AVX512F:1;
1404 ///
1405 /// [Bit 17] AVX512DQ.
1406 ///
1407 UINT32 AVX512DQ:1;
1408 ///
1409 /// [Bit 18] If 1 indicates the processor supports the RDSEED instruction.
1410 ///
1411 UINT32 RDSEED:1;
1412 ///
1413 /// [Bit 19] If 1 indicates the processor supports the ADCX and ADOX
1414 /// instructions.
1415 ///
1416 UINT32 ADX:1;
1417 ///
1418 /// [Bit 20] Supports Supervisor-Mode Access Prevention (and the CLAC/STAC
1419 /// instructions) if 1.
1420 ///
1421 UINT32 SMAP:1;
1422 ///
1423 /// [Bit 21] AVX512_IFMA.
1424 ///
1425 UINT32 AVX512_IFMA:1;
1426 UINT32 Reserved6:1;
1427 ///
1428 /// [Bit 23] If 1 indicates the processor supports the CLFLUSHOPT instruction.
1429 ///
1430 UINT32 CLFLUSHOPT:1;
1431 ///
1432 /// [Bit 24] If 1 indicates the processor supports the CLWB instruction.
1433 ///
1434 UINT32 CLWB:1;
1435 ///
1436 /// [Bit 25] If 1 indicates the processor supports the Intel Processor Trace
1437 /// extensions.
1438 ///
1439 UINT32 IntelProcessorTrace:1;
1440 ///
1441 /// [Bit 26] AVX512PF. (Intel Xeon Phi only.).
1442 ///
1443 UINT32 AVX512PF:1;
1444 ///
1445 /// [Bit 27] AVX512ER. (Intel Xeon Phi only.).
1446 ///
1447 UINT32 AVX512ER:1;
1448 ///
1449 /// [Bit 28] AVX512CD.
1450 ///
1451 UINT32 AVX512CD:1;
1452 ///
1453 /// [Bit 29] Supports Intel(R) Secure Hash Algorithm Extensions (Intel(R)
1454 /// SHA Extensions) if 1.
1455 ///
1456 UINT32 SHA:1;
1457 ///
1458 /// [Bit 30] AVX512BW.
1459 ///
1460 UINT32 AVX512BW:1;
1461 ///
1462 /// [Bit 31] AVX512VL.
1463 ///
1464 UINT32 AVX512VL:1;
1465 } Bits;
1466 ///
1467 /// All bit fields as a 32-bit value
1468 ///
1469 UINT32 Uint32;
1470 } CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EBX;
1471
1472 /**
1473 CPUID Structured Extended Feature Flags Enumeration in ECX for CPUID leaf
1474 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS sub leaf
1475 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO.
1476 **/
1477 typedef union {
1478 ///
1479 /// Individual bit fields
1480 ///
1481 struct {
1482 ///
1483 /// [Bit 0] If 1 indicates the processor supports the PREFETCHWT1 instruction.
1484 /// (Intel Xeon Phi only.)
1485 ///
1486 UINT32 PREFETCHWT1:1;
1487 ///
1488 /// [Bit 1] AVX512_VBMI.
1489 ///
1490 UINT32 AVX512_VBMI:1;
1491 ///
1492 /// [Bit 2] Supports user-mode instruction prevention if 1.
1493 ///
1494 UINT32 UMIP:1;
1495 ///
1496 /// [Bit 3] Supports protection keys for user-mode pages if 1.
1497 ///
1498 UINT32 PKU:1;
1499 ///
1500 /// [Bit 4] If 1, OS has set CR4.PKE to enable protection keys (and the
1501 /// RDPKRU/WRPKRU instructions).
1502 ///
1503 UINT32 OSPKE:1;
1504 UINT32 Reserved5:9;
1505 ///
1506 /// [Bits 14] AVX512_VPOPCNTDQ. (Intel Xeon Phi only.).
1507 ///
1508 UINT32 AVX512_VPOPCNTDQ:1;
1509 UINT32 Reserved6:2;
1510
1511 ///
1512 /// [Bits 21:17] The value of MAWAU used by the BNDLDX and BNDSTX instructions
1513 /// in 64-bit mode.
1514 ///
1515 UINT32 MAWAU:5;
1516 ///
1517 /// [Bit 22] RDPID and IA32_TSC_AUX are available if 1.
1518 ///
1519 UINT32 RDPID:1;
1520 UINT32 Reserved3:7;
1521 ///
1522 /// [Bit 30] Supports SGX Launch Configuration if 1.
1523 ///
1524 UINT32 SGX_LC:1;
1525 UINT32 Reserved4:1;
1526 } Bits;
1527 ///
1528 /// All bit fields as a 32-bit value
1529 ///
1530 UINT32 Uint32;
1531 } CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_ECX;
1532
1533 /**
1534 CPUID Structured Extended Feature Flags Enumeration in EDX for CPUID leaf
1535 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS sub leaf
1536 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO.
1537 **/
1538 typedef union {
1539 ///
1540 /// Individual bit fields
1541 ///
1542 struct {
1543 ///
1544 /// [Bit 1:0] Reserved.
1545 ///
1546 UINT32 Reserved1:2;
1547 ///
1548 /// [Bit 2] AVX512_4VNNIW. (Intel Xeon Phi only.)
1549 ///
1550 UINT32 AVX512_4VNNIW:1;
1551 ///
1552 /// [Bit 3] AVX512_4FMAPS. (Intel Xeon Phi only.)
1553 ///
1554 UINT32 AVX512_4FMAPS:1;
1555 ///
1556 /// [Bit 25:4] Reserved.
1557 ///
1558 UINT32 Reserved2:22;
1559 ///
1560 /// [Bit 26] Enumerates support for indirect branch restricted speculation
1561 /// (IBRS) and the indirect branch pre-dictor barrier (IBPB). Processors
1562 /// that set this bit support the IA32_SPEC_CTRL MSR and the IA32_PRED_CMD
1563 /// MSR. They allow software to set IA32_SPEC_CTRL[0] (IBRS) and
1564 /// IA32_PRED_CMD[0] (IBPB).
1565 ///
1566 UINT32 EnumeratesSupportForIBRSAndIBPB:1;
1567 ///
1568 /// [Bit 27] Enumerates support for single thread indirect branch
1569 /// predictors (STIBP). Processors that set this bit support the
1570 /// IA32_SPEC_CTRL MSR. They allow software to set IA32_SPEC_CTRL[1]
1571 /// (STIBP).
1572 ///
1573 UINT32 EnumeratesSupportForSTIBP:1;
1574 ///
1575 /// [Bit 28] Enumerates support for L1D_FLUSH. Processors that set this bit
1576 /// support the IA32_FLUSH_CMD MSR. They allow software to set
1577 /// IA32_FLUSH_CMD[0] (L1D_FLUSH).
1578 ///
1579 UINT32 EnumeratesSupportForL1D_FLUSH:1;
1580 ///
1581 /// [Bit 29] Enumerates support for the IA32_ARCH_CAPABILITIES MSR.
1582 ///
1583 UINT32 EnumeratesSupportForCapability:1;
1584 ///
1585 /// [Bit 30] Reserved.
1586 ///
1587 UINT32 Reserved3:1;
1588 ///
1589 /// [Bit 31] Enumerates support for Speculative Store Bypass Disable (SSBD).
1590 /// Processors that set this bit sup-port the IA32_SPEC_CTRL MSR. They allow
1591 /// software to set IA32_SPEC_CTRL[2] (SSBD).
1592 ///
1593 UINT32 EnumeratesSupportForSSBD:1;
1594 } Bits;
1595 ///
1596 /// All bit fields as a 32-bit value
1597 ///
1598 UINT32 Uint32;
1599 } CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EDX;
1600
1601 /**
1602 CPUID Direct Cache Access Information
1603
1604 @param EAX CPUID_DIRECT_CACHE_ACCESS_INFO (0x09)
1605
1606 @retval EAX Value of bits [31:0] of IA32_PLATFORM_DCA_CAP MSR (address 1F8H).
1607 @retval EBX Reserved.
1608 @retval ECX Reserved.
1609 @retval EDX Reserved.
1610
1611 <b>Example usage</b>
1612 @code
1613 UINT32 Eax;
1614
1615 AsmCpuid (CPUID_DIRECT_CACHE_ACCESS_INFO, &Eax, NULL, NULL, NULL);
1616 @endcode
1617 **/
1618 #define CPUID_DIRECT_CACHE_ACCESS_INFO 0x09
1619
1620
1621 /**
1622 CPUID Architectural Performance Monitoring
1623
1624 @param EAX CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING (0x0A)
1625
1626 @retval EAX Architectural Performance Monitoring information described by
1627 the type CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EAX.
1628 @retval EBX Architectural Performance Monitoring information described by
1629 the type CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EBX.
1630 @retval ECX Reserved.
1631 @retval EDX Architectural Performance Monitoring information described by
1632 the type CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EDX.
1633
1634 <b>Example usage</b>
1635 @code
1636 CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EAX Eax;
1637 CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EBX Ebx;
1638 CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EDX Edx;
1639
1640 AsmCpuid (CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING, &Eax.Uint32, &Ebx.Uint32, NULL, &Edx.Uint32);
1641 @endcode
1642 **/
1643 #define CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING 0x0A
1644
1645 /**
1646 CPUID Architectural Performance Monitoring EAX for CPUID leaf
1647 #CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING.
1648 **/
1649 typedef union {
1650 ///
1651 /// Individual bit fields
1652 ///
1653 struct {
1654 ///
1655 /// [Bit 7:0] Version ID of architectural performance monitoring.
1656 ///
1657 UINT32 ArchPerfMonVerID:8;
1658 ///
1659 /// [Bits 15:8] Number of general-purpose performance monitoring counter
1660 /// per logical processor.
1661 ///
1662 /// IA32_PERFEVTSELx MSRs start at address 186H and occupy a contiguous
1663 /// block of MSR address space. Each performance event select register is
1664 /// paired with a corresponding performance counter in the 0C1H address
1665 /// block.
1666 ///
1667 UINT32 PerformanceMonitorCounters:8;
1668 ///
1669 /// [Bits 23:16] Bit width of general-purpose, performance monitoring counter.
1670 ///
1671 /// The bit width of an IA32_PMCx MSR. This the number of valid bits for
1672 /// read operation. On write operations, the lower-order 32 bits of the MSR
1673 /// may be written with any value, and the high-order bits are sign-extended
1674 /// from the value of bit 31.
1675 ///
1676 UINT32 PerformanceMonitorCounterWidth:8;
1677 ///
1678 /// [Bits 31:24] Length of EBX bit vector to enumerate architectural
1679 /// performance monitoring events.
1680 ///
1681 UINT32 EbxBitVectorLength:8;
1682 } Bits;
1683 ///
1684 /// All bit fields as a 32-bit value
1685 ///
1686 UINT32 Uint32;
1687 } CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EAX;
1688
1689 /**
1690 CPUID Architectural Performance Monitoring EBX for CPUID leaf
1691 #CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING.
1692 **/
1693 typedef union {
1694 ///
1695 /// Individual bit fields
1696 ///
1697 struct {
1698 ///
1699 /// [Bit 0] Core cycle event not available if 1.
1700 ///
1701 UINT32 UnhaltedCoreCycles:1;
1702 ///
1703 /// [Bit 1] Instruction retired event not available if 1.
1704 ///
1705 UINT32 InstructionsRetired:1;
1706 ///
1707 /// [Bit 2] Reference cycles event not available if 1.
1708 ///
1709 UINT32 UnhaltedReferenceCycles:1;
1710 ///
1711 /// [Bit 3] Last-level cache reference event not available if 1.
1712 ///
1713 UINT32 LastLevelCacheReferences:1;
1714 ///
1715 /// [Bit 4] Last-level cache misses event not available if 1.
1716 ///
1717 UINT32 LastLevelCacheMisses:1;
1718 ///
1719 /// [Bit 5] Branch instruction retired event not available if 1.
1720 ///
1721 UINT32 BranchInstructionsRetired:1;
1722 ///
1723 /// [Bit 6] Branch mispredict retired event not available if 1.
1724 ///
1725 UINT32 AllBranchMispredictRetired:1;
1726 UINT32 Reserved:25;
1727 } Bits;
1728 ///
1729 /// All bit fields as a 32-bit value
1730 ///
1731 UINT32 Uint32;
1732 } CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EBX;
1733
1734 /**
1735 CPUID Architectural Performance Monitoring EDX for CPUID leaf
1736 #CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING.
1737 **/
1738 typedef union {
1739 ///
1740 /// Individual bit fields
1741 ///
1742 struct {
1743 ///
1744 /// [Bits 4:0] Number of fixed-function performance counters
1745 /// (if Version ID > 1).
1746 ///
1747 UINT32 FixedFunctionPerformanceCounters:5;
1748 ///
1749 /// [Bits 12:5] Bit width of fixed-function performance counters
1750 /// (if Version ID > 1).
1751 ///
1752 UINT32 FixedFunctionPerformanceCounterWidth:8;
1753 UINT32 Reserved1:2;
1754 ///
1755 /// [Bits 15] AnyThread deprecation.
1756 ///
1757 UINT32 AnyThreadDeprecation:1;
1758 UINT32 Reserved2:16;
1759 } Bits;
1760 ///
1761 /// All bit fields as a 32-bit value
1762 ///
1763 UINT32 Uint32;
1764 } CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EDX;
1765
1766
1767 /**
1768 CPUID Extended Topology Information
1769
1770 @note
1771 CPUID leaf 1FH is a preferred superset to leaf 0BH. Intel recommends first
1772 checking for the existence of Leaf 1FH before using leaf 0BH.
1773 Most of Leaf 0BH output depends on the initial value in ECX. The EDX output
1774 of leaf 0BH is always valid and does not vary with input value in ECX. Output
1775 value in ECX[7:0] always equals input value in ECX[7:0].
1776 Sub-leaf index 0 enumerates SMT level. Each subsequent higher sub-leaf index
1777 enumerates a higher-level topological entity in hierarchical order.
1778 For sub-leaves that return an invalid level-type of 0 in ECX[15:8]; EAX and
1779 EBX will return 0.
1780 If an input value n in ECX returns the invalid level-type of 0 in ECX[15:8],
1781 other input values with ECX > n also return 0 in ECX[15:8].
1782
1783 @param EAX CPUID_EXTENDED_TOPOLOGY (0x0B)
1784 @param ECX Level number
1785
1786 @retval EAX Extended topology information described by the type
1787 CPUID_EXTENDED_TOPOLOGY_EAX.
1788 @retval EBX Extended topology information described by the type
1789 CPUID_EXTENDED_TOPOLOGY_EBX.
1790 @retval ECX Extended topology information described by the type
1791 CPUID_EXTENDED_TOPOLOGY_ECX.
1792 @retval EDX x2APIC ID the current logical processor.
1793
1794 <b>Example usage</b>
1795 @code
1796 CPUID_EXTENDED_TOPOLOGY_EAX Eax;
1797 CPUID_EXTENDED_TOPOLOGY_EBX Ebx;
1798 CPUID_EXTENDED_TOPOLOGY_ECX Ecx;
1799 UINT32 Edx;
1800 UINT32 LevelNumber;
1801
1802 LevelNumber = 0;
1803 do {
1804 AsmCpuidEx (
1805 CPUID_EXTENDED_TOPOLOGY, LevelNumber,
1806 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx
1807 );
1808 LevelNumber++;
1809 } while (Eax.Bits.ApicIdShift != 0);
1810 @endcode
1811 **/
1812 #define CPUID_EXTENDED_TOPOLOGY 0x0B
1813
1814 /**
1815 CPUID Extended Topology Information EAX for CPUID leaf #CPUID_EXTENDED_TOPOLOGY.
1816 **/
1817 typedef union {
1818 ///
1819 /// Individual bit fields
1820 ///
1821 struct {
1822 ///
1823 /// [Bits 4:0] Number of bits to shift right on x2APIC ID to get a unique
1824 /// topology ID of the next level type. All logical processors with the
1825 /// same next level ID share current level.
1826 ///
1827 /// @note
1828 /// Software should use this field (EAX[4:0]) to enumerate processor
1829 /// topology of the system.
1830 ///
1831 UINT32 ApicIdShift:5;
1832 UINT32 Reserved:27;
1833 } Bits;
1834 ///
1835 /// All bit fields as a 32-bit value
1836 ///
1837 UINT32 Uint32;
1838 } CPUID_EXTENDED_TOPOLOGY_EAX;
1839
1840 /**
1841 CPUID Extended Topology Information EBX for CPUID leaf #CPUID_EXTENDED_TOPOLOGY.
1842 **/
1843 typedef union {
1844 ///
1845 /// Individual bit fields
1846 ///
1847 struct {
1848 ///
1849 /// [Bits 15:0] Number of logical processors at this level type. The number
1850 /// reflects configuration as shipped by Intel.
1851 ///
1852 /// @note
1853 /// Software must not use EBX[15:0] to enumerate processor topology of the
1854 /// system. This value in this field (EBX[15:0]) is only intended for
1855 /// display/diagnostic purposes. The actual number of logical processors
1856 /// available to BIOS/OS/Applications may be different from the value of
1857 /// EBX[15:0], depending on software and platform hardware configurations.
1858 ///
1859 UINT32 LogicalProcessors:16;
1860 UINT32 Reserved:16;
1861 } Bits;
1862 ///
1863 /// All bit fields as a 32-bit value
1864 ///
1865 UINT32 Uint32;
1866 } CPUID_EXTENDED_TOPOLOGY_EBX;
1867
1868 /**
1869 CPUID Extended Topology Information ECX for CPUID leaf #CPUID_EXTENDED_TOPOLOGY.
1870 **/
1871 typedef union {
1872 ///
1873 /// Individual bit fields
1874 ///
1875 struct {
1876 ///
1877 /// [Bits 7:0] Level number. Same value in ECX input.
1878 ///
1879 UINT32 LevelNumber:8;
1880 ///
1881 /// [Bits 15:8] Level type.
1882 ///
1883 /// @note
1884 /// The value of the "level type" field is not related to level numbers in
1885 /// any way, higher "level type" values do not mean higher levels.
1886 ///
1887 UINT32 LevelType:8;
1888 UINT32 Reserved:16;
1889 } Bits;
1890 ///
1891 /// All bit fields as a 32-bit value
1892 ///
1893 UINT32 Uint32;
1894 } CPUID_EXTENDED_TOPOLOGY_ECX;
1895
1896 ///
1897 /// @{ Define value for CPUID_EXTENDED_TOPOLOGY_ECX.LevelType
1898 ///
1899 #define CPUID_EXTENDED_TOPOLOGY_LEVEL_TYPE_INVALID 0x00
1900 #define CPUID_EXTENDED_TOPOLOGY_LEVEL_TYPE_SMT 0x01
1901 #define CPUID_EXTENDED_TOPOLOGY_LEVEL_TYPE_CORE 0x02
1902 ///
1903 /// @}
1904 ///
1905
1906
1907 /**
1908 CPUID Extended State Information
1909
1910 @param EAX CPUID_EXTENDED_STATE (0x0D)
1911 @param ECX CPUID_EXTENDED_STATE_MAIN_LEAF (0x00).
1912 CPUID_EXTENDED_STATE_SUB_LEAF (0x01).
1913 CPUID_EXTENDED_STATE_SIZE_OFFSET (0x02).
1914 Sub leafs 2..n based on supported bits in XCR0 or IA32_XSS_MSR.
1915 **/
1916 #define CPUID_EXTENDED_STATE 0x0D
1917
1918 /**
1919 CPUID Extended State Information Main Leaf
1920
1921 @param EAX CPUID_EXTENDED_STATE (0x0D)
1922 @param ECX CPUID_EXTENDED_STATE_MAIN_LEAF (0x00)
1923
1924 @retval EAX Reports the supported bits of the lower 32 bits of XCR0. XCR0[n]
1925 can be set to 1 only if EAX[n] is 1. The format of the extended
1926 state main leaf is described by the type
1927 CPUID_EXTENDED_STATE_MAIN_LEAF_EAX.
1928 @retval EBX Maximum size (bytes, from the beginning of the XSAVE/XRSTOR save
1929 area) required by enabled features in XCR0. May be different than
1930 ECX if some features at the end of the XSAVE save area are not
1931 enabled.
1932 @retval ECX Maximum size (bytes, from the beginning of the XSAVE/XRSTOR save
1933 area) of the XSAVE/XRSTOR save area required by all supported
1934 features in the processor, i.e., all the valid bit fields in XCR0.
1935 @retval EDX Reports the supported bits of the upper 32 bits of XCR0.
1936 XCR0[n+32] can be set to 1 only if EDX[n] is 1.
1937
1938 <b>Example usage</b>
1939 @code
1940 CPUID_EXTENDED_STATE_MAIN_LEAF_EAX Eax;
1941 UINT32 Ebx;
1942 UINT32 Ecx;
1943 UINT32 Edx;
1944
1945 AsmCpuidEx (
1946 CPUID_EXTENDED_STATE, CPUID_EXTENDED_STATE_MAIN_LEAF,
1947 &Eax.Uint32, &Ebx, &Ecx, &Edx
1948 );
1949 @endcode
1950 **/
1951 #define CPUID_EXTENDED_STATE_MAIN_LEAF 0x00
1952
1953 /**
1954 CPUID Extended State Information EAX for CPUID leaf #CPUID_EXTENDED_STATE,
1955 sub-leaf #CPUID_EXTENDED_STATE_MAIN_LEAF.
1956 **/
1957 typedef union {
1958 ///
1959 /// Individual bit fields
1960 ///
1961 struct {
1962 ///
1963 /// [Bit 0] x87 state.
1964 ///
1965 UINT32 x87:1;
1966 ///
1967 /// [Bit 1] SSE state.
1968 ///
1969 UINT32 SSE:1;
1970 ///
1971 /// [Bit 2] AVX state.
1972 ///
1973 UINT32 AVX:1;
1974 ///
1975 /// [Bits 4:3] MPX state.
1976 ///
1977 UINT32 MPX:2;
1978 ///
1979 /// [Bits 7:5] AVX-512 state.
1980 ///
1981 UINT32 AVX_512:3;
1982 ///
1983 /// [Bit 8] Used for IA32_XSS.
1984 ///
1985 UINT32 IA32_XSS:1;
1986 ///
1987 /// [Bit 9] PKRU state.
1988 ///
1989 UINT32 PKRU:1;
1990 UINT32 Reserved1:3;
1991 ///
1992 /// [Bit 13] Used for IA32_XSS, part 2.
1993 ///
1994 UINT32 IA32_XSS_2:1;
1995 UINT32 Reserved2:18;
1996 } Bits;
1997 ///
1998 /// All bit fields as a 32-bit value
1999 ///
2000 UINT32 Uint32;
2001 } CPUID_EXTENDED_STATE_MAIN_LEAF_EAX;
2002
2003 /**
2004 CPUID Extended State Information Sub Leaf
2005
2006 @param EAX CPUID_EXTENDED_STATE (0x0D)
2007 @param ECX CPUID_EXTENDED_STATE_SUB_LEAF (0x01)
2008
2009 @retval EAX The format of the extended state sub-leaf is described by the
2010 type CPUID_EXTENDED_STATE_SUB_LEAF_EAX.
2011 @retval EBX The size in bytes of the XSAVE area containing all states
2012 enabled by XCRO | IA32_XSS.
2013 @retval ECX The format of the extended state sub-leaf is described by the
2014 type CPUID_EXTENDED_STATE_SUB_LEAF_ECX.
2015 @retval EDX Reports the supported bits of the upper 32 bits of the
2016 IA32_XSS MSR. IA32_XSS[n+32] can be set to 1 only if EDX[n] is 1.
2017
2018 <b>Example usage</b>
2019 @code
2020 CPUID_EXTENDED_STATE_SUB_LEAF_EAX Eax;
2021 UINT32 Ebx;
2022 CPUID_EXTENDED_STATE_SUB_LEAF_ECX Ecx;
2023 UINT32 Edx;
2024
2025 AsmCpuidEx (
2026 CPUID_EXTENDED_STATE, CPUID_EXTENDED_STATE_SUB_LEAF,
2027 &Eax.Uint32, &Ebx, &Ecx.Uint32, &Edx
2028 );
2029 @endcode
2030 **/
2031 #define CPUID_EXTENDED_STATE_SUB_LEAF 0x01
2032
2033 /**
2034 CPUID Extended State Information EAX for CPUID leaf #CPUID_EXTENDED_STATE,
2035 sub-leaf #CPUID_EXTENDED_STATE_SUB_LEAF.
2036 **/
2037 typedef union {
2038 ///
2039 /// Individual bit fields
2040 ///
2041 struct {
2042 ///
2043 /// [Bit 0] XSAVEOPT is available.
2044 ///
2045 UINT32 XSAVEOPT:1;
2046 ///
2047 /// [Bit 1] Supports XSAVEC and the compacted form of XRSTOR if set.
2048 ///
2049 UINT32 XSAVEC:1;
2050 ///
2051 /// [Bit 2] Supports XGETBV with ECX = 1 if set.
2052 ///
2053 UINT32 XGETBV:1;
2054 ///
2055 /// [Bit 3] Supports XSAVES/XRSTORS and IA32_XSS if set.
2056 ///
2057 UINT32 XSAVES:1;
2058 UINT32 Reserved:28;
2059 } Bits;
2060 ///
2061 /// All bit fields as a 32-bit value
2062 ///
2063 UINT32 Uint32;
2064 } CPUID_EXTENDED_STATE_SUB_LEAF_EAX;
2065
2066 /**
2067 CPUID Extended State Information ECX for CPUID leaf #CPUID_EXTENDED_STATE,
2068 sub-leaf #CPUID_EXTENDED_STATE_SUB_LEAF.
2069 **/
2070 typedef union {
2071 ///
2072 /// Individual bit fields
2073 ///
2074 struct {
2075 ///
2076 /// [Bits 7:0] Used for XCR0.
2077 ///
2078 UINT32 XCR0:1;
2079 ///
2080 /// [Bit 8] PT STate.
2081 ///
2082 UINT32 PT:1;
2083 ///
2084 /// [Bit 9] Used for XCR0.
2085 ///
2086 UINT32 XCR0_1:1;
2087 UINT32 Reserved1:3;
2088 ///
2089 /// [Bit 13] HWP state.
2090 ///
2091 UINT32 HWPState:1;
2092 UINT32 Reserved8:18;
2093 } Bits;
2094 ///
2095 /// All bit fields as a 32-bit value
2096 ///
2097 UINT32 Uint32;
2098 } CPUID_EXTENDED_STATE_SUB_LEAF_ECX;
2099
2100 /**
2101 CPUID Extended State Information Size and Offset Sub Leaf
2102
2103 @note
2104 Leaf 0DH output depends on the initial value in ECX.
2105 Each sub-leaf index (starting at position 2) is supported if it corresponds to
2106 a supported bit in either the XCR0 register or the IA32_XSS MSR.
2107 If ECX contains an invalid sub-leaf index, EAX/EBX/ECX/EDX return 0. Sub-leaf
2108 n (0 <= n <= 31) is invalid if sub-leaf 0 returns 0 in EAX[n] and sub-leaf 1
2109 returns 0 in ECX[n]. Sub-leaf n (32 <= n <= 63) is invalid if sub-leaf 0
2110 returns 0 in EDX[n-32] and sub-leaf 1 returns 0 in EDX[n-32].
2111
2112 @param EAX CPUID_EXTENDED_STATE (0x0D)
2113 @param ECX CPUID_EXTENDED_STATE_SIZE_OFFSET (0x02). Sub leafs 2..n based
2114 on supported bits in XCR0 or IA32_XSS_MSR.
2115
2116 @retval EAX The size in bytes (from the offset specified in EBX) of the save
2117 area for an extended state feature associated with a valid
2118 sub-leaf index, n.
2119 @retval EBX The offset in bytes of this extended state component's save area
2120 from the beginning of the XSAVE/XRSTOR area. This field reports
2121 0 if the sub-leaf index, n, does not map to a valid bit in the
2122 XCR0 register.
2123 @retval ECX The format of the extended state components's save area as
2124 described by the type CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX.
2125 This field reports 0 if the sub-leaf index, n, is invalid.
2126 @retval EDX This field reports 0 if the sub-leaf index, n, is invalid;
2127 otherwise it is reserved.
2128
2129 <b>Example usage</b>
2130 @code
2131 UINT32 Eax;
2132 UINT32 Ebx;
2133 CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX Ecx;
2134 UINT32 Edx;
2135 UINTN SubLeaf;
2136
2137 for (SubLeaf = CPUID_EXTENDED_STATE_SIZE_OFFSET; SubLeaf < 32; SubLeaf++) {
2138 AsmCpuidEx (
2139 CPUID_EXTENDED_STATE, SubLeaf,
2140 &Eax, &Ebx, &Ecx.Uint32, &Edx
2141 );
2142 }
2143 @endcode
2144 **/
2145 #define CPUID_EXTENDED_STATE_SIZE_OFFSET 0x02
2146
2147 /**
2148 CPUID Extended State Information ECX for CPUID leaf #CPUID_EXTENDED_STATE,
2149 sub-leaf #CPUID_EXTENDED_STATE_SIZE_OFFSET.
2150 **/
2151 typedef union {
2152 ///
2153 /// Individual bit fields
2154 ///
2155 struct {
2156 ///
2157 /// [Bit 0] Is set if the bit n (corresponding to the sub-leaf index) is
2158 /// supported in the IA32_XSS MSR; it is clear if bit n is instead supported
2159 /// in XCR0.
2160 ///
2161 UINT32 XSS:1;
2162 ///
2163 /// [Bit 1] is set if, when the compacted format of an XSAVE area is used,
2164 /// this extended state component located on the next 64-byte boundary
2165 /// following the preceding state component (otherwise, it is located
2166 /// immediately following the preceding state component).
2167 ///
2168 UINT32 Compacted:1;
2169 UINT32 Reserved:30;
2170 } Bits;
2171 ///
2172 /// All bit fields as a 32-bit value
2173 ///
2174 UINT32 Uint32;
2175 } CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX;
2176
2177
2178 /**
2179 CPUID Intel Resource Director Technology (Intel RDT) Monitoring Information
2180
2181 @param EAX CPUID_INTEL_RDT_MONITORING (0x0F)
2182 @param ECX CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF (0x00).
2183 CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF (0x01).
2184
2185 **/
2186 #define CPUID_INTEL_RDT_MONITORING 0x0F
2187
2188 /**
2189 CPUID Intel Resource Director Technology (Intel RDT) Monitoring Information
2190 Enumeration Sub-leaf
2191
2192 @param EAX CPUID_INTEL_RDT_MONITORING (0x0F)
2193 @param ECX CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF (0x00)
2194
2195 @retval EAX Reserved.
2196 @retval EBX Maximum range (zero-based) of RMID within this physical
2197 processor of all types.
2198 @retval ECX Reserved.
2199 @retval EDX L3 Cache Intel RDT Monitoring Information Enumeration described by
2200 the type CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF_EDX.
2201
2202 <b>Example usage</b>
2203 @code
2204 UINT32 Ebx;
2205 CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF_EDX Edx;
2206
2207 AsmCpuidEx (
2208 CPUID_INTEL_RDT_MONITORING, CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF,
2209 NULL, &Ebx, NULL, &Edx.Uint32
2210 );
2211 @endcode
2212 **/
2213 #define CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF 0x00
2214
2215 /**
2216 CPUID Intel RDT Monitoring Information EDX for CPUID leaf
2217 #CPUID_INTEL_RDT_MONITORING, sub-leaf
2218 #CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF.
2219 **/
2220 typedef union {
2221 ///
2222 /// Individual bit fields
2223 ///
2224 struct {
2225 UINT32 Reserved1:1;
2226 ///
2227 /// [Bit 1] Supports L3 Cache Intel RDT Monitoring if 1.
2228 ///
2229 UINT32 L3CacheRDT_M:1;
2230 UINT32 Reserved2:30;
2231 } Bits;
2232 ///
2233 /// All bit fields as a 32-bit value
2234 ///
2235 UINT32 Uint32;
2236 } CPUID_INTEL_RDT_MONITORING_ENUMERATION_SUB_LEAF_EDX;
2237
2238 /**
2239 CPUID L3 Cache Intel RDT Monitoring Capability Enumeration Sub-leaf
2240
2241 @param EAX CPUID_INTEL_RDT_MONITORING (0x0F)
2242 @param ECX CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF (0x01)
2243
2244 @retval EAX Reserved.
2245 @retval EBX Conversion factor from reported IA32_QM_CTR value to occupancy metric (bytes).
2246 @retval ECX Maximum range (zero-based) of RMID of this resource type.
2247 @retval EDX L3 Cache Intel RDT Monitoring Capability information described by the
2248 type CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF_EDX.
2249
2250 <b>Example usage</b>
2251 @code
2252 UINT32 Ebx;
2253 UINT32 Ecx;
2254 CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF_EDX Edx;
2255
2256 AsmCpuidEx (
2257 CPUID_INTEL_RDT_MONITORING, CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF,
2258 NULL, &Ebx, &Ecx, &Edx.Uint32
2259 );
2260 @endcode
2261 **/
2262 #define CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF 0x01
2263
2264 /**
2265 CPUID L3 Cache Intel RDT Monitoring Capability Information EDX for CPUID leaf
2266 #CPUID_INTEL_RDT_MONITORING, sub-leaf
2267 #CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF.
2268 **/
2269 typedef union {
2270 ///
2271 /// Individual bit fields
2272 ///
2273 struct {
2274 ///
2275 /// [Bit 0] Supports L3 occupancy monitoring if 1.
2276 ///
2277 UINT32 L3CacheOccupancyMonitoring:1;
2278 ///
2279 /// [Bit 1] Supports L3 Total Bandwidth monitoring if 1.
2280 ///
2281 UINT32 L3CacheTotalBandwidthMonitoring:1;
2282 ///
2283 /// [Bit 2] Supports L3 Local Bandwidth monitoring if 1.
2284 ///
2285 UINT32 L3CacheLocalBandwidthMonitoring:1;
2286 UINT32 Reserved:29;
2287 } Bits;
2288 ///
2289 /// All bit fields as a 32-bit value
2290 ///
2291 UINT32 Uint32;
2292 } CPUID_INTEL_RDT_MONITORING_L3_CACHE_SUB_LEAF_EDX;
2293
2294
2295 /**
2296 CPUID Intel Resource Director Technology (Intel RDT) Allocation Information
2297
2298 @param EAX CPUID_INTEL_RDT_ALLOCATION (0x10).
2299 @param ECX CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF (0x00).
2300 CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF (0x01).
2301 CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF (0x02).
2302 **/
2303 #define CPUID_INTEL_RDT_ALLOCATION 0x10
2304
2305 /**
2306 Intel Resource Director Technology (Intel RDT) Allocation Enumeration Sub-leaf
2307
2308 @param EAX CPUID_INTEL_RDT_ALLOCATION (0x10)
2309 @param ECX CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF (0x00).
2310
2311 @retval EAX Reserved.
2312 @retval EBX L3 and L2 Cache Allocation Technology information described by
2313 the type CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF_EBX.
2314 @retval ECX Reserved.
2315 @retval EDX Reserved.
2316
2317 <b>Example usage</b>
2318 @code
2319 CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF_EBX Ebx;
2320
2321 AsmCpuidEx (
2322 CPUID_INTEL_RDT_ALLOCATION, CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF,
2323 NULL, &Ebx.Uint32, NULL, NULL
2324 );
2325 @endcode
2326 **/
2327 #define CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF 0x00
2328
2329 /**
2330 CPUID L3 and L2 Cache Allocation Support Information EBX for CPUID leaf
2331 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2332 #CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF.
2333 **/
2334 typedef union {
2335 ///
2336 /// Individual bit fields
2337 ///
2338 struct {
2339 UINT32 Reserved1:1;
2340 ///
2341 /// [Bit 1] Supports L3 Cache Allocation Technology if 1.
2342 ///
2343 UINT32 L3CacheAllocation:1;
2344 ///
2345 /// [Bit 2] Supports L2 Cache Allocation Technology if 1.
2346 ///
2347 UINT32 L2CacheAllocation:1;
2348 ///
2349 /// [Bit 3] Supports Memory Bandwidth Allocation if 1.
2350 ///
2351 UINT32 MemoryBandwidth:1;
2352 UINT32 Reserved3:28;
2353 } Bits;
2354 ///
2355 /// All bit fields as a 32-bit value
2356 ///
2357 UINT32 Uint32;
2358 } CPUID_INTEL_RDT_ALLOCATION_ENUMERATION_SUB_LEAF_EBX;
2359
2360
2361 /**
2362 L3 Cache Allocation Technology Enumeration Sub-leaf
2363
2364 @param EAX CPUID_INTEL_RDT_ALLOCATION (0x10)
2365 @param ECX CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF (0x01)
2366
2367 @retval EAX RESID L3 Cache Allocation Technology information described by
2368 the type CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_EAX.
2369 @retval EBX Bit-granular map of isolation/contention of allocation units.
2370 @retval ECX RESID L3 Cache Allocation Technology information described by
2371 the type CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_ECX.
2372 @retval EDX RESID L3 Cache Allocation Technology information described by
2373 the type CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_EDX.
2374
2375 <b>Example usage</b>
2376 @code
2377 CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_EAX Eax;
2378 UINT32 Ebx;
2379 CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_ECX Ecx;
2380 CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_EDX Edx;
2381
2382 AsmCpuidEx (
2383 CPUID_INTEL_RDT_ALLOCATION, CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF,
2384 &Eax.Uint32, &Ebx, &Ecx.Uint32, &Edx.Uint32
2385 );
2386 @endcode
2387 **/
2388 #define CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF 0x01
2389
2390 /**
2391 CPUID L3 Cache Allocation Technology Information EAX for CPUID leaf
2392 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2393 #CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF.
2394 **/
2395 typedef union {
2396 ///
2397 /// Individual bit fields
2398 ///
2399 struct {
2400 ///
2401 /// [Bits 4:0] Length of the capacity bit mask for the corresponding ResID
2402 /// using minus-one notation.
2403 ///
2404 UINT32 CapacityLength:5;
2405 UINT32 Reserved:27;
2406 } Bits;
2407 ///
2408 /// All bit fields as a 32-bit value
2409 ///
2410 UINT32 Uint32;
2411 } CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_EAX;
2412
2413 /**
2414 CPUID L3 Cache Allocation Technology Information ECX for CPUID leaf
2415 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2416 #CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF.
2417 **/
2418 typedef union {
2419 ///
2420 /// Individual bit fields
2421 ///
2422 struct {
2423 UINT32 Reserved3:2;
2424 ///
2425 /// [Bit 2] Code and Data Prioritization Technology supported if 1.
2426 ///
2427 UINT32 CodeDataPrioritization:1;
2428 UINT32 Reserved2:29;
2429 } Bits;
2430 ///
2431 /// All bit fields as a 32-bit value
2432 ///
2433 UINT32 Uint32;
2434 } CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_ECX;
2435
2436 /**
2437 CPUID L3 Cache Allocation Technology Information EDX for CPUID leaf
2438 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2439 #CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF.
2440 **/
2441 typedef union {
2442 ///
2443 /// Individual bit fields
2444 ///
2445 struct {
2446 ///
2447 /// [Bits 15:0] Highest COS number supported for this ResID.
2448 ///
2449 UINT32 HighestCosNumber:16;
2450 UINT32 Reserved:16;
2451 } Bits;
2452 ///
2453 /// All bit fields as a 32-bit value
2454 ///
2455 UINT32 Uint32;
2456 } CPUID_INTEL_RDT_ALLOCATION_L3_CACHE_SUB_LEAF_EDX;
2457
2458 /**
2459 L2 Cache Allocation Technology Enumeration Sub-leaf
2460
2461 @param EAX CPUID_INTEL_RDT_ALLOCATION (0x10)
2462 @param ECX CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF (0x02)
2463
2464 @retval EAX RESID L2 Cache Allocation Technology information described by
2465 the type CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF_EAX.
2466 @retval EBX Bit-granular map of isolation/contention of allocation units.
2467 @retval ECX Reserved.
2468 @retval EDX RESID L2 Cache Allocation Technology information described by
2469 the type CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF_EDX.
2470
2471 <b>Example usage</b>
2472 @code
2473 CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF_EAX Eax;
2474 UINT32 Ebx;
2475 CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF_EDX Edx;
2476
2477 AsmCpuidEx (
2478 CPUID_INTEL_RDT_ALLOCATION, CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF,
2479 &Eax.Uint32, &Ebx, NULL, &Edx.Uint32
2480 );
2481 @endcode
2482 **/
2483 #define CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF 0x02
2484
2485 /**
2486 CPUID L2 Cache Allocation Technology Information EAX for CPUID leaf
2487 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2488 #CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF.
2489 **/
2490 typedef union {
2491 ///
2492 /// Individual bit fields
2493 ///
2494 struct {
2495 ///
2496 /// [Bits 4:0] Length of the capacity bit mask for the corresponding ResID
2497 /// using minus-one notation.
2498 ///
2499 UINT32 CapacityLength:5;
2500 UINT32 Reserved:27;
2501 } Bits;
2502 ///
2503 /// All bit fields as a 32-bit value
2504 ///
2505 UINT32 Uint32;
2506 } CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF_EAX;
2507
2508 /**
2509 CPUID L2 Cache Allocation Technology Information EDX for CPUID leaf
2510 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2511 #CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF.
2512 **/
2513 typedef union {
2514 ///
2515 /// Individual bit fields
2516 ///
2517 struct {
2518 ///
2519 /// [Bits 15:0] Highest COS number supported for this ResID.
2520 ///
2521 UINT32 HighestCosNumber:16;
2522 UINT32 Reserved:16;
2523 } Bits;
2524 ///
2525 /// All bit fields as a 32-bit value
2526 ///
2527 UINT32 Uint32;
2528 } CPUID_INTEL_RDT_ALLOCATION_L2_CACHE_SUB_LEAF_EDX;
2529
2530 /**
2531 Memory Bandwidth Allocation Enumeration Sub-leaf
2532
2533 @param EAX CPUID_INTEL_RDT_ALLOCATION (0x10)
2534 @param ECX CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF (0x03)
2535
2536 @retval EAX RESID memory bandwidth Allocation Technology information
2537 described by the type
2538 CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_EAX.
2539 @retval EBX Reserved.
2540 @retval ECX RESID memory bandwidth Allocation Technology information
2541 described by the type
2542 CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_ECX.
2543 @retval EDX RESID memory bandwidth Allocation Technology information
2544 described by the type
2545 CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_EDX.
2546
2547 <b>Example usage</b>
2548 @code
2549 CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_EAX Eax;
2550 UINT32 Ebx;
2551 CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_ECX Ecx;
2552 CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_EDX Edx;
2553
2554
2555 AsmCpuidEx (
2556 CPUID_INTEL_RDT_ALLOCATION, CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF,
2557 &Eax.Uint32, &Ebx, NULL, &Edx.Uint32
2558 );
2559 @endcode
2560 **/
2561 #define CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF 0x03
2562
2563 /**
2564 CPUID memory bandwidth Allocation Technology Information EAX for CPUID leaf
2565 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2566 #CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF.
2567 **/
2568 typedef union {
2569 ///
2570 /// Individual bit fields
2571 ///
2572 struct {
2573 ///
2574 /// [Bits 11:0] Reports the maximum MBA throttling value supported for
2575 /// the corresponding ResID using minus-one notation.
2576 ///
2577 UINT32 MaximumMBAThrottling:12;
2578 UINT32 Reserved:20;
2579 } Bits;
2580 ///
2581 /// All bit fields as a 32-bit value
2582 ///
2583 UINT32 Uint32;
2584 } CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_EAX;
2585
2586 /**
2587 CPUID memory bandwidth Allocation Technology Information ECX for CPUID leaf
2588 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2589 #CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF.
2590 **/
2591 typedef union {
2592 ///
2593 /// Individual bit fields
2594 ///
2595 struct {
2596 ///
2597 /// [Bits 1:0] Reserved.
2598 ///
2599 UINT32 Reserved1:2;
2600 ///
2601 /// [Bits 3] Reports whether the response of the delay values is linear.
2602 ///
2603 UINT32 Liner:1;
2604 UINT32 Reserved2:29;
2605 } Bits;
2606 ///
2607 /// All bit fields as a 32-bit value
2608 ///
2609 UINT32 Uint32;
2610 } CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_ECX;
2611
2612 /**
2613 CPUID memory bandwidth Allocation Technology Information EDX for CPUID leaf
2614 #CPUID_INTEL_RDT_ALLOCATION, sub-leaf
2615 #CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF.
2616 **/
2617 typedef union {
2618 ///
2619 /// Individual bit fields
2620 ///
2621 struct {
2622 ///
2623 /// [Bits 15:0] Highest COS number supported for this ResID.
2624 ///
2625 UINT32 HighestCosNumber:16;
2626 UINT32 Reserved:16;
2627 } Bits;
2628 ///
2629 /// All bit fields as a 32-bit value
2630 ///
2631 UINT32 Uint32;
2632 } CPUID_INTEL_RDT_ALLOCATION_MEMORY_BANDWIDTH_SUB_LEAF_EDX;
2633
2634 /**
2635 Intel SGX resource capability and configuration.
2636 See Section 37.7.2 "Intel(R) SGX Resource Enumeration Leaves".
2637
2638 If CPUID.(EAX=07H, ECX=0H):EBX.SGX = 1, the processor also supports querying
2639 CPUID with EAX=12H on Intel SGX resource capability and configuration.
2640
2641 @param EAX CPUID_INTEL_SGX (0x12)
2642 @param ECX CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF (0x00).
2643 CPUID_INTEL_SGX_CAPABILITIES_1_SUB_LEAF (0x01).
2644 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF (0x02).
2645 Sub leafs 2..n based on the sub-leaf-type encoding (returned in EAX[3:0])
2646 until the sub-leaf type is invalid.
2647
2648 **/
2649 #define CPUID_INTEL_SGX 0x12
2650
2651 /**
2652 Sub-Leaf 0 Enumeration of Intel SGX Capabilities.
2653 Enumerates Intel SGX capability, including enclave instruction opcode support.
2654
2655 @param EAX CPUID_INTEL_SGX (0x12)
2656 @param ECX CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF (0x00)
2657
2658 @retval EAX The format of Sub-Leaf 0 Enumeration of Intel SGX Capabilities is
2659 described by the type CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF_EAX.
2660 @retval EBX MISCSELECT: Reports the bit vector of supported extended features
2661 that can be written to the MISC region of the SSA.
2662 @retval ECX Reserved.
2663 @retval EDX The format of Sub-Leaf 0 Enumeration of Intel SGX Capabilities is
2664 described by the type CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF_EDX.
2665
2666 <b>Example usage</b>
2667 @code
2668 CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF_EAX Eax;
2669 UINT32 Ebx;
2670 CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF_EDX Edx;
2671
2672 AsmCpuidEx (
2673 CPUID_INTEL_SGX, CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF,
2674 &Eax.Uint32, &Ebx, NULL, &Edx.Uint32
2675 );
2676 @endcode
2677 **/
2678 #define CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF 0x00
2679
2680 /**
2681 Sub-Leaf 0 Enumeration of Intel SGX Capabilities EAX for CPUID leaf #CPUID_INTEL_SGX,
2682 sub-leaf #CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF.
2683 **/
2684 typedef union {
2685 ///
2686 /// Individual bit fields
2687 ///
2688 struct {
2689 ///
2690 /// [Bit 0] If 1, indicates leaf functions of SGX1 instruction are supported.
2691 ///
2692 UINT32 SGX1:1;
2693 ///
2694 /// [Bit 1] If 1, indicates leaf functions of SGX2 instruction are supported.
2695 ///
2696 UINT32 SGX2:1;
2697 UINT32 Reserved1:3;
2698 ///
2699 /// [Bit 5] If 1, indicates Intel SGX supports ENCLV instruction leaves
2700 /// EINCVIRTCHILD, EDECVIRTCHILD, and ESETCONTEXT.
2701 ///
2702 UINT32 ENCLV:1;
2703 ///
2704 /// [Bit 6] If 1, indicates Intel SGX supports ENCLS instruction leaves ETRACKC,
2705 /// ERDINFO, ELDBC, and ELDUC.
2706 ///
2707 UINT32 ENCLS:1;
2708 UINT32 Reserved2:25;
2709 } Bits;
2710 ///
2711 /// All bit fields as a 32-bit value
2712 ///
2713 UINT32 Uint32;
2714 } CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF_EAX;
2715
2716 /**
2717 Sub-Leaf 0 Enumeration of Intel SGX Capabilities EDX for CPUID leaf #CPUID_INTEL_SGX,
2718 sub-leaf #CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF.
2719 **/
2720 typedef union {
2721 ///
2722 /// Individual bit fields
2723 ///
2724 struct {
2725 ///
2726 /// [Bit 7:0] The maximum supported enclave size is 2^(EDX[7:0]) bytes
2727 /// when not in 64-bit mode.
2728 ///
2729 UINT32 MaxEnclaveSize_Not64:8;
2730 ///
2731 /// [Bit 15:8] The maximum supported enclave size is 2^(EDX[15:8]) bytes
2732 /// when operating in 64-bit mode.
2733 ///
2734 UINT32 MaxEnclaveSize_64:8;
2735 UINT32 Reserved:16;
2736 } Bits;
2737 ///
2738 /// All bit fields as a 32-bit value
2739 ///
2740 UINT32 Uint32;
2741 } CPUID_INTEL_SGX_CAPABILITIES_0_SUB_LEAF_EDX;
2742
2743
2744 /**
2745 Sub-Leaf 1 Enumeration of Intel SGX Capabilities.
2746 Enumerates Intel SGX capability of processor state configuration and enclave
2747 configuration in the SECS structure.
2748
2749 @param EAX CPUID_INTEL_SGX (0x12)
2750 @param ECX CPUID_INTEL_SGX_CAPABILITIES_1_SUB_LEAF (0x01)
2751
2752 @retval EAX Report the valid bits of SECS.ATTRIBUTES[31:0] that software can
2753 set with ECREATE. SECS.ATTRIBUTES[n] can be set to 1 using ECREATE
2754 only if EAX[n] is 1, where n < 32.
2755 @retval EBX Report the valid bits of SECS.ATTRIBUTES[63:32] that software can
2756 set with ECREATE. SECS.ATTRIBUTES[n+32] can be set to 1 using ECREATE
2757 only if EBX[n] is 1, where n < 32.
2758 @retval ECX Report the valid bits of SECS.ATTRIBUTES[95:64] that software can
2759 set with ECREATE. SECS.ATTRIBUTES[n+64] can be set to 1 using ECREATE
2760 only if ECX[n] is 1, where n < 32.
2761 @retval EDX Report the valid bits of SECS.ATTRIBUTES[127:96] that software can
2762 set with ECREATE. SECS.ATTRIBUTES[n+96] can be set to 1 using ECREATE
2763 only if EDX[n] is 1, where n < 32.
2764
2765 <b>Example usage</b>
2766 @code
2767 UINT32 Eax;
2768 UINT32 Ebx;
2769 UINT32 Ecx;
2770 UINT32 Edx;
2771
2772 AsmCpuidEx (
2773 CPUID_INTEL_SGX, CPUID_INTEL_SGX_CAPABILITIES_1_SUB_LEAF,
2774 &Eax, &Ebx, &Ecx, &Edx
2775 );
2776 @endcode
2777 **/
2778 #define CPUID_INTEL_SGX_CAPABILITIES_1_SUB_LEAF 0x01
2779
2780
2781 /**
2782 Sub-Leaf Index 2 or Higher Enumeration of Intel SGX Resources.
2783 Enumerates available EPC resources.
2784
2785 @param EAX CPUID_INTEL_SGX (0x12)
2786 @param ECX CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF (0x02)
2787
2788 @retval EAX The format of Sub-Leaf Index 2 or Higher Enumeration of Intel SGX
2789 Resources is described by the type
2790 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EAX.
2791 @retval EBX The format of Sub-Leaf Index 2 or Higher Enumeration of Intel SGX
2792 Resources is described by the type
2793 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EBX.
2794 @retval EDX The format of Sub-Leaf Index 2 or Higher Enumeration of Intel SGX
2795 Resources is described by the type
2796 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_ECX.
2797 @retval EDX The format of Sub-Leaf Index 2 or Higher Enumeration of Intel SGX
2798 Resources is described by the type
2799 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EDX.
2800
2801 <b>Example usage</b>
2802 @code
2803 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EAX Eax;
2804 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EBX Ebx;
2805 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_ECX Ecx;
2806 CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EDX Edx;
2807
2808 AsmCpuidEx (
2809 CPUID_INTEL_SGX, CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF,
2810 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
2811 );
2812 @endcode
2813 **/
2814 #define CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF 0x02
2815
2816 /**
2817 Sub-Leaf Index 2 or Higher Enumeration of Intel SGX Resources EAX for CPUID
2818 leaf #CPUID_INTEL_SGX, sub-leaf #CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF.
2819 **/
2820 typedef union {
2821 ///
2822 /// Individual bit fields
2823 ///
2824 struct {
2825 ///
2826 /// [Bit 3:0] Sub-leaf-type encoding.
2827 /// 0000b: This sub-leaf is invalid, EBX:EAX and EDX:ECX report 0.
2828 /// 0001b: This sub-leaf provides information on the Enclave Page Cache (EPC)
2829 /// in EBX:EAX and EDX:ECX.
2830 /// All other encoding are reserved.
2831 ///
2832 UINT32 SubLeafType:4;
2833 UINT32 Reserved:8;
2834 ///
2835 /// [Bit 31:12] If EAX[3:0] = 0001b, these are bits 31:12 of the physical address of
2836 /// the base of the EPC section.
2837 ///
2838 UINT32 LowAddressOfEpcSection:20;
2839 } Bits;
2840 ///
2841 /// All bit fields as a 32-bit value
2842 ///
2843 UINT32 Uint32;
2844 } CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EAX;
2845
2846 /**
2847 Sub-Leaf Index 2 or Higher Enumeration of Intel SGX Resources EBX for CPUID
2848 leaf #CPUID_INTEL_SGX, sub-leaf #CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF.
2849 **/
2850 typedef union {
2851 ///
2852 /// Individual bit fields
2853 ///
2854 struct {
2855 ///
2856 /// [Bit 19:0] If EAX[3:0] = 0001b, these are bits 51:32 of the physical address of
2857 /// the base of the EPC section.
2858 ///
2859 UINT32 HighAddressOfEpcSection:20;
2860 UINT32 Reserved:12;
2861 } Bits;
2862 ///
2863 /// All bit fields as a 32-bit value
2864 ///
2865 UINT32 Uint32;
2866 } CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EBX;
2867
2868 /**
2869 Sub-Leaf Index 2 or Higher Enumeration of Intel SGX Resources ECX for CPUID
2870 leaf #CPUID_INTEL_SGX, sub-leaf #CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF.
2871 **/
2872 typedef union {
2873 ///
2874 /// Individual bit fields
2875 ///
2876 struct {
2877 ///
2878 /// [Bit 3:0] The EPC section encoding.
2879 /// 0000b: Not valid.
2880 /// 0001b: The EPC section is confidentiality, integrity and replay protected.
2881 /// All other encoding are reserved.
2882 ///
2883 UINT32 EpcSection:4;
2884 UINT32 Reserved:8;
2885 ///
2886 /// [Bit 31:12] If EAX[3:0] = 0001b, these are bits 31:12 of the size of the
2887 /// corresponding EPC section within the Processor Reserved Memory.
2888 ///
2889 UINT32 LowSizeOfEpcSection:20;
2890 } Bits;
2891 ///
2892 /// All bit fields as a 32-bit value
2893 ///
2894 UINT32 Uint32;
2895 } CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_ECX;
2896
2897 /**
2898 Sub-Leaf Index 2 or Higher Enumeration of Intel SGX Resources EDX for CPUID
2899 leaf #CPUID_INTEL_SGX, sub-leaf #CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF.
2900 **/
2901 typedef union {
2902 ///
2903 /// Individual bit fields
2904 ///
2905 struct {
2906 ///
2907 /// [Bit 19:0] If EAX[3:0] = 0001b, these are bits 51:32 of the size of the
2908 /// corresponding EPC section within the Processor Reserved Memory.
2909 ///
2910 UINT32 HighSizeOfEpcSection:20;
2911 UINT32 Reserved:12;
2912 } Bits;
2913 ///
2914 /// All bit fields as a 32-bit value
2915 ///
2916 UINT32 Uint32;
2917 } CPUID_INTEL_SGX_CAPABILITIES_RESOURCES_SUB_LEAF_EDX;
2918
2919
2920 /**
2921 CPUID Intel Processor Trace Information
2922
2923 @param EAX CPUID_INTEL_PROCESSOR_TRACE (0x14)
2924 @param ECX CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF (0x00).
2925 CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF (0x01).
2926
2927 **/
2928 #define CPUID_INTEL_PROCESSOR_TRACE 0x14
2929
2930 /**
2931 CPUID Intel Processor Trace Information Main Leaf
2932
2933 @param EAX CPUID_INTEL_PROCEDSSOR_TRACE (0x14)
2934 @param ECX CPUID_INTEL_PROCEDSSOR_TRACE_MAIN_LEAF (0x00)
2935
2936 @retval EAX Reports the maximum sub-leaf supported in leaf 14H.
2937 @retval EBX Returns Intel processor trace information described by the
2938 type CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_EBX.
2939 @retval ECX Returns Intel processor trace information described by the
2940 type CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_ECX.
2941 @retval EDX Reserved.
2942
2943 <b>Example usage</b>
2944 @code
2945 UINT32 Eax;
2946 CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_EBX Ebx;
2947 CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_ECX Ecx;
2948
2949 AsmCpuidEx (
2950 CPUID_INTEL_PROCESSOR_TRACE, CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF,
2951 &Eax, &Ebx.Uint32, &Ecx.Uint32, NULL
2952 );
2953 @endcode
2954 **/
2955 #define CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF 0x00
2956
2957 /**
2958 CPUID Intel Processor Trace EBX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
2959 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF.
2960 **/
2961 typedef union {
2962 ///
2963 /// Individual bit fields
2964 ///
2965 struct {
2966 ///
2967 /// [Bit 0] If 1, indicates that IA32_RTIT_CTL.CR3Filter can be set to 1,
2968 /// and that IA32_RTIT_CR3_MATCH MSR can be accessed.
2969 ///
2970 UINT32 Cr3Filter:1;
2971 ///
2972 /// [Bit 1] If 1, indicates support of Configurable PSB and Cycle-Accurate
2973 /// Mode.
2974 ///
2975 UINT32 ConfigurablePsb:1;
2976 ///
2977 /// [Bit 2] If 1, indicates support of IP Filtering, TraceStop filtering,
2978 /// and preservation of Intel PT MSRs across warm reset.
2979 ///
2980 UINT32 IpTraceStopFiltering:1;
2981 ///
2982 /// [Bit 3] If 1, indicates support of MTC timing packet and suppression of
2983 /// COFI-based packets.
2984 ///
2985 UINT32 Mtc:1;
2986 ///
2987 /// [Bit 4] If 1, indicates support of PTWRITE. Writes can set
2988 /// IA32_RTIT_CTL[12] (PTWEn) and IA32_RTIT_CTL[5] (FUPonPTW), and PTWRITE
2989 /// can generate packets.
2990 ///
2991 UINT32 PTWrite:1;
2992 ///
2993 /// [Bit 5] If 1, indicates support of Power Event Trace. Writes can set
2994 /// IA32_RTIT_CTL[4] (PwrEvtEn), enabling Power Event Trace packet
2995 /// generation.
2996 ///
2997 UINT32 PowerEventTrace:1;
2998 UINT32 Reserved:26;
2999 } Bits;
3000 ///
3001 /// All bit fields as a 32-bit value
3002 ///
3003 UINT32 Uint32;
3004 } CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_EBX;
3005
3006 /**
3007 CPUID Intel Processor Trace ECX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
3008 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF.
3009 **/
3010 typedef union {
3011 ///
3012 /// Individual bit fields
3013 ///
3014 struct {
3015 ///
3016 /// [Bit 0] If 1, Tracing can be enabled with IA32_RTIT_CTL.ToPA = 1, hence
3017 /// utilizing the ToPA output scheme; IA32_RTIT_OUTPUT_BASE and
3018 /// IA32_RTIT_OUTPUT_MASK_PTRS MSRs can be accessed.
3019 ///
3020 UINT32 RTIT:1;
3021 ///
3022 /// [Bit 1] If 1, ToPA tables can hold any number of output entries, up to
3023 /// the maximum allowed by the MaskOrTableOffset field of
3024 /// IA32_RTIT_OUTPUT_MASK_PTRS.
3025 ///
3026 UINT32 ToPA:1;
3027 ///
3028 /// [Bit 2] If 1, indicates support of Single-Range Output scheme.
3029 ///
3030 UINT32 SingleRangeOutput:1;
3031 ///
3032 /// [Bit 3] If 1, indicates support of output to Trace Transport subsystem.
3033 ///
3034 UINT32 TraceTransportSubsystem:1;
3035 UINT32 Reserved:27;
3036 ///
3037 /// [Bit 31] If 1, generated packets which contain IP payloads have LIP
3038 /// values, which include the CS base component.
3039 ///
3040 UINT32 LIP:1;
3041 } Bits;
3042 ///
3043 /// All bit fields as a 32-bit value
3044 ///
3045 UINT32 Uint32;
3046 } CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_ECX;
3047
3048
3049 /**
3050 CPUID Intel Processor Trace Information Sub-leaf
3051
3052 @param EAX CPUID_INTEL_PROCEDSSOR_TRACE (0x14)
3053 @param ECX CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF (0x01)
3054
3055 @retval EAX Returns Intel processor trace information described by the
3056 type CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EAX.
3057 @retval EBX Returns Intel processor trace information described by the
3058 type CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EBX.
3059 @retval ECX Reserved.
3060 @retval EDX Reserved.
3061
3062 <b>Example usage</b>
3063 @code
3064 UINT32 MaximumSubLeaf;
3065 UINT32 SubLeaf;
3066 CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EAX Eax;
3067 CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EBX Ebx;
3068
3069 AsmCpuidEx (
3070 CPUID_INTEL_PROCESSOR_TRACE, CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF,
3071 &MaximumSubLeaf, NULL, NULL, NULL
3072 );
3073
3074 for (SubLeaf = CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF; SubLeaf <= MaximumSubLeaf; SubLeaf++) {
3075 AsmCpuidEx (
3076 CPUID_INTEL_PROCESSOR_TRACE, SubLeaf,
3077 &Eax.Uint32, &Ebx.Uint32, NULL, NULL
3078 );
3079 }
3080 @endcode
3081 **/
3082 #define CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF 0x01
3083
3084 /**
3085 CPUID Intel Processor Trace EAX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
3086 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF.
3087 **/
3088 typedef union {
3089 ///
3090 /// Individual bit fields
3091 ///
3092 struct {
3093 ///
3094 /// [Bits 2:0] Number of configurable Address Ranges for filtering.
3095 ///
3096 UINT32 ConfigurableAddressRanges:3;
3097 UINT32 Reserved:13;
3098 ///
3099 /// [Bits 31:16] Bitmap of supported MTC period encodings
3100 ///
3101 UINT32 MtcPeriodEncodings:16;
3102
3103 } Bits;
3104 ///
3105 /// All bit fields as a 32-bit value
3106 ///
3107 UINT32 Uint32;
3108 } CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EAX;
3109
3110 /**
3111 CPUID Intel Processor Trace EBX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
3112 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF.
3113 **/
3114 typedef union {
3115 ///
3116 /// Individual bit fields
3117 ///
3118 struct {
3119 ///
3120 /// [Bits 15:0] Bitmap of supported Cycle Threshold value encodings.
3121 ///
3122 UINT32 CycleThresholdEncodings:16;
3123 ///
3124 /// [Bits 31:16] Bitmap of supported Configurable PSB frequency encodings.
3125 ///
3126 UINT32 PsbFrequencyEncodings:16;
3127
3128 } Bits;
3129 ///
3130 /// All bit fields as a 32-bit value
3131 ///
3132 UINT32 Uint32;
3133 } CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EBX;
3134
3135
3136 /**
3137 CPUID Time Stamp Counter and Nominal Core Crystal Clock Information
3138
3139 @note
3140 If EBX[31:0] is 0, the TSC/"core crystal clock" ratio is not enumerated.
3141 EBX[31:0]/EAX[31:0] indicates the ratio of the TSC frequency and the core
3142 crystal clock frequency.
3143 If ECX is 0, the nominal core crystal clock frequency is not enumerated.
3144 "TSC frequency" = "core crystal clock frequency" * EBX/EAX.
3145 The core crystal clock may differ from the reference clock, bus clock, or core
3146 clock frequencies.
3147
3148 @param EAX CPUID_TIME_STAMP_COUNTER (0x15)
3149
3150 @retval EAX An unsigned integer which is the denominator of the
3151 TSC/"core crystal clock" ratio
3152 @retval EBX An unsigned integer which is the numerator of the
3153 TSC/"core crystal clock" ratio.
3154 @retval ECX An unsigned integer which is the nominal frequency
3155 of the core crystal clock in Hz.
3156 @retval EDX Reserved.
3157
3158 <b>Example usage</b>
3159 @code
3160 UINT32 Eax;
3161 UINT32 Ebx;
3162 UINT32 Ecx;
3163
3164 AsmCpuid (CPUID_TIME_STAMP_COUNTER, &Eax, &Ebx, &Ecx, NULL);
3165 @endcode
3166 **/
3167 #define CPUID_TIME_STAMP_COUNTER 0x15
3168
3169
3170 /**
3171 CPUID Processor Frequency Information
3172
3173 @note
3174 Data is returned from this interface in accordance with the processor's
3175 specification and does not reflect actual values. Suitable use of this data
3176 includes the display of processor information in like manner to the processor
3177 brand string and for determining the appropriate range to use when displaying
3178 processor information e.g. frequency history graphs. The returned information
3179 should not be used for any other purpose as the returned information does not
3180 accurately correlate to information / counters returned by other processor
3181 interfaces. While a processor may support the Processor Frequency Information
3182 leaf, fields that return a value of zero are not supported.
3183
3184 @param EAX CPUID_TIME_STAMP_COUNTER (0x16)
3185
3186 @retval EAX Returns processor base frequency information described by the
3187 type CPUID_PROCESSOR_FREQUENCY_EAX.
3188 @retval EBX Returns maximum frequency information described by the type
3189 CPUID_PROCESSOR_FREQUENCY_EBX.
3190 @retval ECX Returns bus frequency information described by the type
3191 CPUID_PROCESSOR_FREQUENCY_ECX.
3192 @retval EDX Reserved.
3193
3194 <b>Example usage</b>
3195 @code
3196 CPUID_PROCESSOR_FREQUENCY_EAX Eax;
3197 CPUID_PROCESSOR_FREQUENCY_EBX Ebx;
3198 CPUID_PROCESSOR_FREQUENCY_ECX Ecx;
3199
3200 AsmCpuid (CPUID_PROCESSOR_FREQUENCY, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, NULL);
3201 @endcode
3202 **/
3203 #define CPUID_PROCESSOR_FREQUENCY 0x16
3204
3205 /**
3206 CPUID Processor Frequency Information EAX for CPUID leaf
3207 #CPUID_PROCESSOR_FREQUENCY.
3208 **/
3209 typedef union {
3210 ///
3211 /// Individual bit fields
3212 ///
3213 struct {
3214 ///
3215 /// [Bits 15:0] Processor Base Frequency (in MHz).
3216 ///
3217 UINT32 ProcessorBaseFrequency:16;
3218 UINT32 Reserved:16;
3219 } Bits;
3220 ///
3221 /// All bit fields as a 32-bit value
3222 ///
3223 UINT32 Uint32;
3224 } CPUID_PROCESSOR_FREQUENCY_EAX;
3225
3226 /**
3227 CPUID Processor Frequency Information EBX for CPUID leaf
3228 #CPUID_PROCESSOR_FREQUENCY.
3229 **/
3230 typedef union {
3231 ///
3232 /// Individual bit fields
3233 ///
3234 struct {
3235 ///
3236 /// [Bits 15:0] Maximum Frequency (in MHz).
3237 ///
3238 UINT32 MaximumFrequency:16;
3239 UINT32 Reserved:16;
3240 } Bits;
3241 ///
3242 /// All bit fields as a 32-bit value
3243 ///
3244 UINT32 Uint32;
3245 } CPUID_PROCESSOR_FREQUENCY_EBX;
3246
3247 /**
3248 CPUID Processor Frequency Information ECX for CPUID leaf
3249 #CPUID_PROCESSOR_FREQUENCY.
3250 **/
3251 typedef union {
3252 ///
3253 /// Individual bit fields
3254 ///
3255 struct {
3256 ///
3257 /// [Bits 15:0] Bus (Reference) Frequency (in MHz).
3258 ///
3259 UINT32 BusFrequency:16;
3260 UINT32 Reserved:16;
3261 } Bits;
3262 ///
3263 /// All bit fields as a 32-bit value
3264 ///
3265 UINT32 Uint32;
3266 } CPUID_PROCESSOR_FREQUENCY_ECX;
3267
3268
3269 /**
3270 CPUID SoC Vendor Information
3271
3272 @param EAX CPUID_SOC_VENDOR (0x17)
3273 @param ECX CPUID_SOC_VENDOR_MAIN_LEAF (0x00)
3274 CPUID_SOC_VENDOR_BRAND_STRING1 (0x01)
3275 CPUID_SOC_VENDOR_BRAND_STRING1 (0x02)
3276 CPUID_SOC_VENDOR_BRAND_STRING1 (0x03)
3277
3278 @note
3279 Leaf 17H output depends on the initial value in ECX. SOC Vendor Brand String
3280 is a UTF-8 encoded string padded with trailing bytes of 00H. The complete SOC
3281 Vendor Brand String is constructed by concatenating in ascending order of
3282 EAX:EBX:ECX:EDX and from the sub-leaf 1 fragment towards sub-leaf 3.
3283
3284 **/
3285 #define CPUID_SOC_VENDOR 0x17
3286
3287 /**
3288 CPUID SoC Vendor Information
3289
3290 @param EAX CPUID_SOC_VENDOR (0x17)
3291 @param ECX CPUID_SOC_VENDOR_MAIN_LEAF (0x00)
3292
3293 @retval EAX MaxSOCID_Index. Reports the maximum input value of supported
3294 sub-leaf in leaf 17H.
3295 @retval EBX Returns SoC Vendor information described by the type
3296 CPUID_SOC_VENDOR_MAIN_LEAF_EBX.
3297 @retval ECX Project ID. A unique number an SOC vendor assigns to its SOC
3298 projects.
3299 @retval EDX Stepping ID. A unique number within an SOC project that an SOC
3300 vendor assigns.
3301
3302 <b>Example usage</b>
3303 @code
3304 UINT32 Eax;
3305 CPUID_SOC_VENDOR_MAIN_LEAF_EBX Ebx;
3306 UINT32 Ecx;
3307 UINT32 Edx;
3308
3309 AsmCpuidEx (
3310 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_MAIN_LEAF,
3311 &Eax, &Ebx.Uint32, &Ecx, &Edx
3312 );
3313 @endcode
3314 **/
3315 #define CPUID_SOC_VENDOR_MAIN_LEAF 0x00
3316
3317 /**
3318 CPUID SoC Vendor Information EBX for CPUID leaf #CPUID_SOC_VENDOR sub-leaf
3319 #CPUID_SOC_VENDOR_MAIN_LEAF.
3320 **/
3321 typedef union {
3322 ///
3323 /// Individual bit fields
3324 ///
3325 struct {
3326 ///
3327 /// [Bits 15:0] SOC Vendor ID.
3328 ///
3329 UINT32 SocVendorId:16;
3330 ///
3331 /// [Bit 16] If 1, the SOC Vendor ID field is assigned via an industry
3332 /// standard enumeration scheme. Otherwise, the SOC Vendor ID field is
3333 /// assigned by Intel.
3334 ///
3335 UINT32 IsVendorScheme:1;
3336 UINT32 Reserved:15;
3337 } Bits;
3338 ///
3339 /// All bit fields as a 32-bit value
3340 ///
3341 UINT32 Uint32;
3342 } CPUID_SOC_VENDOR_MAIN_LEAF_EBX;
3343
3344 /**
3345 CPUID SoC Vendor Information
3346
3347 @param EAX CPUID_SOC_VENDOR (0x17)
3348 @param ECX CPUID_SOC_VENDOR_BRAND_STRING1 (0x01)
3349
3350 @retval EAX SOC Vendor Brand String. UTF-8 encoded string of type
3351 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3352 @retval EBX SOC Vendor Brand String. UTF-8 encoded string of type
3353 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3354 @retval ECX SOC Vendor Brand String. UTF-8 encoded string of type
3355 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3356 @retval EDX SOC Vendor Brand String. UTF-8 encoded string of type
3357 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3358
3359 <b>Example usage</b>
3360 @code
3361 CPUID_SOC_VENDOR_BRAND_STRING_DATA Eax;
3362 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ebx;
3363 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ecx;
3364 CPUID_SOC_VENDOR_BRAND_STRING_DATA Edx;
3365
3366 AsmCpuidEx (
3367 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_BRAND_STRING1,
3368 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
3369 );
3370 @endcode
3371 **/
3372 #define CPUID_SOC_VENDOR_BRAND_STRING1 0x01
3373
3374 /**
3375 CPUID SoC Vendor Brand String for CPUID leafs #CPUID_SOC_VENDOR_BRAND_STRING1,
3376 #CPUID_SOC_VENDOR_BRAND_STRING2, and #CPUID_SOC_VENDOR_BRAND_STRING3.
3377 **/
3378 typedef union {
3379 ///
3380 /// 4 UTF-8 characters of Soc Vendor Brand String
3381 ///
3382 CHAR8 BrandString[4];
3383 ///
3384 /// All fields as a 32-bit value
3385 ///
3386 UINT32 Uint32;
3387 } CPUID_SOC_VENDOR_BRAND_STRING_DATA;
3388
3389 /**
3390 CPUID SoC Vendor Information
3391
3392 @param EAX CPUID_SOC_VENDOR (0x17)
3393 @param ECX CPUID_SOC_VENDOR_BRAND_STRING2 (0x02)
3394
3395 @retval EAX SOC Vendor Brand String. UTF-8 encoded string of type
3396 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3397 @retval EBX SOC Vendor Brand String. UTF-8 encoded string of type
3398 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3399 @retval ECX SOC Vendor Brand String. UTF-8 encoded string of type
3400 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3401 @retval EDX SOC Vendor Brand String. UTF-8 encoded string of type
3402 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3403
3404 <b>Example usage</b>
3405 @code
3406 CPUID_SOC_VENDOR_BRAND_STRING_DATA Eax;
3407 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ebx;
3408 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ecx;
3409 CPUID_SOC_VENDOR_BRAND_STRING_DATA Edx;
3410
3411 AsmCpuidEx (
3412 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_BRAND_STRING2,
3413 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
3414 );
3415 @endcode
3416 **/
3417 #define CPUID_SOC_VENDOR_BRAND_STRING2 0x02
3418
3419 /**
3420 CPUID SoC Vendor Information
3421
3422 @param EAX CPUID_SOC_VENDOR (0x17)
3423 @param ECX CPUID_SOC_VENDOR_BRAND_STRING3 (0x03)
3424
3425 @retval EAX SOC Vendor Brand String. UTF-8 encoded string of type
3426 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3427 @retval EBX SOC Vendor Brand String. UTF-8 encoded string of type
3428 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3429 @retval ECX SOC Vendor Brand String. UTF-8 encoded string of type
3430 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3431 @retval EDX SOC Vendor Brand String. UTF-8 encoded string of type
3432 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
3433
3434 <b>Example usage</b>
3435 @code
3436 CPUID_SOC_VENDOR_BRAND_STRING_DATA Eax;
3437 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ebx;
3438 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ecx;
3439 CPUID_SOC_VENDOR_BRAND_STRING_DATA Edx;
3440
3441 AsmCpuidEx (
3442 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_BRAND_STRING3,
3443 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
3444 );
3445 @endcode
3446 **/
3447 #define CPUID_SOC_VENDOR_BRAND_STRING3 0x03
3448
3449 /**
3450 CPUID Deterministic Address Translation Parameters
3451
3452 @note
3453 Each sub-leaf enumerates a different address translation structure.
3454 If ECX contains an invalid sub-leaf index, EAX/EBX/ECX/EDX return 0. Sub-leaf
3455 index n is invalid if n exceeds the value that sub-leaf 0 returns in EAX. A
3456 sub-leaf index is also invalid if EDX[4:0] returns 0.
3457 Valid sub-leaves do not need to be contiguous or in any particular order. A
3458 valid sub-leaf may be in a higher input ECX value than an invalid sub-leaf or
3459 than a valid sub-leaf of a higher or lower-level structure.
3460 * Some unified TLBs will allow a single TLB entry to satisfy data read/write
3461 and instruction fetches. Others will require separate entries (e.g., one
3462 loaded on data read/write and another loaded on an instruction fetch).
3463 Please see the Intel 64 and IA-32 Architectures Optimization Reference Manual
3464 for details of a particular product.
3465 ** Add one to the return value to get the result.
3466
3467 @param EAX CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS (0x18)
3468 @param ECX CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_MAIN_LEAF (0x00)
3469 CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_SUB_LEAF (0x*)
3470
3471 **/
3472 #define CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS 0x18
3473
3474 /**
3475 CPUID Deterministic Address Translation Parameters
3476
3477 @param EAX CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS (0x18)
3478 @param ECX CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_MAIN_LEAF (0x00)
3479
3480 @retval EAX Reports the maximum input value of supported sub-leaf in leaf 18H.
3481 @retval EBX Returns Deterministic Address Translation Parameters described by
3482 the type CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EBX.
3483 @retval ECX Number of Sets.
3484 @retval EDX Returns Deterministic Address Translation Parameters described by
3485 the type CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EDX.
3486
3487 <b>Example usage</b>
3488 @code
3489 UINT32 Eax;
3490 CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EBX Ebx;
3491 UINT32 Ecx;
3492 CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EDX Edx;
3493
3494 AsmCpuidEx (
3495 CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS,
3496 CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_MAIN_LEAF,
3497 &Eax, &Ebx.Uint32, &Ecx, &Edx.Uint32
3498 );
3499 @endcode
3500 **/
3501 #define CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_MAIN_LEAF 0x00
3502
3503 /**
3504 CPUID Deterministic Address Translation Parameters EBX for CPUID leafs.
3505 **/
3506 typedef union {
3507 ///
3508 /// Individual bit fields
3509 ///
3510 struct {
3511 ///
3512 /// [Bits 0] 4K page size entries supported by this structure.
3513 ///
3514 UINT32 Page4K:1;
3515 ///
3516 /// [Bits 1] 2MB page size entries supported by this structure.
3517 ///
3518 UINT32 Page2M:1;
3519 ///
3520 /// [Bits 2] 4MB page size entries supported by this structure.
3521 ///
3522 UINT32 Page4M:1;
3523 ///
3524 /// [Bits 3] 1 GB page size entries supported by this structure.
3525 ///
3526 UINT32 Page1G:1;
3527 ///
3528 /// [Bits 7:4] Reserved.
3529 ///
3530 UINT32 Reserved1:4;
3531 ///
3532 /// [Bits 10:8] Partitioning (0: Soft partitioning between the logical
3533 /// processors sharing this structure)
3534 ///
3535 UINT32 Partitioning:3;
3536 ///
3537 /// [Bits 15:11] Reserved.
3538 ///
3539 UINT32 Reserved2:5;
3540 ///
3541 /// [Bits 31:16] W = Ways of associativity.
3542 ///
3543 UINT32 Way:16;
3544 } Bits;
3545 ///
3546 /// All bit fields as a 32-bit value
3547 ///
3548 UINT32 Uint32;
3549 } CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EBX;
3550
3551 /**
3552 CPUID Deterministic Address Translation Parameters EDX for CPUID leafs.
3553 **/
3554 typedef union {
3555 ///
3556 /// Individual bit fields
3557 ///
3558 struct {
3559 ///
3560 /// [Bits 4:0] Translation cache type field.
3561 ///
3562 UINT32 TranslationCacheType:5;
3563 ///
3564 /// [Bits 7:5] Translation cache level (starts at 1).
3565 ///
3566 UINT32 TranslationCacheLevel:3;
3567 ///
3568 /// [Bits 8] Fully associative structure.
3569 ///
3570 UINT32 FullyAssociative:1;
3571 ///
3572 /// [Bits 13:9] Reserved.
3573 ///
3574 UINT32 Reserved1:5;
3575 ///
3576 /// [Bits 25:14] Maximum number of addressable IDs for logical
3577 /// processors sharing this translation cache.
3578 ///
3579 UINT32 MaximumNum:12;
3580 ///
3581 /// [Bits 31:26] Reserved.
3582 ///
3583 UINT32 Reserved2:6;
3584 } Bits;
3585 ///
3586 /// All bit fields as a 32-bit value
3587 ///
3588 UINT32 Uint32;
3589 } CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EDX;
3590
3591 ///
3592 /// @{ Define value for CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_EDX.TranslationCacheType
3593 ///
3594 #define CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_TRANSLATION_CACHE_TYPE_INVALID 0x00
3595 #define CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_TRANSLATION_CACHE_TYPE_DATA_TLB 0x01
3596 #define CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_TRANSLATION_CACHE_TYPE_INSTRUCTION_TLB 0x02
3597 #define CPUID_DETERMINISTIC_ADDRESS_TRANSLATION_PARAMETERS_TRANSLATION_CACHE_TYPE_UNIFIED_TLB 0x03
3598 ///
3599 /// @}
3600 ///
3601
3602
3603 /**
3604 CPUID V2 Extended Topology Enumeration Leaf
3605
3606 @note
3607 CPUID leaf 1FH is a preferred superset to leaf 0BH. Intel recommends first checking
3608 for the existence of Leaf 1FH and using this if available.
3609 Most of Leaf 1FH output depends on the initial value in ECX. The EDX output of leaf
3610 1FH is always valid and does not vary with input value in ECX. Output value in ECX[7:0]
3611 always equals input value in ECX[7:0]. Sub-leaf index 0 enumerates SMT level. Each
3612 subsequent higher sub-leaf index enumerates a higher-level topological entity in
3613 hierarchical order. For sub-leaves that return an invalid level-type of 0 in ECX[15:8];
3614 EAX and EBX will return 0. If an input value n in ECX returns the invalid level-type of
3615 0 in ECX[15:8], other input values with ECX > n also return 0 in ECX[15:8].
3616
3617 Software should use this field (EAX[4:0]) to enumerate processor topology of the system.
3618 Software must not use EBX[15:0] to enumerate processor topology of the system. This value
3619 in this field (EBX[15:0]) is only intended for display/diagnostic purposes. The actual
3620 number of logical processors available to BIOS/OS/Applications may be different from the
3621 value of EBX[15:0], depending on software and platform hardware configurations.
3622
3623 @param EAX CPUID_V2_EXTENDED_TOPOLOGY (0x1F)
3624 @param ECX Level number
3625
3626 **/
3627 #define CPUID_V2_EXTENDED_TOPOLOGY 0x1F
3628
3629 ///
3630 /// @{ Define value for CPUID_EXTENDED_TOPOLOGY_ECX.LevelType
3631 /// The value of the "level type" field is not related to level numbers in
3632 /// any way, higher "level type" values do not mean higher levels.
3633 ///
3634 #define CPUID_V2_EXTENDED_TOPOLOGY_LEVEL_TYPE_MODULE 0x03
3635 #define CPUID_V2_EXTENDED_TOPOLOGY_LEVEL_TYPE_TILE 0x04
3636 #define CPUID_V2_EXTENDED_TOPOLOGY_LEVEL_TYPE_DIE 0x05
3637 ///
3638 /// @}
3639 ///
3640
3641 /**
3642 CPUID Extended Function
3643
3644 @param EAX CPUID_EXTENDED_FUNCTION (0x80000000)
3645
3646 @retval EAX Maximum Input Value for Extended Function CPUID Information.
3647 @retval EBX Reserved.
3648 @retval ECX Reserved.
3649 @retval EDX Reserved.
3650
3651 <b>Example usage</b>
3652 @code
3653 UINT32 Eax;
3654
3655 AsmCpuid (CPUID_EXTENDED_FUNCTION, &Eax, NULL, NULL, NULL);
3656 @endcode
3657 **/
3658 #define CPUID_EXTENDED_FUNCTION 0x80000000
3659
3660
3661 /**
3662 CPUID Extended Processor Signature and Feature Bits
3663
3664 @param EAX CPUID_EXTENDED_CPU_SIG (0x80000001)
3665
3666 @retval EAX CPUID_EXTENDED_CPU_SIG.
3667 @retval EBX Reserved.
3668 @retval ECX Extended Processor Signature and Feature Bits information
3669 described by the type CPUID_EXTENDED_CPU_SIG_ECX.
3670 @retval EDX Extended Processor Signature and Feature Bits information
3671 described by the type CPUID_EXTENDED_CPU_SIG_EDX.
3672
3673 <b>Example usage</b>
3674 @code
3675 UINT32 Eax;
3676 CPUID_EXTENDED_CPU_SIG_ECX Ecx;
3677 CPUID_EXTENDED_CPU_SIG_EDX Edx;
3678
3679 AsmCpuid (CPUID_EXTENDED_CPU_SIG, &Eax, NULL, &Ecx.Uint32, &Edx.Uint32);
3680 @endcode
3681 **/
3682 #define CPUID_EXTENDED_CPU_SIG 0x80000001
3683
3684 /**
3685 CPUID Extended Processor Signature and Feature Bits ECX for CPUID leaf
3686 #CPUID_EXTENDED_CPU_SIG.
3687 **/
3688 typedef union {
3689 ///
3690 /// Individual bit fields
3691 ///
3692 struct {
3693 ///
3694 /// [Bit 0] LAHF/SAHF available in 64-bit mode.
3695 ///
3696 UINT32 LAHF_SAHF:1;
3697 UINT32 Reserved1:4;
3698 ///
3699 /// [Bit 5] LZCNT.
3700 ///
3701 UINT32 LZCNT:1;
3702 UINT32 Reserved2:2;
3703 ///
3704 /// [Bit 8] PREFETCHW.
3705 ///
3706 UINT32 PREFETCHW:1;
3707 UINT32 Reserved3:23;
3708 } Bits;
3709 ///
3710 /// All bit fields as a 32-bit value
3711 ///
3712 UINT32 Uint32;
3713 } CPUID_EXTENDED_CPU_SIG_ECX;
3714
3715 /**
3716 CPUID Extended Processor Signature and Feature Bits EDX for CPUID leaf
3717 #CPUID_EXTENDED_CPU_SIG.
3718 **/
3719 typedef union {
3720 ///
3721 /// Individual bit fields
3722 ///
3723 struct {
3724 UINT32 Reserved1:11;
3725 ///
3726 /// [Bit 11] SYSCALL/SYSRET available in 64-bit mode.
3727 ///
3728 UINT32 SYSCALL_SYSRET:1;
3729 UINT32 Reserved2:8;
3730 ///
3731 /// [Bit 20] Execute Disable Bit available.
3732 ///
3733 UINT32 NX:1;
3734 UINT32 Reserved3:5;
3735 ///
3736 /// [Bit 26] 1-GByte pages are available if 1.
3737 ///
3738 UINT32 Page1GB:1;
3739 ///
3740 /// [Bit 27] RDTSCP and IA32_TSC_AUX are available if 1.
3741 ///
3742 UINT32 RDTSCP:1;
3743 UINT32 Reserved4:1;
3744 ///
3745 /// [Bit 29] Intel(R) 64 Architecture available if 1.
3746 ///
3747 UINT32 LM:1;
3748 UINT32 Reserved5:2;
3749 } Bits;
3750 ///
3751 /// All bit fields as a 32-bit value
3752 ///
3753 UINT32 Uint32;
3754 } CPUID_EXTENDED_CPU_SIG_EDX;
3755
3756
3757 /**
3758 CPUID Processor Brand String
3759
3760 @param EAX CPUID_BRAND_STRING1 (0x80000002)
3761
3762 @retval EAX Processor Brand String in type CPUID_BRAND_STRING_DATA.
3763 @retval EBX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3764 @retval ECX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3765 @retval EDX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3766
3767 <b>Example usage</b>
3768 @code
3769 CPUID_BRAND_STRING_DATA Eax;
3770 CPUID_BRAND_STRING_DATA Ebx;
3771 CPUID_BRAND_STRING_DATA Ecx;
3772 CPUID_BRAND_STRING_DATA Edx;
3773
3774 AsmCpuid (CPUID_BRAND_STRING1, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
3775 @endcode
3776 **/
3777 #define CPUID_BRAND_STRING1 0x80000002
3778
3779 /**
3780 CPUID Processor Brand String for CPUID leafs #CPUID_BRAND_STRING1,
3781 #CPUID_BRAND_STRING2, and #CPUID_BRAND_STRING3.
3782 **/
3783 typedef union {
3784 ///
3785 /// 4 ASCII characters of Processor Brand String
3786 ///
3787 CHAR8 BrandString[4];
3788 ///
3789 /// All fields as a 32-bit value
3790 ///
3791 UINT32 Uint32;
3792 } CPUID_BRAND_STRING_DATA;
3793
3794 /**
3795 CPUID Processor Brand String
3796
3797 @param EAX CPUID_BRAND_STRING2 (0x80000003)
3798
3799 @retval EAX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3800 @retval EBX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3801 @retval ECX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3802 @retval EDX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3803
3804 <b>Example usage</b>
3805 @code
3806 CPUID_BRAND_STRING_DATA Eax;
3807 CPUID_BRAND_STRING_DATA Ebx;
3808 CPUID_BRAND_STRING_DATA Ecx;
3809 CPUID_BRAND_STRING_DATA Edx;
3810
3811 AsmCpuid (CPUID_BRAND_STRING2, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
3812 @endcode
3813 **/
3814 #define CPUID_BRAND_STRING2 0x80000003
3815
3816 /**
3817 CPUID Processor Brand String
3818
3819 @param EAX CPUID_BRAND_STRING3 (0x80000004)
3820
3821 @retval EAX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3822 @retval EBX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3823 @retval ECX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3824 @retval EDX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
3825
3826 <b>Example usage</b>
3827 @code
3828 CPUID_BRAND_STRING_DATA Eax;
3829 CPUID_BRAND_STRING_DATA Ebx;
3830 CPUID_BRAND_STRING_DATA Ecx;
3831 CPUID_BRAND_STRING_DATA Edx;
3832
3833 AsmCpuid (CPUID_BRAND_STRING3, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
3834 @endcode
3835 **/
3836 #define CPUID_BRAND_STRING3 0x80000004
3837
3838
3839 /**
3840 CPUID Extended Cache information
3841
3842 @param EAX CPUID_EXTENDED_CACHE_INFO (0x80000006)
3843
3844 @retval EAX Reserved.
3845 @retval EBX Reserved.
3846 @retval ECX Extended cache information described by the type
3847 CPUID_EXTENDED_CACHE_INFO_ECX.
3848 @retval EDX Reserved.
3849
3850 <b>Example usage</b>
3851 @code
3852 CPUID_EXTENDED_CACHE_INFO_ECX Ecx;
3853
3854 AsmCpuid (CPUID_EXTENDED_CACHE_INFO, NULL, NULL, &Ecx.Uint32, NULL);
3855 @endcode
3856 **/
3857 #define CPUID_EXTENDED_CACHE_INFO 0x80000006
3858
3859 /**
3860 CPUID Extended Cache information ECX for CPUID leaf #CPUID_EXTENDED_CACHE_INFO.
3861 **/
3862 typedef union {
3863 ///
3864 /// Individual bit fields
3865 ///
3866 struct {
3867 ///
3868 /// [Bits 7:0] Cache line size in bytes.
3869 ///
3870 UINT32 CacheLineSize:8;
3871 UINT32 Reserved:4;
3872 ///
3873 /// [Bits 15:12] L2 Associativity field. Supported values are in the range
3874 /// #CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_DISABLED to
3875 /// #CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_FULL
3876 ///
3877 UINT32 L2Associativity:4;
3878 ///
3879 /// [Bits 31:16] Cache size in 1K units.
3880 ///
3881 UINT32 CacheSize:16;
3882 } Bits;
3883 ///
3884 /// All bit fields as a 32-bit value
3885 ///
3886 UINT32 Uint32;
3887 } CPUID_EXTENDED_CACHE_INFO_ECX;
3888
3889 ///
3890 /// @{ Define value for bit field CPUID_EXTENDED_CACHE_INFO_ECX.L2Associativity
3891 ///
3892 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_DISABLED 0x00
3893 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_DIRECT_MAPPED 0x01
3894 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_2_WAY 0x02
3895 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_4_WAY 0x04
3896 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_8_WAY 0x06
3897 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_16_WAY 0x08
3898 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_32_WAY 0x0A
3899 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_48_WAY 0x0B
3900 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_64_WAY 0x0C
3901 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_96_WAY 0x0D
3902 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_128_WAY 0x0E
3903 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_FULL 0x0F
3904 ///
3905 /// @}
3906 ///
3907
3908 /**
3909 CPUID Extended Time Stamp Counter information
3910
3911 @param EAX CPUID_EXTENDED_TIME_STAMP_COUNTER (0x80000007)
3912
3913 @retval EAX Reserved.
3914 @retval EBX Reserved.
3915 @retval ECX Reserved.
3916 @retval EDX Extended time stamp counter (TSC) information described by the
3917 type CPUID_EXTENDED_TIME_STAMP_COUNTER_EDX.
3918
3919 <b>Example usage</b>
3920 @code
3921 CPUID_EXTENDED_TIME_STAMP_COUNTER_EDX Edx;
3922
3923 AsmCpuid (CPUID_EXTENDED_TIME_STAMP_COUNTER, NULL, NULL, NULL, &Edx.Uint32);
3924 @endcode
3925 **/
3926 #define CPUID_EXTENDED_TIME_STAMP_COUNTER 0x80000007
3927
3928 /**
3929 CPUID Extended Time Stamp Counter information EDX for CPUID leaf
3930 #CPUID_EXTENDED_TIME_STAMP_COUNTER.
3931 **/
3932 typedef union {
3933 ///
3934 /// Individual bit fields
3935 ///
3936 struct {
3937 UINT32 Reserved1:8;
3938 ///
3939 /// [Bit 8] Invariant TSC available if 1.
3940 ///
3941 UINT32 InvariantTsc:1;
3942 UINT32 Reserved2:23;
3943 } Bits;
3944 ///
3945 /// All bit fields as a 32-bit value
3946 ///
3947 UINT32 Uint32;
3948 } CPUID_EXTENDED_TIME_STAMP_COUNTER_EDX;
3949
3950
3951 /**
3952 CPUID Linear Physical Address Size
3953
3954 @param EAX CPUID_VIR_PHY_ADDRESS_SIZE (0x80000008)
3955
3956 @retval EAX Linear/Physical Address Size described by the type
3957 CPUID_VIR_PHY_ADDRESS_SIZE_EAX.
3958 @retval EBX Reserved.
3959 @retval ECX Reserved.
3960 @retval EDX Reserved.
3961
3962 <b>Example usage</b>
3963 @code
3964 CPUID_VIR_PHY_ADDRESS_SIZE_EAX Eax;
3965
3966 AsmCpuid (CPUID_VIR_PHY_ADDRESS_SIZE, &Eax.Uint32, NULL, NULL, NULL);
3967 @endcode
3968 **/
3969 #define CPUID_VIR_PHY_ADDRESS_SIZE 0x80000008
3970
3971 /**
3972 CPUID Linear Physical Address Size EAX for CPUID leaf
3973 #CPUID_VIR_PHY_ADDRESS_SIZE.
3974 **/
3975 typedef union {
3976 ///
3977 /// Individual bit fields
3978 ///
3979 struct {
3980 ///
3981 /// [Bits 7:0] Number of physical address bits.
3982 ///
3983 /// @note
3984 /// If CPUID.80000008H:EAX[7:0] is supported, the maximum physical address
3985 /// number supported should come from this field.
3986 ///
3987 UINT32 PhysicalAddressBits:8;
3988 ///
3989 /// [Bits 15:8] Number of linear address bits.
3990 ///
3991 UINT32 LinearAddressBits:8;
3992 UINT32 Reserved:16;
3993 } Bits;
3994 ///
3995 /// All bit fields as a 32-bit value
3996 ///
3997 UINT32 Uint32;
3998 } CPUID_VIR_PHY_ADDRESS_SIZE_EAX;
3999
4000 #endif