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
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
use crate::{SMBiosStruct, UndefinedStruct};
use serde::{ser::SerializeSeq, ser::SerializeStruct, Serialize, Serializer};
use std::{fmt, ops::Deref};
pub struct SMBiosSystemSlot<'a> {
parts: &'a UndefinedStruct,
}
impl<'a> SMBiosStruct<'a> for SMBiosSystemSlot<'a> {
const STRUCT_TYPE: u8 = 9u8;
fn new(parts: &'a UndefinedStruct) -> Self {
Self { parts }
}
fn parts(&self) -> &'a UndefinedStruct {
self.parts
}
}
impl<'a> SMBiosSystemSlot<'a> {
pub fn slot_designation(&self) -> Option<String> {
self.parts.get_field_string(0x04)
}
pub fn system_slot_type(&self) -> Option<SystemSlotTypeData> {
self.parts
.get_field_byte(0x05)
.map(|raw| SystemSlotTypeData::from(raw))
}
pub fn slot_data_bus_width(&self) -> Option<SlotWidthData> {
self.parts
.get_field_byte(0x06)
.map(|raw| SlotWidthData::from(raw))
}
pub fn current_usage(&self) -> Option<SlotCurrentUsageData> {
self.parts
.get_field_byte(0x07)
.map(|raw| SlotCurrentUsageData::from(raw))
}
pub fn slot_length(&self) -> Option<SlotLengthData> {
self.parts
.get_field_byte(0x08)
.map(|raw| SlotLengthData::from(raw))
}
pub fn slot_id(&self) -> Option<u16> {
self.parts.get_field_word(0x09)
}
pub fn slot_characteristics_1(&self) -> Option<SystemSlotCharacteristics1> {
self.parts
.get_field_byte(0x0B)
.map(|raw| SystemSlotCharacteristics1::from(raw))
}
pub fn slot_characteristics_2(&self) -> Option<SystemSlotCharacteristics2> {
self.parts
.get_field_byte(0x0C)
.map(|raw| SystemSlotCharacteristics2::from(raw))
}
pub fn segment_group_number(&self) -> Option<u16> {
self.parts.get_field_word(0x0D)
}
pub fn bus_number(&self) -> Option<u8> {
self.parts.get_field_byte(0x0F)
}
pub fn device_function_number(&self) -> Option<u8> {
self.parts.get_field_byte(0x10)
}
pub fn data_bus_width(&self) -> Option<u8> {
self.parts.get_field_byte(0x11)
}
pub fn peer_group_count(&self) -> Option<usize> {
self.parts
.get_field_byte(0x12)
.and_then(|count| Some(count as usize))
}
fn peer_group_size(&self) -> Option<usize> {
self.peer_group_count()
.and_then(|count| Some(count as usize * SlotPeerGroup::SIZE))
}
pub fn peer_group_iterator(&'a self) -> SlotPeerGroupIterator<'a> {
SlotPeerGroupIterator::new(self)
}
pub fn slot_information(&self) -> Option<u8> {
self.peer_group_size()
.and_then(|size| self.parts.get_field_byte(size + 0x13))
}
pub fn slot_physical_width(&self) -> Option<SlotWidthData> {
self.peer_group_size().and_then(|size| {
self.parts
.get_field_byte(size + 0x14)
.map(|raw| SlotWidthData::from(raw))
})
}
pub fn slot_pitch(&self) -> Option<u16> {
self.peer_group_size()
.and_then(|size| self.parts.get_field_word(size + 0x15))
}
}
impl fmt::Debug for SMBiosSystemSlot<'_> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SMBiosSystemSlot<'_>>())
.field("header", &self.parts.header)
.field("slot_designation", &self.slot_designation())
.field("system_slot_type", &self.system_slot_type())
.field("slot_data_bus_width", &self.slot_data_bus_width())
.field("current_usage", &self.current_usage())
.field("slot_length", &self.slot_length())
.field("slot_id", &self.slot_id())
.field("slot_characteristics_1", &self.slot_characteristics_1())
.field("slot_characteristics_2", &self.slot_characteristics_2())
.field("segment_group_number", &self.segment_group_number())
.field("bus_number", &self.bus_number())
.field("device_function_number", &self.device_function_number())
.field("data_bus_width", &self.data_bus_width())
.field("peer_group_count", &self.peer_group_count())
.field("peer_group_iterator", &self.peer_group_iterator())
.field("slot_information", &self.slot_information())
.field("slot_physical_width", &self.slot_physical_width())
.field("slot_pitch", &self.slot_pitch())
.finish()
}
}
impl Serialize for SMBiosSystemSlot<'_> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SMBiosSystemSlot", 18)?;
state.serialize_field("header", &self.parts.header)?;
state.serialize_field("slot_designation", &self.slot_designation())?;
state.serialize_field("system_slot_type", &self.system_slot_type())?;
state.serialize_field("slot_data_bus_width", &self.slot_data_bus_width())?;
state.serialize_field("current_usage", &self.current_usage())?;
state.serialize_field("slot_length", &self.slot_length())?;
state.serialize_field("slot_id", &self.slot_id())?;
state.serialize_field("slot_characteristics_1", &self.slot_characteristics_1())?;
state.serialize_field("slot_characteristics_2", &self.slot_characteristics_2())?;
state.serialize_field("segment_group_number", &self.segment_group_number())?;
state.serialize_field("bus_number", &self.bus_number())?;
state.serialize_field("device_function_number", &self.device_function_number())?;
state.serialize_field("data_bus_width", &self.data_bus_width())?;
state.serialize_field("peer_group_count", &self.peer_group_count())?;
state.serialize_field("peer_group_iterator", &self.peer_group_iterator())?;
state.serialize_field("slot_information", &self.slot_information())?;
state.serialize_field("slot_physical_width", &self.slot_physical_width())?;
state.serialize_field("slot_pitch", &self.slot_pitch())?;
state.end()
}
}
pub struct SystemSlotTypeData {
pub raw: u8,
pub value: SystemSlotType,
}
impl Deref for SystemSlotTypeData {
type Target = SystemSlotType;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl From<u8> for SystemSlotTypeData {
fn from(raw: u8) -> Self {
use M2SlotType::*;
use MXMSlotType::*;
use PciExpressGeneration::*;
use PciExpressSlotWidth::*;
use SystemSlotType::*;
SystemSlotTypeData {
value: match raw {
0x01 => Other,
0x02 => Unknown,
0x03 => Isa,
0x04 => Mca,
0x05 => Eisa,
0x06 => Pci,
0x07 => Pcmcia,
0x08 => VlVesa,
0x09 => Proprietary,
0x0A => ProcessorCardSlot,
0x0B => ProprietaryMemoryCardSlot,
0x0C => IORiserCardSlot,
0x0D => NuBus,
0x0E => Pci66MhzCapable,
0x0F => Agp(AgpSlotWidth::X1),
0x10 => Agp(AgpSlotWidth::X2),
0x11 => Agp(AgpSlotWidth::X4),
0x12 => PciX,
0x13 => Agp(AgpSlotWidth::X8),
0x14 => M2(M2Socket1DP),
0x15 => M2(M2Socket1SD),
0x16 => M2(M2Socket2),
0x17 => M2(M2Socket3),
0x18 => Mxm(MxmTypeI),
0x19 => Mxm(MxmTypeII),
0x1A => Mxm(MxmTypeIIIStandard),
0x1B => Mxm(MxmTypeIIIHE),
0x1C => Mxm(MxmTypeIV),
0x1D => Mxm(Mxm3TypeA),
0x1E => Mxm(Mxm3TypeB),
0x1F => PciExpress(PCIExpressGen2, Sff8639),
0x20 => PciExpress(PCIExpressGen3, Sff8639),
0x21 => PciExpress(Undefined, PciExpressMini52WithKeepouts),
0x22 => PciExpress(Undefined, PciExpressMini52WithoutKeepouts),
0x23 => PciExpress(Undefined, PciExpressMini76),
0x24 => PciExpress(PCIExpressGen4, Sff8639),
0x25 => PciExpress(PCIExpressGen5, Sff8639),
0x26 => OcpNic30SmallFormFactor,
0x27 => OcpNic30LargeFormFactor,
0x28 => OcpNicPriorTo30,
0x30 => CxlFlexbus1,
0xA0 => PC98C20,
0xA1 => PC98C24,
0xA2 => PC98E,
0xA3 => PC98LocalBus,
0xA4 => PC98Card,
0xA5 => PciExpress(PCIExpressGen1, UndefinedSlotWidth),
0xA6 => PciExpress(PCIExpressGen1, X1),
0xA7 => PciExpress(PCIExpressGen1, X2),
0xA8 => PciExpress(PCIExpressGen1, X4),
0xA9 => PciExpress(PCIExpressGen1, X8),
0xAA => PciExpress(PCIExpressGen1, X16),
0xAB => PciExpress(PCIExpressGen2, UndefinedSlotWidth),
0xAC => PciExpress(PCIExpressGen2, X1),
0xAD => PciExpress(PCIExpressGen2, X2),
0xAE => PciExpress(PCIExpressGen2, X4),
0xAF => PciExpress(PCIExpressGen2, X8),
0xB0 => PciExpress(PCIExpressGen2, X16),
0xB1 => PciExpress(PCIExpressGen3, UndefinedSlotWidth),
0xB2 => PciExpress(PCIExpressGen3, X1),
0xB3 => PciExpress(PCIExpressGen3, X2),
0xB4 => PciExpress(PCIExpressGen3, X4),
0xB5 => PciExpress(PCIExpressGen3, X8),
0xB6 => PciExpress(PCIExpressGen3, X16),
0xB8 => PciExpress(PCIExpressGen4, UndefinedSlotWidth),
0xB9 => PciExpress(PCIExpressGen4, X1),
0xBA => PciExpress(PCIExpressGen4, X2),
0xBB => PciExpress(PCIExpressGen4, X4),
0xBC => PciExpress(PCIExpressGen4, X8),
0xBD => PciExpress(PCIExpressGen4, X16),
0xBE => PciExpress(PCIExpressGen5, UndefinedSlotWidth),
0xBF => PciExpress(PCIExpressGen5, X1),
0xC0 => PciExpress(PCIExpressGen5, X2),
0xC1 => PciExpress(PCIExpressGen5, X4),
0xC2 => PciExpress(PCIExpressGen5, X8),
0xC3 => PciExpress(PCIExpressGen5, X16),
0xC4 => PciExpress(PCIExpressGen6, UndefinedSlotWidth),
0xC5 => EnterpriseAndDataCenter1UE1,
0xC6 => EnterpriseAndDataCenter3InE3,
_ => None,
},
raw,
}
}
}
impl fmt::Debug for SystemSlotTypeData {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SystemSlotTypeData>())
.field("raw", &self.raw)
.field("value", &self.value)
.finish()
}
}
impl Serialize for SystemSlotTypeData {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SystemSlotTypeData", 2)?;
state.serialize_field("raw", &self.raw)?;
state.serialize_field("value", &self.value)?;
state.end()
}
}
impl fmt::Display for SystemSlotTypeData {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match &self.value {
SystemSlotType::None => write!(f, "{}", &self.raw),
_ => write!(f, "{:?}", &self.value),
}
}
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum SystemSlotType {
Other,
Unknown,
Isa,
Mca,
Eisa,
Pci,
Pcmcia,
VlVesa,
Proprietary,
ProcessorCardSlot,
ProprietaryMemoryCardSlot,
IORiserCardSlot,
NuBus,
Pci66MhzCapable,
Agp(AgpSlotWidth),
Mxm(MXMSlotType),
PciX,
M2(M2SlotType),
OcpNic30SmallFormFactor,
OcpNic30LargeFormFactor,
OcpNicPriorTo30,
CxlFlexbus1,
PC98C20,
PC98C24,
PC98E,
PC98LocalBus,
PC98Card,
PciExpress(PciExpressGeneration, PciExpressSlotWidth),
EnterpriseAndDataCenter1UE1,
EnterpriseAndDataCenter3InE3,
None,
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum PciExpressGeneration {
PCIExpressGen1,
PCIExpressGen2,
PCIExpressGen3,
PCIExpressGen4,
PCIExpressGen5,
PCIExpressGen6,
Undefined,
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum PciExpressSlotWidth {
UndefinedSlotWidth,
X1,
X2,
X4,
X8,
X16,
Sff8639,
PciExpressMini52WithKeepouts,
PciExpressMini52WithoutKeepouts,
PciExpressMini76,
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum AgpSlotWidth {
X1,
X2,
X4,
X8,
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum MXMSlotType {
MxmTypeI,
MxmTypeII,
MxmTypeIIIStandard,
MxmTypeIIIHE,
MxmTypeIV,
Mxm3TypeA,
Mxm3TypeB,
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum M2SlotType {
M2Socket1DP,
M2Socket1SD,
M2Socket2,
M2Socket3,
}
pub struct SlotWidthData {
pub raw: u8,
pub value: SlotWidth,
}
impl Deref for SlotWidthData {
type Target = SlotWidth;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl From<u8> for SlotWidthData {
fn from(raw: u8) -> Self {
SlotWidthData {
value: match raw {
0x01 => SlotWidth::Other,
0x02 => SlotWidth::Unknown,
0x03 => SlotWidth::Bit8,
0x04 => SlotWidth::Bit16,
0x05 => SlotWidth::Bit32,
0x06 => SlotWidth::Bit64,
0x07 => SlotWidth::Bit128,
0x08 => SlotWidth::X1,
0x09 => SlotWidth::X2,
0x0A => SlotWidth::X4,
0x0B => SlotWidth::X8,
0x0C => SlotWidth::X12,
0x0D => SlotWidth::X16,
0x0E => SlotWidth::X32,
_ => SlotWidth::None,
},
raw,
}
}
}
impl fmt::Debug for SlotWidthData {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SlotWidthData>())
.field("raw", &self.raw)
.field("value", &self.value)
.finish()
}
}
impl Serialize for SlotWidthData {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SlotWidthData", 2)?;
state.serialize_field("raw", &self.raw)?;
state.serialize_field("value", &self.value)?;
state.end()
}
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum SlotWidth {
Other,
Unknown,
Bit8,
Bit16,
Bit32,
Bit64,
Bit128,
X1,
X2,
X4,
X8,
X12,
X16,
X32,
None,
}
pub struct SlotCurrentUsageData {
pub raw: u8,
pub value: SlotCurrentUsage,
}
impl Deref for SlotCurrentUsageData {
type Target = SlotCurrentUsage;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl From<u8> for SlotCurrentUsageData {
fn from(raw: u8) -> Self {
SlotCurrentUsageData {
value: match raw {
0x01 => SlotCurrentUsage::Other,
0x02 => SlotCurrentUsage::Unknown,
0x03 => SlotCurrentUsage::Available,
0x04 => SlotCurrentUsage::InUse,
0x05 => SlotCurrentUsage::Unavailable,
_ => SlotCurrentUsage::None,
},
raw,
}
}
}
impl fmt::Debug for SlotCurrentUsageData {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SlotCurrentUsageData>())
.field("raw", &self.raw)
.field("value", &self.value)
.finish()
}
}
impl Serialize for SlotCurrentUsageData {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SlotCurrentUsageData", 2)?;
state.serialize_field("raw", &self.raw)?;
state.serialize_field("value", &self.value)?;
state.end()
}
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum SlotCurrentUsage {
Other,
Unknown,
Available,
InUse,
Unavailable,
None,
}
pub struct SlotLengthData {
pub raw: u8,
pub value: SlotLength,
}
impl Deref for SlotLengthData {
type Target = SlotLength;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl From<u8> for SlotLengthData {
fn from(raw: u8) -> Self {
use SlotLength::*;
SlotLengthData {
value: match raw {
0x01 => Other,
0x02 => Unknown,
0x03 => ShortLength,
0x04 => LongLength,
0x05 => DriveFormFactor25,
0x06 => DriveFormFactor35,
_ => None,
},
raw,
}
}
}
impl fmt::Debug for SlotLengthData {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SlotLengthData>())
.field("raw", &self.raw)
.field("value", &self.value)
.finish()
}
}
impl Serialize for SlotLengthData {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SlotLengthData", 2)?;
state.serialize_field("raw", &self.raw)?;
state.serialize_field("value", &self.value)?;
state.end()
}
}
#[derive(Serialize, Debug, PartialEq, Eq)]
pub enum SlotLength {
Other,
Unknown,
ShortLength,
LongLength,
DriveFormFactor25,
DriveFormFactor35,
None,
}
#[derive(PartialEq, Eq)]
pub struct SystemSlotCharacteristics1 {
pub raw: u8,
}
impl Deref for SystemSlotCharacteristics1 {
type Target = u8;
fn deref(&self) -> &Self::Target {
&self.raw
}
}
impl From<u8> for SystemSlotCharacteristics1 {
fn from(raw: u8) -> Self {
SystemSlotCharacteristics1 { raw }
}
}
impl SystemSlotCharacteristics1 {
pub fn unknown(&self) -> bool {
self.raw & 0x01 == 0x01
}
pub fn provides5_volts(&self) -> bool {
self.raw & 0x02 == 0x02
}
pub fn provides33_volts(&self) -> bool {
self.raw & 0x04 == 0x04
}
pub fn shared(&self) -> bool {
self.raw & 0x08 == 0x08
}
pub fn supports_pc_card16(&self) -> bool {
self.raw & 0x10 == 0x10
}
pub fn supports_card_bus(&self) -> bool {
self.raw & 0x20 == 0x20
}
pub fn supports_zoom_video(&self) -> bool {
self.raw & 0x40 == 0x40
}
pub fn supports_modem_ring_resume(&self) -> bool {
self.raw & 0x80 == 0x80
}
}
impl fmt::Debug for SystemSlotCharacteristics1 {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SystemSlotCharacteristics1>())
.field("raw", &self.raw)
.field("unknown", &self.unknown())
.field("provides5_volts", &self.provides5_volts())
.field("provides33_volts", &self.provides33_volts())
.field("shared", &self.shared())
.field("supports_pc_card16", &self.supports_pc_card16())
.field("supports_card_bus", &self.supports_card_bus())
.field("supports_zoom_video", &self.supports_zoom_video())
.field(
"supports_modem_ring_resume",
&self.supports_modem_ring_resume(),
)
.finish()
}
}
impl Serialize for SystemSlotCharacteristics1 {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SystemSlotCharacteristics1", 9)?;
state.serialize_field("raw", &self.raw)?;
state.serialize_field("unknown", &self.unknown())?;
state.serialize_field("provides5_volts", &self.provides5_volts())?;
state.serialize_field("provides33_volts", &self.provides33_volts())?;
state.serialize_field("shared", &self.shared())?;
state.serialize_field("supports_pc_card16", &self.supports_pc_card16())?;
state.serialize_field("supports_card_bus", &self.supports_card_bus())?;
state.serialize_field("supports_zoom_video", &self.supports_zoom_video())?;
state.serialize_field(
"supports_modem_ring_resume",
&self.supports_modem_ring_resume(),
)?;
state.end()
}
}
#[derive(PartialEq, Eq)]
pub struct SystemSlotCharacteristics2 {
pub raw: u8,
}
impl Deref for SystemSlotCharacteristics2 {
type Target = u8;
fn deref(&self) -> &Self::Target {
&self.raw
}
}
impl From<u8> for SystemSlotCharacteristics2 {
fn from(raw: u8) -> Self {
SystemSlotCharacteristics2 { raw }
}
}
impl SystemSlotCharacteristics2 {
pub fn supports_power_management_event(&self) -> bool {
self.raw & 0x01 == 0x01
}
pub fn supports_hot_plug_devices(&self) -> bool {
self.raw & 0x02 == 0x02
}
pub fn supports_smbus_signal(&self) -> bool {
self.raw & 0x04 == 0x04
}
pub fn supports_bifurcation(&self) -> bool {
self.raw & 0x08 == 0x08
}
pub fn supports_suprise_removal(&self) -> bool {
self.raw & 0x10 == 0x10
}
pub fn flexbus_slot_cxl10_capable(&self) -> bool {
self.raw & 0x20 == 0x20
}
pub fn flexbus_slot_cxl20_capable(&self) -> bool {
self.raw & 0x40 == 0x40
}
}
impl fmt::Debug for SystemSlotCharacteristics2 {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SystemSlotCharacteristics2>())
.field("raw", &self.raw)
.field(
"supports_power_management_event",
&self.supports_power_management_event(),
)
.field(
"supports_hot_plug_devices",
&self.supports_hot_plug_devices(),
)
.field("supports_smbus_signal", &self.supports_smbus_signal())
.field("supports_bifurcation", &self.supports_bifurcation())
.field("supports_suprise_removal", &self.supports_suprise_removal())
.field(
"flexbus_slot_cxl10_capable",
&self.flexbus_slot_cxl10_capable(),
)
.field(
"flexbus_slot_cxl20_capable",
&self.flexbus_slot_cxl20_capable(),
)
.finish()
}
}
impl Serialize for SystemSlotCharacteristics2 {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SystemSlotCharacteristics2", 8)?;
state.serialize_field("raw", &self.raw)?;
state.serialize_field(
"supports_power_management_event",
&self.supports_power_management_event(),
)?;
state.serialize_field(
"supports_hot_plug_devices",
&self.supports_hot_plug_devices(),
)?;
state.serialize_field("supports_smbus_signal", &self.supports_smbus_signal())?;
state.serialize_field("supports_bifurcation", &self.supports_bifurcation())?;
state.serialize_field("supports_suprise_removal", &self.supports_suprise_removal())?;
state.serialize_field(
"flexbus_slot_cxl10_capable",
&self.flexbus_slot_cxl10_capable(),
)?;
state.serialize_field(
"flexbus_slot_cxl20_capable",
&self.flexbus_slot_cxl20_capable(),
)?;
state.end()
}
}
pub struct SlotPeerGroup<'a> {
system_slot: &'a SMBiosSystemSlot<'a>,
entry_offset: usize,
}
impl<'a> SlotPeerGroup<'a> {
const SIZE: usize = 5;
const SEGMENT_GROUP_NUMBER_OFFSET: usize = 0;
const BUS_NUMBER_OFFSET: usize = 2;
const DEVICE_FUNCTION_NUMBER_OFFSET: usize = 3;
const DATA_BUS_WIDTH_OFFSET: usize = 4;
fn new(system_slot: &'a SMBiosSystemSlot<'a>, entry_offset: usize) -> Self {
Self {
system_slot,
entry_offset,
}
}
pub fn segment_group_number(&self) -> Option<u16> {
self.system_slot
.parts()
.get_field_word(self.entry_offset + Self::SEGMENT_GROUP_NUMBER_OFFSET)
}
pub fn bus_number(&self) -> Option<u8> {
self.system_slot
.parts()
.get_field_byte(self.entry_offset + Self::BUS_NUMBER_OFFSET)
}
pub fn device_function_number(&self) -> Option<u8> {
self.system_slot
.parts()
.get_field_byte(self.entry_offset + Self::DEVICE_FUNCTION_NUMBER_OFFSET)
}
pub fn data_bus_width(&self) -> Option<u8> {
self.system_slot
.parts()
.get_field_byte(self.entry_offset + Self::DATA_BUS_WIDTH_OFFSET)
}
}
impl fmt::Debug for SlotPeerGroup<'_> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(std::any::type_name::<SlotPeerGroup<'_>>())
.field("segment_group_number", &self.segment_group_number())
.field("bus_number", &self.bus_number())
.field("device_function_number", &self.device_function_number())
.field("data_bus_width", &self.data_bus_width())
.finish()
}
}
impl Serialize for SlotPeerGroup<'_> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let mut state = serializer.serialize_struct("SlotPeerGroup", 4)?;
state.serialize_field("segment_group_number", &self.segment_group_number())?;
state.serialize_field("bus_number", &self.bus_number())?;
state.serialize_field("device_function_number", &self.device_function_number())?;
state.serialize_field("data_bus_width", &self.data_bus_width())?;
state.end()
}
}
pub struct SlotPeerGroupIterator<'a> {
data: &'a SMBiosSystemSlot<'a>,
current_index: usize,
current_entry: usize,
number_of_entries: usize,
}
impl<'a> SlotPeerGroupIterator<'a> {
const PEER_GROUPS_OFFSET: usize = 0x13;
fn new(data: &'a SMBiosSystemSlot<'a>) -> Self {
SlotPeerGroupIterator {
data: data,
current_index: Self::PEER_GROUPS_OFFSET,
current_entry: 0,
number_of_entries: data.peer_group_count().unwrap_or(0),
}
}
fn reset(&mut self) {
self.current_index = Self::PEER_GROUPS_OFFSET;
self.current_entry = 0;
}
}
impl<'a> IntoIterator for &'a SlotPeerGroupIterator<'a> {
type Item = SlotPeerGroup<'a>;
type IntoIter = SlotPeerGroupIterator<'a>;
fn into_iter(self) -> Self::IntoIter {
SlotPeerGroupIterator {
data: self.data,
current_index: SlotPeerGroupIterator::PEER_GROUPS_OFFSET,
current_entry: 0,
number_of_entries: self.data.peer_group_count().unwrap_or(0),
}
}
}
impl<'a> Iterator for SlotPeerGroupIterator<'a> {
type Item = SlotPeerGroup<'a>;
fn next(&mut self) -> Option<Self::Item> {
if self.current_entry == self.number_of_entries {
self.reset();
return None;
}
let next_index = self.current_index + SlotPeerGroup::SIZE;
match self
.data
.parts()
.get_field_data(self.current_index, next_index)
{
Some(_) => {
let result = SlotPeerGroup::new(self.data, self.current_index);
self.current_index = next_index;
self.current_entry += 1;
Some(result)
}
None => {
self.reset();
None
}
}
}
}
impl<'a> fmt::Debug for SlotPeerGroupIterator<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_list().entries(self.into_iter()).finish()
}
}
impl<'a> Serialize for SlotPeerGroupIterator<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let groups: Vec<SlotPeerGroup<'_>> = self.into_iter().collect();
let mut seq = serializer.serialize_seq(Some(groups.len()))?;
for e in groups {
seq.serialize_element(&e)?;
}
seq.end()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn unit_test() {
let struct_type9 = vec![
0x09, 0x11, 0x1C, 0x00, 0x01, 0xA5, 0x0D, 0x04, 0x04, 0x00, 0x00, 0x0C, 0x01, 0x00,
0x00, 0x00, 0x08, 0x4A, 0x36, 0x42, 0x32, 0x00, 0x00,
];
let parts = UndefinedStruct::new(&struct_type9);
let test_struct = SMBiosSystemSlot::new(&parts);
assert_eq!(test_struct.slot_designation(), Some("J6B2".to_string()));
assert_eq!(
*test_struct.system_slot_type().unwrap(),
SystemSlotType::PciExpress(
PciExpressGeneration::PCIExpressGen1,
PciExpressSlotWidth::UndefinedSlotWidth,
)
);
assert_eq!(*test_struct.slot_data_bus_width().unwrap(), SlotWidth::X16);
assert!(test_struct.data_bus_width().is_none());
let struct_type9 = vec![
0x09, 0x1C, 0x1C, 0x00, 0x01, 0xA5, 0x0D, 0x04, 0x04, 0x00, 0x00, 0x0C, 0x01, 0x00,
0x00, 0x00, 0x08, 0x99, 0x01, 0x23, 0x01, 0x04, 0x05, 0x06, 0x07, 0x08, 0xAB, 0x09,
0x4A, 0x36, 0x42, 0x32, 0x00, 0x00,
];
let parts = UndefinedStruct::new(&struct_type9);
let test_struct = SMBiosSystemSlot::new(&parts);
assert_eq!(test_struct.data_bus_width(), Some(0x99));
assert_eq!(test_struct.peer_group_count(), Some(0x01));
let mut iterator = test_struct.peer_group_iterator().into_iter();
let first = iterator.next().unwrap();
assert_eq!(first.segment_group_number(), Some(0x0123));
assert_eq!(first.bus_number(), Some(0x04));
assert_eq!(first.device_function_number(), Some(0x05));
assert_eq!(first.data_bus_width(), Some(0x06));
assert_eq!(test_struct.slot_information(), Some(0x07));
assert_eq!(*test_struct.slot_physical_width().unwrap(), SlotWidth::X1);
assert_eq!(test_struct.slot_pitch(), Some(0x09AB));
println!("{:?}", test_struct);
}
}