-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path093E3BB0DE
1483 lines (1426 loc) · 49.7 KB
/
093E3BB0DE
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
01: None 00.0: 10105 BIOS
[Created at bios.186]
Unique ID: rdCR.lZF+r4EgHp4
Hardware Class: bios
VESA BIOS Version: 3.0
Current VESA Mode: 0x0118
BIOS Keyboard LED Status:
Scroll Lock: off
Num Lock: on
Caps Lock: off
Serial Port 0: 0x3f8
Base Memory: 625 kB
PnP BIOS: @@@0000
MP spec rev 1.4 info:
OEM id: "A M I"
Product id: "ALASKA"
4 CPUs (0 disabled)
SMBIOS Version: 3.0
BIOS Info: #0
Vendor: "American Megatrends Inc."
Version: "5.12"
Date: "01/26/2017"
Start Address: 0xf0000
ROM Size: 16384 kB
Features: 0x0d03000000013f8b9880
PCI supported
BIOS flashable
BIOS shadowing allowed
CD boot supported
Selectable boot supported
BIOS ROM socketed
EDD spec supported
1.2MB Floppy supported
720kB Floppy supported
2.88MB Floppy supported
Print Screen supported
8042 Keyboard Services supported
Serial Services supported
Printer Services supported
ACPI supported
USB Legacy supported
BIOS Boot Spec supported
System Info: #1
Product: "H110M4-C2H"
Version: "1.0"
Serial: --
UUID: --
Wake-up: 0x06 (Power Switch)
Board Info: #2
Product: "H110M4-C2H"
Version: "1.0"
Serial: --
Asset Tag: --
Type: 0x0a (Motherboard)
Features: 0x09
Hosting Board
Replaceable
Location: "Default string"
Chassis: #3
Chassis Info: #3
Version: "1.0"
Serial: --
Asset Tag: --
Type: 0x03 (Desktop)
Bootup State: 0x03 (Safe)
Power Supply State: 0x03 (Safe)
Thermal State: 0x03 (Safe)
Security Status: 0x03 (None)
Port Connector: #4
Type: 0x0e (Mouse Port)
Internal Designator: "J1A1"
External Designator: "PS2Mouse"
External Connector: 0x0f (PS/2)
Port Connector: #5
Type: 0x0d (Keyboard Port)
Internal Designator: "J1A1"
External Designator: "Keyboard"
External Connector: 0x0f (PS/2)
Port Connector: #6
Type: 0xff (Other)
Internal Designator: "J2A1"
External Designator: "TV Out"
External Connector: 0x1d (Mini-Centronics Type-14)
Port Connector: #7
Type: 0x09 (Serial Port 16550A Compatible)
Internal Designator: "J2A2A"
External Designator: "COM A"
External Connector: 0x08 (DB-9 pin male)
Port Connector: #8
Type: 0x1c (Video Port)
Internal Designator: "J2A2B"
External Designator: "Video"
External Connector: 0x07 (DB-15 pin female)
Port Connector: #9
Type: 0x10 (USB)
Internal Designator: "J3A1"
External Designator: "USB1"
External Connector: 0x12 (Access Bus [USB])
Port Connector: #10
Type: 0x10 (USB)
Internal Designator: "J3A1"
External Designator: "USB2"
External Connector: 0x12 (Access Bus [USB])
Port Connector: #11
Type: 0x10 (USB)
Internal Designator: "J3A1"
External Designator: "USB3"
External Connector: 0x12 (Access Bus [USB])
Port Connector: #12
Type: 0xff (Other)
Internal Designator: "J9A1 - TPM HDR"
Internal Connector: 0xff (Other)
Port Connector: #13
Type: 0xff (Other)
Internal Designator: "J9C1 - PCIE DOCKING CONN"
Internal Connector: 0xff (Other)
Port Connector: #14
Type: 0xff (Other)
Internal Designator: "J2B3 - CPU FAN"
Internal Connector: 0xff (Other)
Port Connector: #15
Type: 0xff (Other)
Internal Designator: "J6C2 - EXT HDMI"
Internal Connector: 0xff (Other)
Port Connector: #16
Type: 0xff (Other)
Internal Designator: "J3C1 - GMCH FAN"
Internal Connector: 0xff (Other)
Port Connector: #17
Type: 0xff (Other)
Internal Designator: "J1D1 - ITP"
Internal Connector: 0xff (Other)
Port Connector: #18
Type: 0xff (Other)
Internal Designator: "J9E2 - MDC INTPSR"
Internal Connector: 0xff (Other)
Port Connector: #19
Type: 0xff (Other)
Internal Designator: "J9E4 - MDC INTPSR"
Internal Connector: 0xff (Other)
Port Connector: #20
Type: 0xff (Other)
Internal Designator: "J9E3 - LPC HOT DOCKING"
Internal Connector: 0xff (Other)
Port Connector: #21
Type: 0xff (Other)
Internal Designator: "J9E1 - SCAN MATRIX"
Internal Connector: 0xff (Other)
Port Connector: #22
Type: 0xff (Other)
Internal Designator: "J9G1 - LPC SIDE BAND"
Internal Connector: 0xff (Other)
Port Connector: #23
Type: 0xff (Other)
Internal Designator: "J8F1 - UNIFIED"
Internal Connector: 0xff (Other)
Port Connector: #24
Type: 0xff (Other)
Internal Designator: "J6F1 - LVDS"
Internal Connector: 0xff (Other)
Port Connector: #25
Type: 0xff (Other)
Internal Designator: "J2F1 - LAI FAN"
Internal Connector: 0xff (Other)
Port Connector: #26
Type: 0xff (Other)
Internal Designator: "J2G1 - GFX VID"
Internal Connector: 0xff (Other)
Port Connector: #27
Type: 0xff (Other)
Internal Designator: "J1G6 - AC JACK"
Internal Connector: 0xff (Other)
System Slot: #28
Designation: "J6B2"
Type: 0xaa (Other)
Bus Width: 0x0d (Other)
Status: 0x04 (In Use)
Length: 0x04 (Long)
Slot ID: 0
Characteristics: 0x010c (3.3 V, Shared, PME#)
System Slot: #29
Designation: "J6B1"
Type: 0xa6 (Other)
Bus Width: 0x08 (Other)
Status: 0x03 (Available)
Length: 0x03 (Short)
Slot ID: 1
Characteristics: 0x010c (3.3 V, Shared, PME#)
System Slot: #30
Designation: "J6D1"
Type: 0x06 (PCI)
Bus Width: 0x05 (32 bit)
Status: 0x03 (Available)
Length: 0x03 (Short)
Slot ID: 2
Characteristics: 0x010c (3.3 V, Shared, PME#)
System Slot: #31
Designation: "J7B1"
Type: 0x06 (PCI)
Bus Width: 0x05 (32 bit)
Status: 0x03 (Available)
Length: 0x03 (Short)
Slot ID: 3
Characteristics: 0x010c (3.3 V, Shared, PME#)
On Board Devices: #32
Video: "To Be Filled By O.E.M."
OEM Strings: #33
Default string
System Config Options (Jumpers & Switches) #34:
Default string
Type 32 Record: #35
Data 00: 20 14 23 00 00 00 00 00 00 00 00 00 00 00 00 00
Data 10: 00 00 00 00
Type 34 Record: #36
Data 00: 22 0b 24 00 01 04 00 00 00 00 03
String 1: "LM78-1"
Type 26 Record: #37
Data 00: 1a 16 25 00 01 67 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00 00 80
String 1: "LM78A"
Type 36 Record: #38
Data 00: 24 10 26 00 01 00 02 00 03 00 04 00 05 00 06 00
Type 35 Record: #39
Data 00: 23 0b 27 00 01 24 00 25 00 26 00
String 1: "Default string"
Type 28 Record: #40
Data 00: 1c 16 28 00 01 67 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00 00 80
String 1: "LM78A"
Type 36 Record: #41
Data 00: 24 10 29 00 01 00 02 00 03 00 04 00 05 00 06 00
Type 35 Record: #42
Data 00: 23 0b 2a 00 01 24 00 28 00 29 00
String 1: "Default string"
Type 27 Record: #43
Data 00: 1b 0f 2b 00 28 00 67 01 00 00 00 00 00 80 01
String 1: "Cooling Dev 1"
Type 36 Record: #44
Data 00: 24 10 2c 00 01 00 02 00 03 00 04 00 05 00 06 00
Type 35 Record: #45
Data 00: 23 0b 2d 00 01 24 00 2b 00 2c 00
String 1: "Default string"
Type 27 Record: #46
Data 00: 1b 0f 2e 00 28 00 67 01 00 00 00 00 00 80 00
Type 36 Record: #47
Data 00: 24 10 2f 00 01 00 02 00 03 00 04 00 05 00 06 00
Type 35 Record: #48
Data 00: 23 0b 30 00 01 24 00 2e 00 2f 00
String 1: "Default string"
Type 29 Record: #49
Data 00: 1d 16 31 00 01 67 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00 00 80
String 1: "ABC"
Type 36 Record: #50
Data 00: 24 10 32 00 00 80 00 80 00 80 00 80 00 80 00 80
Type 35 Record: #51
Data 00: 23 0b 33 00 01 24 00 31 00 32 00
String 1: "Default string"
Type 26 Record: #52
Data 00: 1a 16 34 00 01 6a 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00 00 80
String 1: "LM78A"
Type 28 Record: #53
Data 00: 1c 16 35 00 01 6a 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00 00 80
String 1: "LM78A"
Type 27 Record: #54
Data 00: 1b 0f 36 00 35 00 67 01 00 00 00 00 00 80 01
String 1: "Cooling Dev 1"
Type 29 Record: #55
Data 00: 1d 16 37 00 01 6a 00 80 00 80 00 80 00 80 00 80
Data 10: 00 00 00 00 00 80
String 1: "ABC"
Type 39 Record: #56
Data 00: 27 16 38 00 01 01 02 03 04 05 06 07 00 80 a2 11
Data 10: 34 00 36 00 37 00
String 1: "To Be Filled By O.E.M."
String 2: "To Be Filled By O.E.M."
String 3: "To Be Filled By O.E.M."
String 4: "To Be Filled By O.E.M."
String 5: "To Be Filled By O.E.M."
String 6: "To Be Filled By O.E.M."
String 7: "To Be Filled By O.E.M."
Type 41 Record: #57
Data 00: 29 0b 39 00 01 83 01 00 00 80 10
String 1: "Onboard Intel Graphics"
Type 41 Record: #58
Data 00: 29 0b 3a 00 01 85 01 00 00 00 00
String 1: "Onboard Realtek Ethernet"
Type 41 Record: #59
Data 00: 29 0b 3b 00 01 87 01 00 00 ff ff
String 1: "Onboard Realtek HD Audio"
Physical Memory Array: #60
Use: 0x03 (System memory)
Location: 0x03 (Motherboard)
Slots: 2
Max. Size: 32 GB
ECC: 0x03 (None)
Memory Device: #61
Location: "ChannelA-DIMM0"
Bank: "BANK 0"
Manufacturer: "859B"
Serial: --
Asset Tag: --
Part Number: "CT8G4DFS824A.M8FB"
Memory Array: #60
Form Factor: 0x09 (DIMM)
Type: 0x1a (Other)
Type Detail: 0x4080 (Synchronous)
Data Width: 64 bits
Size: 8 GB
Speed: 2400 MHz
Memory Device: #62
Location: "ChannelB-DIMM0"
Bank: "BANK 2"
Memory Array: #60
Form Factor: 0x02 (Unknown)
Type: 0x02 (Unknown)
Data Width: 0 bits
Size: No Memory Installed
Memory Array Mapping: #63
Memory Array: #60
Partition Width: 1
Start Address: 0x0000000000000000
End Address: 0x0000000200000000
Cache Info: #64
Designation: "L1 Cache"
Level: L1
State: Enabled
Mode: 0x01 (Write Back)
Location: 0x00 (Internal, Not Socketed)
ECC: 0x04 (Parity)
Type: 0x05 (Unified)
Associativity: 0x07 (8-way Set-Associative)
Max. Size: 256 kB
Current Size: 256 kB
Supported SRAM Types: 0x0020 (Synchronous)
Current SRAM Type: 0x0020 (Synchronous)
Cache Info: #65
Designation: "L2 Cache"
Level: L2
State: Enabled
Mode: 0x01 (Write Back)
Location: 0x00 (Internal, Not Socketed)
ECC: 0x05 (Single-bit)
Type: 0x05 (Unified)
Associativity: 0x05 (4-way Set-Associative)
Max. Size: 1024 kB
Current Size: 1024 kB
Supported SRAM Types: 0x0020 (Synchronous)
Current SRAM Type: 0x0020 (Synchronous)
Cache Info: #66
Designation: "L3 Cache"
Level: L3
State: Enabled
Mode: 0x01 (Write Back)
Location: 0x00 (Internal, Not Socketed)
ECC: 0x06 (Multi-bit)
Type: 0x05 (Unified)
Associativity: 0x09 (Other)
Max. Size: 6144 kB
Current Size: 6144 kB
Supported SRAM Types: 0x0020 (Synchronous)
Current SRAM Type: 0x0020 (Synchronous)
Processor Info: #67
Socket: "U3E1"
Socket Type: 0x01 (Other)
Socket Status: Populated
Type: 0x03 (CPU)
Family: 0xcd (Other)
Manufacturer: "Intel(R) Corporation"
Version: "Intel(R) Core(TM) i5-7400 CPU @ 3.00GHz"
Serial: --
Asset Tag: --
Part Number: "To Be Filled By O.E.M."
Processor ID: 0xbfebfbff000906e9
Status: 0x01 (Enabled)
Voltage: 0.9 V
External Clock: 100 MHz
Max. Speed: 8300 MHz
Current Speed: 3000 MHz
L1 Cache: #64
L2 Cache: #65
L3 Cache: #66
Memory Device Mapping: #68
Memory Device: #61
Array Mapping: #63
Interleave Pos: 0
Interleaved Depth: 0
Start Address: 0x0000000000000000
End Address: 0x0000000200000000
Type 130 Record: #69
Data 00: 82 14 45 00 24 41 4d 54 00 00 00 00 00 a5 af 02
Data 10: c0 00 00 00
Type 131 Record: #70
Data 00: 83 40 46 00 31 00 00 00 0a 00 00 00 00 00 01 00
Data 10: f8 00 43 a1 00 00 00 00 01 00 00 00 06 00 0b 00
Data 20: ac 04 0a 00 00 00 00 00 fe 00 ff ff 00 00 00 00
Data 30: 00 00 00 00 22 00 00 00 76 50 72 6f 00 00 00 00
Type 221 Record: #71
Data 00: dd 1a 47 00 03 01 00 01 04 00 00 00 02 00 00 00
Data 10: 00 42 00 03 00 00 05 00 00 00
String 1: "Reference Code - CPU"
String 2: "uCode Version"
String 3: "TXT ACM version"
Type 221 Record: #72
Data 00: dd 1a 48 00 03 01 00 01 04 00 00 00 02 00 0a 00
Data 10: 00 01 00 03 04 0b 06 0a ac 04
String 1: "Reference Code - ME 11.0"
String 2: "MEBx version"
String 3: "ME Firmware Version"
String 4: "Consumer SKU"
Type 221 Record: #73
Data 00: dd 4b 49 00 0a 01 00 01 04 00 00 00 02 03 ff ff
Data 10: ff ff ff 04 00 ff ff ff 31 00 05 00 ff ff ff 31
Data 20: 00 06 00 ff ff ff ff ff 07 00 3e 00 00 00 00 08
Data 30: 00 34 00 00 00 00 09 00 0b 00 00 00 00 0a 00 3e
Data 40: 00 00 00 00 0b 00 34 00 00 00 00
String 1: "Reference Code - SKL PCH"
String 2: "PCH-CRID Status"
String 3: "Disabled"
String 4: "PCH-CRID Original Value"
String 5: "PCH-CRID New Value"
String 6: "OPROM - RST - RAID"
String 7: "SKL PCH H Bx Hsio Version"
String 8: "SKL PCH H Dx Hsio Version"
String 9: "KBL PCH H Ax Hsio Version"
String 10: "SKL PCH LP Bx Hsio Version"
String 11: "SKL PCH LP Cx Hsio Version"
Type 221 Record: #74
Data 00: dd 36 4a 00 07 01 00 01 04 00 00 00 02 00 01 04
Data 10: 00 00 00 03 00 01 04 00 00 00 04 05 ff ff ff ff
Data 20: ff 06 00 ff ff ff 05 00 07 00 ff ff ff 05 00 08
Data 30: 00 ff ff ff 02 03
String 1: "Reference Code - SA - System Agent"
String 2: "Reference Code - MRC"
String 3: "SA - PCIe Version"
String 4: "SA-CRID Status"
String 5: "Disabled"
String 6: "SA-CRID Original Value"
String 7: "SA-CRID New Value"
String 8: "OPROM - VBIOS"
Type 221 Record: #75
Data 00: dd 67 4b 00 0e 01 00 00 00 00 00 00 02 00 ff ff
Data 10: ff ff ff 03 04 ff ff ff ff ff 05 06 ff ff ff ff
Data 20: ff 07 08 ff ff ff ff ff 09 00 00 00 00 00 00 0a
Data 30: 00 ff ff ff ff ff 0b 00 ff ff 00 00 00 0c 00 ff
Data 40: ff ff ff ff 0d 00 02 00 00 00 00 0e 00 ff ff ff
Data 50: ff ff 0f 00 ff ff ff ff ff 10 11 01 03 04 01 00
Data 60: 12 00 00 07 03 00 00
String 1: "Lan Phy Version"
String 2: "Sensor Firmware Version"
String 3: "Debug Mode Status"
String 4: "Disabled"
String 5: "Performance Mode Status"
String 6: "Disabled"
String 7: "Debug Use USB(Disabled:Serial)"
String 8: "Disabled"
String 9: "ICC Overclocking Version"
String 10: "UNDI Version"
String 11: "EC FW Version"
String 12: "GOP Version"
String 13: "BIOS Guard Version"
String 14: "Base EC FW Version"
String 15: "EC-EC Protocol Version"
String 16: "Royal Park Version"
String 17: "BP1.3.4.0_RP01"
String 18: "Platform Version"
Type 136 Record: #76
Data 00: 88 06 4c 00 00 00
Group Associations: #77
Group Name: "Firmware Version Info"
Items: #71, #72, #73, #74, #75
Language Info: #78
Languages: en|US|iso8859-1, es|ES|iso8859-1, zh|CN|unicode
Current: en|US|iso8859-1
Group Associations: #79
Group Name: "$MEI"
Items: #0
Type 219 Record: #80
Data 00: db 51 50 00 01 03 01 45 02 00 90 06 01 00 66 20
Data 10: 00 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02
Data 20: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
Data 30: ff ff ff ff ff ff ff ff 03 00 00 00 80 00 00 00
Data 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Data 50: 00
String 1: "MEI1"
String 2: "MEI2"
String 3: "MEI3"
Type 150 Record: #81
Data 00: 96 5d 51 00 24 50 43 43 48 49 50 53 4d 6f 64 65
Data 10: 6c 4e 61 6d 65 20 31 2e 30 52 30 31 32 36 31 37
Data 20: 24 5f 70 41 54 48 5f 48 31 31 30 2d 31 09 20 20
Data 30: 20 08 00 10 00 00 00 01 20 20 20 20 20 20 20 20
Data 40: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
Data 50: 20 20 20 20 20 20 20 20 20 20 20 20 20
Type 150 Record: #82
Data 00: 96 96 52 00 5f 62 4c 32 5f 32 24 42 49 4f 53 4c
Data 10: 4f 43 4b 46 55 4e 43 54 49 4f 4e 20 45 4c 49 54
Data 20: 45 47 52 4f 55 50 20 20 20 20 20 20 20 20 20 20
Data 30: 20 20 20 20 20 20 20 20 20 20 20 20 20 48 31 31
Data 40: 30 4d 34 2d 43 32 48 20 20 20 20 20 20 20 20 20
Data 50: 20 20 20 20 20 5f 4f 5f 00 00 00 00 00 2c 00 ff
Data 60: ff ff ff ff ff ff ff ff ff ff ff ff ff 20 20 20
Data 70: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
Data 80: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
Data 90: 20 20 20 20 20 20
Type 150 Record: #83
Data 00: 96 0e 53 00 5f 65 41 50 5f 0c 30 00 00 00
Config Status: cfg=new, avail=yes, need=no, active=unknown
02: None 00.0: 11001 VESA Framebuffer
[Created at bios.459]
Unique ID: rdCR.FmCKnhCKcQ7
Hardware Class: framebuffer
Model: "NVIDIA BIOS-P/N@N11362"
Vendor: "NVIDIA Corporation"
Device: "BIOS-P/N@N11362"
SubVendor: "NVIDIA"
SubDevice:
Revision: "Chip Rev"
Memory Size: 16 MB
Memory Range: 0x01000000-0x01ffffff (rw)
Mode 0x0301: 640x480 (+640), 8 bits
Mode 0x0303: 800x600 (+800), 8 bits
Mode 0x0305: 1024x768 (+1024), 8 bits
Mode 0x0307: 1280x1024 (+1280), 8 bits
Mode 0x0311: 640x480 (+1280), 16 bits
Mode 0x0312: 640x480 (+2560), 24 bits
Mode 0x0314: 800x600 (+1600), 16 bits
Mode 0x0315: 800x600 (+3200), 24 bits
Mode 0x0317: 1024x768 (+2048), 16 bits
Mode 0x0318: 1024x768 (+4096), 24 bits
Mode 0x031a: 1280x1024 (+2560), 16 bits
Mode 0x031b: 1280x1024 (+5120), 24 bits
Mode 0x0345: 1600x1200 (+1600), 8 bits
Mode 0x0346: 1600x1200 (+3200), 16 bits
Mode 0x034a: 1600x1200 (+6400), 24 bits
Mode 0x034b: 1920x1080 (+1920), 8 bits
Mode 0x034c: 1920x1080 (+3840), 16 bits
Mode 0x034d: 1920x1080 (+7680), 24 bits
Mode 0x0371: 1360x768 (+5440), 24 bits
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 00.0: 0600 Host bridge
[Created at pci.378]
Unique ID: qLht.m6TSpfwely1
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Device Name: "Onboard Realtek Ethernet"
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x591f
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x05
Module Alias: "pci:v00008086d0000591Fsv00001019sd00009C56bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: vSkL.MuWHBUtlJiC
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Skylake PCIe Controller (x16)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1901 "Skylake PCIe Controller (x16)"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x05
Driver: "pcieport"
IRQ: 120 (no events)
Module Alias: "pci:v00008086d00001901sv00001019sd00009C56bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 08.0: 0880 System peripheral
[Created at pci.378]
Unique ID: RE4e.+ZXjXkXJ0kF
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Model: "Intel Skylake Gaussian Mixture Model"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1911 "Skylake Gaussian Mixture Model"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Memory Range: 0xdf32f000-0xdf32ffff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00001911sv00001019sd00009C56bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.378]
Unique ID: MZfG.D7gdiNAxrSE
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel Sunrise Point-H USB 3.0 xHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa12f "Sunrise Point-H USB 3.0 xHCI Controller"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xdf310000-0xdf31ffff (rw,non-prefetchable)
IRQ: 124 (27924 events)
Module Alias: "pci:v00008086d0000A12Fsv00001019sd00009C56bc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 14.2: 1180 Signal processing controller
[Created at pci.378]
Unique ID: 5Dex.1m1ByhR0KY8
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Model: "Intel Sunrise Point-H Thermal subsystem"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa131 "Sunrise Point-H Thermal subsystem"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Memory Range: 0xdf32e000-0xdf32efff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d0000A131sv00001019sd00009C56bc11sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 16.0: 0780 Communication controller
[Created at pci.378]
Unique ID: WnlC.We_m71v5fd0
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel Sunrise Point-H CSME HECI #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa13a "Sunrise Point-H CSME HECI #1"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Memory Range: 0xdf32d000-0xdf32dfff (rw,non-prefetchable,disabled)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d0000A13Asv00001019sd00009C56bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.378]
Unique ID: abAj.fyNHYSUfjFE
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Model: "Intel Sunrise Point-H SATA controller [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa102 "Sunrise Point-H SATA controller [AHCI mode]"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xdf328000-0xdf329fff (rw,non-prefetchable)
Memory Range: 0xdf32c000-0xdf32c0ff (rw,non-prefetchable)
I/O Ports: 0xf050-0xf057 (rw)
I/O Ports: 0xf040-0xf043 (rw)
I/O Ports: 0xf020-0xf03f (rw)
Memory Range: 0xdf32b000-0xdf32b7ff (rw,non-prefetchable)
IRQ: 123 (30060 events)
Module Alias: "pci:v00008086d0000A102sv00001019sd00009C56bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: z8Q3.zmMTEKjFD8F
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel Sunrise Point-H PCI Express Root Port #5"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa114 "Sunrise Point-H PCI Express Root Port #5"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0xf1
Driver: "pcieport"
IRQ: 121 (no events)
Module Alias: "pci:v00008086d0000A114sv00001019sd00009C56bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 1d.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: 1GTX.1R8T9YXIKFF
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: bridge
Model: "Intel Sunrise Point-H PCI Express Root Port #9"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa118 "Sunrise Point-H PCI Express Root Port #9"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0xf1
Driver: "pcieport"
IRQ: 122 (80 events)
Module Alias: "pci:v00008086d0000A118sv00001019sd00009C56bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 1f.0: 0601 ISA bridge
[Created at pci.378]
Unique ID: BUZT.f3yQHuOIvm9
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel Sunrise Point-H LPC Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa143 "Sunrise Point-H LPC Controller"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Module Alias: "pci:v00008086d0000A143sv00001019sd00009C56bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 1f.2: 0580 Memory controller
[Created at pci.378]
Unique ID: w7Y8.bJHD5Iplb40
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: unknown
Model: "Intel Sunrise Point-H PMC"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa121 "Sunrise Point-H PMC"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Memory Range: 0xdf324000-0xdf327fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000A121sv00001019sd00009C56bc05sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 1f.3: 0403 Audio device
[Created at pci.378]
Unique ID: nS1_.s9CkOUHs7SF
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: sound
Model: "Intel Sunrise Point-H HD Audio"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa170 "Sunrise Point-H HD Audio"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xdf320000-0xdf323fff (rw,non-prefetchable)
Memory Range: 0xdf300000-0xdf30ffff (rw,non-prefetchable)
IRQ: 126 (544 events)
Module Alias: "pci:v00008086d0000A170sv00001019sd00009C56bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 1f.4: 0c05 SMBus
[Created at pci.378]
Unique ID: fnWp.JZqn1TfDWa4
SysFS ID: /devices/pci0000:00/0000:00:1f.4
SysFS BusID: 0000:00:1f.4
Hardware Class: unknown
Model: "Intel Sunrise Point-H SMBus"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa123 "Sunrise Point-H SMBus"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x9c56
Revision: 0x31
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xdf32a000-0xdf32a0ff (rw,non-prefetchable)
I/O Ports: 0xf000-0xf01f (rw)
IRQ: 16 (46207 events)
Module Alias: "pci:v00008086d0000A123sv00001019sd00009C56bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_i801 is active
Driver Activation Cmd: "modprobe i2c_i801"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.378]
Unique ID: VCu0.W+w4IRyiPpA
Parent ID: vSkL.MuWHBUtlJiC
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "nVidia GP107 [GeForce GTX 1050 Ti]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1c82 "GP107 [GeForce GTX 1050 Ti]"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x1c82
Revision: 0xa1
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xde000000-0xdeffffff (rw,non-prefetchable)
Memory Range: 0xc0000000-0xcfffffff (ro,non-prefetchable)
Memory Range: 0xd0000000-0xd1ffffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xdf000000-0xdf07ffff (ro,non-prefetchable,disabled)
IRQ: 127 (2317 events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v000010DEd00001C82sv000010DEsd00001C82bc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nouveau is active
Driver Activation Cmd: "modprobe nouveau"
Driver Info #2:
Driver Status: nvidia_drm is active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #3:
Driver Status: nvidia is active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
28: PCI 100.1: 0403 Audio device
[Created at pci.378]
Unique ID: NXNs.6vkza+dnwm6
Parent ID: vSkL.MuWHBUtlJiC
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "nVidia Audio device"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0fb9
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x1c82
Revision: 0xa1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xdf080000-0xdf083fff (rw,non-prefetchable)
IRQ: 17 (886 events)
Module Alias: "pci:v000010DEd00000FB9sv000010DEsd00001C82bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (PCI bridge)
29: PCI 200.0: 0200 Ethernet controller
[Created at pci.378]
Unique ID: c3qJ.HgI3Twa9UZ2
Parent ID: z8Q3.zmMTEKjFD8F
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: network
Model: "Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8168 "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
SubVendor: pci 0x1019 "Elitegroup Computer Systems"
SubDevice: pci 0x8117
Revision: 0x15
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp2s0
I/O Ports: 0xd000-0xdfff (rw)
Memory Range: 0xdf204000-0xdf204fff (rw,non-prefetchable)
Memory Range: 0xdf200000-0xdf203fff (rw,non-prefetchable)
IRQ: 125 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000010ECd00008168sv00001019sd00008117bc02sc00i00"
Driver Info #0:
Driver Status: r8169 is active
Driver Activation Cmd: "modprobe r8169"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
30: PCI 300.0: 0282 WLAN controller
[Created at pci.378]
Unique ID: hAO_.m4MB2Rf6uF9
Parent ID: 1GTX.1R8T9YXIKFF
SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Qualcomm Atheros AR9485 Wireless Network Adapter"
Vendor: pci 0x168c "Qualcomm Atheros"
Device: pci 0x0032 "AR9485 Wireless Network Adapter"
SubVendor: pci 0x168c "Qualcomm Atheros"
SubDevice: pci 0x3118
Revision: 0x01
Driver: "ath9k"
Driver Modules: "ath9k", "ath9k"
Device File: wlp3s0
Features: WLAN
Memory Range: 0xdf100000-0xdf17ffff (rw,non-prefetchable)
Memory Range: 0xdf180000-0xdf18ffff (ro,non-prefetchable,disabled)
IRQ: 16 (46207 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 2.467 2.472
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v0000168Cd00000032sv0000168Csd00003118bc02sc80i00"
Driver Info #0:
Driver Status: ath9k is active
Driver Activation Cmd: "modprobe ath9k"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (PCI bridge)
31: None 00.1: 10002 LCD Monitor
[Created at monitor.97]
Unique ID: jyhG.FyfkLJJYHQF
Hardware Class: monitor
Model: "SAMSUNG S24D330"
Vendor: SAM "SAMSUNG"
Device: eisa 0x0d92 "S24D330"
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1152x864@75Hz
Resolution: 1280x720@60Hz
Resolution: 1280x1024@60Hz
Resolution: 1920x1080@60Hz
Size: 531x299 mm
Year of Manufacture: 2017
Week of Manufacture: 12
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Year of Manufacture: 2017
Week of Manufacture: 12
Detailed Timings #1:
Resolution: 1280x720
Horizontal: 1280 1390 1430 1650 (+110 +150 +370) +hsync
Vertical: 720 725 730 750 (+5 +10 +30) +vsync
Frequencies: 74.25 MHz, 45.00 kHz, 60.00 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 50-75 Hz
Hor. Sync Range: 30-81 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: z9pp.B+yZ9Ve8gC1
SysFS ID: /devices/pnp0/00:00
SysFS BusID: 00:00
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0c02
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: QL3u.BuKI+1soRmD
SysFS ID: /devices/pnp0/00:01
SysFS BusID: 00:01
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0501
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: ISA(PnP) 00.0: 0000 Unclassified device
[Created at isapnp.142]
Unique ID: tWJy.B+yZ9Ve8gC1
SysFS ID: /devices/pnp0/00:02
SysFS BusID: 00:02
Hardware Class: unknown
Model: "Unclassified device"
SubVendor: PNP "PnP"
SubDevice: eisa 0x0c02
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: ISA(PnP) 00.0: 0000 Unclassified device