-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathF791C179A5
1756 lines (1661 loc) · 69.6 KB
/
F791C179A5
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 804.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: ZdUv.YG2mNzQbHjF
Parent ID: 6NW+.asRq990BSv8
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:08:04.0
SysFS BusID: 0000:08:04.0
Hardware Class: graphics card
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 0x062b
Revision: 0x0a
Driver: "mgag200"
Driver Modules: "mgag200"
Memory Range: 0xf9000000-0xf9ffffff (ro,non-prefetchable)
Memory Range: 0xfa800000-0xfa803fff (rw,non-prefetchable)
Memory Range: 0xfa000000-0xfa7fffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 16 (69 events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v0000102Bd00000532sv000015D9sd0000062Bbc03sc00i00"
Driver Info #0:
Driver Status: matroxfb_base is active
Driver Activation Cmd: "modprobe matroxfb_base"
Driver Info #1:
Driver Status: mgag200 is active
Driver Activation Cmd: "modprobe mgag200"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #46 (PCI bridge)
21: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.MOVVEIFGyuA
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 0x062b
Revision: 0x06
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xf050-0xf057 (rw)
I/O Ports: 0xf040-0xf043 (rw)
I/O Ports: 0xf030-0xf037 (rw)
I/O Ports: 0xf020-0xf023 (rw)
I/O Ports: 0xf000-0xf01f (rw)
Memory Range: 0xfa921000-0xfa9217ff (rw,non-prefetchable)
IRQ: 32 (2351 events)
Module Alias: "pci:v00008086d00001D02sv000015D9sd0000062Bbc01sc06i01"
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 ff10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 3LOe.R1FGF6hEsR5
SysFS ID: /devices/pci0000:ff/0000:ff:10.0
SysFS BusID: 0000:ff:10.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb0 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ivbep_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000EB0sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 04.4: 0880 System peripheral
[Created at pci.386]
Unique ID: b5r5.F15O_Yle6U5
SysFS ID: /devices/pci0000:00/0000:00:04.4
SysFS BusID: 0000:00:04.4
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e24 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 4"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa90c000-0xfa90ffff (rw,non-prefetchable)
IRQ: 33 (no events)
Module Alias: "pci:v00008086d00000E24sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.KgA90bwU4f5
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 0x062b
Revision: 0x06
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00001D41sv000015D9sd0000062Bbc06sc01i00"
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
25: PCI ff0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: mRnX.5YQRjsYRMj9
SysFS ID: /devices/pci0000:ff/0000:ff:0e.1
SysFS BusID: 0000:ff:0e.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e30 "Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ivbep_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000E30sv000015D9sd0000062Bbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI ff16.2: 0880 System peripheral
[Created at pci.386]
Unique ID: Fff7.ronkks5oY_D
SysFS ID: /devices/pci0000:ff/0000:ff:16.2
SysFS BusID: 0000:ff:16.2
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eca "Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000ECAsv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI ff13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: HgX2.e7U8dZwiQo2
SysFS ID: /devices/pci0000:ff/0000:ff:13.0
SysFS BusID: 0000:ff:13.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e1d "Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000E1Dsv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 200.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: jbRH.80HvVrYuxM8
Parent ID: _Znp.nc6YCggdRV9
SysFS ID: /devices/pci0000:00/0000:00:02.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: network
Model: "Intel Gigabit ET Dual Port Server Adapter"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x10c9 "82576 Gigabit Network Connection"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0xa03c "Gigabit ET Dual Port Server Adapter"
Revision: 0x01
Driver: "igb"
Driver Modules: "igb"
Device File: enp2s0f0
Memory Range: 0xfbc20000-0xfbc3ffff (rw,non-prefetchable)
Memory Range: 0xfb800000-0xfbbfffff (rw,non-prefetchable)
I/O Ports: 0xe020-0xe03f (rw)
Memory Range: 0xfbcc4000-0xfbcc7fff (rw,non-prefetchable)
Memory Range: 0xfb400000-0xfb7fffff (ro,non-prefetchable,disabled)
IRQ: 43 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v00008086d000010C9sv00008086sd0000A03Cbc02sc00i00"
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: #78 (PCI bridge)
29: PCI 04.2: 0880 System peripheral
[Created at pci.386]
Unique ID: sRsQ.DCCu0QWE3j4
SysFS ID: /devices/pci0000:00/0000:00:04.2
SysFS BusID: 0000:00:04.2
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e22 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa914000-0xfa917fff (rw,non-prefetchable)
IRQ: 33 (no events)
Module Alias: "pci:v00008086d00000E22sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.lnD2FXRDOk8
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e02 "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00000E02sv000015D9sd0000062Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI ff0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: RXIW.NNTGKqCQlv3
SysFS ID: /devices/pci0000:ff/0000:ff:0f.4
SysFS BusID: 0000:ff:0f.4
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eac "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EACsv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI ff0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: UYAR.FaKDEdWLFX6
SysFS ID: /devices/pci0000:ff/0000:ff:0c.2
SysFS BusID: 0000:ff:0c.2
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee4 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EE4sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI ff10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: 6dpU.2xrVc1sOYi6
SysFS ID: /devices/pci0000:ff/0000:ff:10.7
SysFS BusID: 0000:ff:10.7
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb7 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EB7sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI ff16.0: 0880 System peripheral
[Created at pci.386]
Unique ID: W+gS.pzuEnjsNVDD
SysFS ID: /devices/pci0000:ff/0000:ff:16.0
SysFS BusID: 0000:ff:16.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ec8 "Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EC8sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI ff0a.3: 0880 System peripheral
[Created at pci.386]
Unique ID: BfZK.EvAVNtGssIB
SysFS ID: /devices/pci0000:ff/0000:ff:0a.3
SysFS BusID: 0000:ff:0a.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ec3 "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EC3sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 04.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 8otl.BNJO3HHq+x3
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e20 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa91c000-0xfa91ffff (rw,non-prefetchable)
IRQ: 33 (no events)
Module Alias: "pci:v00008086d00000E20sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI ff0f.2: 0880 System peripheral
[Created at pci.386]
Unique ID: itJr.LYamMhz+h83
SysFS ID: /devices/pci0000:ff/0000:ff:0f.2
SysFS BusID: 0000:ff:0f.2
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eaa "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EAAsv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI ff0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: luBm.BwYDJL2X8+4
SysFS ID: /devices/pci0000:ff/0000:ff:0c.0
SysFS BusID: 0000:ff:0c.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee0 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EE0sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 400.1: 0200 Ethernet controller
[Created at pci.386]
Unique ID: 22yg.+5Dzt0Qcwu9
Parent ID: 3hqH.rGuX7y8SY1B
SysFS ID: /devices/pci0000:00/0000:00:03.0/0000:04:00.1
SysFS BusID: 0000:04:00.1
Hardware Class: network
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: enp4s0f1
Memory Range: 0xfbe00000-0xfbe1ffff (rw,non-prefetchable)
Memory Range: 0xfbec0000-0xfbec3fff (rw,non-prefetchable)
IRQ: 74 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
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: #54 (PCI bridge)
40: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.iFkvGyDjmD9
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 0x062b
Revision: 0x05
Memory Range: 0xfed0e000-0xfed0e00f (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00001D3Asv000015D9sd0000062Bbc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI ff10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: Nzqp.06z+eyGmUM7
SysFS ID: /devices/pci0000:ff/0000:ff:10.5
SysFS BusID: 0000:ff:10.5
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb5 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ivbep_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000EB5sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI ff0a.1: 0880 System peripheral
[Created at pci.386]
Unique ID: S+af.C4I+Pk1SpXA
SysFS ID: /devices/pci0000:ff/0000:ff:0a.1
SysFS BusID: 0000:ff:0a.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ec1 "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EC1sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI ff0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: _DLA.JjhGPYkbeN2
SysFS ID: /devices/pci0000:ff/0000:ff:0f.0
SysFS BusID: 0000:ff:0f.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ea8 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EA8sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI ff13.5: 1101 Performance counters
[Created at pci.386]
Unique ID: cI_D.B15xbHGgW0C
SysFS ID: /devices/pci0000:ff/0000:ff:13.5
SysFS BusID: 0000:ff:13.5
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e36 "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ivbep_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000E36sv000015D9sd0000062Bbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI ff10.3: 0880 System peripheral
[Created at pci.386]
Unique ID: fJs8._G4Whp1MRb6
SysFS ID: /devices/pci0000:ff/0000:ff:10.3
SysFS BusID: 0000:ff:10.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb3 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EB3sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+.asRq990BSv8
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 0x062b
Revision: 0xa6
Module Alias: "pci:v00008086d0000244Esv000015D9sd0000062Bbc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI 04.7: 0880 System peripheral
[Created at pci.386]
Unique ID: B4Jc.oGwdQG6mhd6
SysFS ID: /devices/pci0000:00/0000:00:04.7
SysFS BusID: 0000:00:04.7
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e27 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 7"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa900000-0xfa903fff (rw,non-prefetchable)
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00000E27sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI ff0d.1: 0880 System peripheral
[Created at pci.386]
Unique ID: hKk3.k9OTl2Pej86
SysFS ID: /devices/pci0000:ff/0000:ff:0d.1
SysFS BusID: 0000:ff:0d.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee3 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EE3sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI 03.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: nKpy.t5n155OsboB
SysFS ID: /devices/pci0000:00/0000:00:03.2
SysFS BusID: 0000:00:03.2
Hardware Class: bridge
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3c"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e0a "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3c"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00008086d00000E0Asv000015D9sd0000062Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.Va+FFkI7Dr0
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel C600/X79 series chipset SMBus Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d22 "C600/X79 series chipset SMBus Host Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x06
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xfa920000-0xfa9200ff (rw,non-prefetchable)
I/O Ports: 0x1180-0x119f (rw)
IRQ: 18 (no events)
Module Alias: "pci:v00008086d00001D22sv000015D9sd0000062Bbc0Csc05i00"
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
51: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.f6aiEHBbWUB
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 DMI2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e00 "Xeon E7 v2/Xeon E5 v2/Core i7 DMI2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000E00sv000015D9sd0000062Bbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI ff10.1: 0880 System peripheral
[Created at pci.386]
Unique ID: wftT.yRB0kgoxNq5
SysFS ID: /devices/pci0000:ff/0000:ff:10.1
SysFS BusID: 0000:ff:10.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb1 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ivbep_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000EB1sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI 04.5: 0880 System peripheral
[Created at pci.386]
Unique ID: SQKx.mR18T7tLes5
SysFS ID: /devices/pci0000:00/0000:00:04.5
SysFS BusID: 0000:00:04.5
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e25 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 5"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa908000-0xfa90bfff (rw,non-prefetchable)
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00000E25sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI 03.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 3hqH.rGuX7y8SY1B
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e08 "Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00008086d00000E08sv000015D9sd0000062Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI ff0b.0: 0880 System peripheral
[Created at pci.386]
Unique ID: gn8I.9YQu582QyA3
SysFS ID: /devices/pci0000:ff/0000:ff:0b.0
SysFS BusID: 0000:ff:0b.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e1e "Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000E1Esv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI ff13.1: 1101 Performance counters
[Created at pci.386]
Unique ID: 9+0u.9CCRe81GTFB
SysFS ID: /devices/pci0000:ff/0000:ff:13.1
SysFS BusID: 0000:ff:13.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e34 "Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ivbep_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d00000E34sv000015D9sd0000062Bbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI 200.1: 0200 Ethernet controller
[Created at pci.386]
Unique ID: AnhL.80HvVrYuxM8
Parent ID: _Znp.nc6YCggdRV9
SysFS ID: /devices/pci0000:00/0000:00:02.0/0000:02:00.1
SysFS BusID: 0000:02:00.1
Hardware Class: network
Model: "Intel Gigabit ET Dual Port Server Adapter"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x10c9 "82576 Gigabit Network Connection"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0xa03c "Gigabit ET Dual Port Server Adapter"
Revision: 0x01
Driver: "igb"
Driver Modules: "igb"
Device File: enp2s0f1
Memory Range: 0xfbc00000-0xfbc1ffff (rw,non-prefetchable)
Memory Range: 0xfb000000-0xfb3fffff (rw,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xfbcc0000-0xfbcc3fff (rw,non-prefetchable)
Memory Range: 0xfac00000-0xfaffffff (ro,non-prefetchable,disabled)
IRQ: 54 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d000010C9sv00008086sd0000A03Cbc02sc00i00"
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: #78 (PCI bridge)
58: PCI 04.3: 0880 System peripheral
[Created at pci.386]
Unique ID: kmLG.kc8eV_dxa55
SysFS ID: /devices/pci0000:00/0000:00:04.3
SysFS BusID: 0000:00:04.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e23 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 3"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa910000-0xfa913fff (rw,non-prefetchable)
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00000E23sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 1a.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: pwJ7.ej5GIW4X7fB
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel C600/X79 series chipset USB2 Enhanced Host Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d2d "C600/X79 series chipset USB2 Enhanced Host Controller #2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x06
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfa923000-0xfa9233ff (rw,non-prefetchable)
IRQ: 16 (69 events)
Module Alias: "pci:v00008086d00001D2Dsv000015D9sd0000062Bbc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Driver Info #1:
Driver Status: ehci_pci is active
Driver Activation Cmd: "modprobe ehci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI ff0f.5: 0880 System peripheral
[Created at pci.386]
Unique ID: JsnL.unP0pOK7HI4
SysFS ID: /devices/pci0000:ff/0000:ff:0f.5
SysFS BusID: 0000:ff:0f.5
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ead "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EADsv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI ff09.0: 0880 System peripheral
[Created at pci.386]
Unique ID: WZ2M.xm1ItwYS+bA
SysFS ID: /devices/pci0000:ff/0000:ff:09.0
SysFS BusID: 0000:ff:09.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e90 "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000E90sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI ff0e.0: 0880 System peripheral
[Created at pci.386]
Unique ID: v6Ii.BP8HZ_nyQJF
SysFS ID: /devices/pci0000:ff/0000:ff:0e.0
SysFS BusID: 0000:ff:0e.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ea0 "Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EA0sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI ff16.1: 0880 System peripheral
[Created at pci.386]
Unique ID: NKAI.KOr_FI_41cD
SysFS ID: /devices/pci0000:ff/0000:ff:16.1
SysFS BusID: 0000:ff:16.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ec9 "Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EC9sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI 04.1: 0880 System peripheral
[Created at pci.386]
Unique ID: +6Nb.inF8YrOXXK4
SysFS ID: /devices/pci0000:00/0000:00:04.1
SysFS BusID: 0000:00:04.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e21 "Xeon E7 v2/Xeon E5 v2/Core i7 Crystal Beach DMA Channel 1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xfa918000-0xfa91bfff (rw,non-prefetchable)
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00000E21sv000015D9sd0000062Bbc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 1d.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 1GTX.1qU0xWFbRz8
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel C600/X79 series chipset USB2 Enhanced Host Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d26 "C600/X79 series chipset USB2 Enhanced Host Controller #1"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x06
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xfa922000-0xfa9223ff (rw,non-prefetchable)
IRQ: 23 (34010 events)
Module Alias: "pci:v00008086d00001D26sv000015D9sd0000062Bbc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Driver Info #1:
Driver Status: ehci_pci is active
Driver Activation Cmd: "modprobe ehci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: PCI ff0f.3: 0880 System peripheral
[Created at pci.386]
Unique ID: aCpg.syWWrF5jDX3
SysFS ID: /devices/pci0000:ff/0000:ff:0f.3
SysFS BusID: 0000:ff:0f.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eab "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EABsv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI ff0c.1: 0880 System peripheral
[Created at pci.386]
Unique ID: cDhb.DlRjGUHxBm5
SysFS ID: /devices/pci0000:ff/0000:ff:0c.1
SysFS BusID: 0000:ff:0c.1
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee2 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EE2sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 05.4: 0800 PIC (IO(X)-APIC)
[Created at pci.386]
Unique ID: gCuZ.tJpghv+4698
SysFS ID: /devices/pci0000:00/0000:00:05.4
SysFS BusID: 0000:00:05.4
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 IOAPIC"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e2c "Xeon E7 v2/Xeon E5 v2/Core i7 IOAPIC"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Memory Range: 0xfa925000-0xfa925fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d00000E2Csv000015D9sd0000062Bbc08sc00i20"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI 16.1: 0780 Communication controller
[Created at pci.386]
Unique ID: N6F2.DggflWLQIc9
SysFS ID: /devices/pci0000:00/0000:00:16.1
SysFS BusID: 0000:00:16.1
Hardware Class: unknown
Model: "Intel C600/X79 series chipset MEI Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d3b "C600/X79 series chipset MEI Controller #2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x05
Memory Range: 0xfed0f000-0xfed0f00f (rw,non-prefetchable)
IRQ: 5 (no events)
Module Alias: "pci:v00008086d00001D3Bsv000015D9sd0000062Bbc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI ff10.6: 0880 System peripheral
[Created at pci.386]
Unique ID: FIKf.XWvl7XOT0l7
SysFS ID: /devices/pci0000:ff/0000:ff:10.6
SysFS BusID: 0000:ff:10.6
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb6 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EB6sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI ff0a.2: 0880 System peripheral
[Created at pci.386]
Unique ID: KK4V.jUEluI99LwA
SysFS ID: /devices/pci0000:ff/0000:ff:0a.2
SysFS BusID: 0000:ff:0a.2
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ec2 "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x04
Module Alias: "pci:v00008086d00000EC2sv000015D9sd0000062Bbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI 1f.6: 1180 Signal processing controller
[Created at pci.386]
Unique ID: ORVU.1ptfO7gSiC0
SysFS ID: /devices/pci0000:00/0000:00:1f.6
SysFS BusID: 0000:00:1f.6
Hardware Class: unknown
Model: "Intel C600/X79 series chipset Thermal Management Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d24 "C600/X79 series chipset Thermal Management Controller"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x06
Memory Range: 0xfed08000-0xfed08fff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00001D24sv000015D9sd0000062Bbc11sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI 11.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 7EWs.K3g1si4Ycs9
SysFS ID: /devices/pci0000:00/0000:00:11.0
SysFS BusID: 0000:00:11.0
Hardware Class: bridge
Model: "Intel C600/X79 series chipset PCI Express Virtual Root Port"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d3e "C600/X79 series chipset PCI Express Virtual Root Port"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x062b
Revision: 0x06
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00008086d00001D3Esv000015D9sd0000062Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI ff0f.1: 0880 System peripheral
[Created at pci.386]
Unique ID: rYq+.ywm3_JYNg80
SysFS ID: /devices/pci0000:ff/0000:ff:0f.1
SysFS BusID: 0000:ff:0f.1