forked from gz/rust-cpuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextended.rs
1772 lines (1572 loc) · 51.9 KB
/
extended.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Data-structures / interpretation for extended leafs (>= 0x8000_0000)
use bitflags::bitflags;
use core::fmt::{self, Debug, Display, Formatter};
use core::mem::size_of;
use core::slice;
use core::str;
use crate::{get_bits, CpuIdResult, Vendor};
/// Extended Processor and Processor Feature Identifiers (LEAF=0x8000_0001)
///
/// # Platforms
/// ✅ AMD 🟡 Intel
pub struct ExtendedProcessorFeatureIdentifiers {
vendor: Vendor,
eax: u32,
ebx: u32,
ecx: ExtendedFunctionInfoEcx,
edx: ExtendedFunctionInfoEdx,
}
impl ExtendedProcessorFeatureIdentifiers {
pub(crate) fn new(vendor: Vendor, data: CpuIdResult) -> Self {
Self {
vendor,
eax: data.eax,
ebx: data.ebx,
ecx: ExtendedFunctionInfoEcx::from_bits_truncate(data.ecx),
edx: ExtendedFunctionInfoEdx::from_bits_truncate(data.edx),
}
}
/// Extended Processor Signature.
///
/// # AMD
/// The value returned is the same as the value returned in EAX for LEAF=0x0000_0001
/// (use `CpuId.get_feature_info` instead)
///
/// # Intel
/// Vague mention of "Extended Processor Signature", not clear what it's supposed to
/// represent.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn extended_signature(&self) -> u32 {
self.eax
}
/// Returns package type on AMD.
///
/// Package type. If `(Family[7:0] >= 10h)`, this field is valid. If
/// `(Family[7:0]<10h)`, this field is reserved
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved)
pub fn pkg_type(&self) -> u32 {
get_bits(self.ebx, 28, 31)
}
/// Returns brand ID on AMD.
///
/// This field, in conjunction with CPUID `LEAF=0x0000_0001_EBX[8BitBrandId]`, and used
/// by firmware to generate the processor name string.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved)
pub fn brand_id(&self) -> u32 {
get_bits(self.ebx, 0, 15)
}
/// Is LAHF/SAHF available in 64-bit mode?
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_lahf_sahf(&self) -> bool {
self.ecx.contains(ExtendedFunctionInfoEcx::LAHF_SAHF)
}
/// Check support legacy cmp.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_cmp_legacy(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::CMP_LEGACY)
}
/// Secure virtual machine supported.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_svm(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::SVM)
}
/// Extended APIC space.
///
/// This bit indicates the presence of extended APIC register space starting at offset
/// 400h from the “APIC Base Address Register,” as specified in the BKDG.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_ext_apic_space(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::EXT_APIC_SPACE)
}
/// LOCK MOV CR0 means MOV CR8. See “MOV(CRn)” in APM3.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_alt_mov_cr8(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::ALTMOVCR8)
}
/// Is LZCNT available?
///
/// # AMD
/// It's called ABM (Advanced bit manipulation) on AMD and also adds support for
/// some other instructions.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_lzcnt(&self) -> bool {
self.ecx.contains(ExtendedFunctionInfoEcx::LZCNT)
}
/// XTRQ, INSERTQ, MOVNTSS, and MOVNTSD instruction support.
///
/// See “EXTRQ”, “INSERTQ”,“MOVNTSS”, and “MOVNTSD” in APM4.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_sse4a(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::SSE4A)
}
/// Misaligned SSE mode. See “Misaligned Access Support Added for SSE Instructions” in
/// APM1.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_misaligned_sse_mode(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::MISALIGNSSE)
}
/// Is PREFETCHW available?
///
/// # AMD
/// PREFETCH and PREFETCHW instruction support.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_prefetchw(&self) -> bool {
self.ecx.contains(ExtendedFunctionInfoEcx::PREFETCHW)
}
/// Indicates OS-visible workaround support
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_osvw(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::OSVW)
}
/// Instruction based sampling.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_ibs(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::IBS)
}
/// Extended operation support.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_xop(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::XOP)
}
/// SKINIT and STGI are supported.
///
/// Indicates support for SKINIT and STGI, independent of the value of
/// `MSRC000_0080[SVME]`.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_skinit(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::SKINIT)
}
/// Watchdog timer support.
///
/// Indicates support for MSRC001_0074.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_wdt(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::WDT)
}
/// Lightweight profiling support
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_lwp(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::LWP)
}
/// Four-operand FMA instruction support.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_fma4(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::FMA4)
}
/// Trailing bit manipulation instruction support.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_tbm(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::TBM)
}
/// Topology extensions support.
///
/// Indicates support for CPUID `Fn8000_001D_EAX_x[N:0]-CPUID Fn8000_001E_EDX`.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_topology_extensions(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::TOPEXT)
}
/// Processor performance counter extensions support.
///
/// Indicates support for `MSRC001_020[A,8,6,4,2,0]` and `MSRC001_020[B,9,7,5,3,1]`.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_perf_cntr_extensions(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::PERFCTREXT)
}
/// NB performance counter extensions support.
///
/// Indicates support for `MSRC001_024[6,4,2,0]` and `MSRC001_024[7,5,3,1]`.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_nb_perf_cntr_extensions(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::PERFCTREXTNB)
}
/// Data access breakpoint extension.
///
/// Indicates support for `MSRC001_1027` and `MSRC001_101[B:9]`.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_data_access_bkpt_extension(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::DATABRKPEXT)
}
/// Performance time-stamp counter.
///
/// Indicates support for `MSRC001_0280` `[Performance Time Stamp Counter]`.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_perf_tsc(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::PERFTSC)
}
/// Support for L3 performance counter extension.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_perf_cntr_llc_extensions(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::PERFCTREXTLLC)
}
/// Support for MWAITX and MONITORX instructions.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_monitorx_mwaitx(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::MONITORX)
}
/// Breakpoint Addressing masking extended to bit 31.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_addr_mask_extension(&self) -> bool {
self.vendor == Vendor::Amd && self.ecx.contains(ExtendedFunctionInfoEcx::ADDRMASKEXT)
}
/// Are fast system calls available.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_syscall_sysret(&self) -> bool {
self.edx.contains(ExtendedFunctionInfoEdx::SYSCALL_SYSRET)
}
/// Is there support for execute disable bit.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_execute_disable(&self) -> bool {
self.edx.contains(ExtendedFunctionInfoEdx::EXECUTE_DISABLE)
}
/// AMD extensions to MMX instructions.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_mmx_extensions(&self) -> bool {
self.vendor == Vendor::Amd && self.edx.contains(ExtendedFunctionInfoEdx::MMXEXT)
}
/// FXSAVE and FXRSTOR instruction optimizations.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_fast_fxsave_fxstor(&self) -> bool {
self.vendor == Vendor::Amd && self.edx.contains(ExtendedFunctionInfoEdx::FFXSR)
}
/// Is there support for 1GiB pages.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_1gib_pages(&self) -> bool {
self.edx.contains(ExtendedFunctionInfoEdx::GIB_PAGES)
}
/// Check support for rdtscp instruction.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_rdtscp(&self) -> bool {
self.edx.contains(ExtendedFunctionInfoEdx::RDTSCP)
}
/// Check support for 64-bit mode.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_64bit_mode(&self) -> bool {
self.edx.contains(ExtendedFunctionInfoEdx::I64BIT_MODE)
}
/// 3DNow AMD extensions.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_amd_3dnow_extensions(&self) -> bool {
self.vendor == Vendor::Amd && self.edx.contains(ExtendedFunctionInfoEdx::THREEDNOWEXT)
}
/// 3DNow extensions.
///
/// # Platform
/// ✅ AMD ❌ Intel (will return false)
pub fn has_3dnow(&self) -> bool {
self.vendor == Vendor::Amd && self.edx.contains(ExtendedFunctionInfoEdx::THREEDNOW)
}
}
impl Debug for ExtendedProcessorFeatureIdentifiers {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
let mut ds = f.debug_struct("ExtendedProcessorFeatureIdentifiers");
ds.field("extended_signature", &self.extended_signature());
if self.vendor == Vendor::Amd {
ds.field("pkg_type", &self.pkg_type());
ds.field("brand_id", &self.brand_id());
}
ds.field("ecx_features", &self.ecx);
ds.field("edx_features", &self.edx);
ds.finish()
}
}
bitflags! {
#[repr(transparent)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
struct ExtendedFunctionInfoEcx: u32 {
const LAHF_SAHF = 1 << 0;
const CMP_LEGACY = 1 << 1;
const SVM = 1 << 2;
const EXT_APIC_SPACE = 1 << 3;
const ALTMOVCR8 = 1 << 4;
const LZCNT = 1 << 5;
const SSE4A = 1 << 6;
const MISALIGNSSE = 1 << 7;
const PREFETCHW = 1 << 8;
const OSVW = 1 << 9;
const IBS = 1 << 10;
const XOP = 1 << 11;
const SKINIT = 1 << 12;
const WDT = 1 << 13;
const LWP = 1 << 15;
const FMA4 = 1 << 16;
const TBM = 1 << 21;
const TOPEXT = 1 << 22;
const PERFCTREXT = 1 << 23;
const PERFCTREXTNB = 1 << 24;
const DATABRKPEXT = 1 << 26;
const PERFTSC = 1 << 27;
const PERFCTREXTLLC = 1 << 28;
const MONITORX = 1 << 29;
const ADDRMASKEXT = 1 << 30;
}
}
bitflags! {
#[repr(transparent)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
struct ExtendedFunctionInfoEdx: u32 {
const SYSCALL_SYSRET = 1 << 11;
const EXECUTE_DISABLE = 1 << 20;
const MMXEXT = 1 << 22;
const FFXSR = 1 << 24;
const GIB_PAGES = 1 << 26;
const RDTSCP = 1 << 27;
const I64BIT_MODE = 1 << 29;
const THREEDNOWEXT = 1 << 30;
const THREEDNOW = 1 << 31;
}
}
/// Processor name (LEAF=0x8000_0002..=0x8000_0004).
///
/// ASCII string up to 48 characters in length corresponding to the processor name.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub struct ProcessorBrandString {
data: [CpuIdResult; 3],
}
impl ProcessorBrandString {
pub(crate) fn new(data: [CpuIdResult; 3]) -> Self {
Self { data }
}
/// Return the processor brand string as a rust string.
///
/// For example:
/// "11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz".
pub fn as_str(&self) -> &str {
// Safety: CpuIdResult is laid out with repr(C), and the array
// self.data contains 3 contiguous elements.
let slice: &[u8] = unsafe {
slice::from_raw_parts(
self.data.as_ptr() as *const u8,
self.data.len() * size_of::<CpuIdResult>(),
)
};
// Brand terminated at nul byte or end, whichever comes first.
let slice = slice.split(|&x| x == 0).next().unwrap();
str::from_utf8(slice)
.unwrap_or("Invalid Processor Brand String")
.trim()
}
}
impl Debug for ProcessorBrandString {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
f.debug_struct("ProcessorBrandString")
.field("as_str", &self.as_str())
.finish()
}
}
/// L1 Cache and TLB Information (LEAF=0x8000_0005).
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
#[derive(PartialEq, Eq, Debug)]
pub struct L1CacheTlbInfo {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
}
impl L1CacheTlbInfo {
pub(crate) fn new(data: CpuIdResult) -> Self {
Self {
eax: data.eax,
ebx: data.ebx,
ecx: data.ecx,
edx: data.edx,
}
}
/// Data TLB associativity for 2-MB and 4-MB pages.
pub fn dtlb_2m_4m_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.eax, 24, 31) as u8;
Associativity::for_l1(assoc_bits)
}
/// Data TLB number of entries for 2-MB and 4-MB pages.
///
/// The value returned is for the number of entries available for the 2-MB page size;
/// 4-MB pages require two 2-MB entries, so the number of entries available for the
/// 4-MB page size is one-half the returned value.
pub fn dtlb_2m_4m_size(&self) -> u8 {
get_bits(self.eax, 16, 23) as u8
}
/// Instruction TLB associativity for 2-MB and 4-MB pages.
pub fn itlb_2m_4m_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.eax, 8, 15) as u8;
Associativity::for_l1(assoc_bits)
}
/// Instruction TLB number of entries for 2-MB and 4-MB pages.
///
/// The value returned is for the number of entries available for the 2-MB page size;
/// 4-MB pages require two 2-MB entries, so the number of entries available for the
/// 4-MB page size is one-half the returned value.
pub fn itlb_2m_4m_size(&self) -> u8 {
get_bits(self.eax, 0, 7) as u8
}
/// Data TLB associativity for 4K pages.
pub fn dtlb_4k_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.ebx, 24, 31) as u8;
Associativity::for_l1(assoc_bits)
}
/// Data TLB number of entries for 4K pages.
pub fn dtlb_4k_size(&self) -> u8 {
get_bits(self.ebx, 16, 23) as u8
}
/// Instruction TLB associativity for 4K pages.
pub fn itlb_4k_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.ebx, 8, 15) as u8;
Associativity::for_l1(assoc_bits)
}
/// Instruction TLB number of entries for 4K pages.
pub fn itlb_4k_size(&self) -> u8 {
get_bits(self.ebx, 0, 7) as u8
}
/// L1 data cache size in KB
pub fn dcache_size(&self) -> u8 {
get_bits(self.ecx, 24, 31) as u8
}
/// L1 data cache associativity.
pub fn dcache_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.ecx, 16, 23) as u8;
Associativity::for_l1(assoc_bits)
}
/// L1 data cache lines per tag.
pub fn dcache_lines_per_tag(&self) -> u8 {
get_bits(self.ecx, 8, 15) as u8
}
/// L1 data cache line size in bytes.
pub fn dcache_line_size(&self) -> u8 {
get_bits(self.ecx, 0, 7) as u8
}
/// L1 instruction cache size in KB
pub fn icache_size(&self) -> u8 {
get_bits(self.edx, 24, 31) as u8
}
/// L1 instruction cache associativity.
pub fn icache_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.edx, 16, 23) as u8;
Associativity::for_l1(assoc_bits)
}
/// L1 instruction cache lines per tag.
pub fn icache_lines_per_tag(&self) -> u8 {
get_bits(self.edx, 8, 15) as u8
}
/// L1 instruction cache line size in bytes.
pub fn icache_line_size(&self) -> u8 {
get_bits(self.edx, 0, 7) as u8
}
}
/// L2/L3 Cache and TLB Information (LEAF=0x8000_0006).
///
/// # Availability
/// ✅ AMD 🟡 Intel
#[derive(PartialEq, Eq, Debug)]
pub struct L2And3CacheTlbInfo {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
}
impl L2And3CacheTlbInfo {
pub(crate) fn new(data: CpuIdResult) -> Self {
Self {
eax: data.eax,
ebx: data.ebx,
ecx: data.ecx,
edx: data.edx,
}
}
/// L2 Data TLB associativity for 2-MB and 4-MB pages.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn dtlb_2m_4m_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.eax, 28, 31) as u8;
Associativity::for_l2(assoc_bits)
}
/// L2 Data TLB number of entries for 2-MB and 4-MB pages.
///
/// The value returned is for the number of entries available for the 2-MB page size;
/// 4-MB pages require two 2-MB entries, so the number of entries available for the
/// 4-MB page size is one-half the returned value.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn dtlb_2m_4m_size(&self) -> u16 {
get_bits(self.eax, 16, 27) as u16
}
/// L2 Instruction TLB associativity for 2-MB and 4-MB pages.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn itlb_2m_4m_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.eax, 12, 15) as u8;
Associativity::for_l2(assoc_bits)
}
/// L2 Instruction TLB number of entries for 2-MB and 4-MB pages.
///
/// The value returned is for the number of entries available for the 2-MB page size;
/// 4-MB pages require two 2-MB entries, so the number of entries available for the
/// 4-MB page size is one-half the returned value.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn itlb_2m_4m_size(&self) -> u16 {
get_bits(self.eax, 0, 11) as u16
}
/// L2 Data TLB associativity for 4K pages.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn dtlb_4k_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.ebx, 28, 31) as u8;
Associativity::for_l2(assoc_bits)
}
/// L2 Data TLB number of entries for 4K pages.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn dtlb_4k_size(&self) -> u16 {
get_bits(self.ebx, 16, 27) as u16
}
/// L2 Instruction TLB associativity for 4K pages.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn itlb_4k_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.ebx, 12, 15) as u8;
Associativity::for_l2(assoc_bits)
}
/// L2 Instruction TLB number of entries for 4K pages.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn itlb_4k_size(&self) -> u16 {
get_bits(self.ebx, 0, 11) as u16
}
/// L2 Cache Line size in bytes
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn l2cache_line_size(&self) -> u8 {
get_bits(self.ecx, 0, 7) as u8
}
/// L2 cache lines per tag.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn l2cache_lines_per_tag(&self) -> u8 {
get_bits(self.ecx, 8, 11) as u8
}
/// L2 Associativity field
///
/// # Availability
/// ✅ AMD ✅ Intel
pub fn l2cache_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.ecx, 12, 15) as u8;
Associativity::for_l2(assoc_bits)
}
/// Cache size in KB.
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn l2cache_size(&self) -> u16 {
get_bits(self.ecx, 16, 31) as u16
}
/// L2 Cache Line size in bytes
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=0)
pub fn l3cache_line_size(&self) -> u8 {
get_bits(self.edx, 0, 7) as u8
}
/// L2 cache lines per tag.
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn l3cache_lines_per_tag(&self) -> u8 {
get_bits(self.edx, 8, 11) as u8
}
/// L2 Associativity field
///
/// # Availability
/// ✅ AMD ❌ Intel (reserved=0)
pub fn l3cache_associativity(&self) -> Associativity {
let assoc_bits = get_bits(self.edx, 12, 15) as u8;
Associativity::for_l3(assoc_bits)
}
/// Specifies the L3 cache size range
///
/// `(L3Size[31:18] * 512KB) <= L3 cache size < ((L3Size[31:18]+1) * 512KB)`.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=0)
pub fn l3cache_size(&self) -> u16 {
get_bits(self.edx, 18, 31) as u16
}
}
/// Info about cache Associativity.
#[derive(PartialEq, Eq, Debug)]
pub enum Associativity {
Disabled,
DirectMapped,
NWay(u8),
FullyAssociative,
Unknown,
}
impl Display for Associativity {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
let s = match self {
Associativity::Disabled => "Disabled",
Associativity::DirectMapped => "Direct mapped",
Associativity::NWay(n) => {
return write!(f, "NWay({})", n);
}
Associativity::FullyAssociative => "Fully associative",
Associativity::Unknown => "Unknown (check leaf 0x8000_001d)",
};
f.write_str(s)
}
}
impl Associativity {
/// Constructor for L1 Cache and TLB Associativity Field Encodings
fn for_l1(n: u8) -> Associativity {
match n {
0x0 => Associativity::Disabled, // Intel only, AMD is reserved
0x1 => Associativity::DirectMapped,
0x2..=0xfe => Associativity::NWay(n),
0xff => Associativity::FullyAssociative,
}
}
/// Constructor for L2 Cache and TLB Associativity Field Encodings
fn for_l2(n: u8) -> Associativity {
match n {
0x0 => Associativity::Disabled,
0x1 => Associativity::DirectMapped,
0x2 => Associativity::NWay(2),
0x4 => Associativity::NWay(4),
0x5 => Associativity::NWay(6), // Reserved on Intel
0x6 => Associativity::NWay(8),
// 0x7 => SDM states: "See CPUID leaf 04H, sub-leaf 2"
0x8 => Associativity::NWay(16),
0x9 => Associativity::Unknown, // Intel: Reserved, AMD: Value for all fields should be determined from Fn8000_001D
0xa => Associativity::NWay(32),
0xb => Associativity::NWay(48),
0xc => Associativity::NWay(64),
0xd => Associativity::NWay(96),
0xe => Associativity::NWay(128),
0xF => Associativity::FullyAssociative,
_ => Associativity::Unknown,
}
}
/// Constructor for L2 Cache and TLB Associativity Field Encodings
fn for_l3(n: u8) -> Associativity {
Associativity::for_l2(n)
}
}
/// Processor Power Management and RAS Capabilities (LEAF=0x8000_0007).
///
/// # Platforms
/// ✅ AMD 🟡 Intel
#[derive(Debug, PartialEq, Eq)]
pub struct ApmInfo {
/// Reserved on AMD and Intel.
_eax: u32,
ebx: RasCapabilities,
ecx: u32,
edx: ApmInfoEdx,
}
impl ApmInfo {
pub(crate) fn new(data: CpuIdResult) -> Self {
Self {
_eax: data.eax,
ebx: RasCapabilities::from_bits_truncate(data.ebx),
ecx: data.ecx,
edx: ApmInfoEdx::from_bits_truncate(data.edx),
}
}
/// Is MCA overflow recovery available?
///
/// If set, indicates that MCA overflow conditions (`MCi_STATUS[Overflow]=1`)
/// are not fatal; software may safely ignore such conditions. If clear, MCA
/// overflow conditions require software to shut down the system.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_mca_overflow_recovery(&self) -> bool {
self.ebx.contains(RasCapabilities::MCAOVFLRECOV)
}
/// Has Software uncorrectable error containment and recovery capability?
///
/// The processor supports software containment of uncorrectable errors
/// through context synchronizing data poisoning and deferred error
/// interrupts.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_succor(&self) -> bool {
self.ebx.contains(RasCapabilities::SUCCOR)
}
/// Has Hardware assert supported?
///
/// Indicates support for `MSRC001_10[DF:C0]`.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_hwa(&self) -> bool {
self.ebx.contains(RasCapabilities::HWA)
}
/// Specifies the ratio of the compute unit power accumulator sample period
/// to the TSC counter period.
///
/// Returns a value of 0 if not applicable for the system.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=0)
pub fn cpu_pwr_sample_time_ratio(&self) -> u32 {
self.ecx
}
/// Is Temperature Sensor available?
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_ts(&self) -> bool {
self.edx.contains(ApmInfoEdx::TS)
}
/// Frequency ID control.
///
/// # Note
/// Function replaced by `has_hw_pstate`.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_freq_id_ctrl(&self) -> bool {
self.edx.contains(ApmInfoEdx::FID)
}
/// Voltage ID control.
///
/// # Note
/// Function replaced by `has_hw_pstate`.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_volt_id_ctrl(&self) -> bool {
self.edx.contains(ApmInfoEdx::VID)
}
/// Has THERMTRIP?
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_thermtrip(&self) -> bool {
self.edx.contains(ApmInfoEdx::TTP)
}
/// Hardware thermal control (HTC)?
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_tm(&self) -> bool {
self.edx.contains(ApmInfoEdx::TM)
}
/// Has 100 MHz multiplier Control?
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_100mhz_steps(&self) -> bool {
self.edx.contains(ApmInfoEdx::MHZSTEPS100)
}
/// Has Hardware P-state control?
///
/// MSRC001_0061 [P-state Current Limit], MSRC001_0062 [P-state Control] and
/// MSRC001_0063 [P-state Status] exist
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_hw_pstate(&self) -> bool {
self.edx.contains(ApmInfoEdx::HWPSTATE)
}
/// Is Invariant TSC available?
///
/// # Platforms
/// ✅ AMD ✅ Intel
pub fn has_invariant_tsc(&self) -> bool {
self.edx.contains(ApmInfoEdx::INVTSC)
}
/// Has Core performance boost?
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_cpb(&self) -> bool {
self.edx.contains(ApmInfoEdx::CPB)
}
/// Has Read-only effective frequency interface?
///
/// Indicates presence of MSRC000_00E7 [Read-Only Max Performance Frequency
/// Clock Count (MPerfReadOnly)] and MSRC000_00E8 [Read-Only Actual
/// Performance Frequency Clock Count (APerfReadOnly)].
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_ro_effective_freq_iface(&self) -> bool {
self.edx.contains(ApmInfoEdx::EFFFREQRO)
}
/// Indicates support for processor feedback interface.
///
/// # Note
/// This feature is deprecated.
///
/// # Platforms
/// ✅ AMD ❌ Intel (reserved=false)
pub fn has_feedback_iface(&self) -> bool {
self.edx.contains(ApmInfoEdx::PROCFEEDBACKIF)
}
/// Has Processor power reporting interface?