-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path6054B96BC5
1825 lines (1715 loc) · 74 KB
/
6054B96BC5
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
20: PCI ff14.7: 0880 System peripheral
[Created at pci.386]
Unique ID: Q30N.unBjxOaaD42
SysFS ID: /devices/pci0000:ff/0000:ff:14.7
SysFS BusID: 0000:ff:14.7
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fbf "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Revision: 0x02
Module Alias: "pci:v00008086d00002FBFsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.NJXeyKDhLl1
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel C610/X99 series chipset 6-Port SATA Controller [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d02 "C610/X99 series chipset 6-Port SATA Controller [AHCI mode]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xf130-0xf137 (rw)
I/O Ports: 0xf120-0xf123 (rw)
I/O Ports: 0xf110-0xf117 (rw)
I/O Ports: 0xf100-0xf103 (rw)
I/O Ports: 0xf040-0xf05f (rw)
Memory Range: 0xfb23d000-0xfb23d7ff (rw,non-prefetchable)
IRQ: 33 (369 events)
Module Alias: "pci:v00008086d00008D02sv00001043sd00008600bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.tbhAVZyJUt1
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel C610/X99 series chipset PCI Express Root Port #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d10 "C610/X99 series chipset PCI Express Root Port #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0xd5
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00008086d00008D10sv00001043sd00008600bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI ff1f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: BiUj.X+GWWAOMFrF
SysFS ID: /devices/pci0000:ff/0000:ff:1f.0
SysFS BusID: 0000:ff:1f.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 VCU"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f88 "Xeon E7 v3/Xeon E5 v3/Core i7 VCU"
Revision: 0x02
Module Alias: "pci:v00008086d00002F88sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI ff0b.1: 1101 Performance counters
[Created at pci.386]
Unique ID: X6e7._YHyMGduGBA
SysFS ID: /devices/pci0000:ff/0000:ff:0b.1
SysFS BusID: 0000:ff:0b.1
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f36 "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f36
Revision: 0x02
Driver: "hswep_uncore"
Module Alias: "pci:v00008086d00002F36sv00008086sd00002F36bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI ff13.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 0KWj.yhynnfKYOA4
SysFS ID: /devices/pci0000:ff/0000:ff:13.2
SysFS BusID: 0000:ff:13.2
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2faa "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2faa
Revision: 0x02
Module Alias: "pci:v00008086d00002FAAsv00008086sd00002FAAbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI ff10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 3LOe.YD_NtokFEn6
SysFS ID: /devices/pci0000:ff/0000:ff:10.0
SysFS BusID: 0000:ff:10.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f1d "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f1d
Revision: 0x02
Module Alias: "pci:v00008086d00002F1Dsv00008086sd00002F1Dbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI ff0f.6: 0880 System peripheral
[Created at pci.386]
Unique ID: ABHB.6r__Z1Nrb5B
SysFS ID: /devices/pci0000:ff/0000:ff:0f.6
SysFS BusID: 0000:ff:0f.6
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ffe "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe0
Revision: 0x02
Module Alias: "pci:v00008086d00002FFEsv00008086sd00002FE0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI ff17.7: 0880 System peripheral
[Created at pci.386]
Unique ID: e5Xp.q7Qj076m6Y0
SysFS ID: /devices/pci0000:ff/0000:ff:17.7
SysFS BusID: 0000:ff:17.7
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fbb "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Revision: 0x02
Module Alias: "pci:v00008086d00002FBBsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI ff0c.4: 0880 System peripheral
[Created at pci.386]
Unique ID: CC96.mXoEUbt1Q_0
SysFS ID: /devices/pci0000:ff/0000:ff:0c.4
SysFS BusID: 0000:ff:0c.4
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fe4 "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe4
Revision: 0x02
Module Alias: "pci:v00008086d00002FE4sv00008086sd00002FE4bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI ff14.5: 0880 System peripheral
[Created at pci.386]
Unique ID: hP1i.syID_FLAAJ1
SysFS ID: /devices/pci0000:ff/0000:ff:14.5
SysFS BusID: 0000:ff:14.5
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fbd "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Revision: 0x02
Module Alias: "pci:v00008086d00002FBDsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.R4tnc2c8eoE
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel C610/X99 series chipset LPC Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d47 "C610/X99 series chipset LPC Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Module Alias: "pci:v00008086d00008D47sv00001043sd00008600bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI ff13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: HgX2.uduQds7maBC
SysFS ID: /devices/pci0000:ff/0000:ff:13.0
SysFS BusID: 0000:ff:13.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fa8 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fa8
Revision: 0x02
Module Alias: "pci:v00008086d00002FA8sv00008086sd00002FA8bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI ff1e.4: 0880 System peripheral
[Created at pci.386]
Unique ID: auOb.WFWGf3x2kIC
SysFS ID: /devices/pci0000:ff/0000:ff:1e.4
SysFS BusID: 0000:ff:1e.4
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f9c "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f9c
Revision: 0x02
Module Alias: "pci:v00008086d00002F9Csv00008086sd00002F9Cbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.by7Pc77zlD9
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f02 "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x02
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00002F02sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI ff0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: RXIW.406Vcu7RYKA
SysFS ID: /devices/pci0000:ff/0000:ff:0f.4
SysFS BusID: 0000:ff:0f.4
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ffc "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe0
Revision: 0x02
Module Alias: "pci:v00008086d00002FFCsv00008086sd00002FE0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI ff17.5: 0880 System peripheral
[Created at pci.386]
Unique ID: vRY8.oIXD3_sL3nF
SysFS ID: /devices/pci0000:ff/0000:ff:17.5
SysFS BusID: 0000:ff:17.5
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb9 "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Revision: 0x02
Module Alias: "pci:v00008086d00002FB9sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI ff0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: UYAR.iTktJogFc+8
SysFS ID: /devices/pci0000:ff/0000:ff:0c.2
SysFS BusID: 0000:ff:0c.2
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fe2 "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe2
Revision: 0x02
Module Alias: "pci:v00008086d00002FE2sv00008086sd00002FE2bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI ff14.3: 0880 System peripheral
[Created at pci.386]
Unique ID: yl21.E_kP0GEa158
SysFS ID: /devices/pci0000:ff/0000:ff:14.3
SysFS BusID: 0000:ff:14.3
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 ERROR Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb3 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 ERROR Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fb3
Revision: 0x02
Module Alias: "pci:v00008086d00002FB3sv00008086sd00002FB3bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI ff10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: 6dpU.cH2l1cx12mE
SysFS ID: /devices/pci0000:ff/0000:ff:10.7
SysFS BusID: 0000:ff:10.7
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f1f "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f1f
Revision: 0x02
Module Alias: "pci:v00008086d00002F1Fsv00008086sd00002F1Fbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI ff16.0: 0880 System peripheral
[Created at pci.386]
Unique ID: W+gS.1l3Y8+FaO+4
SysFS ID: /devices/pci0000:ff/0000:ff:16.0
SysFS BusID: 0000:ff:16.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f68 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers"
Revision: 0x02
Module Alias: "pci:v00008086d00002F68sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI ff1e.2: 0880 System peripheral
[Created at pci.386]
Unique ID: rEQw.SBSvUGkGwJ4
SysFS ID: /devices/pci0000:ff/0000:ff:1e.2
SysFS BusID: 0000:ff:1e.2
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f9a "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f9a
Revision: 0x02
Module Alias: "pci:v00008086d00002F9Asv00008086sd00002F9Abc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI ff0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: luBm.ePgW9+TTo01
SysFS ID: /devices/pci0000:ff/0000:ff:0c.0
SysFS BusID: 0000:ff:0c.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fe0 "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe0
Revision: 0x02
Module Alias: "pci:v00008086d00002FE0sv00008086sd00002FE0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI ff14.1: 0880 System peripheral
[Created at pci.386]
Unique ID: E64M.Awg2sS1oD60
SysFS ID: /devices/pci0000:ff/0000:ff:14.1
SysFS BusID: 0000:ff:14.1
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 Thermal Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb1 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 Thermal Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fb1
Revision: 0x02
Driver: "hswep_uncore"
Module Alias: "pci:v00008086d00002FB1sv00008086sd00002FB1bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI ff13.7: 0880 System peripheral
[Created at pci.386]
Unique ID: Lyyu.e95kFLL4oMD
SysFS ID: /devices/pci0000:ff/0000:ff:13.7
SysFS BusID: 0000:ff:13.7
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2faf "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast"
Revision: 0x02
Module Alias: "pci:v00008086d00002FAFsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.E+78Yvd7H74
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel C610/X99 series chipset MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d3a "C610/X99 series chipset MEI Controller #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Memory Range: 0xfb239000-0xfb23900f (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00008D3Asv00001043sd00008600bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI ff10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: Nzqp.aFWZSCr8emA
SysFS ID: /devices/pci0000:ff/0000:ff:10.5
SysFS BusID: 0000:ff:10.5
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f1e "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f1e
Revision: 0x02
Module Alias: "pci:v00008086d00002F1Esv00008086sd00002F1Ebc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.OL1tAkx1JY6
Parent ID: 3hqH.hRouUYqBwWB
SysFS ID: /devices/pci0000:00/0000:00:03.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "nVidia GM200 [GeForce GTX 980 Ti]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x17c8 "GM200 [GeForce GTX 980 Ti]"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x3233
Revision: 0xa1
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xfa000000-0xfaffffff (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: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 42 (912536 events)
Module Alias: "pci:v000010DEd000017C8sv00001462sd00003233bc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nvidia_drm is active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #2:
Driver Status: nvidia is active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #65 (PCI bridge)
48: PCI 1b.0: 0403 Audio device
[Created at pci.386]
Unique ID: u1Nb.hK9tuOwdSk5
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel C610/X99 series chipset HD Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d20 "C610/X99 series chipset HD Audio Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8637
Revision: 0x05
Memory Range: 0xfb230000-0xfb233fff (rw,non-prefetchable,disabled)
IRQ: 7 (no events)
Module Alias: "pci:v00008086d00008D20sv00001043sd00008637bc04sc03i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI ff1e.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 6bRF.O7OYKTXU6LC
SysFS ID: /devices/pci0000:ff/0000:ff:1e.0
SysFS BusID: 0000:ff:1e.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f98 "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f98
Revision: 0x02
Module Alias: "pci:v00008086d00002F98sv00008086sd00002F98bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI ff0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: _DLA.HP+PKm+CF45
SysFS ID: /devices/pci0000:ff/0000:ff:0f.0
SysFS BusID: 0000:ff:0f.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ff8 "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent"
Revision: 0x02
Module Alias: "pci:v00008086d00002FF8sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI ff16.7: 0880 System peripheral
[Created at pci.386]
Unique ID: aH6J.eegnV_4W4h7
SysFS ID: /devices/pci0000:ff/0000:ff:16.7
SysFS BusID: 0000:ff:16.7
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f6f "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast"
Revision: 0x02
Module Alias: "pci:v00008086d00002F6Fsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 19.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wcdH.pp13XUu+dqE
SysFS ID: /devices/pci0000:00/0000:00:19.0
SysFS BusID: 0000:00:19.0
Hardware Class: network
Device Name: "Onboard LAN"
Model: "Intel Ethernet Connection (2) I218-V"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x15a1 "Ethernet Connection (2) I218-V"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x85c4
Revision: 0x05
Driver: "e1000e"
Driver Modules: "e1000e"
Device File: eno1
Memory Range: 0xfb200000-0xfb21ffff (rw,non-prefetchable)
Memory Range: 0xfb236000-0xfb236fff (rw,non-prefetchable)
I/O Ports: 0xf000-0xf01f (rw,disabled)
IRQ: 32 (896385 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d000015A1sv00001043sd000085C4bc02sc00i00"
Driver Info #0:
Driver Status: e1000e is active
Driver Activation Cmd: "modprobe e1000e"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI ff13.5: 0880 System peripheral
[Created at pci.386]
Unique ID: cI_D.2oYKXsdDc80
SysFS ID: /devices/pci0000:ff/0000:ff:13.5
SysFS BusID: 0000:ff:13.5
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fad "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fad
Revision: 0x02
Module Alias: "pci:v00008086d00002FADsv00008086sd00002FADbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI 05.1: 0880 System peripheral
[Created at pci.386]
Unique ID: 4EQ3.YebLtC7jCiF
SysFS ID: /devices/pci0000:00/0000:00:05.1
SysFS BusID: 0000:00:05.1
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Hot Plug"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f29 "Xeon E7 v3/Xeon E5 v3/Core i7 Hot Plug"
Revision: 0x02
Module Alias: "pci:v00008086d00002F29sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI ff15.2: 0880 System peripheral
[Created at pci.386]
Unique ID: AYcf.K4LylSXFF34
SysFS ID: /devices/pci0000:ff/0000:ff:15.2
SysFS BusID: 0000:ff:15.2
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 ERROR Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb6 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 ERROR Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fb6
Revision: 0x02
Module Alias: "pci:v00008086d00002FB6sv00008086sd00002FB6bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI ff12.0: 0880 System peripheral
[Created at pci.386]
Unique ID: CZUa.eNe_zfKdLGC
SysFS ID: /devices/pci0000:ff/0000:ff:12.0
SysFS BusID: 0000:ff:12.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fa0 "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fa0
Revision: 0x02
Module Alias: "pci:v00008086d00002FA0sv00008086sd00002FA0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.WV1PzmGYch7
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel C610/X99 series chipset SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d22 "C610/X99 series chipset SMBus Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Memory Range: 0xfb23c000-0xfb23c0ff (rw,non-prefetchable,disabled)
I/O Ports: 0x580-0x59f (rw,disabled)
IRQ: 15 (no events)
Module Alias: "pci:v00008086d00008D22sv00001043sd00008600bc0Csc05i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.VHU3ctsKuzB
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DMI2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f00 "Xeon E7 v3/Xeon E5 v3/Core i7 DMI2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x02
Module Alias: "pci:v00008086d00002F00sv00008086sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI ff0b.2: 1101 Performance counters
[Created at pci.386]
Unique ID: PR7z.0bp7yXbfyr8
SysFS ID: /devices/pci0000:ff/0000:ff:0b.2
SysFS BusID: 0000:ff:0b.2
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f37 "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f37
Revision: 0x02
Driver: "hswep_uncore"
Module Alias: "pci:v00008086d00002F37sv00008086sd00002F37bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI ff13.3: 0880 System peripheral
[Created at pci.386]
Unique ID: te+Y._jUzM3RRo98
SysFS ID: /devices/pci0000:ff/0000:ff:13.3
SysFS BusID: 0000:ff:13.3
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fab "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fab
Revision: 0x02
Module Alias: "pci:v00008086d00002FABsv00008086sd00002FABbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI ff10.1: 1101 Performance counters
[Created at pci.386]
Unique ID: wftT.wUDbCTQ6TC2
SysFS ID: /devices/pci0000:ff/0000:ff:10.1
SysFS BusID: 0000:ff:10.1
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f34 "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f34
Revision: 0x02
Driver: "hswep_uncore"
Module Alias: "pci:v00008086d00002F34sv00008086sd00002F34bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI ff15.0: 0880 System peripheral
[Created at pci.386]
Unique ID: Rud_.G0HbbfKTR4C
SysFS ID: /devices/pci0000:ff/0000:ff:15.0
SysFS BusID: 0000:ff:15.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 Thermal Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb4 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 2 Thermal Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fb4
Revision: 0x02
Driver: "hswep_uncore"
Module Alias: "pci:v00008086d00002FB4sv00008086sd00002FB4bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI ff0c.5: 0880 System peripheral
[Created at pci.386]
Unique ID: 4Xex.oZKQ3+zwpz4
SysFS ID: /devices/pci0000:ff/0000:ff:0c.5
SysFS BusID: 0000:ff:0c.5
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fe5 "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe5
Revision: 0x02
Module Alias: "pci:v00008086d00002FE5sv00008086sd00002FE5bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI ff14.6: 0880 System peripheral
[Created at pci.386]
Unique ID: YkWX.NNFzSqSthh1
SysFS ID: /devices/pci0000:ff/0000:ff:14.6
SysFS BusID: 0000:ff:14.6
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fbe "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Revision: 0x02
Module Alias: "pci:v00008086d00002FBEsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 03.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 3hqH.hRouUYqBwWB
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f08 "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x02
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d00002F08sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: PCI ff0b.0: 0880 System peripheral
[Created at pci.386]
Unique ID: gn8I.gO9PzOM5Xt5
SysFS ID: /devices/pci0000:ff/0000:ff:0b.0
SysFS BusID: 0000:ff:0b.0
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f81 "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f81
Revision: 0x02
Module Alias: "pci:v00008086d00002F81sv00008086sd00002F81bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI ff13.1: 0880 System peripheral
[Created at pci.386]
Unique ID: 9+0u.AueWg7uxmLB
SysFS ID: /devices/pci0000:ff/0000:ff:13.1
SysFS BusID: 0000:ff:13.1
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f71 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2f71
Revision: 0x02
Module Alias: "pci:v00008086d00002F71sv00008086sd00002F71bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 01.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: mnDB.6N495iEgHc9
SysFS ID: /devices/pci0000:00/0000:00:01.1
SysFS BusID: 0000:00:01.1
Hardware Class: bridge
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f03 "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x02
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d00002F03sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI 1a.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: pwJ7.fe7P0Z2yWV2
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel C610/X99 series chipset USB Enhanced Host Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d2d "C610/X99 series chipset USB Enhanced Host Controller #2"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Driver: "ehci-pci"
Memory Range: 0xfb235000-0xfb2353ff (rw,non-prefetchable)
IRQ: 18 (31 events)
Module Alias: "pci:v00008086d00008D2Dsv00001043sd00008600bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI 11.4: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: bXTC.t49Z4tb1wG2
SysFS ID: /devices/pci0000:00/0000:00:11.4
SysFS BusID: 0000:00:11.4
Hardware Class: storage
Model: "Intel C610/X99 series chipset sSATA Controller [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d62 "C610/X99 series chipset sSATA Controller [AHCI mode]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xf0f0-0xf0f7 (rw)
I/O Ports: 0xf0e0-0xf0e3 (rw)
I/O Ports: 0xf0d0-0xf0d7 (rw)
I/O Ports: 0xf0c0-0xf0c3 (rw)
I/O Ports: 0xf020-0xf03f (rw)
Memory Range: 0xfb23a000-0xfb23a7ff (rw,non-prefetchable)
IRQ: 31 (118860 events)
Module Alias: "pci:v00008086d00008D62sv00001043sd00008600bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI ff0f.5: 0880 System peripheral
[Created at pci.386]
Unique ID: JsnL.bQ2F5TF84jA
SysFS ID: /devices/pci0000:ff/0000:ff:0f.5
SysFS BusID: 0000:ff:0f.5
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2ffd "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe0
Revision: 0x02
Module Alias: "pci:v00008086d00002FFDsv00008086sd00002FE0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI ff17.6: 0880 System peripheral
[Created at pci.386]
Unique ID: mm1_.JjTzXY_2b90
SysFS ID: /devices/pci0000:ff/0000:ff:17.6
SysFS BusID: 0000:ff:17.6
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fba "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Revision: 0x02
Module Alias: "pci:v00008086d00002FBAsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI ff0c.3: 0880 System peripheral
[Created at pci.386]
Unique ID: LtfG.kVG3vBn80+C
SysFS ID: /devices/pci0000:ff/0000:ff:0c.3
SysFS BusID: 0000:ff:0c.3
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fe3 "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe3
Revision: 0x02
Module Alias: "pci:v00008086d00002FE3sv00008086sd00002FE3bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI ff14.4: 0880 System peripheral
[Created at pci.386]
Unique ID: q4Ys.LYMTVhDTew0
SysFS ID: /devices/pci0000:ff/0000:ff:14.4
SysFS BusID: 0000:ff:14.4
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fbc "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1"
Revision: 0x02
Module Alias: "pci:v00008086d00002FBCsv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: PCI 500.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: Ddhb.v3PeUG_VXi4
Parent ID: QSNP.+vEAL3FBiW3
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: usb controller
Model: "ASMedia ASM1142 USB 3.1 Host Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1242 "ASM1142 USB 3.1 Host Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8675
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xfb100000-0xfb107fff (rw,non-prefetchable)
IRQ: 16 (no events)
Module Alias: "pci:v00001B21d00001242sv00001043sd00008675bc0Csc03i30"
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
Attached to: #87 (PCI bridge)
76: PCI ff1e.3: 0880 System peripheral
[Created at pci.386]
Unique ID: iZvl.eOflZKP2ae6
SysFS ID: /devices/pci0000:ff/0000:ff:1e.3
SysFS BusID: 0000:ff:1e.3
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fc0 "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fc0
Revision: 0x02
Driver: "hswep_uncore"
Module Alias: "pci:v00008086d00002FC0sv00008086sd00002FC0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
77: PCI 1d.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 1GTX.2lW9fZD0rpF
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel C610/X99 series chipset USB Enhanced Host Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8d26 "C610/X99 series chipset USB Enhanced Host Controller #1"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8600
Revision: 0x05
Driver: "ehci-pci"
Memory Range: 0xfb234000-0xfb2343ff (rw,non-prefetchable)
IRQ: 21 (33 events)
Module Alias: "pci:v00008086d00008D26sv00001043sd00008600bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI ff17.4: 0880 System peripheral
[Created at pci.386]
Unique ID: 173J.HuaTaPleXOF
SysFS ID: /devices/pci0000:ff/0000:ff:17.4
SysFS BusID: 0000:ff:17.4
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb8 "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3"
Revision: 0x02
Module Alias: "pci:v00008086d00002FB8sv00000000sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
79: PCI ff0c.1: 0880 System peripheral
[Created at pci.386]
Unique ID: cDhb.gRCikOaMC05
SysFS ID: /devices/pci0000:ff/0000:ff:0c.1
SysFS BusID: 0000:ff:0c.1
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fe1 "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fe1
Revision: 0x02
Module Alias: "pci:v00008086d00002FE1sv00008086sd00002FE1bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: PCI ff14.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 5RZB.CyCERs7hd54
SysFS ID: /devices/pci0000:ff/0000:ff:14.2
SysFS BusID: 0000:ff:14.2
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 ERROR Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2fb2 "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 ERROR Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2fb2
Revision: 0x02
Module Alias: "pci:v00008086d00002FB2sv00008086sd00002FB2bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
81: PCI 05.4: 0800 PIC (IO(X)-APIC)
[Created at pci.386]
Unique ID: gCuZ.jUj13WhqTe8
SysFS ID: /devices/pci0000:00/0000:00:05.4
SysFS BusID: 0000:00:05.4
Hardware Class: unknown
Model: "Intel Xeon E7 v3/Xeon E5 v3/Core i7 I/O APIC"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2f2c "Xeon E7 v3/Xeon E5 v3/Core i7 I/O APIC"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x02
Memory Range: 0xfb23e000-0xfb23efff (rw,non-prefetchable)
Module Alias: "pci:v00008086d00002F2Csv00008086sd00000000bc08sc00i20"
Config Status: cfg=new, avail=yes, need=no, active=unknown