-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path3A287683DC
2707 lines (2538 loc) · 112 KB
/
3A287683DC
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
40: PCI 7f0a.0: 0880 System peripheral
[Created at pci.386]
Unique ID: FeX7.QmGFuirayN8
SysFS ID: /devices/pci0000:7f/0000:7f:0a.0
SysFS BusID: 0000:7f:0a.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ec0 "Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.8gETEh712yC
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel C600/X79 series chipset PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d10 "C600/X79 series chipset PCI Express Root Port 1"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0xb5
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00008086d00001D10sv00001028sd000004CEbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 3f10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: YHYb.A8AGCfc4Xg3
SysFS ID: /devices/pci0000:3f/0000:3f:10.0
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000EB0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 7f0b.3: 0880 System peripheral
[Created at pci.386]
Unique ID: wj26.P3IeXF5z8o1
SysFS ID: /devices/pci0000:7f/0000:7f:0b.3
SysFS BusID: 0000:7f:0b.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e1f "Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000E1Fsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 7f13.4: 0880 System peripheral
[Created at pci.386]
Unique ID: Pxwh.VdkFDg1EKh2
SysFS ID: /devices/pci0000:7f/0000:7f:13.4
SysFS BusID: 0000:7f:13.4
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e81 "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Module Alias: "pci:v00008086d00000E81sv00001028sd000004CEbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 7f10.2: 0880 System peripheral
[Created at pci.386]
Unique ID: Syoc.Cz2m9orUaR4
SysFS ID: /devices/pci0000:7f/0000:7f:10.2
SysFS BusID: 0000:7f:10.2
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0eb2 "Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EB2sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 7f08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 5QRB.QFsI8Mb0Fi2
SysFS ID: /devices/pci0000:7f/0000:7f:08.0
SysFS BusID: 0000:7f:08.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e80 "Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000E80sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI 900.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: x1VA.O345oJ4CKC8
Parent ID: GBI1.Q5cGNjA5kBC
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:07:00.0/0000:08:00.0/0000:09:00.0
SysFS BusID: 0000:09:00.0
Hardware Class: bridge
Model: "Renesas SH7757 PCIe-PCI Bridge [PPB]"
Vendor: pci 0x1912 "Renesas Technology Corp."
Device: pci 0x0012 "SH7757 PCIe-PCI Bridge [PPB]"
SubVendor: pci 0x1912 "Renesas Technology Corp."
SubDevice: pci 0x0012
Module Alias: "pci:v00001912d00000012sv00001912sd00000012bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #62 (PCI bridge)
48: PCI 4005.0: 0880 System peripheral
[Created at pci.386]
Unique ID: NwCa.cljaS7UpRr4
SysFS ID: /devices/pci0000:40/0000:40:05.0
SysFS BusID: 0000:40:05.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0e28 "Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Module Alias: "pci:v00008086d00000E28sv00001028sd000004CEbc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI 7f0d.0: 0880 System peripheral
[Created at pci.386]
Unique ID: UzgX.RRQzkS54Lc3
SysFS ID: /devices/pci0000:7f/0000:7f:0d.0
SysFS BusID: 0000:7f:0d.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee1 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE1sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.6wfG0zkrBRF
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x05
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00001D41sv00001028sd000004CEbc06sc01i00"
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
51: PCI 3f0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: GOxU.OcHeG9pnaY7
SysFS ID: /devices/pci0000:3f/0000:3f:0e.1
SysFS BusID: 0000:3f: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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000E30sv00001028sd000004CEbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 3f16.2: 0880 System peripheral
[Created at pci.386]
Unique ID: kbp4.avikhP1eDDC
SysFS ID: /devices/pci0000:3f/0000:3f:16.2
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000ECAsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI 3f13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: nch+.NEP8a6sY511
SysFS ID: /devices/pci0000:3f/0000:3f:13.0
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000E1Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI 7f10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: jIqx.A8AGCfc4Xg3
SysFS ID: /devices/pci0000:7f/0000:7f:10.0
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000EB0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI 200.0: 0104 RAID bus controller
[Created at pci.386]
Unique ID: B35A.W+zhjZp8bY5
Parent ID: jDmU.6WsEj5AOj58
SysFS ID: /devices/pci0000:00/0000:00:02.2/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: storage
Device Name: "Integrated RAID"
Model: "Dell PERC H710 Mini (for monolithics)"
Vendor: pci 0x1000 "LSI Logic / Symbios Logic"
Device: pci 0x005b "MegaRAID SAS 2208 [Thunderbolt]"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x1f38 "PERC H710 Mini (for monolithics)"
Revision: 0x05
Driver: "megaraid_sas"
Driver Modules: "megaraid_sas"
I/O Ports: 0xfc00-0xfcff (rw)
Memory Range: 0xddffc000-0xddffffff (rw,non-prefetchable)
Memory Range: 0xddf80000-0xddfbffff (rw,non-prefetchable)
Memory Range: 0xdd000000-0xdd01ffff (ro,non-prefetchable,disabled)
IRQ: 47 (no events)
Module Alias: "pci:v00001000d0000005Bsv00001028sd00001F38bc01sc04i00"
Driver Info #0:
Driver Status: megaraid_sas is active
Driver Activation Cmd: "modprobe megaraid_sas"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #121 (PCI bridge)
56: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.2s4FophZcZ6
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00000E02sv00001028sd000004CEbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI 3f0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: xTST.6UOGHN8GQ82
SysFS ID: /devices/pci0000:3f/0000:3f:0f.4
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EACsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 3f0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: zUKO._gFDBASBwl4
SysFS ID: /devices/pci0000:3f/0000:3f:0c.2
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE4sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 1c.7: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 0Rrv.MTSyyb77Qu0
SysFS ID: /devices/pci0000:00/0000:00:1c.7
SysFS BusID: 0000:00:1c.7
Hardware Class: bridge
Model: "Intel C600/X79 series chipset PCI Express Root Port 8"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1d1e "C600/X79 series chipset PCI Express Root Port 8"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0xb5
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00008086d00001D1Esv00001028sd000004CEbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI 3f10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: cZzR.n1nVZanEDx4
SysFS ID: /devices/pci0000:3f/0000:3f:10.7
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EB7sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI 3f16.0: 0880 System peripheral
[Created at pci.386]
Unique ID: +xqP.Y4qEkGoDASB
SysFS ID: /devices/pci0000:3f/0000:3f:16.0
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI 800.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: GBI1.Q5cGNjA5kBC
Parent ID: aK5u.Q5cGNjA5kBC
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:07:00.0/0000:08:00.0
SysFS BusID: 0000:08:00.0
Hardware Class: bridge
Model: "Renesas SH7757 PCIe Switch [PS]"
Vendor: pci 0x1912 "Renesas Technology Corp."
Device: pci 0x0013 "SH7757 PCIe Switch [PS]"
SubVendor: pci 0x1912 "Renesas Technology Corp."
SubDevice: pci 0x0013
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00001912d00000013sv00001912sd00000013bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #83 (PCI bridge)
63: PCI 100.2: 0200 Ethernet controller
[Created at pci.386]
Unique ID: rz7Q.Q_eD320FVIA
Parent ID: vSkL.2s4FophZcZ6
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.2
SysFS BusID: 0000:01:00.2
Hardware Class: network
Device Name: "NIC3"
Model: "Dell Gigabit 4P I350-t rNDC"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1521 "I350 Gigabit Network Connection"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x1f60 "Gigabit 4P I350-t rNDC"
Revision: 0x01
Driver: "igb"
Driver Modules: "igb"
Device File: eno3
Memory Range: 0xdcd00000-0xdcdfffff (rw,non-prefetchable)
Memory Range: 0xdcff8000-0xdcffbfff (rw,non-prefetchable)
Memory Range: 0xdc100000-0xdc17ffff (ro,non-prefetchable,disabled)
IRQ: 74 (no events)
HW Address: 0D91A867ACD4288240E79119AD54AA97
Permanent HW Address: 0D91A867ACD4288240E79119AD54AA97
Link detected: no
Module Alias: "pci:v00008086d00001521sv00001028sd00001F60bc02sc00i00"
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: #56 (PCI bridge)
64: PCI 7f0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: QPDr.OcHeG9pnaY7
SysFS ID: /devices/pci0000:7f/0000:7f:0e.1
SysFS BusID: 0000:7f: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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000E30sv00001028sd000004CEbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 7f16.2: 0880 System peripheral
[Created at pci.386]
Unique ID: vc5R.avikhP1eDDC
SysFS ID: /devices/pci0000:7f/0000:7f:16.2
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000ECAsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: PCI 3f0a.3: 0880 System peripheral
[Created at pci.386]
Unique ID: hbjH.z+5VKQCiXX9
SysFS ID: /devices/pci0000:3f/0000:3f:0a.3
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI 7f13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: ydzL.NEP8a6sY511
SysFS ID: /devices/pci0000:7f/0000:7f:13.0
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000E1Dsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 3f0f.2: 0880 System peripheral
[Created at pci.386]
Unique ID: CqTo.4fVmJEvrMN1
SysFS ID: /devices/pci0000:3f/0000:3f:0f.2
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EAAsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI 3f0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: ErLj.w0UDGuzMpD3
SysFS ID: /devices/pci0000:3f/0000:3f:0c.0
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI 4001.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 4U0i.2s4FophZcZ6
SysFS ID: /devices/pci0000:40/0000:40:01.0
SysFS BusID: 0000:40:01.0
Hardware Class: bridge
Device Name: "SLOT 1"
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "pcieport"
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00000E02sv00001028sd000004CEbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI 7f0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: 5Vkp.6UOGHN8GQ82
SysFS ID: /devices/pci0000:7f/0000:7f:0f.4
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EACsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI 7f0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 8Wck._gFDBASBwl4
SysFS ID: /devices/pci0000:7f/0000:7f:0c.2
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE4sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI 3f10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: tv_m.lCu+bVCc9b5
SysFS ID: /devices/pci0000:3f/0000:3f:10.5
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000EB5sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.+Jb6qEU3+27
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x05
Memory Range: 0xdf8fc000-0xdf8fc00f (rw,non-prefetchable)
Module Alias: "pci:v00008086d00001D3Asv00001028sd000004CEbc07sc80i00"
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
75: PCI 7f10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: maFo.n1nVZanEDx4
SysFS ID: /devices/pci0000:7f/0000:7f:10.7
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EB7sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: PCI 100.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wcdH.Q_eD320FVIA
Parent ID: vSkL.2s4FophZcZ6
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: network
Device Name: "NIC1"
Model: "Dell Gigabit 4P I350-t rNDC"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1521 "I350 Gigabit Network Connection"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x1f60 "Gigabit 4P I350-t rNDC"
Revision: 0x01
Driver: "igb"
Driver Modules: "igb"
Device File: eno1
Memory Range: 0xdcb00000-0xdcbfffff (rw,non-prefetchable)
Memory Range: 0xdcff0000-0xdcff3fff (rw,non-prefetchable)
Memory Range: 0xdc000000-0xdc07ffff (ro,non-prefetchable,disabled)
IRQ: 37 (no events)
HW Address: 215D5EB7F299CCA3B38D850A07E7B509
Permanent HW Address: 215D5EB7F299CCA3B38D850A07E7B509
Link detected: yes
Module Alias: "pci:v00008086d00001521sv00001028sd00001F60bc02sc00i00"
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: #56 (PCI bridge)
77: PCI 3f0d.3: 0880 System peripheral
[Created at pci.386]
Unique ID: vwsh.Xw4TdtoIVv5
SysFS ID: /devices/pci0000:3f/0000:3f:0d.3
SysFS BusID: 0000:3f:0d.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee7 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE7sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI 7f16.0: 0880 System peripheral
[Created at pci.386]
Unique ID: Az6m.Y4qEkGoDASB
SysFS ID: /devices/pci0000:7f/0000:7f:16.0
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
79: PCI a00.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: cuhJ.jy3dPFZRTq5
Parent ID: x1VA.O345oJ4CKC8
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:07:00.0/0000:08:00.0/0000:09:00.0/0000:0a:00.0
SysFS BusID: 0000:0a:00.0
Hardware Class: graphics card
Device Name: "Embedded Video"
Model: "Matrox G200eR2"
Vendor: pci 0x102b "Matrox Graphics, Inc."
Device: pci 0x0534 "G200eR2"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04ce
Driver: "mgag200"
Driver Modules: "mgag200"
Memory Range: 0xd8000000-0xd8ffffff (ro,non-prefetchable)
Memory Range: 0xdeffc000-0xdeffffff (rw,non-prefetchable)
Memory Range: 0xde000000-0xde7fffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 19 (no events)
Module Alias: "pci:v0000102Bd00000534sv00001028sd000004CEbc03sc00i00"
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: #47 (PCI bridge)
80: PCI 3f0a.1: 0880 System peripheral
[Created at pci.386]
Unique ID: yxkc.xAD+MHzHUm8
SysFS ID: /devices/pci0000:3f/0000:3f:0a.1
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC1sv00008086sd00000000bc08sc80i00"
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.z+5VKQCiXX9
SysFS ID: /devices/pci0000:7f/0000:7f:0a.3
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
82: PCI 3f0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: TAV7.2qcGM5gRJc0
SysFS ID: /devices/pci0000:3f/0000:3f:0f.0
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EA8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
83: PCI 700.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: aK5u.Q5cGNjA5kBC
Parent ID: 0Rrv.MTSyyb77Qu0
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:07:00.0
SysFS BusID: 0000:07:00.0
Hardware Class: bridge
Model: "Renesas SH7757 PCIe Switch [PS]"
Vendor: pci 0x1912 "Renesas Technology Corp."
Device: pci 0x0013 "SH7757 PCIe Switch [PS]"
SubVendor: pci 0x1912 "Renesas Technology Corp."
SubDevice: pci 0x0013
Driver: "pcieport"
Module Alias: "pci:v00001912d00000013sv00001912sd00000013bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #59 (PCI bridge)
84: PCI 7f0f.2: 0880 System peripheral
[Created at pci.386]
Unique ID: Nrl8.4fVmJEvrMN1
SysFS ID: /devices/pci0000:7f/0000:7f:0f.2
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EAAsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
85: PCI 7f0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: Psd3.w0UDGuzMpD3
SysFS ID: /devices/pci0000:7f/0000:7f:0c.0
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE0sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
86: PCI 3f13.5: 1101 Performance counters
[Created at pci.386]
Unique ID: 6F8B.U5y79aW0lr9
SysFS ID: /devices/pci0000:3f/0000:3f:13.5
SysFS BusID: 0000:3f: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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000E36sv00001028sd000004CEbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
87: PCI 3f10.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 8G06.jN+VeMzB6q4
SysFS ID: /devices/pci0000:3f/0000:3f:10.3
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EB3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
88: PCI 7f10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: 2xG7.lCu+bVCc9b5
SysFS ID: /devices/pci0000:7f/0000:7f:10.5
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000EB5sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
89: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+.M6xx9XqXZh2
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0xa5
Module Alias: "pci:v00008086d0000244Esv00001028sd000004CEbc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
90: PCI 3f0d.1: 0880 System peripheral
[Created at pci.386]
Unique ID: BHu0.TGJTibKUON4
SysFS ID: /devices/pci0000:3f/0000:3f:0d.1
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
91: PCI 7f0d.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 4y82.Xw4TdtoIVv5
SysFS ID: /devices/pci0000:7f/0000:7f:0d.3
SysFS BusID: 0000:7f:0d.3
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0ee7 "Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE7sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
92: PCI 7f0a.1: 0880 System peripheral
[Created at pci.386]
Unique ID: 7z0z.xAD+MHzHUm8
SysFS ID: /devices/pci0000:7f/0000:7f:0a.1
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EC1sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
93: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.yARvnZRxkJ9
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Module Alias: "pci:v00008086d00000E00sv00001028sd000004CEbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
94: PCI 7f0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: eBnT.2qcGM5gRJc0
SysFS ID: /devices/pci0000:7f/0000:7f:0f.0
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EA8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
95: PCI 3f10.1: 0880 System peripheral
[Created at pci.386]
Unique ID: Pc1R.hY60hDkn234
SysFS ID: /devices/pci0000:3f/0000:3f:10.1
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000EB1sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
96: PCI 7f13.5: 1101 Performance counters
[Created at pci.386]
Unique ID: GGQX.U5y79aW0lr9
SysFS ID: /devices/pci0000:7f/0000:7f:13.5
SysFS BusID: 0000:7f: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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "ivbep_uncore"
Module Alias: "pci:v00008086d00000E36sv00001028sd000004CEbc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
97: PCI 7f10.3: 0880 System peripheral
[Created at pci.386]
Unique ID: JHIS.jN+VeMzB6q4
SysFS ID: /devices/pci0000:7f/0000:7f:10.3
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EB3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
98: PCI 7f0d.1: 0880 System peripheral
[Created at pci.386]
Unique ID: LIAN.TGJTibKUON4
SysFS ID: /devices/pci0000:7f/0000:7f:0d.1
SysFS BusID: 0000:7f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x04
Module Alias: "pci:v00008086d00000EE3sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
99: PCI 03.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 3hqH.8LlkgEPoms8
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Device Name: "SLOT 3"
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 0x1028 "Dell"
SubDevice: pci 0x04ce
Revision: 0x04
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d00000E08sv00001028sd000004CEbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
100: PCI 3f0b.0: 0880 System peripheral
[Created at pci.386]
Unique ID: 9kIF.ueLu2hzFdP1
SysFS ID: /devices/pci0000:3f/0000:3f:0b.0
SysFS BusID: 0000:3f:0b.0
Hardware Class: unknown
Model: "Intel Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers"