-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAA3D8595BA
3134 lines (2950 loc) · 126 KB
/
AA3D8595BA
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
35: PCI 7f0a.0: 0880 System peripheral
[Created at pci.386]
Unique ID: FeX7.Rx5Oz5i+Cj6
SysFS ID: /devices/pci0000:7f/0000:7f:0a.0
SysFS BusID: 0000:7f:0a.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Power Control Unit 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cc0 "Xeon E5/Core i7 Power Control Unit 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CC0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI ff0c.6: 0880 System peripheral
[Created at pci.386]
Unique ID: xr7n.4lNf+aEwVF0
SysFS ID: /devices/pci0000:ff/0000:ff:0c.6
SysFS BusID: 0000:ff:0c.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cf4 "Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CF4sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 300.0: 0107 Serial Attached SCSI controller
[Created at pci.386]
Unique ID: svHJ.BLHACyLZTJ0
Parent ID: 3hqH.Qpq_CozkNdE
SysFS ID: /devices/pci0000:00/0000:00:03.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: storage
Model: "Broadcom / LSI SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon]"
Vendor: pci 0x1000 "Broadcom / LSI"
Device: pci 0x0072 "SAS2008 PCI-Express Fusion-MPT SAS-2 [Falcon]"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0400
Revision: 0x03
Driver: "mpt3sas"
Driver Modules: "mpt3sas"
I/O Ports: 0x7000-0x70ff (rw)
Memory Range: 0xdf600000-0xdf603fff (rw,non-prefetchable)
Memory Range: 0xdf580000-0xdf5bffff (rw,non-prefetchable)
Memory Range: 0xdf100000-0xdf17ffff (ro,non-prefetchable,disabled)
IRQ: 29 (no events)
Module Alias: "pci:v00001000d00000072sv000015D9sd00000400bc01sc07i00"
Driver Info #0:
Driver Status: mpt3sas is active
Driver Activation Cmd: "modprobe mpt3sas"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #108 (PCI bridge)
38: PCI 101.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: aJxU.6e94OQPTsz4
Parent ID: 6NW+.8EZ8Ac_21AE
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:01:01.0
SysFS BusID: 0000:01:01.0
Hardware Class: graphics card
Device Name: "Onboard Matrox VGA"
Model: "Matrox MGA G200eW WPCM450"
Vendor: pci 0x102b "Matrox Graphics, Inc."
Device: pci 0x0532 "MGA G200eW WPCM450"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x0a
Driver: "mgag200"
Driver Modules: "mgag200"
Memory Range: 0xdd000000-0xddffffff (ro,non-prefetchable)
Memory Range: 0xdf000000-0xdf003fff (rw,non-prefetchable)
Memory Range: 0xde800000-0xdeffffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 22 (no events)
Module Alias: "pci:v0000102Bd00000532sv000015D9sd00000706bc03sc00i00"
Driver Info #0:
Driver Status: mgag200 is active
Driver Activation Cmd: "modprobe mgag200"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #91 (PCI bridge)
39: PCI ff09.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 6YWs.EIdgLahqVJ8
SysFS ID: /devices/pci0000:ff/0000:ff:09.3
SysFS BusID: 0000:ff:09.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 QPI Link Reut 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c93 "Xeon E5/Core i7 QPI Link Reut 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003C93sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.wlcpElD8X90
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel C600/X79 series chipset 6-Port SATA AHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d02 "C600/X79 series chipset 6-Port SATA AHCI Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x06
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0x90b0-0x90b7 (rw)
I/O Ports: 0x90a0-0x90a3 (rw)
I/O Ports: 0x9090-0x9097 (rw)
I/O Ports: 0x9080-0x9083 (rw)
I/O Ports: 0x9000-0x901f (rw)
Memory Range: 0xdf904000-0xdf9047ff (rw,non-prefetchable)
IRQ: 34 (no events)
Module Alias: "pci:v00008086d00001D02sv000015D9sd00000706bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 7f0b.3: 0880 System peripheral
[Created at pci.386]
Unique ID: wj26.UR8cn_Avei2
SysFS ID: /devices/pci0000:7f/0000:7f:0b.3
SysFS BusID: 0000:7f:0b.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce3 "Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 7f13.4: 1101 Performance counters
[Created at pci.386]
Unique ID: Pxwh.WUAEF4zN3XA
SysFS ID: /devices/pci0000:7f/0000:7f:13.4
SysFS BusID: 0000:7f:13.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce6 "Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE6sv000015D9sd00000706bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI ff10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 3LOe.BJ+OH2TVn+1
SysFS ID: /devices/pci0000:ff/0000:ff:10.0
SysFS BusID: 0000:ff:10.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb0 "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 7f10.2: 0880 System peripheral
[Created at pci.386]
Unique ID: Syoc.D8uuEBivqm2
SysFS ID: /devices/pci0000:7f/0000:7f:10.2
SysFS BusID: 0000:7f:10.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb2 "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CB2sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 7f08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 5QRB.RQhRDlRRV11
SysFS ID: /devices/pci0000:7f/0000:7f:08.0
SysFS BusID: 0000:7f:08.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 QPI Link 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c80 "Xeon E5/Core i7 QPI Link 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003C80sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 04.4: 0880 System peripheral
[Created at pci.386]
Unique ID: b5r5.qZ1r3Paxx39
SysFS ID: /devices/pci0000:00/0000:00:04.4
SysFS BusID: 0000:00:04.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c24 "Xeon E5/Core i7 DMA Channel 4"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x380ffff0c000-0x380ffff0ffff (rw,non-prefetchable)
IRQ: 127 (no events)
Module Alias: "pci:v00008086d00003C24sv000015D9sd00000706bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI 8005.2: 0880 System peripheral
[Created at pci.386]
Unique ID: HbTb.w2iKypHA6NB
SysFS ID: /devices/pci0000:80/0000:80:05.2
SysFS BusID: 0000:80:05.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Control Status and Global Errors"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c2a "Xeon E5/Core i7 Control Status and Global Errors"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003C2Asv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 7f0d.0: 0880 System peripheral
[Created at pci.386]
Unique ID: UzgX.um2gElpSBfB
SysFS ID: /devices/pci0000:7f/0000:7f:0d.0
SysFS BusID: 0000:7f:0d.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI ff0f.6: 0880 System peripheral
[Created at pci.386]
Unique ID: ABHB.9U6vJvD5kE1
SysFS ID: /devices/pci0000:ff/0000:ff:0f.6
SysFS BusID: 0000:ff:0f.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cae "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CAEsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI 7f0c.6: 0880 System peripheral
[Created at pci.386]
Unique ID: bpZ4.4lNf+aEwVF0
SysFS ID: /devices/pci0000:7f/0000:7f:0c.6
SysFS BusID: 0000:7f:0c.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cf4 "Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CF4sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI 7f09.3: 0880 System peripheral
[Created at pci.386]
Unique ID: nVy9.EIdgLahqVJ8
SysFS ID: /devices/pci0000:7f/0000:7f:09.3
SysFS BusID: 0000:7f:09.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 QPI Link Reut 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c93 "Xeon E5/Core i7 QPI Link Reut 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003C93sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.u1IT02vMfvA
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel C600/X79 series chipset LPC Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d41 "C600/X79 series chipset LPC Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x06
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00001D41sv000015D9sd00000706bc06sc01i00"
Driver Info #0:
Driver Status: lpc_ich is active
Driver Activation Cmd: "modprobe lpc_ich"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI ff0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: mRnX.0C8NNBKTnJ4
SysFS ID: /devices/pci0000:ff/0000:ff:0e.1
SysFS BusID: 0000:ff:0e.1
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Processor Home Agent Performance Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c46 "Xeon E5/Core i7 Processor Home Agent Performance Monitoring"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv000015D9sd00000706bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI ff13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: HgX2.+r4MGZIcA53
SysFS ID: /devices/pci0000:ff/0000:ff:13.0
SysFS BusID: 0000:ff:13.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 R2PCIe"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce4 "Xeon E5/Core i7 R2PCIe"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE4sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI 7f10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: jIqx.BJ+OH2TVn+1
SysFS ID: /devices/pci0000:7f/0000:7f:10.0
SysFS BusID: 0000:7f:10.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb0 "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI 200.0: 0107 Serial Attached SCSI controller
[Created at pci.386]
Unique ID: B35A.XSw6E4XtkZ6
Parent ID: 7EWs.uQnLs93QB7F
SysFS ID: /devices/pci0000:00/0000:00:11.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: storage
Model: "Intel C604/X79 series chipset 4-Port SATA/SAS Storage Control Unit"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d69 "C604/X79 series chipset 4-Port SATA/SAS Storage Control Unit"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x06
Driver: "isci"
Driver Modules: "isci"
Memory Range: 0x380fffc7c000-0x380fffc7ffff (ro,non-prefetchable)
Memory Range: 0x380fff800000-0x380fffbfffff (ro,non-prefetchable)
I/O Ports: 0x8000-0x80ff (rw)
IRQ: 16 (72592 events)
Module Alias: "pci:v00008086d00001D69sv000015D9sd00000706bc01sc07i00"
Driver Info #0:
Driver Status: isci is active
Driver Activation Cmd: "modprobe isci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #143 (PCI bridge)
57: PCI 04.2: 0880 System peripheral
[Created at pci.386]
Unique ID: sRsQ.ok8L6GLXuI8
SysFS ID: /devices/pci0000:00/0000:00:04.2
SysFS BusID: 0000:00:04.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c22 "Xeon E5/Core i7 DMA Channel 2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x380ffff14000-0x380ffff17fff (rw,non-prefetchable)
IRQ: 127 (no events)
Module Alias: "pci:v00008086d00003C22sv000015D9sd00000706bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.KKAVKNGWDKC
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E5/Core i7 IIO PCI Express Root Port 1a"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c02 "Xeon E5/Core i7 IIO PCI Express Root Port 1a"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00003C02sv000015D9sd00000706bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 8005.0: 0880 System peripheral
[Created at pci.386]
Unique ID: YxUw.uDpq_g2m2cA
SysFS ID: /devices/pci0000:80/0000:80:05.0
SysFS BusID: 0000:80:05.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Address Map, VTd_Misc, System Management"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c28 "Xeon E5/Core i7 Address Map, VTd_Misc, System Management"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003C28sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI ff0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: RXIW.7fDPMm_ggT0
SysFS ID: /devices/pci0000:ff/0000:ff:0f.4
SysFS BusID: 0000:ff:0f.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cac "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CACsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI 7f0f.6: 0880 System peripheral
[Created at pci.386]
Unique ID: q8jU.9U6vJvD5kE1
SysFS ID: /devices/pci0000:7f/0000:7f:0f.6
SysFS BusID: 0000:7f:0f.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cae "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CAEsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI 8004.6: 0880 System peripheral
[Created at pci.386]
Unique ID: gnNT.sOwK1YpL+q9
SysFS ID: /devices/pci0000:80/0000:80:04.6
SysFS BusID: 0000:80:04.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c26 "Xeon E5/Core i7 DMA Channel 6"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x381ffff04000-0x381ffff07fff (rw,non-prefetchable)
IRQ: 137 (no events)
Module Alias: "pci:v00008086d00003C26sv000015D9sd00000706bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI ff0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: UYAR.um2gElpSBfB
SysFS ID: /devices/pci0000:ff/0000:ff:0c.2
SysFS BusID: 0000:ff:0c.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI ff10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: 6dpU.oCceezdfTG3
SysFS ID: /devices/pci0000:ff/0000:ff:10.7
SysFS BusID: 0000:ff:10.7
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb7 "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CB7sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 7f0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: QPDr.0C8NNBKTnJ4
SysFS ID: /devices/pci0000:7f/0000:7f:0e.1
SysFS BusID: 0000:7f:0e.1
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Processor Home Agent Performance Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c46 "Xeon E5/Core i7 Processor Home Agent Performance Monitoring"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv000015D9sd00000706bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: PCI 7f13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: ydzL.+r4MGZIcA53
SysFS ID: /devices/pci0000:7f/0000:7f:13.0
SysFS BusID: 0000:7f:13.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 R2PCIe"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce4 "Xeon E5/Core i7 R2PCIe"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE4sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI ff0a.3: 0880 System peripheral
[Created at pci.386]
Unique ID: BfZK.hZCNfDbHerC
SysFS ID: /devices/pci0000:ff/0000:ff:0a.3
SysFS BusID: 0000:ff:0a.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Power Control Unit 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cd0 "Xeon E5/Core i7 Power Control Unit 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CD0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 04.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 8otl.mvFr8767rX7
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c20 "Xeon E5/Core i7 DMA Channel 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x380ffff1c000-0x380ffff1ffff (rw,non-prefetchable)
IRQ: 127 (no events)
Module Alias: "pci:v00008086d00003C20sv000015D9sd00000706bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI ff0f.2: 0880 System peripheral
[Created at pci.386]
Unique ID: itJr.5qKvOdlGdiF
SysFS ID: /devices/pci0000:ff/0000:ff:0f.2
SysFS BusID: 0000:ff:0f.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3caa "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CAAsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI 7f0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: 5Vkp.7fDPMm_ggT0
SysFS ID: /devices/pci0000:7f/0000:7f:0f.4
SysFS BusID: 0000:7f:0f.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cac "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CACsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI 8004.4: 0880 System peripheral
[Created at pci.386]
Unique ID: x7Po.qZ1r3Paxx39
SysFS ID: /devices/pci0000:80/0000:80:04.4
SysFS BusID: 0000:80:04.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c24 "Xeon E5/Core i7 DMA Channel 4"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x381ffff0c000-0x381ffff0ffff (rw,non-prefetchable)
IRQ: 137 (no events)
Module Alias: "pci:v00008086d00003C24sv000015D9sd00000706bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI ff0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: luBm.um2gElpSBfB
SysFS ID: /devices/pci0000:ff/0000:ff:0c.0
SysFS BusID: 0000:ff:0c.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI 7f0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 8Wck.um2gElpSBfB
SysFS ID: /devices/pci0000:7f/0000:7f:0c.2
SysFS BusID: 0000:7f:0c.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI 400.1: 0200 Ethernet controller
[Created at pci.386]
Unique ID: 22yg.LQz7H0ltwX6
Parent ID: _Znp.M93+HWVwG5D
SysFS ID: /devices/pci0000:00/0000:00:02.0/0000:04:00.1
SysFS BusID: 0000:04:00.1
Hardware Class: network
Model: "Super Micro AOC-STGN-I2S [REV 1.01]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x10fb "82599ES 10-Gigabit SFI/SFP+ Network Connection"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0611 "AOC-STGN-I2S [REV 1.01]"
Revision: 0x01
Driver: "ixgbe"
Driver Modules: "ixgbe"
Device File: enp4s0f1
Memory Range: 0xde000000-0xde07ffff (ro,non-prefetchable)
I/O Ports: 0x6000-0x601f (rw)
Memory Range: 0xde500000-0xde503fff (ro,non-prefetchable)
Memory Range: 0xdf800000-0xdf87ffff (ro,non-prefetchable,disabled)
IRQ: 93 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v00008086d000010FBsv000015D9sd00000611bc02sc00i00"
Driver Info #0:
Driver Status: ixgbe is active
Driver Activation Cmd: "modprobe ixgbe"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #154 (PCI bridge)
75: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.GdrDHPCbLUE
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel C600/X79 series chipset MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d3a "C600/X79 series chipset MEI Controller #1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x05
Memory Range: 0xfed0e000-0xfed0e00f (rw,non-prefetchable)
IRQ: 7 (no events)
Module Alias: "pci:v00008086d00001D3Asv000015D9sd00000706bc07sc80i00"
Driver Info #0:
Driver Status: mei_me is active
Driver Activation Cmd: "modprobe mei_me"
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: PCI ff10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: Nzqp.mNj8hu21Qw3
SysFS ID: /devices/pci0000:ff/0000:ff:10.5
SysFS BusID: 0000:ff:10.5
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb5 "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB5sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
77: PCI 7f10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: maFo.oCceezdfTG3
SysFS ID: /devices/pci0000:7f/0000:7f:10.7
SysFS BusID: 0000:7f:10.7
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb7 "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CB7sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI ff08.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 1RTO._fWhfSoY4B2
SysFS ID: /devices/pci0000:ff/0000:ff:08.3
SysFS BusID: 0000:ff:08.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 QPI Link Reut 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c83 "Xeon E5/Core i7 QPI Link Reut 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003C83sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
79: PCI ff0d.3: 0880 System peripheral
[Created at pci.386]
Unique ID: Q_ik.um2gElpSBfB
SysFS ID: /devices/pci0000:ff/0000:ff:0d.3
SysFS BusID: 0000:ff:0d.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: PCI ff0a.1: 0880 System peripheral
[Created at pci.386]
Unique ID: S+af.yL28Sgpik57
SysFS ID: /devices/pci0000:ff/0000:ff:0a.1
SysFS BusID: 0000:ff:0a.1
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Power Control Unit 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cc1 "Xeon E5/Core i7 Power Control Unit 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CC1sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
81: PCI 7f0a.3: 0880 System peripheral
[Created at pci.386]
Unique ID: rc+d.hZCNfDbHerC
SysFS ID: /devices/pci0000:7f/0000:7f:0a.3
SysFS BusID: 0000:7f:0a.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Power Control Unit 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cd0 "Xeon E5/Core i7 Power Control Unit 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CD0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
82: PCI 700.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wcdH.+5Dzt0Qcwu9
Parent ID: mnDB.rk6FpxNDliC
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:07:00.0
SysFS BusID: 0000:07:00.0
Hardware Class: network
Device Name: "Onboard Intel Ethernet 1"
Model: "Intel I350 Gigabit Network Connection"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1521 "I350 Gigabit Network Connection"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x1521
Revision: 0x01
Driver: "igb"
Driver Modules: "igb"
Device File: eno1
Memory Range: 0xdf720000-0xdf73ffff (rw,non-prefetchable)
I/O Ports: 0x5020-0x503f (rw)
Memory Range: 0xdf744000-0xdf747fff (rw,non-prefetchable)
IRQ: 35 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d00001521sv000015D9sd00001521bc02sc00i00"
Driver Info #0:
Driver Status: igb is active
Driver Activation Cmd: "modprobe igb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #114 (PCI bridge)
83: PCI ff0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: _DLA.3+RPRUWsZxE
SysFS ID: /devices/pci0000:ff/0000:ff:0f.0
SysFS BusID: 0000:ff:0f.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ca8 "Xeon E5/Core i7 Integrated Memory Controller Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CA8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
84: PCI 7f0f.2: 0880 System peripheral
[Created at pci.386]
Unique ID: Nrl8.5qKvOdlGdiF
SysFS ID: /devices/pci0000:7f/0000:7f:0f.2
SysFS BusID: 0000:7f:0f.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3caa "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CAAsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
85: PCI 8004.2: 0880 System peripheral
[Created at pci.386]
Unique ID: CUQ7.ok8L6GLXuI8
SysFS ID: /devices/pci0000:80/0000:80:04.2
SysFS BusID: 0000:80:04.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c22 "Xeon E5/Core i7 DMA Channel 2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x381ffff14000-0x381ffff17fff (rw,non-prefetchable)
IRQ: 137 (no events)
Module Alias: "pci:v00008086d00003C22sv000015D9sd00000706bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
86: PCI 7f0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: Psd3.um2gElpSBfB
SysFS ID: /devices/pci0000:7f/0000:7f:0c.0
SysFS BusID: 0000:7f:0c.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv000015D9sd00000706bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
87: PCI ff13.5: 1101 Performance counters
[Created at pci.386]
Unique ID: cI_D._MFtP253kY3
SysFS ID: /devices/pci0000:ff/0000:ff:13.5
SysFS BusID: 0000:ff:13.5
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c44 "Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C44sv000015D9sd00000706bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
88: PCI ff10.3: 0880 System peripheral
[Created at pci.386]
Unique ID: fJs8.kYqejlpcM93
SysFS ID: /devices/pci0000:ff/0000:ff:10.3
SysFS BusID: 0000:ff:10.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb3 "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CB3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
89: PCI 7f10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: 2xG7.mNj8hu21Qw3
SysFS ID: /devices/pci0000:7f/0000:7f:10.5
SysFS BusID: 0000:7f:10.5
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb5 "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB5sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
90: PCI 7f08.3: 0880 System peripheral
[Created at pci.386]
Unique ID: iOvh._fWhfSoY4B2
SysFS ID: /devices/pci0000:7f/0000:7f:08.3
SysFS BusID: 0000:7f:08.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 QPI Link Reut 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c83 "Xeon E5/Core i7 QPI Link Reut 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003C83sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
91: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+.8EZ8Ac_21AE
SysFS ID: /devices/pci0000:00/0000:00:1e.0
SysFS BusID: 0000:00:1e.0
Hardware Class: bridge
Model: "Intel 82801 PCI Bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x244e "82801 PCI Bridge"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0706
Revision: 0xa6
Module Alias: "pci:v00008086d0000244Esv000015D9sd00000706bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
92: PCI 04.7: 0880 System peripheral
[Created at pci.386]
Unique ID: B4Jc.Nps4W6x2XDA
SysFS ID: /devices/pci0000:00/0000:00:04.7