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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
#![allow(dead_code)]
#[cfg(feature = "acpi")]
use crate::arch::x86_64::kernel::acpi;
use crate::arch::x86_64::kernel::{idt, irq, pic, pit, BOOT_INFO};
use crate::environment;
use crate::x86::controlregs::*;
use crate::x86::cpuid::*;
use crate::x86::msr::*;
use core::arch::x86_64::{__rdtscp as rdtscp, _rdrand32_step, _rdrand64_step, _rdtsc as rdtsc};
use core::convert::TryInto;
use core::hint::spin_loop;
use core::{fmt, u32};
const IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP: u64 = 1 << 16;
const IA32_MISC_ENABLE_SPEEDSTEP_LOCK: u64 = 1 << 20;
const IA32_MISC_ENABLE_TURBO_DISABLE: u64 = 1 << 38;
const EFER_SCE: u64 = 1 << 0;
const EFER_LME: u64 = 1 << 8;
const EFER_LMA: u64 = 1 << 10;
const EFER_NXE: u64 = 1 << 11;
const EFER_SVME: u64 = 1 << 12;
const EFER_LMSLE: u64 = 1 << 13;
const EFER_FFXSR: u64 = 1 << 14;
const EFER_TCE: u64 = 1 << 15;
const RDRAND_RETRY_LIMIT: usize = 10;
static mut CPU_FREQUENCY: CpuFrequency = CpuFrequency::new();
static mut CPU_SPEEDSTEP: CpuSpeedStep = CpuSpeedStep::new();
static mut PHYSICAL_ADDRESS_BITS: u8 = 0;
static mut LINEAR_ADDRESS_BITS: u8 = 0;
static mut MEASUREMENT_TIMER_TICKS: u64 = 0;
static mut SUPPORTS_1GIB_PAGES: bool = false;
static mut SUPPORTS_AVX: bool = false;
static mut SUPPORTS_RDRAND: bool = false;
static mut SUPPORTS_TSC_DEADLINE: bool = false;
static mut SUPPORTS_X2APIC: bool = false;
static mut SUPPORTS_XSAVE: bool = false;
static mut SUPPORTS_FSGS: bool = false;
static mut RUN_ON_HYPERVISOR: bool = false;
static mut TIMESTAMP_FUNCTION: unsafe fn() -> u64 = get_timestamp_rdtsc;
#[repr(C, align(16))]
pub struct XSaveLegacyRegion {
pub fpu_control_word: u16,
pub fpu_status_word: u16,
pub fpu_tag_word: u16,
pub fpu_opcode: u16,
pub fpu_instruction_pointer: u32,
pub fpu_instruction_pointer_high_or_cs: u32,
pub fpu_data_pointer: u32,
pub fpu_data_pointer_high_or_ds: u32,
pub mxcsr: u32,
pub mxcsr_mask: u32,
pub st_space: [u8; 8 * 16],
pub xmm_space: [u8; 16 * 16],
pub padding: [u8; 96],
}
#[repr(C)]
pub struct XSaveHeader {
pub xstate_bv: u64,
pub xcomp_bv: u64,
pub reserved: [u64; 6],
}
#[repr(C)]
pub struct XSaveAVXState {
pub ymmh_space: [u8; 16 * 16],
}
#[repr(C)]
pub struct XSaveLWPState {
pub lwpcb_address: u64,
pub flags: u32,
pub buffer_head_offset: u32,
pub buffer_base: u64,
pub buffer_size: u32,
pub filters: u32,
pub saved_event_record: [u64; 4],
pub event_counter: [u32; 16],
}
#[repr(C)]
pub struct XSaveBndregs {
pub bound_registers: [u8; 4 * 16],
}
#[repr(C)]
pub struct XSaveBndcsr {
pub bndcfgu_register: u64,
pub bndstatus_register: u64,
}
#[repr(C, align(64))]
pub struct FPUState {
pub legacy_region: XSaveLegacyRegion,
pub header: XSaveHeader,
pub avx_state: XSaveAVXState,
pub lwp_state: XSaveLWPState,
pub bndregs: XSaveBndregs,
pub bndcsr: XSaveBndcsr,
}
impl FPUState {
pub const fn new() -> Self {
Self {
legacy_region: XSaveLegacyRegion {
fpu_control_word: 0x37F,
fpu_status_word: 0,
fpu_tag_word: 0xFFFF,
fpu_opcode: 0,
fpu_instruction_pointer: 0,
fpu_instruction_pointer_high_or_cs: 0,
fpu_data_pointer: 0,
fpu_data_pointer_high_or_ds: 0,
mxcsr: 0x1F80,
mxcsr_mask: 0,
st_space: [0; 8 * 16],
xmm_space: [0; 16 * 16],
padding: [0; 96],
},
header: XSaveHeader {
xstate_bv: 0,
xcomp_bv: 0,
reserved: [0; 6],
},
avx_state: XSaveAVXState {
ymmh_space: [0; 16 * 16],
},
lwp_state: XSaveLWPState {
lwpcb_address: 0,
flags: 0,
buffer_head_offset: 0,
buffer_base: 0,
buffer_size: 0,
filters: 0,
saved_event_record: [0; 4],
event_counter: [0; 16],
},
bndregs: XSaveBndregs {
bound_registers: [0; 4 * 16],
},
bndcsr: XSaveBndcsr {
bndcfgu_register: 0,
bndstatus_register: 0,
},
}
}
pub fn restore(&self) {
if supports_xsave() {
let bitmask = u32::MAX;
unsafe {
llvm_asm!("xrstorq $0" :: "*m"(self as *const Self), "{eax}"(bitmask), "{edx}"(bitmask) :: "volatile");
}
} else {
unsafe {
llvm_asm!("fxrstor $0" :: "*m"(self as *const Self) :: "volatile");
}
}
}
pub fn save(&mut self) {
if supports_xsave() {
let bitmask: u32 = u32::MAX;
unsafe {
llvm_asm!("xsaveq $0" : "=*m"(self as *mut Self) : "{eax}"(bitmask), "{edx}"(bitmask) : "memory" : "volatile");
}
} else {
unsafe {
llvm_asm!("fxsave $0; fnclex" : "=*m"(self as *mut Self) :: "memory" : "volatile");
}
}
}
pub fn restore_common(&self) {
unsafe {
llvm_asm!("fxrstor $0" :: "*m"(self as *const Self) :: "volatile");
}
}
pub fn save_common(&mut self) {
unsafe {
llvm_asm!("fxsave $0; fnclex" : "=*m"(self as *mut Self) :: "memory" : "volatile");
}
}
}
enum CpuFrequencySources {
Invalid,
CommandLine,
CpuIdBrandString,
Measurement,
Hypervisor,
CpuId,
CpuIdTscInfo,
HypervisorTscInfo,
}
impl fmt::Display for CpuFrequencySources {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match &self {
CpuFrequencySources::CommandLine => write!(f, "Command Line"),
CpuFrequencySources::CpuIdBrandString => write!(f, "CpuId Brand String"),
CpuFrequencySources::Measurement => write!(f, "Measurement"),
CpuFrequencySources::Hypervisor => write!(f, "Hypervisor"),
CpuFrequencySources::CpuId => write!(f, "CpuId"),
CpuFrequencySources::CpuIdTscInfo => write!(f, "CpuId Tsc Info"),
CpuFrequencySources::HypervisorTscInfo => write!(f, "Tsc Info from Hypervisor"),
_ => panic!("Attempted to print an invalid CPU Frequency Source"),
}
}
}
struct CpuFrequency {
mhz: u16,
source: CpuFrequencySources,
}
impl CpuFrequency {
const fn new() -> Self {
CpuFrequency {
mhz: 0,
source: CpuFrequencySources::Invalid,
}
}
fn set_detected_cpu_frequency(
&mut self,
mhz: u16,
source: CpuFrequencySources,
) -> Result<(), ()> {
if mhz > 0 {
self.mhz = mhz;
self.source = source;
Ok(())
} else {
Err(())
}
}
unsafe fn detect_from_cmdline(&mut self) -> Result<(), ()> {
let mhz = environment::get_command_line_cpu_frequency();
self.set_detected_cpu_frequency(mhz, CpuFrequencySources::CommandLine)
}
unsafe fn detect_from_cpuid(&mut self, cpuid: &CpuId) -> Result<(), ()> {
let processor_frequency_info = cpuid.get_processor_frequency_info();
match processor_frequency_info {
Some(freq_info) => {
let mhz = freq_info.processor_base_frequency();
self.set_detected_cpu_frequency(mhz, CpuFrequencySources::CpuId)
}
None => Err(()),
}
}
unsafe fn detect_from_cpuid_tsc_info(&mut self, cpuid: &CpuId) -> Result<(), ()> {
let tsc_info = cpuid.get_tsc_info().ok_or(())?;
let freq = tsc_info.tsc_frequency().ok_or(())?;
let mhz = (freq / 1000000u64) as u16;
self.set_detected_cpu_frequency(mhz, CpuFrequencySources::CpuIdTscInfo)
}
unsafe fn detect_from_cpuid_hypervisor_info(&mut self, cpuid: &CpuId) -> Result<(), ()> {
const KHZ_TO_HZ: u64 = 1000;
const MHZ_TO_HZ: u64 = 1000000;
let hypervisor_info = cpuid.get_hypervisor_info().ok_or(())?;
let freq = hypervisor_info.tsc_frequency().ok_or(())? as u64 * KHZ_TO_HZ;
let mhz: u16 = (freq / MHZ_TO_HZ).try_into().unwrap();
self.set_detected_cpu_frequency(mhz, CpuFrequencySources::HypervisorTscInfo)
}
unsafe fn detect_from_cpuid_brand_string(&mut self, cpuid: &CpuId) -> Result<(), ()> {
let extended_function_info = cpuid
.get_extended_function_info()
.expect("CPUID Extended Function Info not available!");
let brand_string = extended_function_info
.processor_brand_string()
.expect("CPUID Brand String not available!");
let ghz_find = brand_string.find("GHz");
if let Some(ghz_find) = ghz_find {
let index = ghz_find - 4;
let thousand_char = brand_string.chars().nth(index).unwrap();
let decimal_char = brand_string.chars().nth(index + 1).unwrap();
let hundred_char = brand_string.chars().nth(index + 2).unwrap();
let ten_char = brand_string.chars().nth(index + 3).unwrap();
if let (Some(thousand), '.', Some(hundred), Some(ten)) = (
thousand_char.to_digit(10),
decimal_char,
hundred_char.to_digit(10),
ten_char.to_digit(10),
) {
let mhz = (thousand * 1000 + hundred * 100 + ten * 10) as u16;
return self.set_detected_cpu_frequency(mhz, CpuFrequencySources::CpuIdTscInfo);
}
}
Err(())
}
fn detect_from_hypervisor(&mut self) -> Result<(), ()> {
fn detect_from_uhyve() -> Result<u16, ()> {
if environment::is_uhyve() {
unsafe {
let cpu_freq = core::ptr::read_volatile(&(*BOOT_INFO).cpu_freq);
if cpu_freq > (u16::MAX as u32) {
return Err(());
}
Ok(cpu_freq as u16)
}
} else {
Err(())
}
}
self.set_detected_cpu_frequency(detect_from_uhyve()?, CpuFrequencySources::Hypervisor)
}
extern "x86-interrupt" fn measure_frequency_timer_handler(
_stack_frame: &mut irq::ExceptionStackFrame,
) {
unsafe {
MEASUREMENT_TIMER_TICKS += 1;
}
pic::eoi(pit::PIT_INTERRUPT_NUMBER);
}
#[cfg(not(target_os = "hermit"))]
fn measure_frequency(&mut self) -> Result<(), ()> {
self.source = CpuFrequencySources::Measurement;
Ok(())
}
#[cfg(target_os = "hermit")]
fn measure_frequency(&mut self) -> Result<(), ()> {
if environment::is_uhyve() {
return Err(());
}
let tick_count = 3;
let measurement_frequency = 100;
idt::set_gate(
pit::PIT_INTERRUPT_NUMBER,
Self::measure_frequency_timer_handler as usize,
0,
);
pit::init(measurement_frequency);
irq::enable();
let first_tick = unsafe { core::ptr::read_volatile(&MEASUREMENT_TIMER_TICKS) };
let start_tick = loop {
let tick = unsafe { core::ptr::read_volatile(&MEASUREMENT_TIMER_TICKS) };
if tick != first_tick {
break tick;
}
spin_loop();
};
let start = get_timestamp();
loop {
let tick = unsafe { core::ptr::read_volatile(&MEASUREMENT_TIMER_TICKS) };
if tick - start_tick >= tick_count {
break;
}
spin_loop();
}
let end = get_timestamp();
irq::disable();
pit::deinit();
let cycle_count = end - start;
let mhz = (measurement_frequency * cycle_count / (1_000_000 * tick_count)) as u16;
self.set_detected_cpu_frequency(mhz, CpuFrequencySources::Measurement)
}
unsafe fn detect(&mut self) {
let cpuid = CpuId::new();
self.detect_from_cpuid(&cpuid)
.or_else(|_e| self.detect_from_cpuid_tsc_info(&cpuid))
.or_else(|_e| self.detect_from_cpuid_hypervisor_info(&cpuid))
.or_else(|_e| self.detect_from_hypervisor())
.or_else(|_e| self.detect_from_cpuid_brand_string(&cpuid))
.or_else(|_e| self.measure_frequency())
.expect("Could not determine the processor frequency");
}
fn get(&self) -> u16 {
self.mhz
}
}
impl fmt::Display for CpuFrequency {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{} MHz (from {})", self.mhz, self.source)
}
}
struct CpuFeaturePrinter {
feature_info: FeatureInfo,
extended_feature_info: ExtendedFeatures,
extended_function_info: ExtendedFunctionInfo,
}
impl CpuFeaturePrinter {
fn new(cpuid: &CpuId) -> Self {
CpuFeaturePrinter {
feature_info: cpuid
.get_feature_info()
.expect("CPUID Feature Info not available!"),
extended_feature_info: cpuid
.get_extended_feature_info()
.expect("CPUID Extended Feature Info not available!"),
extended_function_info: cpuid
.get_extended_function_info()
.expect("CPUID Extended Function Info not available!"),
}
}
}
impl fmt::Display for CpuFeaturePrinter {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if self.feature_info.has_mmx() {
write!(f, "MMX ")?;
}
if self.feature_info.has_sse() {
write!(f, "SSE ")?;
}
if self.feature_info.has_sse2() {
write!(f, "SSE2 ")?;
}
if self.feature_info.has_sse3() {
write!(f, "SSE3 ")?;
}
if self.feature_info.has_ssse3() {
write!(f, "SSSE3 ")?;
}
if self.feature_info.has_sse41() {
write!(f, "SSE4.1 ")?;
}
if self.feature_info.has_sse42() {
write!(f, "SSE4.2 ")?;
}
if self.feature_info.has_avx() {
write!(f, "AVX ")?;
}
if self.feature_info.has_eist() {
write!(f, "EIST ")?;
}
if self.feature_info.has_aesni() {
write!(f, "AESNI ")?;
}
if self.feature_info.has_rdrand() {
write!(f, "RDRAND ")?;
}
if self.feature_info.has_fma() {
write!(f, "FMA ")?;
}
if self.feature_info.has_movbe() {
write!(f, "MOVBE ")?;
}
if self.feature_info.has_mce() {
write!(f, "MCE ")?;
}
if self.feature_info.has_fxsave_fxstor() {
write!(f, "FXSR ")?;
}
if self.feature_info.has_xsave() {
write!(f, "XSAVE ")?;
}
if self.feature_info.has_vmx() {
write!(f, "VMX ")?;
}
if self.extended_function_info.has_rdtscp() {
write!(f, "RDTSCP ")?;
}
if self.feature_info.has_monitor_mwait() {
write!(f, "MWAIT ")?;
}
if self.feature_info.has_clflush() {
write!(f, "CLFLUSH ")?;
}
if self.feature_info.has_dca() {
write!(f, "DCA ")?;
}
if self.feature_info.has_tsc_deadline() {
write!(f, "TSC-DEADLINE ")?;
}
if self.feature_info.has_x2apic() {
write!(f, "X2APIC ")?;
}
if self.feature_info.has_hypervisor() {
write!(f, "HYPERVISOR ")?;
}
if self.extended_feature_info.has_avx2() {
write!(f, "AVX2 ")?;
}
if self.extended_feature_info.has_avx512f() {
write!(f, "AVX512F ")?;
}
if self.extended_feature_info.has_avx512dq() {
write!(f, "AVX512DQ ")?;
}
if self.extended_feature_info.has_avx512_ifma() {
write!(f, "AVX512IFMA ")?;
}
if self.extended_feature_info.has_avx512pf() {
write!(f, "AVX512PF ")?;
}
if self.extended_feature_info.has_avx512er() {
write!(f, "AVX512ER ")?;
}
if self.extended_feature_info.has_avx512cd() {
write!(f, "AVX512CD ")?;
}
if self.extended_feature_info.has_avx512bw() {
write!(f, "AVX512BW ")?;
}
if self.extended_feature_info.has_avx512vl() {
write!(f, "AVX512VL ")?;
}
if self.extended_feature_info.has_bmi1() {
write!(f, "BMI1 ")?;
}
if self.extended_feature_info.has_bmi2() {
write!(f, "BMI2 ")?;
}
if self.extended_feature_info.has_rtm() {
write!(f, "RTM ")?;
}
if self.extended_feature_info.has_hle() {
write!(f, "HLE ")?;
}
if self.extended_feature_info.has_mpx() {
write!(f, "MPX ")?;
}
if self.extended_feature_info.has_pku() {
write!(f, "PKU ")?;
}
if self.extended_feature_info.has_ospke() {
write!(f, "OSPKE ")?;
}
if self.extended_feature_info.has_fsgsbase() {
write!(f, "FSGSBASE ")?;
}
if self.extended_feature_info.has_sgx() {
write!(f, "SGX ")?;
}
Ok(())
}
}
pub fn run_on_hypervisor() -> bool {
if environment::is_uhyve() {
true
} else {
unsafe { RUN_ON_HYPERVISOR }
}
}
struct CpuSpeedStep {
eist_available: bool,
eist_enabled: bool,
eist_locked: bool,
energy_bias_preference: bool,
max_pstate: u8,
is_turbo_pstate: bool,
}
impl CpuSpeedStep {
const fn new() -> Self {
CpuSpeedStep {
eist_available: false,
eist_enabled: false,
eist_locked: false,
energy_bias_preference: false,
max_pstate: 0,
is_turbo_pstate: false,
}
}
fn detect_features(&mut self, cpuid: &CpuId) {
let feature_info = cpuid
.get_feature_info()
.expect("CPUID Feature Info not available!");
self.eist_available = feature_info.has_eist();
if !self.eist_available {
return;
}
let misc = unsafe { rdmsr(IA32_MISC_ENABLE) };
self.eist_enabled = (misc & IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP) > 0;
self.eist_locked = (misc & IA32_MISC_ENABLE_SPEEDSTEP_LOCK) > 0;
if !self.eist_enabled || self.eist_locked {
return;
}
self.max_pstate = (unsafe { rdmsr(MSR_PLATFORM_INFO) } >> 8) as u8;
if (misc & IA32_MISC_ENABLE_TURBO_DISABLE) == 0 {
let turbo_pstate = unsafe { rdmsr(MSR_TURBO_RATIO_LIMIT) } as u8;
if turbo_pstate > self.max_pstate {
self.max_pstate = turbo_pstate;
self.is_turbo_pstate = true;
}
}
if let Some(thermal_power_info) = cpuid.get_thermal_power_info() {
self.energy_bias_preference = thermal_power_info.has_energy_bias_pref();
}
}
fn configure(&self) {
if !self.eist_available || !self.eist_enabled || self.eist_locked {
return;
}
if self.energy_bias_preference {
unsafe {
wrmsr(IA32_ENERGY_PERF_BIAS, 0);
}
}
let mut perf_ctl_mask = u64::from(self.max_pstate) << 8;
if self.is_turbo_pstate {
perf_ctl_mask |= 1 << 32;
}
unsafe {
wrmsr(IA32_PERF_CTL, perf_ctl_mask);
}
}
}
impl fmt::Display for CpuSpeedStep {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if self.eist_available {
write!(f, "Available, ")?;
if !self.eist_enabled {
write!(f, "but disabled")?;
} else if self.eist_locked {
write!(f, "but locked")?;
} else {
write!(f, "enabled with maximum P-State {}", self.max_pstate)?;
if self.is_turbo_pstate {
write!(f, " (Turbo Mode)")?;
}
if self.energy_bias_preference {
write!(f, ", disabled Performance/Energy Bias")?;
}
}
} else {
write!(f, "Not Available")?;
}
Ok(())
}
}
pub fn detect_features() {
let cpuid = CpuId::new();
let feature_info = cpuid
.get_feature_info()
.expect("CPUID Feature Info not available!");
let extended_feature_info = cpuid
.get_extended_feature_info()
.expect("CPUID Extended Feature Info not available!");
let extended_function_info = cpuid
.get_extended_function_info()
.expect("CPUID Extended Function Info not available!");
unsafe {
PHYSICAL_ADDRESS_BITS = extended_function_info
.physical_address_bits()
.expect("CPUID Physical Address Bits not available!");
LINEAR_ADDRESS_BITS = extended_function_info
.linear_address_bits()
.expect("CPUID Linear Address Bits not available!");
SUPPORTS_1GIB_PAGES = extended_function_info.has_1gib_pages();
SUPPORTS_AVX = feature_info.has_avx();
SUPPORTS_RDRAND = feature_info.has_rdrand();
SUPPORTS_TSC_DEADLINE = feature_info.has_tsc_deadline();
SUPPORTS_X2APIC = feature_info.has_x2apic();
SUPPORTS_XSAVE = feature_info.has_xsave();
RUN_ON_HYPERVISOR = feature_info.has_hypervisor();
SUPPORTS_FSGS = extended_feature_info.has_fsgsbase();
if extended_function_info.has_rdtscp() {
TIMESTAMP_FUNCTION = get_timestamp_rdtscp;
}
CPU_SPEEDSTEP.detect_features(&cpuid);
}
}
pub fn configure() {
unsafe {
wrmsr(IA32_EFER, rdmsr(IA32_EFER) | EFER_LMA | EFER_SCE | EFER_NXE);
}
let mut cr0 = unsafe { cr0() };
cr0.insert(Cr0::CR0_MONITOR_COPROCESSOR | Cr0::CR0_NUMERIC_ERROR);
cr0.remove(Cr0::CR0_EMULATE_COPROCESSOR);
cr0.insert(Cr0::CR0_TASK_SWITCHED);
cr0.insert(Cr0::CR0_WRITE_PROTECT);
debug!("Set CR0 to 0x{:x}", cr0);
unsafe {
cr0_write(cr0);
}
let mut cr4 = unsafe { cr4() };
cr4.insert(Cr4::CR4_ENABLE_MACHINE_CHECK);
cr4.insert(Cr4::CR4_ENABLE_SSE | Cr4::CR4_UNMASKED_SSE);
if supports_xsave() {
cr4.insert(Cr4::CR4_ENABLE_OS_XSAVE);
}
cr4.remove(Cr4::CR4_ENABLE_PPMC);
cr4.remove(Cr4::CR4_TIME_STAMP_DISABLE);
if supports_fsgs() {
cr4.insert(Cr4::CR4_ENABLE_FSGSBASE);
#[cfg(feature = "fsgsbase")]
info!("Enable FSGSBASE support");
}
#[cfg(feature = "fsgsbase")]
if !supports_fsgs() {
error!("FSGSBASE support is enabled, but the processor doesn't support it!");
crate::__sys_shutdown(1);
}
debug!("Set CR4 to 0x{:x}", cr4);
unsafe {
cr4_write(cr4);
}
if supports_xsave() {
let mut xcr0 = unsafe { xcr0() };
xcr0.insert(Xcr0::XCR0_FPU_MMX_STATE | Xcr0::XCR0_SSE_STATE);
if supports_avx() {
xcr0.insert(Xcr0::XCR0_AVX_STATE);
}
debug!("Set XCR0 to 0x{:x}", xcr0);
unsafe {
xcr0_write(xcr0);
}
}
writefs(0);
unsafe {
CPU_SPEEDSTEP.configure();
}
}
pub fn detect_frequency() {
unsafe {
CPU_FREQUENCY.detect();
}
}
pub fn print_information() {
infoheader!(" CPU INFORMATION ");
let cpuid = CpuId::new();
let extended_function_info = cpuid
.get_extended_function_info()
.expect("CPUID Extended Function Info not available!");
let brand_string = extended_function_info
.processor_brand_string()
.expect("CPUID Brand String not available!");
let feature_printer = CpuFeaturePrinter::new(&cpuid);
infoentry!("Model", brand_string);
unsafe {
infoentry!("Frequency", CPU_FREQUENCY);
infoentry!("SpeedStep Technology", CPU_SPEEDSTEP);
}
infoentry!("Features", feature_printer);
infoentry!(
"Physical Address Width",
"{} bits",
get_physical_address_bits()
);
infoentry!("Linear Address Width", "{} bits", get_linear_address_bits());
infoentry!(
"Supports 1GiB Pages",
if supports_1gib_pages() { "Yes" } else { "No" }
);
infofooter!();
}
pub fn generate_random_number32() -> Option<u32> {
unsafe {
if SUPPORTS_RDRAND {
let mut value: u32 = 0;
for _ in 0..RDRAND_RETRY_LIMIT {
if _rdrand32_step(&mut value) == 1 {
return Some(value);
}
}
}
None
}
}
pub fn generate_random_number64() -> Option<u64> {
unsafe {
if SUPPORTS_RDRAND {
let mut value: u64 = 0;
for _ in 0..RDRAND_RETRY_LIMIT {
if _rdrand64_step(&mut value) == 1 {
return Some(value);
}
}
}
None
}
}
#[inline]
pub fn get_linear_address_bits() -> u8 {
unsafe { LINEAR_ADDRESS_BITS }
}
#[inline]
pub fn get_physical_address_bits() -> u8 {
unsafe { PHYSICAL_ADDRESS_BITS }
}
#[inline]
pub fn supports_1gib_pages() -> bool {
unsafe { SUPPORTS_1GIB_PAGES }
}
#[inline]
pub fn supports_avx() -> bool {
unsafe { SUPPORTS_AVX }
}
#[inline]
pub fn supports_tsc_deadline() -> bool {
unsafe { SUPPORTS_TSC_DEADLINE }
}
#[inline]
pub fn supports_x2apic() -> bool {
unsafe { SUPPORTS_X2APIC }
}
#[inline]
pub fn supports_xsave() -> bool {
unsafe { SUPPORTS_XSAVE }
}
#[inline]
pub fn supports_fsgs() -> bool {
unsafe { SUPPORTS_FSGS }
}
#[inline(always)]
pub fn msb(value: u64) -> Option<u64> {
if value > 0 {
let ret: u64;
unsafe {
llvm_asm!("bsr $1, $0" : "=r"(ret) : "r"(value) : "cc" : "volatile");
}
Some(ret)
} else {
None
}
}
pub fn halt() {
unsafe {
llvm_asm!("hlt" :::: "volatile");
}
}
pub fn shutdown() -> ! {
info!("Shutting down system");
#[cfg(feature = "acpi")]
acpi::poweroff();
loop {
halt();
}
}
pub fn get_timer_ticks() -> u64 {
get_timestamp() / u64::from(get_frequency())
}
pub fn get_frequency() -> u16 {
unsafe { CPU_FREQUENCY.get() }
}
#[inline]
#[cfg(feature = "fsgsbase")]
pub fn readfs() -> usize {
let val: u64;
unsafe {
llvm_asm!("rdfsbase $0" : "=r"(val) ::: "volatile");
}
val as usize
}
#[inline]
#[cfg(not(feature = "fsgsbase"))]
pub fn readfs() -> usize {
let rdx: u64;
let rax: u64;
unsafe {
llvm_asm!("rdmsr" : "=%rdx"(rdx), "=%rax"(rax) : "%rcx"(0xc0000100u64) :: "volatile");
}
((rdx << 32) | rax) as usize
}
#[inline]
#[cfg(feature = "fsgsbase")]
pub fn readgs() -> usize {
let val: u64;
unsafe {
llvm_asm!("rdgsbase $0" : "=r"(val) ::: "volatile");
}
val as usize
}
#[inline]
#[cfg(not(feature = "fsgsbase"))]
pub fn readgs() -> usize {
let rdx: u64;
let rax: u64;
unsafe {
llvm_asm!("rdmsr" : "=%rdx"(rdx), "=%rax"(rax) : "%rcx"(0xc0000101u64) :: "volatile");
}
((rdx << 32) | rax) as usize
}
#[inline]
#[cfg(feature = "fsgsbase")]
pub fn writefs(fs: usize) {
unsafe {
llvm_asm!("wrfsbase $0" :: "r"(fs) :: "volatile");
}
}
#[inline]
#[cfg(not(feature = "fsgsbase"))]
pub fn writefs(fs: usize) {
let rdx = fs >> 32;
let rax = fs & (u32::MAX - 1) as usize;
unsafe {
llvm_asm!("wrmsr" :: "%rcx"(0xc0000100u64), "%rdx"(rdx), "%rax"(rax) :: "volatile");
}
}
#[inline]
#[cfg(feature = "fsgsbase")]
pub fn writegs(gs: usize) {
unsafe {
llvm_asm!("wrgsbase $0" :: "r"(gs) :: "volatile");
}
}
#[inline]
#[cfg(not(feature = "fsgsbase"))]
pub fn writegs(gs: usize) {
let rdx = gs >> 32;
let rax = gs & (u32::MAX - 1) as usize;
unsafe {
llvm_asm!("wrmsr" :: "%rcx"(0xc0000101u64), "%rdx"(rdx), "%rax"(rax) :: "volatile");
}
}
#[inline]
pub fn get_timestamp() -> u64 {
unsafe { TIMESTAMP_FUNCTION() }
}
unsafe fn get_timestamp_rdtsc() -> u64 {
llvm_asm!("lfence" ::: "memory" : "volatile");
let value = rdtsc();
llvm_asm!("lfence" ::: "memory" : "volatile");
value
}
unsafe fn get_timestamp_rdtscp() -> u64 {
let mut aux: u32 = 0;
let value = rdtscp(&mut aux as *mut u32);
llvm_asm!("lfence" ::: "memory" : "volatile");
value
}
#[inline]
pub fn udelay(usecs: u64) {
let end = get_timestamp() + u64::from(get_frequency()) * usecs;
while get_timestamp() < end {
spin_loop();
}
}