]> git.proxmox.com Git - mirror_edk2.git/blob - UefiCpuPkg/Include/Register/Cpuid.h
UefiCpuPkg/Include: Add Skylake MSR include file
[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 - 2016, 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 December 2015, 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. The Machine Check Architecture,
437 /// which provides a compatible mechanism for error reporting in P6 family,
438 /// Pentium 4, Intel Xeon processors, and future processors, is supported.
439 /// The MCG_CAP MSR contains feature bits describing how many banks of error
440 /// reporting MSRs are supported.
441 ///
442 UINT32 MCA:1;
443 ///
444 /// [Bit 15] Conditional Move Instructions. The conditional move instruction
445 /// CMOV is supported. In addition, if x87 FPU is present as indicated by the
446 /// CPUID.FPU feature bit, then the FCOMI and FCMOV instructions are supported.
447 ///
448 UINT32 CMOV:1;
449 ///
450 /// [Bit 16] Page Attribute Table. Page Attribute Table is supported. This
451 /// feature augments the Memory Type Range Registers (MTRRs), allowing an
452 /// operating system to specify attributes of memory accessed through a
453 /// linear address on a 4KB granularity.
454 ///
455 UINT32 PAT:1;
456 ///
457 /// [Bit 17] 36-Bit Page Size Extension. 4-MByte pages addressing physical
458 /// memory beyond 4 GBytes are supported with 32-bit paging. This feature
459 /// indicates that upper bits of the physical address of a 4-MByte page are
460 /// encoded in bits 20:13 of the page-directory entry. Such physical
461 /// addresses are limited by MAXPHYADDR and may be up to 40 bits in size.
462 ///
463 UINT32 PSE_36:1;
464 ///
465 /// [Bit 18] Processor Serial Number. The processor supports the 96-bit
466 /// processor identification number feature and the feature is enabled.
467 ///
468 UINT32 PSN:1;
469 ///
470 /// [Bit 19] CLFLUSH Instruction. CLFLUSH Instruction is supported.
471 ///
472 UINT32 CLFSH:1;
473 UINT32 Reserved2:1;
474 ///
475 /// [Bit 21] Debug Store. The processor supports the ability to write debug
476 /// information into a memory resident buffer. This feature is used by the
477 /// branch trace store (BTS) and precise event-based sampling (PEBS)
478 /// facilities.
479 ///
480 UINT32 DS:1;
481 ///
482 /// [Bit 22] Thermal Monitor and Software Controlled Clock Facilities. The
483 /// processor implements internal MSRs that allow processor temperature to
484 /// be monitored and processor performance to be modulated in predefined
485 /// duty cycles under software control.
486 ///
487 UINT32 ACPI:1;
488 ///
489 /// [Bit 23] Intel MMX Technology. The processor supports the Intel MMX
490 /// technology.
491 ///
492 UINT32 MMX:1;
493 ///
494 /// [Bit 24] FXSAVE and FXRSTOR Instructions. The FXSAVE and FXRSTOR
495 /// instructions are supported for fast save and restore of the floating
496 /// point context. Presence of this bit also indicates that CR4.OSFXSR is
497 /// available for an operating system to indicate that it supports the
498 /// FXSAVE and FXRSTOR instructions.
499 ///
500 UINT32 FXSR:1;
501 ///
502 /// [Bit 25] SSE. The processor supports the SSE extensions.
503 ///
504 UINT32 SSE:1;
505 ///
506 /// [Bit 26] SSE2. The processor supports the SSE2 extensions.
507 ///
508 UINT32 SSE2:1;
509 ///
510 /// [Bit 27] Self Snoop. The processor supports the management of
511 /// conflicting memory types by performing a snoop of its own cache
512 /// structure for transactions issued to the bus.
513 ///
514 UINT32 SS:1;
515 ///
516 /// [Bit 28] Max APIC IDs reserved field is Valid. A value of 0 for HTT
517 /// indicates there is only a single logical processor in the package and
518 /// software should assume only a single APIC ID is reserved. A value of 1
519 /// for HTT indicates the value in CPUID.1.EBX[23:16] (the Maximum number of
520 /// addressable IDs for logical processors in this package) is valid for the
521 /// package.
522 ///
523 UINT32 HTT:1;
524 ///
525 /// [Bit 29] Thermal Monitor. The processor implements the thermal monitor
526 /// automatic thermal control circuitry (TCC).
527 ///
528 UINT32 TM:1;
529 UINT32 Reserved3:1;
530 ///
531 /// [Bit 31] Pending Break Enable. The processor supports the use of the
532 /// FERR#/PBE# pin when the processor is in the stop-clock state (STPCLK# is
533 /// asserted) to signal the processor that an interrupt is pending and that
534 /// the processor should return to normal operation to handle the interrupt.
535 /// Bit 10 (PBE enable) in the IA32_MISC_ENABLE MSR enables this capability.
536 ///
537 UINT32 PBE:1;
538 } Bits;
539 ///
540 /// All bit fields as a 32-bit value
541 ///
542 UINT32 Uint32;
543 } CPUID_VERSION_INFO_EDX;
544
545
546 /**
547 CPUID Cache and TLB Information
548
549 @param EAX CPUID_CACHE_INFO (0x02)
550
551 @retval EAX Cache and TLB Information described by the type
552 CPUID_CACHE_INFO_CACHE_TLB.
553 CPUID_CACHE_INFO_CACHE_TLB.CacheDescriptor[0] always returns
554 0x01 and must be ignored. Only valid if
555 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
556 @retval EBX Cache and TLB Information described by the type
557 CPUID_CACHE_INFO_CACHE_TLB. Only valid if
558 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
559 @retval ECX Cache and TLB Information described by the type
560 CPUID_CACHE_INFO_CACHE_TLB. Only valid if
561 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
562 @retval EDX Cache and TLB Information described by the type
563 CPUID_CACHE_INFO_CACHE_TLB. Only valid if
564 CPUID_CACHE_INFO_CACHE_TLB.Bits.NotValid is clear.
565
566 <b>Example usage</b>
567 @code
568 CPUID_CACHE_INFO_CACHE_TLB Eax;
569 CPUID_CACHE_INFO_CACHE_TLB Ebx;
570 CPUID_CACHE_INFO_CACHE_TLB Ecx;
571 CPUID_CACHE_INFO_CACHE_TLB Edx;
572
573 AsmCpuid (CPUID_CACHE_INFO, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
574 @endcode
575
576 <b>Cache Descriptor values</b>
577 <table>
578 <tr><th>Value </th><th> Type </th><th> Description </th></tr>
579 <tr><td> 0x00 </td><td> General </td><td> Null descriptor, this byte contains no information</td></tr>
580 <tr><td> 0x01 </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, 4-way set associative, 32 entries</td></tr>
581 <tr><td> 0x02 </td><td> TLB </td><td> Instruction TLB: 4 MByte pages, fully associative, 2 entries</td></tr>
582 <tr><td> 0x03 </td><td> TLB </td><td> Data TLB: 4 KByte pages, 4-way set associative, 64 entries</td></tr>
583 <tr><td> 0x04 </td><td> TLB </td><td> Data TLB: 4 MByte pages, 4-way set associative, 8 entries</td></tr>
584 <tr><td> 0x05 </td><td> TLB </td><td> Data TLB1: 4 MByte pages, 4-way set associative, 32 entries</td></tr>
585 <tr><td> 0x06 </td><td> Cache </td><td> 1st-level instruction cache: 8 KBytes, 4-way set associative,
586 32 byte line size</td></tr>
587 <tr><td> 0x08 </td><td> Cache </td><td> 1st-level instruction cache: 16 KBytes, 4-way set associative,
588 32 byte line size</td></tr>
589 <tr><td> 0x09 </td><td> Cache </td><td> 1st-level instruction cache: 32KBytes, 4-way set associative,
590 64 byte line size</td></tr>
591 <tr><td> 0x0A </td><td> Cache </td><td> 1st-level data cache: 8 KBytes, 2-way set associative, 32 byte line size</td></tr>
592 <tr><td> 0x0B </td><td> TLB </td><td> Instruction TLB: 4 MByte pages, 4-way set associative, 4 entries</td></tr>
593 <tr><td> 0x0C </td><td> Cache </td><td> 1st-level data cache: 16 KBytes, 4-way set associative, 32 byte line size</td></tr>
594 <tr><td> 0x0D </td><td> Cache </td><td> 1st-level data cache: 16 KBytes, 4-way set associative, 64 byte line size</td></tr>
595 <tr><td> 0x0E </td><td> Cache </td><td> 1st-level data cache: 24 KBytes, 6-way set associative, 64 byte line size</td></tr>
596 <tr><td> 0x1D </td><td> Cache </td><td> 2nd-level cache: 128 KBytes, 2-way set associative, 64 byte line size</td></tr>
597 <tr><td> 0x21 </td><td> Cache </td><td> 2nd-level cache: 256 KBytes, 8-way set associative, 64 byte line size</td></tr>
598 <tr><td> 0x22 </td><td> Cache </td><td> 3rd-level cache: 512 KBytes, 4-way set associative, 64 byte line size,
599 2 lines per sector</td></tr>
600 <tr><td> 0x23 </td><td> Cache </td><td> 3rd-level cache: 1 MBytes, 8-way set associative, 64 byte line size,
601 2 lines per sector</td></tr>
602 <tr><td> 0x24 </td><td> Cache </td><td> 2nd-level cache: 1 MBytes, 16-way set associative, 64 byte line size</td></tr>
603 <tr><td> 0x25 </td><td> Cache </td><td> 3rd-level cache: 2 MBytes, 8-way set associative, 64 byte line size,
604 2 lines per sector</td></tr>
605 <tr><td> 0x29 </td><td> Cache </td><td> 3rd-level cache: 4 MBytes, 8-way set associative, 64 byte line size,
606 2 lines per sector</td></tr>
607 <tr><td> 0x2C </td><td> Cache </td><td> 1st-level data cache: 32 KBytes, 8-way set associative,
608 64 byte line size</td></tr>
609 <tr><td> 0x30 </td><td> Cache </td><td> 1st-level instruction cache: 32 KBytes, 8-way set associative,
610 64 byte line size</td></tr>
611 <tr><td> 0x40 </td><td> Cache </td><td> No 2nd-level cache or, if processor contains a valid 2nd-level cache,
612 no 3rd-level cache</td></tr>
613 <tr><td> 0x41 </td><td> Cache </td><td> 2nd-level cache: 128 KBytes, 4-way set associative, 32 byte line size</td></tr>
614 <tr><td> 0x42 </td><td> Cache </td><td> 2nd-level cache: 256 KBytes, 4-way set associative, 32 byte line size</td></tr>
615 <tr><td> 0x43 </td><td> Cache </td><td> 2nd-level cache: 512 KBytes, 4-way set associative, 32 byte line size</td></tr>
616 <tr><td> 0x44 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 4-way set associative, 32 byte line size</td></tr>
617 <tr><td> 0x45 </td><td> Cache </td><td> 2nd-level cache: 2 MByte, 4-way set associative, 32 byte line size</td></tr>
618 <tr><td> 0x46 </td><td> Cache </td><td> 3rd-level cache: 4 MByte, 4-way set associative, 64 byte line size</td></tr>
619 <tr><td> 0x47 </td><td> Cache </td><td> 3rd-level cache: 8 MByte, 8-way set associative, 64 byte line size</td></tr>
620 <tr><td> 0x48 </td><td> Cache </td><td> 2nd-level cache: 3MByte, 12-way set associative, 64 byte line size</td></tr>
621 <tr><td> 0x49 </td><td> Cache </td><td> 3rd-level cache: 4MB, 16-way set associative, 64-byte line size
622 (Intel Xeon processor MP, Family 0FH, Model 06H)<BR>
623 2nd-level cache: 4 MByte, 16-way set associative, 64 byte line size</td></tr>
624 <tr><td> 0x4A </td><td> Cache </td><td> 3rd-level cache: 6MByte, 12-way set associative, 64 byte line size</td></tr>
625 <tr><td> 0x4B </td><td> Cache </td><td> 3rd-level cache: 8MByte, 16-way set associative, 64 byte line size</td></tr>
626 <tr><td> 0x4C </td><td> Cache </td><td> 3rd-level cache: 12MByte, 12-way set associative, 64 byte line size</td></tr>
627 <tr><td> 0x4D </td><td> Cache </td><td> 3rd-level cache: 16MByte, 16-way set associative, 64 byte line size</td></tr>
628 <tr><td> 0x4E </td><td> Cache </td><td> 2nd-level cache: 6MByte, 24-way set associative, 64 byte line size</td></tr>
629 <tr><td> 0x4F </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, 32 entries</td></tr>
630 <tr><td> 0x50 </td><td> TLB </td><td> Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 64 entries</td></tr>
631 <tr><td> 0x51 </td><td> TLB </td><td> Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 128 entries</td></tr>
632 <tr><td> 0x52 </td><td> TLB </td><td> Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 256 entries</td></tr>
633 <tr><td> 0x55 </td><td> TLB </td><td> Instruction TLB: 2-MByte or 4-MByte pages, fully associative, 7 entries</td></tr>
634 <tr><td> 0x56 </td><td> TLB </td><td> Data TLB0: 4 MByte pages, 4-way set associative, 16 entries</td></tr>
635 <tr><td> 0x57 </td><td> TLB </td><td> Data TLB0: 4 KByte pages, 4-way associative, 16 entries</td></tr>
636 <tr><td> 0x59 </td><td> TLB </td><td> Data TLB0: 4 KByte pages, fully associative, 16 entries</td></tr>
637 <tr><td> 0x5A </td><td> TLB </td><td> Data TLB0: 2-MByte or 4 MByte pages, 4-way set associative, 32 entries</td></tr>
638 <tr><td> 0x5B </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages, 64 entries</td></tr>
639 <tr><td> 0x5C </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages,128 entries</td></tr>
640 <tr><td> 0x5D </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages,256 entries</td></tr>
641 <tr><td> 0x60 </td><td> Cache </td><td> 1st-level data cache: 16 KByte, 8-way set associative, 64 byte line size</td></tr>
642 <tr><td> 0x61 </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, fully associative, 48 entries</td></tr>
643 <tr><td> 0x63 </td><td> TLB </td><td> Data TLB: 1 GByte pages, 4-way set associative, 4 entries</td></tr>
644 <tr><td> 0x66 </td><td> Cache </td><td> 1st-level data cache: 8 KByte, 4-way set associative, 64 byte line size</td></tr>
645 <tr><td> 0x67 </td><td> Cache </td><td> 1st-level data cache: 16 KByte, 4-way set associative, 64 byte line size</td></tr>
646 <tr><td> 0x68 </td><td> Cache </td><td> 1st-level data cache: 32 KByte, 4-way set associative, 64 byte line size</td></tr>
647 <tr><td> 0x6A </td><td> Cache </td><td> uTLB: 4 KByte pages, 8-way set associative, 64 entries</td></tr>
648 <tr><td> 0x6B </td><td> Cache </td><td> DTLB: 4 KByte pages, 8-way set associative, 256 entries</td></tr>
649 <tr><td> 0x6C </td><td> Cache </td><td> DTLB: 2M/4M pages, 8-way set associative, 128 entries</td></tr>
650 <tr><td> 0x6D </td><td> Cache </td><td> DTLB: 1 GByte pages, fully associative, 16 entries</td></tr>
651 <tr><td> 0x70 </td><td> Cache </td><td> Trace cache: 12 K-uop, 8-way set associative</td></tr>
652 <tr><td> 0x71 </td><td> Cache </td><td> Trace cache: 16 K-uop, 8-way set associative</td></tr>
653 <tr><td> 0x72 </td><td> Cache </td><td> Trace cache: 32 K-uop, 8-way set associative</td></tr>
654 <tr><td> 0x76 </td><td> TLB </td><td> Instruction TLB: 2M/4M pages, fully associative, 8 entries</td></tr>
655 <tr><td> 0x78 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 4-way set associative, 64byte line size</td></tr>
656 <tr><td> 0x79 </td><td> Cache </td><td> 2nd-level cache: 128 KByte, 8-way set associative, 64 byte line size,
657 2 lines per sector</td></tr>
658 <tr><td> 0x7A </td><td> Cache </td><td> 2nd-level cache: 256 KByte, 8-way set associative, 64 byte line size,
659 2 lines per sector</td></tr>
660 <tr><td> 0x7B </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 8-way set associative, 64 byte line size,
661 2 lines per sector</td></tr>
662 <tr><td> 0x7C </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size,
663 2 lines per sector</td></tr>
664 <tr><td> 0x7D </td><td> Cache </td><td> 2nd-level cache: 2 MByte, 8-way set associative, 64byte line size</td></tr>
665 <tr><td> 0x7F </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 2-way set associative, 64-byte line size</td></tr>
666 <tr><td> 0x80 </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 8-way set associative, 64-byte line size</td></tr>
667 <tr><td> 0x82 </td><td> Cache </td><td> 2nd-level cache: 256 KByte, 8-way set associative, 32 byte line size</td></tr>
668 <tr><td> 0x83 </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 8-way set associative, 32 byte line size</td></tr>
669 <tr><td> 0x84 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 8-way set associative, 32 byte line size</td></tr>
670 <tr><td> 0x85 </td><td> Cache </td><td> 2nd-level cache: 2 MByte, 8-way set associative, 32 byte line size</td></tr>
671 <tr><td> 0x86 </td><td> Cache </td><td> 2nd-level cache: 512 KByte, 4-way set associative, 64 byte line size</td></tr>
672 <tr><td> 0x87 </td><td> Cache </td><td> 2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size</td></tr>
673 <tr><td> 0xA0 </td><td> DTLB </td><td> DTLB: 4k pages, fully associative, 32 entries</td></tr>
674 <tr><td> 0xB0 </td><td> TLB </td><td> Instruction TLB: 4 KByte pages, 4-way set associative, 128 entries</td></tr>
675 <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>
676 <tr><td> 0xB2 </td><td> TLB </td><td> Instruction TLB: 4KByte pages, 4-way set associative, 64 entries</td></tr>
677 <tr><td> 0xB3 </td><td> TLB </td><td> Data TLB: 4 KByte pages, 4-way set associative, 128 entries</td></tr>
678 <tr><td> 0xB4 </td><td> TLB </td><td> Data TLB1: 4 KByte pages, 4-way associative, 256 entries</td></tr>
679 <tr><td> 0xB5 </td><td> TLB </td><td> Instruction TLB: 4KByte pages, 8-way set associative, 64 entries</td></tr>
680 <tr><td> 0xB6 </td><td> TLB </td><td> Instruction TLB: 4KByte pages, 8-way set associative,
681 128 entries</td></tr>
682 <tr><td> 0xBA </td><td> TLB </td><td> Data TLB1: 4 KByte pages, 4-way associative, 64 entries</td></tr>
683 <tr><td> 0xC0 </td><td> TLB </td><td> Data TLB: 4 KByte and 4 MByte pages, 4-way associative, 8 entries</td></tr>
684 <tr><td> 0xC1 </td><td> STLB </td><td> Shared 2nd-Level TLB: 4 KByte/2MByte pages, 8-way associative,
685 1024 entries</td></tr>
686 <tr><td> 0xC2 </td><td> DTLB </td><td> DTLB: 4 KByte/2 MByte pages, 4-way associative, 16 entries</td></tr>
687 <tr><td> 0xC3 </td><td> STLB </td><td> Shared 2nd-Level TLB: 4 KByte /2 MByte pages, 6-way associative,
688 1536 entries. Also 1GBbyte pages, 4-way, 16 entries.</td></tr>
689 <tr><td> 0xCA </td><td> STLB </td><td> Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries</td></tr>
690 <tr><td> 0xD0 </td><td> Cache </td><td> 3rd-level cache: 512 KByte, 4-way set associative, 64 byte line size</td></tr>
691 <tr><td> 0xD1 </td><td> Cache </td><td> 3rd-level cache: 1 MByte, 4-way set associative, 64 byte line size</td></tr>
692 <tr><td> 0xD2 </td><td> Cache </td><td> 3rd-level cache: 2 MByte, 4-way set associative, 64 byte line size</td></tr>
693 <tr><td> 0xD6 </td><td> Cache </td><td> 3rd-level cache: 1 MByte, 8-way set associative, 64 byte line size</td></tr>
694 <tr><td> 0xD7 </td><td> Cache </td><td> 3rd-level cache: 2 MByte, 8-way set associative, 64 byte line size</td></tr>
695 <tr><td> 0xD8 </td><td> Cache </td><td> 3rd-level cache: 4 MByte, 8-way set associative, 64 byte line size</td></tr>
696 <tr><td> 0xDC </td><td> Cache </td><td> 3rd-level cache: 1.5 MByte, 12-way set associative, 64 byte line size</td></tr>
697 <tr><td> 0xDD </td><td> Cache </td><td> 3rd-level cache: 3 MByte, 12-way set associative, 64 byte line size</td></tr>
698 <tr><td> 0xDE </td><td> Cache </td><td> 3rd-level cache: 6 MByte, 12-way set associative, 64 byte line size</td></tr>
699 <tr><td> 0xE2 </td><td> Cache </td><td> 3rd-level cache: 2 MByte, 16-way set associative, 64 byte line size</td></tr>
700 <tr><td> 0xE3 </td><td> Cache </td><td> 3rd-level cache: 4 MByte, 16-way set associative, 64 byte line size</td></tr>
701 <tr><td> 0xE4 </td><td> Cache </td><td> 3rd-level cache: 8 MByte, 16-way set associative, 64 byte line size</td></tr>
702 <tr><td> 0xEA </td><td> Cache </td><td> 3rd-level cache: 12MByte, 24-way set associative, 64 byte line size</td></tr>
703 <tr><td> 0xEB </td><td> Cache </td><td> 3rd-level cache: 18MByte, 24-way set associative, 64 byte line size</td></tr>
704 <tr><td> 0xEC </td><td> Cache </td><td> 3rd-level cache: 24MByte, 24-way set associative, 64 byte line size</td></tr>
705 <tr><td> 0xF0 </td><td> Prefetch</td><td> 64-Byte prefetching</td></tr>
706 <tr><td> 0xF1 </td><td> Prefetch</td><td> 128-Byte prefetching</td></tr>
707 <tr><td> 0xFF </td><td> General </td><td> CPUID leaf 2 does not report cache descriptor information,
708 use CPUID leaf 4 to query cache parameters</td></tr>
709 </table>
710 **/
711 #define CPUID_CACHE_INFO 0x02
712
713 /**
714 CPUID Cache and TLB Information returned in EAX, EBX, ECX, and EDX for CPUID
715 leaf #CPUID_CACHE_INFO.
716 **/
717 typedef union {
718 ///
719 /// Individual bit fields
720 ///
721 struct {
722 UINT32 Reserved:31;
723 ///
724 /// [Bit 31] If 0, then the cache descriptor bytes in the register are valid.
725 /// if 1, then none of the cache descriptor bytes in the register are valid.
726 ///
727 UINT32 NotValid:1;
728 } Bits;
729 ///
730 /// Array of Cache and TLB descriptor bytes
731 ///
732 UINT8 CacheDescriptor[4];
733 ///
734 /// All bit fields as a 32-bit value
735 ///
736 UINT32 Uint32;
737 } CPUID_CACHE_INFO_CACHE_TLB;
738
739
740 /**
741 CPUID Processor Serial Number
742
743 Processor serial number (PSN) is not supported in the Pentium 4 processor
744 or later. On all models, use the PSN flag (returned using CPUID) to check
745 for PSN support before accessing the feature.
746
747 @param EAX CPUID_SERIAL_NUMBER (0x03)
748
749 @retval EAX Reserved.
750 @retval EBX Reserved.
751 @retval ECX Bits 31:0 of 96 bit processor serial number. (Available in
752 Pentium III processor only; otherwise, the value in this
753 register is reserved.)
754 @retval EDX Bits 63:32 of 96 bit processor serial number. (Available in
755 Pentium III processor only; otherwise, the value in this
756 register is reserved.)
757
758 <b>Example usage</b>
759 @code
760 UINT32 Ecx;
761 UINT32 Edx;
762
763 AsmCpuid (CPUID_SERIAL_NUMBER, NULL, NULL, &Ecx, &Edx);
764 @endcode
765 **/
766 #define CPUID_SERIAL_NUMBER 0x03
767
768
769 /**
770 CPUID Cache Parameters
771
772 @param EAX CPUID_CACHE_PARAMS (0x04)
773 @param ECX Cache Level. Valid values start at 0. Software can enumerate
774 the deterministic cache parameters for each level of the cache
775 hierarchy starting with an index value of 0, until the
776 parameters report the value associated with the CacheType
777 field in CPUID_CACHE_PARAMS_EAX is 0.
778
779 @retval EAX Returns cache type information described by the type
780 CPUID_CACHE_PARAMS_EAX.
781 @retval EBX Returns cache line and associativity information described by
782 the type CPUID_CACHE_PARAMS_EBX.
783 @retval ECX Returns the number of sets in the cache.
784 @retval EDX Returns cache WINVD/INVD behavior described by the type
785 CPUID_CACHE_PARAMS_EDX.
786
787 <b>Example usage</b>
788 @code
789 UINT32 CacheLevel;
790 CPUID_CACHE_PARAMS_EAX Eax;
791 CPUID_CACHE_PARAMS_EBX Ebx;
792 UINT32 Ecx;
793 CPUID_CACHE_PARAMS_EDX Edx;
794
795 CacheLevel = 0;
796 do {
797 AsmCpuidEx (
798 CPUID_CACHE_PARAMS, CacheLevel,
799 &Eax.Uint32, &Ebx.Uint32, &Ecx, &Edx.Uint32
800 );
801 CacheLevel++;
802 } while (Eax.Bits.CacheType != CPUID_CACHE_PARAMS_CACHE_TYPE_NULL);
803 @endcode
804 **/
805 #define CPUID_CACHE_PARAMS 0x04
806
807 /**
808 CPUID Cache Parameters Information returned in EAX for CPUID leaf
809 #CPUID_CACHE_PARAMS.
810 **/
811 typedef union {
812 ///
813 /// Individual bit fields
814 ///
815 struct {
816 ///
817 /// [Bits 4:0] Cache type field. If #CPUID_CACHE_PARAMS_CACHE_TYPE_NULL,
818 /// then there is no information for the requested cache level.
819 ///
820 UINT32 CacheType:5;
821 ///
822 /// [Bits 7:5] Cache level (Starts at 1).
823 ///
824 UINT32 CacheLevel:3;
825 ///
826 /// [Bit 8] Self Initializing cache level (does not need SW initialization).
827 ///
828 UINT32 SelfInitializingCache:1;
829 ///
830 /// [Bit 9] Fully Associative cache.
831 ///
832 UINT32 FullyAssociativeCache:1;
833 ///
834 /// [Bits 13:10] Reserved.
835 ///
836 UINT32 Reserved:4;
837 ///
838 /// [Bits 25:14] Maximum number of addressable IDs for logical processors
839 /// sharing this cache.
840 ///
841 /// Add one to the return value to get the result.
842 /// The nearest power-of-2 integer that is not smaller than (1 + EAX[25:14])
843 /// is the number of unique initial APIC IDs reserved for addressing
844 /// different logical processors sharing this cache.
845 ///
846 UINT32 MaximumAddressableIdsForLogicalProcessors:12;
847 ///
848 /// [Bits 31:26] Maximum number of addressable IDs for processor cores in
849 /// the physical package.
850 ///
851 /// The nearest power-of-2 integer that is not smaller than (1 + EAX[31:26])
852 /// is the number of unique Core_IDs reserved for addressing different
853 /// processor cores in a physical package. Core ID is a subset of bits of
854 /// the initial APIC ID.
855 /// The returned value is constant for valid initial values in ECX. Valid
856 /// ECX values start from 0.
857 ///
858 UINT32 MaximumAddressableIdsForProcessorCores:6;
859 } Bits;
860 ///
861 /// All bit fields as a 32-bit value
862 ///
863 UINT32 Uint32;
864 } CPUID_CACHE_PARAMS_EAX;
865
866 ///
867 /// @{ Define value for bit field CPUID_CACHE_PARAMS_EAX.CacheType
868 ///
869 #define CPUID_CACHE_PARAMS_CACHE_TYPE_NULL 0x00
870 #define CPUID_CACHE_PARAMS_CACHE_TYPE_DATA 0x01
871 #define CPUID_CACHE_PARAMS_CACHE_TYPE_INSTRUCTION 0x02
872 #define CPUID_CACHE_PARAMS_CACHE_TYPE_UNIFIED 0x03
873 ///
874 /// @}
875 ///
876
877 /**
878 CPUID Cache Parameters Information returned in EBX for CPUID leaf
879 #CPUID_CACHE_PARAMS.
880 **/
881 typedef union {
882 ///
883 /// Individual bit fields
884 ///
885 struct {
886 ///
887 /// [Bits 11:0] System Coherency Line Size. Add one to the return value to
888 /// get the result.
889 ///
890 UINT32 LineSize:12;
891 ///
892 /// [Bits 21:12] Physical Line Partitions. Add one to the return value to
893 /// get the result.
894 ///
895 UINT32 LinePartitions:10;
896 ///
897 /// [Bits 31:22] Ways of associativity. Add one to the return value to get
898 /// the result.
899 ///
900 UINT32 Ways:10;
901 } Bits;
902 ///
903 /// All bit fields as a 32-bit value
904 ///
905 UINT32 Uint32;
906 } CPUID_CACHE_PARAMS_EBX;
907
908 /**
909 CPUID Cache Parameters Information returned in EDX for CPUID leaf
910 #CPUID_CACHE_PARAMS.
911 **/
912 typedef union {
913 ///
914 /// Individual bit fields
915 ///
916 struct {
917 ///
918 /// [Bit 0] Write-Back Invalidate/Invalidate.
919 /// 0 = WBINVD/INVD from threads sharing this cache acts upon lower level
920 /// caches for threads sharing this cache.
921 /// 1 = WBINVD/INVD is not guaranteed to act upon lower level caches of
922 /// non-originating threads sharing this cache.
923 ///
924 UINT32 Invalidate:1;
925 ///
926 /// [Bit 1] Cache Inclusiveness.
927 /// 0 = Cache is not inclusive of lower cache levels.
928 /// 1 = Cache is inclusive of lower cache levels.
929 ///
930 UINT32 CacheInclusiveness:1;
931 ///
932 /// [Bit 2] Complex Cache Indexing.
933 /// 0 = Direct mapped cache.
934 /// 1 = A complex function is used to index the cache, potentially using all
935 /// address bits.
936 ///
937 UINT32 ComplexCacheIndexing:1;
938 UINT32 Reserved:29;
939 } Bits;
940 ///
941 /// All bit fields as a 32-bit value
942 ///
943 UINT32 Uint32;
944 } CPUID_CACHE_PARAMS_EDX;
945
946
947 /**
948 CPUID MONITOR/MWAIT Information
949
950 @param EAX CPUID_MONITOR_MWAIT (0x05)
951
952 @retval EAX Smallest monitor-line size in bytes described by the type
953 CPUID_MONITOR_MWAIT_EAX.
954 @retval EBX Largest monitor-line size in bytes described by the type
955 CPUID_MONITOR_MWAIT_EBX.
956 @retval ECX Enumeration of Monitor-Mwait extensions support described by
957 the type CPUID_MONITOR_MWAIT_ECX.
958 @retval EDX Sub C-states supported described by the type
959 CPUID_MONITOR_MWAIT_EDX.
960
961 <b>Example usage</b>
962 @code
963 CPUID_MONITOR_MWAIT_EAX Eax;
964 CPUID_MONITOR_MWAIT_EBX Ebx;
965 CPUID_MONITOR_MWAIT_ECX Ecx;
966 CPUID_MONITOR_MWAIT_EDX Edx;
967
968 AsmCpuid (CPUID_MONITOR_MWAIT, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
969 @endcode
970 **/
971 #define CPUID_MONITOR_MWAIT 0x05
972
973 /**
974 CPUID MONITOR/MWAIT Information returned in EAX for CPUID leaf
975 #CPUID_MONITOR_MWAIT.
976 **/
977 typedef union {
978 ///
979 /// Individual bit fields
980 ///
981 struct {
982 ///
983 /// [Bits 15:0] Smallest monitor-line size in bytes (default is processor's
984 /// monitor granularity).
985 ///
986 UINT32 SmallestMonitorLineSize:16;
987 UINT32 Reserved:16;
988 } Bits;
989 ///
990 /// All bit fields as a 32-bit value
991 ///
992 UINT32 Uint32;
993 } CPUID_MONITOR_MWAIT_EAX;
994
995 /**
996 CPUID MONITOR/MWAIT Information returned in EBX for CPUID leaf
997 #CPUID_MONITOR_MWAIT.
998 **/
999 typedef union {
1000 ///
1001 /// Individual bit fields
1002 ///
1003 struct {
1004 ///
1005 /// [Bits 15:0] Largest monitor-line size in bytes (default is processor's
1006 /// monitor granularity).
1007 ///
1008 UINT32 LargestMonitorLineSize:16;
1009 UINT32 Reserved:16;
1010 } Bits;
1011 ///
1012 /// All bit fields as a 32-bit value
1013 ///
1014 UINT32 Uint32;
1015 } CPUID_MONITOR_MWAIT_EBX;
1016
1017 /**
1018 CPUID MONITOR/MWAIT Information returned in ECX for CPUID leaf
1019 #CPUID_MONITOR_MWAIT.
1020 **/
1021 typedef union {
1022 ///
1023 /// Individual bit fields
1024 ///
1025 struct {
1026 ///
1027 /// [Bit 0] If 0, then only EAX and EBX are valid. If 1, then EAX, EBX, ECX,
1028 /// and EDX are valid.
1029 ///
1030 UINT32 ExtensionsSupported:1;
1031 ///
1032 /// [Bit 1] Supports treating interrupts as break-event for MWAIT, even when
1033 /// interrupts disabled.
1034 ///
1035 UINT32 InterruptAsBreak:1;
1036 UINT32 Reserved:30;
1037 } Bits;
1038 ///
1039 /// All bit fields as a 32-bit value
1040 ///
1041 UINT32 Uint32;
1042 } CPUID_MONITOR_MWAIT_ECX;
1043
1044 /**
1045 CPUID MONITOR/MWAIT Information returned in EDX for CPUID leaf
1046 #CPUID_MONITOR_MWAIT.
1047
1048 @note
1049 The definition of C0 through C7 states for MWAIT extension are
1050 processor-specific C-states, not ACPI C-states.
1051 **/
1052 typedef union {
1053 ///
1054 /// Individual bit fields
1055 ///
1056 struct {
1057 ///
1058 /// [Bits 3:0] Number of C0 sub C-states supported using MWAIT.
1059 ///
1060 UINT32 C0States:4;
1061 ///
1062 /// [Bits 7:4] Number of C1 sub C-states supported using MWAIT.
1063 ///
1064 UINT32 C1States:4;
1065 ///
1066 /// [Bits 11:8] Number of C2 sub C-states supported using MWAIT.
1067 ///
1068 UINT32 C2States:4;
1069 ///
1070 /// [Bits 15:12] Number of C3 sub C-states supported using MWAIT.
1071 ///
1072 UINT32 C3States:4;
1073 ///
1074 /// [Bits 19:16] Number of C4 sub C-states supported using MWAIT.
1075 ///
1076 UINT32 C4States:4;
1077 ///
1078 /// [Bits 23:20] Number of C5 sub C-states supported using MWAIT.
1079 ///
1080 UINT32 C5States:4;
1081 ///
1082 /// [Bits 27:24] Number of C6 sub C-states supported using MWAIT.
1083 ///
1084 UINT32 C6States:4;
1085 ///
1086 /// [Bits 31:28] Number of C7 sub C-states supported using MWAIT.
1087 ///
1088 UINT32 C7States:4;
1089 } Bits;
1090 ///
1091 /// All bit fields as a 32-bit value
1092 ///
1093 UINT32 Uint32;
1094 } CPUID_MONITOR_MWAIT_EDX;
1095
1096
1097 /**
1098 CPUID Thermal and Power Management
1099
1100 @param EAX CPUID_THERMAL_POWER_MANAGEMENT (0x06)
1101
1102 @retval EAX Thermal and power management features described by the type
1103 CPUID_THERMAL_POWER_MANAGEMENT_EAX.
1104 @retval EBX Number of Interrupt Thresholds in Digital Thermal Sensor
1105 described by the type CPUID_THERMAL_POWER_MANAGEMENT_EBX.
1106 @retval ECX Performance features described by the type
1107 CPUID_THERMAL_POWER_MANAGEMENT_ECX.
1108 @retval EDX Reserved.
1109
1110 <b>Example usage</b>
1111 @code
1112 CPUID_THERMAL_POWER_MANAGEMENT_EAX Eax;
1113 CPUID_THERMAL_POWER_MANAGEMENT_EBX Ebx;
1114 CPUID_THERMAL_POWER_MANAGEMENT_ECX Ecx;
1115
1116 AsmCpuid (CPUID_THERMAL_POWER_MANAGEMENT, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, NULL);
1117 @endcode
1118 **/
1119 #define CPUID_THERMAL_POWER_MANAGEMENT 0x06
1120
1121 /**
1122 CPUID Thermal and Power Management Information returned in EAX for CPUID leaf
1123 #CPUID_THERMAL_POWER_MANAGEMENT.
1124 **/
1125 typedef union {
1126 ///
1127 /// Individual bit fields
1128 ///
1129 struct {
1130 ///
1131 /// [Bit 0] Digital temperature sensor is supported if set.
1132 ///
1133 UINT32 DigitalTemperatureSensor:1;
1134 ///
1135 /// [Bit 1] Intel Turbo Boost Technology Available (see IA32_MISC_ENABLE[38]).
1136 ///
1137 UINT32 TurboBoostTechnology:1;
1138 ///
1139 /// [Bit 2] APIC-Timer-always-running feature is supported if set.
1140 ///
1141 UINT32 ARAT:1;
1142 UINT32 Reserved1:1;
1143 ///
1144 /// [Bit 4] Power limit notification controls are supported if set.
1145 ///
1146 UINT32 PLN:1;
1147 ///
1148 /// [Bit 5] Clock modulation duty cycle extension is supported if set.
1149 ///
1150 UINT32 ECMD:1;
1151 ///
1152 /// [Bit 6] Package thermal management is supported if set.
1153 ///
1154 UINT32 PTM:1;
1155 ///
1156 /// [Bit 7] HWP base registers (IA32_PM_ENABLE[Bit 0], IA32_HWP_CAPABILITIES,
1157 /// IA32_HWP_REQUEST, IA32_HWP_STATUS) are supported if set.
1158 ///
1159 UINT32 HWP:1;
1160 ///
1161 /// [Bit 8] IA32_HWP_INTERRUPT MSR is supported if set.
1162 ///
1163 UINT32 HWP_Notification:1;
1164 ///
1165 /// [Bit 9] IA32_HWP_REQUEST[Bits 41:32] is supported if set.
1166 ///
1167 UINT32 HWP_Activity_Window:1;
1168 ///
1169 /// [Bit 10] IA32_HWP_REQUEST[Bits 31:24] is supported if set.
1170 ///
1171 UINT32 HWP_Energy_Performance_Preference:1;
1172 ///
1173 /// [Bit 11] IA32_HWP_REQUEST_PKG MSR is supported if set.
1174 ///
1175 UINT32 HWP_Package_Level_Request:1;
1176 UINT32 Reserved2:1;
1177 ///
1178 /// [Bit 13] HDC base registers IA32_PKG_HDC_CTL, IA32_PM_CTL1,
1179 /// IA32_THREAD_STALL MSRs are supported if set.
1180 ///
1181 UINT32 HDC:1;
1182 UINT32 Reserved3:18;
1183 } Bits;
1184 ///
1185 /// All bit fields as a 32-bit value
1186 ///
1187 UINT32 Uint32;
1188 } CPUID_THERMAL_POWER_MANAGEMENT_EAX;
1189
1190 /**
1191 CPUID Thermal and Power Management Information returned in EBX for CPUID leaf
1192 #CPUID_THERMAL_POWER_MANAGEMENT.
1193 **/
1194 typedef union {
1195 ///
1196 /// Individual bit fields
1197 ///
1198 struct {
1199 ///
1200 /// {Bits 3:0] Number of Interrupt Thresholds in Digital Thermal Sensor.
1201 ///
1202 UINT32 InterruptThresholds:4;
1203 UINT32 Reserved:28;
1204 } Bits;
1205 ///
1206 /// All bit fields as a 32-bit value
1207 ///
1208 UINT32 Uint32;
1209 } CPUID_THERMAL_POWER_MANAGEMENT_EBX;
1210
1211 /**
1212 CPUID Thermal and Power Management Information returned in ECX for CPUID leaf
1213 #CPUID_THERMAL_POWER_MANAGEMENT.
1214 **/
1215 typedef union {
1216 ///
1217 /// Individual bit fields
1218 ///
1219 struct {
1220 ///
1221 /// [Bit 0] Hardware Coordination Feedback Capability (Presence of IA32_MPERF
1222 /// and IA32_APERF). The capability to provide a measure of delivered
1223 /// processor performance (since last reset of the counters), as a percentage
1224 /// of the expected processor performance when running at the TSC frequency.
1225 ///
1226 UINT32 HardwareCoordinationFeedback:1;
1227 UINT32 Reserved1:2;
1228 ///
1229 /// [Bit 3] If this bit is set, then the processor supports performance-energy
1230 /// bias preference and the architectural MSR called IA32_ENERGY_PERF_BIAS
1231 /// (1B0H).
1232 ///
1233 UINT32 PerformanceEnergyBias:1;
1234 UINT32 Reserved2:28;
1235 } Bits;
1236 ///
1237 /// All bit fields as a 32-bit value
1238 ///
1239 UINT32 Uint32;
1240 } CPUID_THERMAL_POWER_MANAGEMENT_ECX;
1241
1242
1243 /**
1244 CPUID Structured Extended Feature Flags Enumeration
1245
1246 @param EAX CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS (0x07)
1247 @param ECX CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO (0x00).
1248
1249 @note
1250 If ECX contains an invalid sub-leaf index, EAX/EBX/ECX/EDX return 0. Sub-leaf
1251 index n is invalid if n exceeds the value that sub-leaf 0 returns in EAX.
1252
1253 @retval EAX The maximum input value for ECX to retrieve sub-leaf information.
1254 @retval EBX Structured Extended Feature Flags described by the type
1255 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EBX.
1256 @retval EBX Structured Extended Feature Flags described by the type
1257 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_ECX.
1258 @retval EDX Reserved.
1259
1260 <b>Example usage</b>
1261 @code
1262 UINT32 Eax;
1263 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EBX Ebx;
1264 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_ECX Ecx;
1265 UINT32 SubLeaf;
1266
1267 AsmCpuidEx (
1268 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS,
1269 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO,
1270 &Eax, NULL, NULL, NULL
1271 );
1272 for (SubLeaf = 0; SubLeaf <= Eax; SubLeaf++) {
1273 AsmCpuidEx (
1274 CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS,
1275 SubLeaf,
1276 NULL, &Ebx.Uint32, &Ecx.Uint32, NULL
1277 );
1278 SubLeaf++;
1279 } while (SubLeaf <= Eax);
1280 @endcode
1281 **/
1282 #define CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS 0x07
1283
1284 ///
1285 /// CPUID Structured Extended Feature Flags Enumeration sub-leaf
1286 ///
1287 #define CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO 0x00
1288
1289 /**
1290 CPUID Structured Extended Feature Flags Enumeration in EBX for CPUID leaf
1291 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS sub leaf
1292 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO.
1293 **/
1294 typedef union {
1295 ///
1296 /// Individual bit fields
1297 ///
1298 struct {
1299 ///
1300 /// [Bit 0] Supports RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE if 1.
1301 ///
1302 UINT32 FSGSBASE:1;
1303 ///
1304 /// [Bit 1] IA32_TSC_ADJUST MSR is supported if 1.
1305 ///
1306 UINT32 IA32_TSC_ADJUST:1;
1307 UINT32 Reserved1:1;
1308 ///
1309 /// [Bit 3] If 1 indicates the processor supports the first group of advanced
1310 /// bit manipulation extensions (ANDN, BEXTR, BLSI, BLSMSK, BLSR, TZCNT)
1311 ///
1312 UINT32 BMI1:1;
1313 ///
1314 /// [Bit 4] Hardware Lock Elision
1315 ///
1316 UINT32 HLE:1;
1317 ///
1318 /// [Bit 5] If 1 indicates the processor supports AVX2 instruction extensions.
1319 ///
1320 UINT32 AVX2:1;
1321 ///
1322 /// [Bit 6] x87 FPU Data Pointer updated only on x87 exceptions if 1.
1323 ///
1324 UINT32 FDP_EXCPTN_ONLY:1;
1325 ///
1326 /// [Bit 7] Supports Supervisor-Mode Execution Prevention if 1.
1327 ///
1328 UINT32 SMEP:1;
1329 ///
1330 /// [Bit 8] If 1 indicates the processor supports the second group of
1331 /// advanced bit manipulation extensions (BZHI, MULX, PDEP, PEXT, RORX,
1332 /// SARX, SHLX, SHRX)
1333 ///
1334 UINT32 BMI2:1;
1335 ///
1336 /// [Bit 9] Supports Enhanced REP MOVSB/STOSB if 1.
1337 ///
1338 UINT32 EnhancedRepMovsbStosb:1;
1339 ///
1340 /// [Bit 10] If 1, supports INVPCID instruction for system software that
1341 /// manages process-context identifiers.
1342 ///
1343 UINT32 INVPCID:1;
1344 ///
1345 /// [Bit 11] Restricted Transactional Memory
1346 ///
1347 UINT32 RTM:1;
1348 ///
1349 /// [Bit 12] Supports Platform Quality of Service Monitoring (PQM)
1350 /// capability if 1.
1351 ///
1352 UINT32 PQM:1;
1353 ///
1354 /// [Bit 13] Deprecates FPU CS and FPU DS values if 1.
1355 ///
1356 UINT32 DeprecateFpuCsDs:1;
1357 ///
1358 /// [Bit 14] Supports Intel(R) Memory Protection Extensions if 1.
1359 ///
1360 UINT32 MPX:1;
1361 ///
1362 /// [Bit 15] Supports Platform Quality of Service Enforcement (PQE)
1363 /// capability if 1.
1364 ///
1365 UINT32 PQE:1;
1366 UINT32 Reserved2:2;
1367 ///
1368 /// [Bit 18] If 1 indicates the processor supports the RDSEED instruction.
1369 ///
1370 UINT32 RDSEED:1;
1371 ///
1372 /// [Bit 19] If 1 indicates the processor supports the ADCX and ADOX
1373 /// instructions.
1374 ///
1375 UINT32 ADX:1;
1376 ///
1377 /// [Bit 20] Supports Supervisor-Mode Access Prevention (and the CLAC/STAC
1378 /// instructions) if 1.
1379 ///
1380 UINT32 SMAP:1;
1381 UINT32 Reserved3:2;
1382 ///
1383 /// [Bit 23] If 1 indicates the processor supports the CLFLUSHOPT instruction.
1384 ///
1385 UINT32 CLFLUSHOPT:1;
1386 UINT32 Reserved4:1;
1387 ///
1388 /// [Bit 25] If 1 indicates the processor supports the Intel Processor Trace
1389 /// extensions.
1390 ///
1391 UINT32 IntelProcessorTrace:1;
1392 UINT32 Reserved5:6;
1393 } Bits;
1394 ///
1395 /// All bit fields as a 32-bit value
1396 ///
1397 UINT32 Uint32;
1398 } CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_EBX;
1399
1400 /**
1401 CPUID Structured Extended Feature Flags Enumeration in ECX for CPUID leaf
1402 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS sub leaf
1403 #CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_SUB_LEAF_INFO.
1404 **/
1405 typedef union {
1406 ///
1407 /// Individual bit fields
1408 ///
1409 struct {
1410 ///
1411 /// [Bit 0] If 1 indicates the processor supports the PREFETCHWT1 instruction.
1412 ///
1413 UINT32 PREFETCHWT1:1;
1414 UINT32 Reserved1:2;
1415 ///
1416 /// [Bit 3] Supports protection keys for user-mode pages if 1.
1417 ///
1418 UINT32 PKU:1;
1419 ///
1420 /// [Bit 4] If 1, OS has set CR4.PKE to enable protection keys (and the
1421 /// RDPKRU/WRPKRU instructions).
1422 ///
1423 UINT32 OSPKE:1;
1424 UINT32 Reserved2:27;
1425 } Bits;
1426 ///
1427 /// All bit fields as a 32-bit value
1428 ///
1429 UINT32 Uint32;
1430 } CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS_ECX;
1431
1432
1433 /**
1434 CPUID Direct Cache Access Information
1435
1436 @param EAX CPUID_DIRECT_CACHE_ACCESS_INFO (0x09)
1437
1438 @retval EAX Value of bits [31:0] of IA32_PLATFORM_DCA_CAP MSR (address 1F8H).
1439 @retval EBX Reserved.
1440 @retval ECX Reserved.
1441 @retval EDX Reserved.
1442
1443 <b>Example usage</b>
1444 @code
1445 UINT32 Eax;
1446
1447 AsmCpuid (CPUID_DIRECT_CACHE_ACCESS_INFO, &Eax, NULL, NULL, NULL);
1448 @endcode
1449 **/
1450 #define CPUID_DIRECT_CACHE_ACCESS_INFO 0x09
1451
1452
1453 /**
1454 CPUID Architectural Performance Monitoring
1455
1456 @param EAX CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING (0x0A)
1457
1458 @retval EAX Architectural Performance Monitoring information described by
1459 the type CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EAX.
1460 @retval EBX Architectural Performance Monitoring information described by
1461 the type CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EBX.
1462 @retval ECX Reserved.
1463 @retval EDX Architectural Performance Monitoring information described by
1464 the type CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EDX.
1465
1466 <b>Example usage</b>
1467 @code
1468 CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EAX Eax;
1469 CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EBX Ebx;
1470 CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EDX Edx;
1471
1472 AsmCpuid (CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING, &Eax.Uint32, &Ebx.Uint32, NULL, &Edx.Uint32);
1473 @endcode
1474 **/
1475 #define CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING 0x0A
1476
1477 /**
1478 CPUID Architectural Performance Monitoring EAX for CPUID leaf
1479 #CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING.
1480 **/
1481 typedef union {
1482 ///
1483 /// Individual bit fields
1484 ///
1485 struct {
1486 ///
1487 /// [Bit 7:0] Version ID of architectural performance monitoring.
1488 ///
1489 UINT32 ArchPerfMonVerID:8;
1490 ///
1491 /// [Bits 15:8] Number of general-purpose performance monitoring counter
1492 /// per logical processor.
1493 ///
1494 /// IA32_PERFEVTSELx MSRs start at address 186H and occupy a contiguous
1495 /// block of MSR address space. Each performance event select register is
1496 /// paired with a corresponding performance counter in the 0C1H address
1497 /// block.
1498 ///
1499 UINT32 PerformanceMonitorCounters:8;
1500 ///
1501 /// [Bits 23:16] Bit width of general-purpose, performance monitoring counter.
1502 ///
1503 /// The bit width of an IA32_PMCx MSR. This the number of valid bits for
1504 /// read operation. On write operations, the lower-order 32 bits of the MSR
1505 /// may be written with any value, and the high-order bits are sign-extended
1506 /// from the value of bit 31.
1507 ///
1508 UINT32 PerformanceMonitorCounterWidth:8;
1509 ///
1510 /// [Bits 31:24] Length of EBX bit vector to enumerate architectural
1511 /// performance monitoring events.
1512 ///
1513 UINT32 EbxBitVectorLength:8;
1514 } Bits;
1515 ///
1516 /// All bit fields as a 32-bit value
1517 ///
1518 UINT32 Uint32;
1519 } CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EAX;
1520
1521 /**
1522 CPUID Architectural Performance Monitoring EBX for CPUID leaf
1523 #CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING.
1524 **/
1525 typedef union {
1526 ///
1527 /// Individual bit fields
1528 ///
1529 struct {
1530 ///
1531 /// [Bit 0] Core cycle event not available if 1.
1532 ///
1533 UINT32 UnhaltedCoreCycles:1;
1534 ///
1535 /// [Bit 1] Instruction retired event not available if 1.
1536 ///
1537 UINT32 InstructionsRetired:1;
1538 ///
1539 /// [Bit 2] Reference cycles event not available if 1.
1540 ///
1541 UINT32 UnhaltedReferenceCycles:1;
1542 ///
1543 /// [Bit 3] Last-level cache reference event not available if 1.
1544 ///
1545 UINT32 LastLevelCacheReferences:1;
1546 ///
1547 /// [Bit 4] Last-level cache misses event not available if 1.
1548 ///
1549 UINT32 LastLevelCacheMisses:1;
1550 ///
1551 /// [Bit 5] Branch instruction retired event not available if 1.
1552 ///
1553 UINT32 BranchInstructionsRetired:1;
1554 ///
1555 /// [Bit 6] Branch mispredict retired event not available if 1.
1556 ///
1557 UINT32 AllBranchMispredictRetired:1;
1558 UINT32 Reserved:25;
1559 } Bits;
1560 ///
1561 /// All bit fields as a 32-bit value
1562 ///
1563 UINT32 Uint32;
1564 } CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EBX;
1565
1566 /**
1567 CPUID Architectural Performance Monitoring EDX for CPUID leaf
1568 #CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING.
1569 **/
1570 typedef union {
1571 ///
1572 /// Individual bit fields
1573 ///
1574 struct {
1575 ///
1576 /// [Bits 4:0] Number of fixed-function performance counters
1577 /// (if Version ID > 1).
1578 ///
1579 UINT32 FixedFunctionPerformanceCounters:5;
1580 ///
1581 /// [Bits 12:5] Bit width of fixed-function performance counters
1582 /// (if Version ID > 1).
1583 ///
1584 UINT32 FixedFunctionPerformanceCounterWidth:8;
1585 UINT32 Reserved:19;
1586 } Bits;
1587 ///
1588 /// All bit fields as a 32-bit value
1589 ///
1590 UINT32 Uint32;
1591 } CPUID_ARCHITECTURAL_PERFORMANCE_MONITORING_EDX;
1592
1593
1594 /**
1595 CPUID Extended Topology Information
1596
1597 @note
1598 Most of Leaf 0BH output depends on the initial value in ECX. The EDX output
1599 of leaf 0BH is always valid and does not vary with input value in ECX. Output
1600 value in ECX[7:0] always equals input value in ECX[7:0]. For sub-leaves that
1601 return an invalid level-type of 0 in ECX[15:8]; EAX and EBX will return 0. If
1602 an input value n in ECX returns the invalid level-type of 0 in ECX[15:8],
1603 other input values with ECX > n also return 0 in ECX[15:8].
1604
1605 @param EAX CPUID_EXTENDED_TOPOLOGY (0x0B)
1606 @param ECX Level number
1607
1608 @retval EAX Extended topology information described by the type
1609 CPUID_EXTENDED_TOPOLOGY_EAX.
1610 @retval EBX Extended topology information described by the type
1611 CPUID_EXTENDED_TOPOLOGY_EBX.
1612 @retval ECX Extended topology information described by the type
1613 CPUID_EXTENDED_TOPOLOGY_ECX.
1614 @retval EDX x2APIC ID the current logical processor.
1615
1616 <b>Example usage</b>
1617 @code
1618 CPUID_EXTENDED_TOPOLOGY_EAX Eax;
1619 CPUID_EXTENDED_TOPOLOGY_EBX Ebx;
1620 CPUID_EXTENDED_TOPOLOGY_ECX Ecx;
1621 UINT32 Edx;
1622 UINT32 LevelNumber;
1623
1624 LevelNumber = 0;
1625 do {
1626 AsmCpuidEx (
1627 CPUID_EXTENDED_TOPOLOGY, LevelNumber,
1628 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx
1629 );
1630 LevelNumber++;
1631 } while (Eax.Bits.ApicIdShift != 0);
1632 @endcode
1633 **/
1634 #define CPUID_EXTENDED_TOPOLOGY 0x0B
1635
1636 /**
1637 CPUID Extended Topology Information EAX for CPUID leaf #CPUID_EXTENDED_TOPOLOGY.
1638 **/
1639 typedef union {
1640 ///
1641 /// Individual bit fields
1642 ///
1643 struct {
1644 ///
1645 /// [Bits 4:0] Number of bits to shift right on x2APIC ID to get a unique
1646 /// topology ID of the next level type. All logical processors with the
1647 /// same next level ID share current level.
1648 ///
1649 /// @note
1650 /// Software should use this field (EAX[4:0]) to enumerate processor
1651 /// topology of the system.
1652 ///
1653 UINT32 ApicIdShift:5;
1654 UINT32 Reserved:27;
1655 } Bits;
1656 ///
1657 /// All bit fields as a 32-bit value
1658 ///
1659 UINT32 Uint32;
1660 } CPUID_EXTENDED_TOPOLOGY_EAX;
1661
1662 /**
1663 CPUID Extended Topology Information EBX for CPUID leaf #CPUID_EXTENDED_TOPOLOGY.
1664 **/
1665 typedef union {
1666 ///
1667 /// Individual bit fields
1668 ///
1669 struct {
1670 ///
1671 /// [Bits 15:0] Number of logical processors at this level type. The number
1672 /// reflects configuration as shipped by Intel.
1673 ///
1674 /// @note
1675 /// Software must not use EBX[15:0] to enumerate processor topology of the
1676 /// system. This value in this field (EBX[15:0]) is only intended for
1677 /// display/diagnostic purposes. The actual number of logical processors
1678 /// available to BIOS/OS/Applications may be different from the value of
1679 /// EBX[15:0], depending on software and platform hardware configurations.
1680 ///
1681 UINT32 LogicalProcessors:16;
1682 UINT32 Reserved:16;
1683 } Bits;
1684 ///
1685 /// All bit fields as a 32-bit value
1686 ///
1687 UINT32 Uint32;
1688 } CPUID_EXTENDED_TOPOLOGY_EBX;
1689
1690 /**
1691 CPUID Extended Topology Information ECX for CPUID leaf #CPUID_EXTENDED_TOPOLOGY.
1692 **/
1693 typedef union {
1694 ///
1695 /// Individual bit fields
1696 ///
1697 struct {
1698 ///
1699 /// [Bits 7:0] Level number. Same value in ECX input.
1700 ///
1701 UINT32 LevelNumber:8;
1702 ///
1703 /// [Bits 15:8] Level type.
1704 ///
1705 /// @note
1706 /// The value of the "level type" field is not related to level numbers in
1707 /// any way, higher "level type" values do not mean higher levels.
1708 ///
1709 UINT32 LevelType:8;
1710 UINT32 Reserved:16;
1711 } Bits;
1712 ///
1713 /// All bit fields as a 32-bit value
1714 ///
1715 UINT32 Uint32;
1716 } CPUID_EXTENDED_TOPOLOGY_ECX;
1717
1718 ///
1719 /// @{ Define value for CPUID_EXTENDED_TOPOLOGY_ECX.LevelType
1720 ///
1721 #define CPUID_EXTENDED_TOPOLOGY_LEVEL_TYPE_INVALID 0x00
1722 #define CPUID_EXTENDED_TOPOLOGY_LEVEL_TYPE_SMT 0x01
1723 #define CPUID_EXTENDED_TOPOLOGY_LEVEL_TYPE_CORE 0x02
1724 ///
1725 /// @}
1726 ///
1727
1728
1729 /**
1730 CPUID Extended State Information
1731
1732 @param EAX CPUID_EXTENDED_STATE (0x0D)
1733 @param ECX CPUID_EXTENDED_STATE_MAIN_LEAF (0x00).
1734 CPUID_EXTENDED_STATE_SUB_LEAF (0x01).
1735 CPUID_EXTENDED_STATE_SIZE_OFFSET (0x02).
1736 Sub leafs 2..n based on supported bits in XCR0 or IA32_XSS_MSR.
1737 **/
1738 #define CPUID_EXTENDED_STATE 0x0D
1739
1740 /**
1741 CPUID Extended State Information Main Leaf
1742
1743 @param EAX CPUID_EXTENDED_STATE (0x0D)
1744 @param ECX CPUID_EXTENDED_STATE_MAIN_LEAF (0x00)
1745
1746 @retval EAX Reports the supported bits of the lower 32 bits of XCR0. XCR0[n]
1747 can be set to 1 only if EAX[n] is 1. The format of the extended
1748 state main leaf is described by the type
1749 CPUID_EXTENDED_STATE_MAIN_LEAF_EAX.
1750 @retval EBX Maximum size (bytes, from the beginning of the XSAVE/XRSTOR save
1751 area) required by enabled features in XCR0. May be different than
1752 ECX if some features at the end of the XSAVE save area are not
1753 enabled.
1754 @retval ECX Maximum size (bytes, from the beginning of the XSAVE/XRSTOR save
1755 area) of the XSAVE/XRSTOR save area required by all supported
1756 features in the processor, i.e all the valid bit fields in XCR0.
1757 @retval EDX Reports the supported bits of the upper 32 bits of XCR0.
1758 XCR0[n+32] can be set to 1 only if EDX[n] is 1.
1759
1760 <b>Example usage</b>
1761 @code
1762 CPUID_EXTENDED_STATE_MAIN_LEAF_EAX Eax;
1763 UINT32 Ebx;
1764 UINT32 Ecx;
1765 UINT32 Edx;
1766
1767 AsmCpuidEx (
1768 CPUID_EXTENDED_STATE, CPUID_EXTENDED_STATE_MAIN_LEAF,
1769 &Eax.Uint32, &Ebx, &Ecx, &Edx
1770 );
1771 @endcode
1772 **/
1773 #define CPUID_EXTENDED_STATE_MAIN_LEAF 0x00
1774
1775 /**
1776 CPUID Extended State Information EAX for CPUID leaf #CPUID_EXTENDED_STATE,
1777 sub-leaf #CPUID_EXTENDED_STATE_MAIN_LEAF.
1778 **/
1779 typedef union {
1780 ///
1781 /// Individual bit fields
1782 ///
1783 struct {
1784 ///
1785 /// [Bit 0] x87 state.
1786 ///
1787 UINT32 x87:1;
1788 ///
1789 /// [Bit 1] SSE state.
1790 ///
1791 UINT32 SSE:1;
1792 ///
1793 /// [Bit 2] AVX state.
1794 ///
1795 UINT32 AVX:1;
1796 ///
1797 /// [Bits 4:3] MPX state.
1798 ///
1799 UINT32 MPX:2;
1800 ///
1801 /// [Bits 7:5] AVX-512 state.
1802 ///
1803 UINT32 AVX_512:3;
1804 ///
1805 /// [Bit 8] Used for IA32_XSS.
1806 ///
1807 UINT32 IA32_XSS:1;
1808 ///
1809 /// [Bit 9] PKRU state.
1810 ///
1811 UINT32 PKRU:1;
1812 UINT32 Reserved:22;
1813 } Bits;
1814 ///
1815 /// All bit fields as a 32-bit value
1816 ///
1817 UINT32 Uint32;
1818 } CPUID_EXTENDED_STATE_MAIN_LEAF_EAX;
1819
1820 /**
1821 CPUID Extended State Information Sub Leaf
1822
1823 @param EAX CPUID_EXTENDED_STATE (0x0D)
1824 @param ECX CPUID_EXTENDED_STATE_SUB_LEAF (0x01)
1825
1826 @retval EAX The format of the extended state sub-leaf is described by the
1827 type CPUID_EXTENDED_STATE_SUB_LEAF_EAX.
1828 @retval EBX The size in bytes of the XSAVE area containing all states
1829 enabled by XCRO | IA32_XSS.
1830 @retval ECX The format of the extended state sub-leaf is described by the
1831 type CPUID_EXTENDED_STATE_SUB_LEAF_ECX.
1832 @retval EDX Reports the supported bits of the upper 32 bits of the
1833 IA32_XSS MSR. IA32_XSS[n+32] can be set to 1 only if EDX[n] is 1.
1834
1835 <b>Example usage</b>
1836 @code
1837 CPUID_EXTENDED_STATE_SUB_LEAF_EAX Eax;
1838 UINT32 Ebx;
1839 CPUID_EXTENDED_STATE_SUB_LEAF_ECX Ecx;
1840 UINT32 Edx;
1841
1842 AsmCpuidEx (
1843 CPUID_EXTENDED_STATE, CPUID_EXTENDED_STATE_SUB_LEAF,
1844 &Eax.Uint32, &Ebx, &Ecx.Uint32, &Edx
1845 );
1846 @endcode
1847 **/
1848 #define CPUID_EXTENDED_STATE_SUB_LEAF 0x01
1849
1850 /**
1851 CPUID Extended State Information EAX for CPUID leaf #CPUID_EXTENDED_STATE,
1852 sub-leaf #CPUID_EXTENDED_STATE_SUB_LEAF.
1853 **/
1854 typedef union {
1855 ///
1856 /// Individual bit fields
1857 ///
1858 struct {
1859 ///
1860 /// [Bit 0] XSAVEOPT is available.
1861 ///
1862 UINT32 XSAVEOPT:1;
1863 ///
1864 /// [Bit 1] Supports XSAVEC and the compacted form of XRSTOR if set.
1865 ///
1866 UINT32 XSAVEC:1;
1867 ///
1868 /// [Bit 2] Supports XGETBV with ECX = 1 if set.
1869 ///
1870 UINT32 XGETBV:1;
1871 ///
1872 /// [Bit 3] Supports XSAVES/XRSTORS and IA32_XSS if set.
1873 ///
1874 UINT32 XSAVES:1;
1875 UINT32 Reserved:28;
1876 } Bits;
1877 ///
1878 /// All bit fields as a 32-bit value
1879 ///
1880 UINT32 Uint32;
1881 } CPUID_EXTENDED_STATE_SUB_LEAF_EAX;
1882
1883 /**
1884 CPUID Extended State Information ECX for CPUID leaf #CPUID_EXTENDED_STATE,
1885 sub-leaf #CPUID_EXTENDED_STATE_SUB_LEAF.
1886 **/
1887 typedef union {
1888 ///
1889 /// Individual bit fields
1890 ///
1891 struct {
1892 ///
1893 /// [Bits 7:0] Used for XCR0.
1894 ///
1895 UINT32 XCR0:1;
1896 ///
1897 /// [Bit 8] PT STate.
1898 ///
1899 UINT32 PT:1;
1900 ///
1901 /// [Bit 9] Used for XCR0.
1902 ///
1903 UINT32 XCR0_1:1;
1904 UINT32 Reserved:22;
1905 } Bits;
1906 ///
1907 /// All bit fields as a 32-bit value
1908 ///
1909 UINT32 Uint32;
1910 } CPUID_EXTENDED_STATE_SUB_LEAF_ECX;
1911
1912 /**
1913 CPUID Extended State Information Size and Offset Sub Leaf
1914
1915 @note
1916 Leaf 0DH output depends on the initial value in ECX.
1917 Each sub-leaf index (starting at position 2) is supported if it corresponds to
1918 a supported bit in either the XCR0 register or the IA32_XSS MSR.
1919 If ECX contains an invalid sub-leaf index, EAX/EBX/ECX/EDX return 0. Sub-leaf
1920 n (0 <= n <= 31) is invalid if sub-leaf 0 returns 0 in EAX[n] and sub-leaf 1
1921 returns 0 in ECX[n]. Sub-leaf n (32 <= n <= 63) is invalid if sub-leaf 0
1922 returns 0 in EDX[n-32] and sub-leaf 1 returns 0 in EDX[n-32].
1923
1924 @param EAX CPUID_EXTENDED_STATE (0x0D)
1925 @param ECX CPUID_EXTENDED_STATE_SIZE_OFFSET (0x02). Sub leafs 2..n based
1926 on supported bits in XCR0 or IA32_XSS_MSR.
1927
1928 @retval EAX The size in bytes (from the offset specified in EBX) of the save
1929 area for an extended state feature associated with a valid
1930 sub-leaf index, n.
1931 @retval EBX The offset in bytes of this extended state component's save area
1932 from the beginning of the XSAVE/XRSTOR area. This field reports
1933 0 if the sub-leaf index, n, does not map to a valid bit in the
1934 XCR0 register.
1935 @retval ECX The format of the extended state components's save area as
1936 described by the type CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX.
1937 This field reports 0 if the sub-leaf index, n, is invalid.
1938 @retval EDX This field reports 0 if the sub-leaf index, n, is invalid;
1939 otherwise it is reserved.
1940
1941 <b>Example usage</b>
1942 @code
1943 UINT32 Eax;
1944 UINT32 Ebx;
1945 CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX Ecx;
1946 UINT32 Edx;
1947 UINTN SubLeaf;
1948
1949 for (SubLeaf = CPUID_EXTENDED_STATE_SIZE_OFFSET; SubLeaf < 32; SubLeaf++) {
1950 AsmCpuidEx (
1951 CPUID_EXTENDED_STATE, SubLeaf,
1952 &Eax, &Ebx, &Ecx.Uint32, &Edx
1953 );
1954 }
1955 @endcode
1956 **/
1957 #define CPUID_EXTENDED_STATE_SIZE_OFFSET 0x02
1958
1959 /**
1960 CPUID Extended State Information ECX for CPUID leaf #CPUID_EXTENDED_STATE,
1961 sub-leaf #CPUID_EXTENDED_STATE_SIZE_OFFSET.
1962 **/
1963 typedef union {
1964 ///
1965 /// Individual bit fields
1966 ///
1967 struct {
1968 ///
1969 /// [Bit 0] Is set if the bit n (corresponding to the sub-leaf index) is
1970 /// supported in the IA32_XSS MSR; it is clear if bit n is instead supported
1971 /// in XCR0.
1972 ///
1973 UINT32 XSS:1;
1974 ///
1975 /// [Bit 1] is set if, when the compacted format of an XSAVE area is used,
1976 /// this extended state component located on the next 64-byte boundary
1977 /// following the preceding state component (otherwise, it is located
1978 /// immediately following the preceding state component).
1979 ///
1980 UINT32 Compacted:1;
1981 UINT32 Reserved:30;
1982 } Bits;
1983 ///
1984 /// All bit fields as a 32-bit value
1985 ///
1986 UINT32 Uint32;
1987 } CPUID_EXTENDED_STATE_SIZE_OFFSET_ECX;
1988
1989
1990 /**
1991 CPUID Platform QoS Monitoring Information
1992
1993 @param EAX CPUID_PLATFORM_QOS_MONITORING (0x0F)
1994 @param ECX CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF (0x00).
1995 CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF (0x01).
1996
1997 **/
1998 #define CPUID_PLATFORM_QOS_MONITORING 0x0F
1999
2000 /**
2001 CPUID Platform QoS Monitoring Information Enumeration Sub-leaf
2002
2003 @param EAX CPUID_PLATFORM_QOS_MONITORING (0x0F)
2004 @param ECX CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF (0x00)
2005
2006 @retval EAX Reserved.
2007 @retval EBX Maximum range (zero-based) of RMID within this physical
2008 processor of all types.
2009 @retval ECX Reserved.
2010 @retval EDX L3 Cache QoS Monitoring Information Enumeration described by the
2011 type CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF_EDX.
2012
2013 <b>Example usage</b>
2014 @code
2015 UINT32 Ebx;
2016 CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF_EDX Edx;
2017
2018 AsmCpuidEx (
2019 CPUID_PLATFORM_QOS_MONITORING, CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF,
2020 NULL, &Ebx, NULL, &Edx.Uint32
2021 );
2022 @endcode
2023 **/
2024 #define CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF 0x00
2025
2026 /**
2027 CPUID Platform QoS Monitoring Information EDX for CPUID leaf
2028 #CPUID_PLATFORM_QOS_MONITORING, sub-leaf
2029 #CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF.
2030 **/
2031 typedef union {
2032 ///
2033 /// Individual bit fields
2034 ///
2035 struct {
2036 UINT32 Reserved1:1;
2037 ///
2038 /// [Bit 1] Supports L3 Cache QoS Monitoring if 1.
2039 ///
2040 UINT32 L3CacheQosEnforcement:1;
2041 UINT32 Reserved2:30;
2042 } Bits;
2043 ///
2044 /// All bit fields as a 32-bit value
2045 ///
2046 UINT32 Uint32;
2047 } CPUID_PLATFORM_QOS_MONITORING_ENUMERATION_SUB_LEAF_EDX;
2048
2049 /**
2050 CPUID Platform QoS Monitoring Information Capability Sub-leaf
2051
2052 @param EAX CPUID_PLATFORM_QOS_MONITORING (0x0F)
2053 @param ECX CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF (0x01)
2054
2055 @retval EAX Reserved.
2056 @retval EBX Conversion factor from reported IA32_QM_CTR value to occupancy metric (bytes).
2057 @retval ECX Maximum range (zero-based) of RMID of this resource type.
2058 @retval EDX L3 Cache QoS Monitoring Capability information described by the
2059 type CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF_EDX.
2060
2061 <b>Example usage</b>
2062 @code
2063 UINT32 Ebx;
2064 UINT32 Ecx;
2065 CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF_EDX Edx;
2066
2067 AsmCpuidEx (
2068 CPUID_PLATFORM_QOS_MONITORING, CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF,
2069 NULL, &Ebx, &Ecx, &Edx.Uint32
2070 );
2071 @endcode
2072 **/
2073 #define CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF 0x01
2074
2075 /**
2076 CPUID Platform QoS Monitoring Information Capability EDX for CPUID leaf
2077 #CPUID_PLATFORM_QOS_MONITORING, sub-leaf
2078 #CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF.
2079 **/
2080 typedef union {
2081 ///
2082 /// Individual bit fields
2083 ///
2084 struct {
2085 ///
2086 /// [Bit 0] Supports L3 occupancy monitoring if 1.
2087 ///
2088 UINT32 L3CacheOccupancyMonitoring:1;
2089 UINT32 Reserved:31;
2090 } Bits;
2091 ///
2092 /// All bit fields as a 32-bit value
2093 ///
2094 UINT32 Uint32;
2095 } CPUID_PLATFORM_QOS_MONITORING_CAPABILITY_SUB_LEAF_EDX;
2096
2097
2098 /**
2099 CPUID Platform QoS Enforcement Information
2100
2101 @param EAX CPUID_PLATFORM_QOS_ENFORCEMENT (0x10).
2102 @param ECX CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF (0x00).
2103 CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF (0x01).
2104 Additional sub leafs 1..n based in RESID from sub leaf 0x00.
2105 **/
2106 #define CPUID_PLATFORM_QOS_ENFORCEMENT 0x10
2107
2108 /**
2109 CPUID Platform QoS Enforcement Information
2110
2111 @param EAX CPUID_PLATFORM_QOS_ENFORCEMENT (0x10)
2112 @param ECX CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF (0x00).
2113
2114 @retval EAX Reserved.
2115 @retval EBX L3 Cache QoS Enforcement information described by the
2116 type CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF_EBX.
2117 @retval ECX Reserved.
2118 @retval EDX Reserved.
2119
2120 <b>Example usage</b>
2121 @code
2122 CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF_EBX Ebx;
2123
2124 AsmCpuidEx (
2125 CPUID_PLATFORM_QOS_ENFORCEMENT, CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF,
2126 NULL, &Ebx.Uint32, NULL, NULL
2127 );
2128 @endcode
2129 **/
2130 #define CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF 0x00
2131
2132 /**
2133 CPUID Platform QoS Enforcement Information EBX for CPUID leaf
2134 #CPUID_PLATFORM_QOS_ENFORCEMENT, sub-leaf
2135 #CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF.
2136 **/
2137 typedef union {
2138 ///
2139 /// Individual bit fields
2140 ///
2141 struct {
2142 UINT32 Reserved1:1;
2143 ///
2144 /// [Bit 1] Supports L3 Cache QoS Enforcement if 1.
2145 ///
2146 UINT32 L3CacheQosEnforcement:1;
2147 UINT32 Reserved2:30;
2148 } Bits;
2149 ///
2150 /// All bit fields as a 32-bit value
2151 ///
2152 UINT32 Uint32;
2153 } CPUID_PLATFORM_QOS_ENFORCEMENT_MAIN_LEAF_EBX;
2154
2155
2156 /**
2157 CPUID Platform QoS Enforcement Information
2158
2159 @param EAX CPUID_PLATFORM_QOS_ENFORCEMENT (0x10)
2160 @param ECX CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF (0x00)
2161 Additional sub leafs 1..n based in RESID from sub leaf 0x00.
2162
2163 @retval EAX RESID L3 Cache3 QoS Enforcement information described by the
2164 type CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_EAX.
2165 @retval EBX Bit-granular map of isolation/contention of allocation units.
2166 @retval ECX RESID L3 Cache3 QoS Enforcement information described by the
2167 type CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_ECX.
2168 @retval EDX RESID L3 Cache3 QoS Enforcement information described by the
2169 type CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_EDX.
2170
2171 <b>Example usage</b>
2172 @code
2173 CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_EAX Eax;
2174 UINT32 Ebx;
2175 CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_ECX Ecx;
2176 CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_EDX Edx;
2177
2178 AsmCpuidEx (
2179 CPUID_PLATFORM_QOS_ENFORCEMENT, CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF,
2180 &Eax.Uint32, &Ebx, &Ecx.Uint32, &Edx.Uint32
2181 );
2182 @endcode
2183 **/
2184 #define CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF 0x01
2185
2186 /**
2187 CPUID Platform QoS Enforcement Information EAX for CPUID leaf
2188 #CPUID_PLATFORM_QOS_ENFORCEMENT, sub-leaf
2189 #CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF.
2190 **/
2191 typedef union {
2192 ///
2193 /// Individual bit fields
2194 ///
2195 struct {
2196 ///
2197 /// [Bits 3:0] Length of the capacity bit mask for the corresponding ResID.
2198 ///
2199 UINT32 CapacityLength:4;
2200 UINT32 Reserved:28;
2201 } Bits;
2202 ///
2203 /// All bit fields as a 32-bit value
2204 ///
2205 UINT32 Uint32;
2206 } CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_EAX;
2207
2208 /**
2209 CPUID Platform QoS Enforcement Information ECX for CPUID leaf
2210 #CPUID_PLATFORM_QOS_ENFORCEMENT, sub-leaf
2211 #CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF.
2212 **/
2213 typedef union {
2214 ///
2215 /// Individual bit fields
2216 ///
2217 struct {
2218 UINT32 Reserved1:1;
2219 ///
2220 /// [Bit 1] Updates of COS should be infrequent if 1.
2221 ///
2222 UINT32 CosUpdatesInfrequent:1;
2223 ///
2224 /// [Bit 2] Code and Data Prioritization Technology supported if 1.
2225 ///
2226 UINT32 CodeDataPrioritization:1;
2227 UINT32 Reserved2:29;
2228 } Bits;
2229 ///
2230 /// All bit fields as a 32-bit value
2231 ///
2232 UINT32 Uint32;
2233 } CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_ECX;
2234
2235 /**
2236 CPUID Platform QoS Enforcement Information EDX for CPUID leaf
2237 #CPUID_PLATFORM_QOS_ENFORCEMENT, sub-leaf
2238 #CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF.
2239 **/
2240 typedef union {
2241 ///
2242 /// Individual bit fields
2243 ///
2244 struct {
2245 ///
2246 /// [Bits 15:0] Highest COS number supported for this ResID.
2247 ///
2248 UINT32 HighestCosNumber:16;
2249 UINT32 Reserved:16;
2250 } Bits;
2251 ///
2252 /// All bit fields as a 32-bit value
2253 ///
2254 UINT32 Uint32;
2255 } CPUID_PLATFORM_QOS_ENFORCEMENT_RESID_SUB_LEAF_EDX;
2256
2257
2258 /**
2259 CPUID Intel Processor Trace Information
2260
2261 @param EAX CPUID_INTEL_PROCESSOR_TRACE (0x14)
2262 @param ECX CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF (0x00).
2263 CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF (0x01).
2264
2265 **/
2266 #define CPUID_INTEL_PROCESSOR_TRACE 0x14
2267
2268 /**
2269 CPUID Intel Processor Trace Information Main Leaf
2270
2271 @param EAX CPUID_INTEL_PROCEDSSOR_TRACE (0x14)
2272 @param ECX CPUID_INTEL_PROCEDSSOR_TRACE_MAIN_LEAF (0x00)
2273
2274 @retval EAX Reports the maximum sub-leaf supported in leaf 14H.
2275 @retval EBX Returns Intel processor trace information described by the
2276 type CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_EBX.
2277 @retval ECX Returns Intel processor trace information described by the
2278 type CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_ECX.
2279 @retval EDX Reserved.
2280
2281 <b>Example usage</b>
2282 @code
2283 UINT32 Eax;
2284 CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_EBX Ebx;
2285 CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_ECX Ecx;
2286
2287 AsmCpuidEx (
2288 CPUID_INTEL_PROCESSOR_TRACE, CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF,
2289 &Eax, &Ebx.Uint32, &Ecx.Uint32, NULL
2290 );
2291 @endcode
2292 **/
2293 #define CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF 0x00
2294
2295 /**
2296 CPUID Intel Processor Trace EBX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
2297 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF.
2298 **/
2299 typedef union {
2300 ///
2301 /// Individual bit fields
2302 ///
2303 struct {
2304 ///
2305 /// [Bit 0] If 1, Indicates that IA32_RTIT_CTL.CR3Filter can be set to 1,
2306 /// and that IA32_RTIT_CR3_MATCH MSR can be accessed.
2307 ///
2308 UINT32 Cr3Filter:1;
2309 ///
2310 /// [Bit 1] If 1, Indicates support of Configurable PSB and Cycle-Accurate
2311 /// Mode.
2312 ///
2313 UINT32 ConfigurablePsb:1;
2314 ///
2315 /// [Bit 2] If 1, Indicates support of IP Filtering, TraceStop filtering,
2316 /// and preservation of Intel PT MSRs across warm reset.
2317 ///
2318 UINT32 IpTraceStopFiltering:1;
2319 ///
2320 /// [Bit 3] If 1, Indicates support of MTC timing packet and suppression of
2321 /// COFI-based packets.
2322 ///
2323 UINT32 Mtc:1;
2324 UINT32 Reserved:28;
2325 } Bits;
2326 ///
2327 /// All bit fields as a 32-bit value
2328 ///
2329 UINT32 Uint32;
2330 } CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_EBX;
2331
2332 /**
2333 CPUID Intel Processor Trace ECX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
2334 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF.
2335 **/
2336 typedef union {
2337 ///
2338 /// Individual bit fields
2339 ///
2340 struct {
2341 ///
2342 /// [Bit 0] If 1, Tracing can be enabled with IA32_RTIT_CTL.ToPA = 1, hence
2343 /// utilizing the ToPA output scheme; IA32_RTIT_OUTPUT_BASE and
2344 /// IA32_RTIT_OUTPUT_MASK_PTRS MSRs can be accessed.
2345 ///
2346 UINT32 RTIT:1;
2347 ///
2348 /// [Bit 1] If 1, ToPA tables can hold any number of output entries, up to
2349 /// the maximum allowed by the MaskOrTableOffset field of
2350 /// IA32_RTIT_OUTPUT_MASK_PTRS.
2351 ///
2352 UINT32 ToPA:1;
2353 ///
2354 /// [Bit 2] If 1, Indicates support of Single-Range Output scheme.
2355 ///
2356 UINT32 SingleRangeOutput:1;
2357 ///
2358 /// [Bit 3] If 1, Indicates support of output to Trace Transport subsystem.
2359 ///
2360 UINT32 TraceTransportSubsystem:1;
2361 UINT32 Reserved:27;
2362 ///
2363 /// [Bit 31] If 1, Generated packets which contain IP payloads have LIP
2364 /// values, which include the CS base component.
2365 ///
2366 UINT32 LIP:1;
2367 } Bits;
2368 ///
2369 /// All bit fields as a 32-bit value
2370 ///
2371 UINT32 Uint32;
2372 } CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF_ECX;
2373
2374
2375 /**
2376 CPUID Intel Processor Trace Information Sub-leaf
2377
2378 @param EAX CPUID_INTEL_PROCEDSSOR_TRACE (0x14)
2379 @param ECX CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF (0x01)
2380
2381 @retval EAX Returns Intel processor trace information described by the
2382 type CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EAX.
2383 @retval EBX Returns Intel processor trace information described by the
2384 type CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EBX.
2385 @retval ECX Reserved.
2386 @retval EDX Reserved.
2387
2388 <b>Example usage</b>
2389 @code
2390 UINT32 MaximumSubLeaf;
2391 UINT32 SubLeaf;
2392 CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EAX Eax;
2393 CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EBX Ebx;
2394
2395 AsmCpuidEx (
2396 CPUID_INTEL_PROCESSOR_TRACE, CPUID_INTEL_PROCESSOR_TRACE_MAIN_LEAF,
2397 &MaximumSubLeaf, NULL, NULL, NULL
2398 );
2399
2400 for (SubLeaf = CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF; SubLeaf <= MaximumSubLeaf; SubLeaf++) {
2401 AsmCpuidEx (
2402 CPUID_INTEL_PROCESSOR_TRACE, SubLeaf,
2403 &Eax.Uint32, &Ebx.Uint32, NULL, NULL
2404 );
2405 }
2406 @endcode
2407 **/
2408 #define CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF 0x01
2409
2410 /**
2411 CPUID Intel Processor Trace EAX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
2412 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF.
2413 **/
2414 typedef union {
2415 ///
2416 /// Individual bit fields
2417 ///
2418 struct {
2419 ///
2420 /// [Bits 2:0] Number of configurable Address Ranges for filtering.
2421 ///
2422 UINT32 ConfigurableAddressRanges:3;
2423 UINT32 Reserved:13;
2424 ///
2425 /// [Bits 31:16] Bitmap of supported MTC period encodings
2426 ///
2427 UINT32 MtcPeriodEncodings:16;
2428
2429 } Bits;
2430 ///
2431 /// All bit fields as a 32-bit value
2432 ///
2433 UINT32 Uint32;
2434 } CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EAX;
2435
2436 /**
2437 CPUID Intel Processor Trace EBX for CPUID leaf #CPUID_INTEL_PROCESSOR_TRACE,
2438 sub-leaf #CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF.
2439 **/
2440 typedef union {
2441 ///
2442 /// Individual bit fields
2443 ///
2444 struct {
2445 ///
2446 /// [Bits 15:0] Bitmap of supported Cycle Threshold value encodings.
2447 ///
2448 UINT32 CycleThresholdEncodings:16;
2449 ///
2450 /// [Bits 31:16] Bitmap of supported Configurable PSB frequency encodings.
2451 ///
2452 UINT32 PsbFrequencyEncodings:16;
2453
2454 } Bits;
2455 ///
2456 /// All bit fields as a 32-bit value
2457 ///
2458 UINT32 Uint32;
2459 } CPUID_INTEL_PROCESSOR_TRACE_SUB_LEAF_EBX;
2460
2461
2462 /**
2463 CPUID Time Stamp Counter Information
2464
2465 @note
2466 If EBX[31:0] is 0, the TSC/"core crystal clock" ratio is not enumerated.
2467 EBX[31:0]/EAX[31:0] indicates the ratio of the TSC frequency and the core
2468 crystal clock frequency.
2469 "TSC frequency" = "core crystal clock frequency" * EBX/EAX.
2470 The core crystal clock may differ from the reference clock, bus clock, or core
2471 clock frequencies.
2472
2473 @param EAX CPUID_TIME_STAMP_COUNTER (0x15)
2474
2475 @retval EAX An unsigned integer which is the denominator of the
2476 TSC/"core crystal clock" ratio
2477 @retval EBX An unsigned integer which is the numerator of the
2478 TSC/"core crystal clock" ratio.
2479 @retval ECX Reserved.
2480 @retval EDX Reserved.
2481
2482 <b>Example usage</b>
2483 @code
2484 UINT32 Eax;
2485 UINT32 Ebx;
2486
2487 AsmCpuid (CPUID_TIME_STAMP_COUNTER, &Eax, &Ebx, NULL, NULL);
2488 @endcode
2489 **/
2490 #define CPUID_TIME_STAMP_COUNTER 0x15
2491
2492
2493 /**
2494 CPUID Processor Frequency Information
2495
2496 @note
2497 Data is returned from this interface in accordance with the processor's
2498 specification and does not reflect actual values. Suitable use of this data
2499 includes the display of processor information in like manner to the processor
2500 brand string and for determining the appropriate range to use when displaying
2501 processor information e.g. frequency history graphs. The returned information
2502 should not be used for any other purpose as the returned information does not
2503 accurately correlate to information / counters returned by other processor
2504 interfaces. While a processor may support the Processor Frequency Information
2505 leaf, fields that return a value of zero are not supported.
2506
2507 @param EAX CPUID_TIME_STAMP_COUNTER (0x16)
2508
2509 @retval EAX Returns processor base frequency information described by the
2510 type CPUID_PROCESSOR_FREQUENCY_EAX.
2511 @retval EBX Returns maximum frequency information described by the type
2512 CPUID_PROCESSOR_FREQUENCY_EBX.
2513 @retval ECX Returns bus frequency information described by the type
2514 CPUID_PROCESSOR_FREQUENCY_ECX.
2515 @retval EDX Reserved.
2516
2517 <b>Example usage</b>
2518 @code
2519 CPUID_PROCESSOR_FREQUENCY_EAX Eax;
2520 CPUID_PROCESSOR_FREQUENCY_EBX Ebx;
2521 CPUID_PROCESSOR_FREQUENCY_ECX Ecx;
2522
2523 AsmCpuid (CPUID_PROCESSOR_FREQUENCY, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, NULL);
2524 @endcode
2525 **/
2526 #define CPUID_PROCESSOR_FREQUENCY 0x16
2527
2528 /**
2529 CPUID Processor Frequency Information EAX for CPUID leaf
2530 #CPUID_PROCESSOR_FREQUENCY.
2531 **/
2532 typedef union {
2533 ///
2534 /// Individual bit fields
2535 ///
2536 struct {
2537 ///
2538 /// [Bits 15:0] Processor Base Frequency (in MHz).
2539 ///
2540 UINT32 ProcessorBaseFrequency:16;
2541 UINT32 Reserved:16;
2542 } Bits;
2543 ///
2544 /// All bit fields as a 32-bit value
2545 ///
2546 UINT32 Uint32;
2547 } CPUID_PROCESSOR_FREQUENCY_EAX;
2548
2549 /**
2550 CPUID Processor Frequency Information EBX for CPUID leaf
2551 #CPUID_PROCESSOR_FREQUENCY.
2552 **/
2553 typedef union {
2554 ///
2555 /// Individual bit fields
2556 ///
2557 struct {
2558 ///
2559 /// [Bits 15:0] Maximum Frequency (in MHz).
2560 ///
2561 UINT32 MaximumFrequency:16;
2562 UINT32 Reserved:16;
2563 } Bits;
2564 ///
2565 /// All bit fields as a 32-bit value
2566 ///
2567 UINT32 Uint32;
2568 } CPUID_PROCESSOR_FREQUENCY_EBX;
2569
2570 /**
2571 CPUID Processor Frequency Information ECX for CPUID leaf
2572 #CPUID_PROCESSOR_FREQUENCY.
2573 **/
2574 typedef union {
2575 ///
2576 /// Individual bit fields
2577 ///
2578 struct {
2579 ///
2580 /// [Bits 15:0] Bus (Reference) Frequency (in MHz).
2581 ///
2582 UINT32 BusFrequency:16;
2583 UINT32 Reserved:16;
2584 } Bits;
2585 ///
2586 /// All bit fields as a 32-bit value
2587 ///
2588 UINT32 Uint32;
2589 } CPUID_PROCESSOR_FREQUENCY_ECX;
2590
2591
2592 /**
2593 CPUID SoC Vendor Information
2594
2595 @param EAX CPUID_SOC_VENDOR (0x17)
2596 @param ECX CPUID_SOC_VENDOR_MAIN_LEAF (0x00)
2597 CPUID_SOC_VENDOR_BRAND_STRING1 (0x01)
2598 CPUID_SOC_VENDOR_BRAND_STRING1 (0x02)
2599 CPUID_SOC_VENDOR_BRAND_STRING1 (0x03)
2600
2601 @note
2602 Leaf 17H output depends on the initial value in ECX. SOC Vendor Brand String
2603 is a UTF-8 encoded string padded with trailing bytes of 00H. The complete SOC
2604 Vendor Brand String is constructed by concatenating in ascending order of
2605 EAX:EBX:ECX:EDX and from the sub-leaf 1 fragment towards sub-leaf 3.
2606
2607 **/
2608 #define CPUID_SOC_VENDOR 0x17
2609
2610 /**
2611 CPUID SoC Vendor Information
2612
2613 @param EAX CPUID_SOC_VENDOR (0x17)
2614 @param ECX CPUID_SOC_VENDOR_MAIN_LEAF (0x00)
2615
2616 @retval EAX MaxSOCID_Index. Reports the maximum input value of supported
2617 sub-leaf in leaf 17H.
2618 @retval EBX Returns SoC Vendor information described by the type
2619 CPUID_SOC_VENDOR_MAIN_LEAF_EBX.
2620 @retval ECX Project ID. A unique number an SOC vendor assigns to its SOC
2621 projects.
2622 @retval EDX Stepping ID. A unique number within an SOC project that an SOC
2623 vendor assigns.
2624
2625 <b>Example usage</b>
2626 @code
2627 UINT32 Eax;
2628 CPUID_SOC_VENDOR_MAIN_LEAF_EBX Ebx;
2629 UINT32 Ecx;
2630 UINT32 Edx;
2631
2632 AsmCpuidEx (
2633 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_MAIN_LEAF,
2634 &Eax, &Ebx.Uint32, &Ecx, &Edx
2635 );
2636 @endcode
2637 **/
2638 #define CPUID_SOC_VENDOR_MAIN_LEAF 0x00
2639
2640 /**
2641 CPUID SoC Vendor Information EBX for CPUID leaf #CPUID_SOC_VENDOR sub-leaf
2642 #CPUID_SOC_VENDOR_MAIN_LEAF.
2643 **/
2644 typedef union {
2645 ///
2646 /// Individual bit fields
2647 ///
2648 struct {
2649 ///
2650 /// [Bits 15:0] SOC Vendor ID.
2651 ///
2652 UINT32 SocVendorId:16;
2653 ///
2654 /// [Bit 16] If 1, the SOC Vendor ID field is assigned via an industry
2655 /// standard enumeration scheme. Otherwise, the SOC Vendor ID field is
2656 /// assigned by Intel.
2657 ///
2658 UINT32 IsVendorScheme:1;
2659 UINT32 Reserved:15;
2660 } Bits;
2661 ///
2662 /// All bit fields as a 32-bit value
2663 ///
2664 UINT32 Uint32;
2665 } CPUID_SOC_VENDOR_MAIN_LEAF_EBX;
2666
2667 /**
2668 CPUID SoC Vendor Information
2669
2670 @param EAX CPUID_SOC_VENDOR (0x17)
2671 @param ECX CPUID_SOC_VENDOR_BRAND_STRING1 (0x01)
2672
2673 @retval EAX SOC Vendor Brand String. UTF-8 encoded string of type
2674 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2675 @retval EBX SOC Vendor Brand String. UTF-8 encoded string of type
2676 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2677 @retval ECX SOC Vendor Brand String. UTF-8 encoded string of type
2678 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2679 @retval EDX SOC Vendor Brand String. UTF-8 encoded string of type
2680 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2681
2682 <b>Example usage</b>
2683 @code
2684 CPUID_SOC_VENDOR_BRAND_STRING_DATA Eax;
2685 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ebx;
2686 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ecx;
2687 CPUID_SOC_VENDOR_BRAND_STRING_DATA Edx;
2688
2689 AsmCpuidEx (
2690 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_BRAND_STRING1,
2691 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
2692 );
2693 @endcode
2694 **/
2695 #define CPUID_SOC_VENDOR_BRAND_STRING1 0x01
2696
2697 /**
2698 CPUID SoC Vendor Brand String for CPUID leafs #CPUID_SOC_VENDOR_BRAND_STRING1,
2699 #CPUID_SOC_VENDOR_BRAND_STRING2, and #CPUID_SOC_VENDOR_BRAND_STRING3.
2700 **/
2701 typedef union {
2702 ///
2703 /// 4 UTF-8 characters of Soc Vendor Brand String
2704 ///
2705 CHAR8 BrandString[4];
2706 ///
2707 /// All fields as a 32-bit value
2708 ///
2709 UINT32 Uint32;
2710 } CPUID_SOC_VENDOR_BRAND_STRING_DATA;
2711
2712 /**
2713 CPUID SoC Vendor Information
2714
2715 @param EAX CPUID_SOC_VENDOR (0x17)
2716 @param ECX CPUID_SOC_VENDOR_BRAND_STRING2 (0x02)
2717
2718 @retval EAX SOC Vendor Brand String. UTF-8 encoded string of type
2719 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2720 @retval EBX SOC Vendor Brand String. UTF-8 encoded string of type
2721 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2722 @retval ECX SOC Vendor Brand String. UTF-8 encoded string of type
2723 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2724 @retval EDX SOC Vendor Brand String. UTF-8 encoded string of type
2725 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2726
2727 <b>Example usage</b>
2728 @code
2729 CPUID_SOC_VENDOR_BRAND_STRING_DATA Eax;
2730 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ebx;
2731 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ecx;
2732 CPUID_SOC_VENDOR_BRAND_STRING_DATA Edx;
2733
2734 AsmCpuidEx (
2735 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_BRAND_STRING2,
2736 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
2737 );
2738 @endcode
2739 **/
2740 #define CPUID_SOC_VENDOR_BRAND_STRING2 0x02
2741
2742 /**
2743 CPUID SoC Vendor Information
2744
2745 @param EAX CPUID_SOC_VENDOR (0x17)
2746 @param ECX CPUID_SOC_VENDOR_BRAND_STRING3 (0x03)
2747
2748 @retval EAX SOC Vendor Brand String. UTF-8 encoded string of type
2749 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2750 @retval EBX SOC Vendor Brand String. UTF-8 encoded string of type
2751 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2752 @retval ECX SOC Vendor Brand String. UTF-8 encoded string of type
2753 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2754 @retval EDX SOC Vendor Brand String. UTF-8 encoded string of type
2755 CPUID_SOC_VENDOR_BRAND_STRING_DATA.
2756
2757 <b>Example usage</b>
2758 @code
2759 CPUID_SOC_VENDOR_BRAND_STRING_DATA Eax;
2760 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ebx;
2761 CPUID_SOC_VENDOR_BRAND_STRING_DATA Ecx;
2762 CPUID_SOC_VENDOR_BRAND_STRING_DATA Edx;
2763
2764 AsmCpuidEx (
2765 CPUID_SOC_VENDOR, CPUID_SOC_VENDOR_BRAND_STRING3,
2766 &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32
2767 );
2768 @endcode
2769 **/
2770 #define CPUID_SOC_VENDOR_BRAND_STRING3 0x03
2771
2772
2773 /**
2774 CPUID Extended Function
2775
2776 @param EAX CPUID_EXTENDED_FUNCTION (0x80000000)
2777
2778 @retval EAX Maximum Input Value for Extended Function CPUID Information.
2779 @retval EBX Reserved.
2780 @retval ECX Reserved.
2781 @retval EDX Reserved.
2782
2783 <b>Example usage</b>
2784 @code
2785 UINT32 Eax;
2786
2787 AsmCpuid (CPUID_EXTENDED_FUNCTION, &Eax, NULL, NULL, NULL);
2788 @endcode
2789 **/
2790 #define CPUID_EXTENDED_FUNCTION 0x80000000
2791
2792
2793 /**
2794 CPUID Extended Processor Signature and Feature Bits
2795
2796 @param EAX CPUID_EXTENDED_CPU_SIG (0x80000001)
2797
2798 @retval EAX CPUID_EXTENDED_CPU_SIG.
2799 @retval EBX Reserved.
2800 @retval ECX Extended Processor Signature and Feature Bits information
2801 described by the type CPUID_EXTENDED_CPU_SIG_ECX.
2802 @retval EDX Extended Processor Signature and Feature Bits information
2803 described by the type CPUID_EXTENDED_CPU_SIG_EDX.
2804
2805 <b>Example usage</b>
2806 @code
2807 UINT32 Eax;
2808 CPUID_EXTENDED_CPU_SIG_ECX Ecx;
2809 CPUID_EXTENDED_CPU_SIG_EDX Edx;
2810
2811 AsmCpuid (CPUID_EXTENDED_CPU_SIG, &Eax, NULL, &Ecx.Uint32, &Edx.Uint32);
2812 @endcode
2813 **/
2814 #define CPUID_EXTENDED_CPU_SIG 0x80000001
2815
2816 /**
2817 CPUID Extended Processor Signature and Feature Bits ECX for CPUID leaf
2818 #CPUID_EXTENDED_CPU_SIG.
2819 **/
2820 typedef union {
2821 ///
2822 /// Individual bit fields
2823 ///
2824 struct {
2825 ///
2826 /// [Bit 0] LAHF/SAHF available in 64-bit mode.
2827 ///
2828 UINT32 LAHF_SAHF:1;
2829 UINT32 Reserved1:4;
2830 ///
2831 /// [Bit 5] LZCNT.
2832 ///
2833 UINT32 LZCNT:1;
2834 UINT32 Reserved2:2;
2835 ///
2836 /// [Bit 8] PREFETCHW.
2837 ///
2838 UINT32 PREFETCHW:1;
2839 UINT32 Reserved3:23;
2840 } Bits;
2841 ///
2842 /// All bit fields as a 32-bit value
2843 ///
2844 UINT32 Uint32;
2845 } CPUID_EXTENDED_CPU_SIG_ECX;
2846
2847 /**
2848 CPUID Extended Processor Signature and Feature Bits EDX for CPUID leaf
2849 #CPUID_EXTENDED_CPU_SIG.
2850 **/
2851 typedef union {
2852 ///
2853 /// Individual bit fields
2854 ///
2855 struct {
2856 UINT32 Reserved1:11;
2857 ///
2858 /// [Bit 11] SYSCALL/SYSRET available in 64-bit mode.
2859 ///
2860 UINT32 SYSCALL_SYSRET:1;
2861 UINT32 Reserved2:8;
2862 ///
2863 /// [Bit 20] Execute Disable Bit available.
2864 ///
2865 UINT32 NX:1;
2866 UINT32 Reserved3:5;
2867 ///
2868 /// [Bit 26] 1-GByte pages are available if 1.
2869 ///
2870 UINT32 Page1GB:1;
2871 ///
2872 /// [Bit 27] RDTSCP and IA32_TSC_AUX are available if 1.
2873 ///
2874 UINT32 RDTSCP:1;
2875 UINT32 Reserved4:1;
2876 ///
2877 /// [Bit 29] Intel(R) 64 Architecture available if 1.
2878 ///
2879 UINT32 LM:1;
2880 UINT32 Reserved5:2;
2881 } Bits;
2882 ///
2883 /// All bit fields as a 32-bit value
2884 ///
2885 UINT32 Uint32;
2886 } CPUID_EXTENDED_CPU_SIG_EDX;
2887
2888
2889 /**
2890 CPUID Processor Brand String
2891
2892 @param EAX CPUID_BRAND_STRING1 (0x80000002)
2893
2894 @retval EAX Processor Brand String in type CPUID_BRAND_STRING_DATA.
2895 @retval EBX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2896 @retval ECX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2897 @retval EDX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2898
2899 <b>Example usage</b>
2900 @code
2901 CPUID_BRAND_STRING_DATA Eax;
2902 CPUID_BRAND_STRING_DATA Ebx;
2903 CPUID_BRAND_STRING_DATA Ecx;
2904 CPUID_BRAND_STRING_DATA Edx;
2905
2906 AsmCpuid (CPUID_BRAND_STRING1, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
2907 @endcode
2908 **/
2909 #define CPUID_BRAND_STRING1 0x80000002
2910
2911 /**
2912 CPUID Processor Brand String for CPUID leafs #CPUID_BRAND_STRING1,
2913 #CPUID_BRAND_STRING2, and #CPUID_BRAND_STRING3.
2914 **/
2915 typedef union {
2916 ///
2917 /// 4 ASCII characters of Processor Brand String
2918 ///
2919 CHAR8 BrandString[4];
2920 ///
2921 /// All fields as a 32-bit value
2922 ///
2923 UINT32 Uint32;
2924 } CPUID_BRAND_STRING_DATA;
2925
2926 /**
2927 CPUID Processor Brand String
2928
2929 @param EAX CPUID_BRAND_STRING2 (0x80000003)
2930
2931 @retval EAX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2932 @retval EBX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2933 @retval ECX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2934 @retval EDX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2935
2936 <b>Example usage</b>
2937 @code
2938 CPUID_BRAND_STRING_DATA Eax;
2939 CPUID_BRAND_STRING_DATA Ebx;
2940 CPUID_BRAND_STRING_DATA Ecx;
2941 CPUID_BRAND_STRING_DATA Edx;
2942
2943 AsmCpuid (CPUID_BRAND_STRING2, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
2944 @endcode
2945 **/
2946 #define CPUID_BRAND_STRING2 0x80000003
2947
2948 /**
2949 CPUID Processor Brand String
2950
2951 @param EAX CPUID_BRAND_STRING3 (0x80000004)
2952
2953 @retval EAX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2954 @retval EBX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2955 @retval ECX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2956 @retval EDX Processor Brand String Continued in type CPUID_BRAND_STRING_DATA.
2957
2958 <b>Example usage</b>
2959 @code
2960 CPUID_BRAND_STRING_DATA Eax;
2961 CPUID_BRAND_STRING_DATA Ebx;
2962 CPUID_BRAND_STRING_DATA Ecx;
2963 CPUID_BRAND_STRING_DATA Edx;
2964
2965 AsmCpuid (CPUID_BRAND_STRING3, &Eax.Uint32, &Ebx.Uint32, &Ecx.Uint32, &Edx.Uint32);
2966 @endcode
2967 **/
2968 #define CPUID_BRAND_STRING3 0x80000004
2969
2970
2971 /**
2972 CPUID Extended Cache information
2973
2974 @param EAX CPUID_EXTENDED_CACHE_INFO (0x80000006)
2975
2976 @retval EAX Reserved.
2977 @retval EBX Reserved.
2978 @retval ECX Extended cache information described by the type
2979 CPUID_EXTENDED_CACHE_INFO_ECX.
2980 @retval EDX Reserved.
2981
2982 <b>Example usage</b>
2983 @code
2984 CPUID_EXTENDED_CACHE_INFO_ECX Ecx;
2985
2986 AsmCpuid (CPUID_EXTENDED_CACHE_INFO, NULL, NULL, &Ecx.Uint32, NULL);
2987 @endcode
2988 **/
2989 #define CPUID_EXTENDED_CACHE_INFO 0x80000006
2990
2991 /**
2992 CPUID Extended Cache information ECX for CPUID leaf #CPUID_EXTENDED_CACHE_INFO.
2993 **/
2994 typedef union {
2995 ///
2996 /// Individual bit fields
2997 ///
2998 struct {
2999 ///
3000 /// [Bits 7:0] Cache line size in bytes.
3001 ///
3002 UINT32 CacheLineSize:8;
3003 UINT32 Reserved:4;
3004 ///
3005 /// [Bits 15:12] L2 Associativity field. Supported values are in the range
3006 /// #CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_DISABLED to
3007 /// #CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_FULL
3008 ///
3009 UINT32 L2Associativity:4;
3010 ///
3011 /// [Bits 31:16] Cache size in 1K units.
3012 ///
3013 UINT32 CacheSize:16;
3014 } Bits;
3015 ///
3016 /// All bit fields as a 32-bit value
3017 ///
3018 UINT32 Uint32;
3019 } CPUID_EXTENDED_CACHE_INFO_ECX;
3020
3021 ///
3022 /// @{ Define value for bit field CPUID_EXTENDED_CACHE_INFO_ECX.L2Associativity
3023 ///
3024 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_DISABLED 0x00
3025 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_DIRECT_MAPPED 0x01
3026 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_2_WAY 0x02
3027 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_4_WAY 0x04
3028 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_8_WAY 0x06
3029 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_16_WAY 0x08
3030 #define CPUID_EXTENDED_CACHE_INFO_ECX_L2_ASSOCIATIVITY_FULL 0x0F
3031 ///
3032 /// @}
3033 ///
3034
3035 /**
3036 CPUID Extended Time Stamp Counter information
3037
3038 @param EAX CPUID_EXTENDED_TIME_STAMP_COUNTER (0x80000007)
3039
3040 @retval EAX Reserved.
3041 @retval EBX Reserved.
3042 @retval ECX Reserved.
3043 @retval EDX Extended time stamp counter (TSC) information described by the
3044 type CPUID_EXTENDED_TIME_STAMP_COUNTER_EDX.
3045
3046 <b>Example usage</b>
3047 @code
3048 CPUID_EXTENDED_TIME_STAMP_COUNTER_EDX Edx;
3049
3050 AsmCpuid (CPUID_EXTENDED_TIME_STAMP_COUNTER, NULL, NULL, NULL, &Edx.Uint32);
3051 @endcode
3052 **/
3053 #define CPUID_EXTENDED_TIME_STAMP_COUNTER 0x80000007
3054
3055 /**
3056 CPUID Extended Time Stamp Counter information EDX for CPUID leaf
3057 #CPUID_EXTENDED_TIME_STAMP_COUNTER.
3058 **/
3059 typedef union {
3060 ///
3061 /// Individual bit fields
3062 ///
3063 struct {
3064 UINT32 Reserved1:8;
3065 ///
3066 /// [Bit 8] Invariant TSC available if 1.
3067 ///
3068 UINT32 InvariantTsc:1;
3069 UINT32 Reserved2:23;
3070 } Bits;
3071 ///
3072 /// All bit fields as a 32-bit value
3073 ///
3074 UINT32 Uint32;
3075 } CPUID_EXTENDED_TIME_STAMP_COUNTER_EDX;
3076
3077
3078 /**
3079 CPUID Linear Physical Address Size
3080
3081 @param EAX CPUID_VIR_PHY_ADDRESS_SIZE (0x80000008)
3082
3083 @retval EAX Linear/Physical Address Size described by the type
3084 CPUID_VIR_PHY_ADDRESS_SIZE_EAX.
3085 @retval EBX Reserved.
3086 @retval ECX Reserved.
3087 @retval EDX Reserved.
3088
3089 <b>Example usage</b>
3090 @code
3091 CPUID_VIR_PHY_ADDRESS_SIZE_EAX Eax;
3092
3093 AsmCpuid (CPUID_VIR_PHY_ADDRESS_SIZE, &Eax.Uint32, NULL, NULL, NULL);
3094 @endcode
3095 **/
3096 #define CPUID_VIR_PHY_ADDRESS_SIZE 0x80000008
3097
3098 /**
3099 CPUID Linear Physical Address Size EAX for CPUID leaf
3100 #CPUID_VIR_PHY_ADDRESS_SIZE.
3101 **/
3102 typedef union {
3103 ///
3104 /// Individual bit fields
3105 ///
3106 struct {
3107 ///
3108 /// [Bits 7:0] Number of physical address bits.
3109 ///
3110 /// @note
3111 /// If CPUID.80000008H:EAX[7:0] is supported, the maximum physical address
3112 /// number supported should come from this field.
3113 ///
3114 UINT32 PhysicalAddressBits:8;
3115 ///
3116 /// [Bits 15:8] Number of linear address bits.
3117 ///
3118 UINT32 LinearAddressBits:8;
3119 UINT32 Reserved:16;
3120 } Bits;
3121 ///
3122 /// All bit fields as a 32-bit value
3123 ///
3124 UINT32 Uint32;
3125 } CPUID_VIR_PHY_ADDRESS_SIZE_EAX;
3126
3127 #endif