-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path29F49B3A79
2814 lines (2650 loc) · 111 KB
/
29F49B3A79
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
32: 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
33: PCI 300.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: svHJ.Q5cGNjA5kBC
Parent ID: 0Rrv._9zB_jwFpHD
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0
SysFS BusID: 0000:03: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: 33 (no events)
Module Alias: "pci:v00001912d00000013sv00001912sd00000013bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (PCI bridge)
34: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.mKVsFoslS41
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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x05
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xece8-0xecef (rw)
I/O Ports: 0xecf8-0xecfb (rw)
I/O Ports: 0xecf0-0xecf7 (rw)
I/O Ports: 0xecfc-0xecff (rw)
I/O Ports: 0xecc0-0xecdf (rw)
Memory Range: 0xdc1ff000-0xdc1ff7ff (rw,non-prefetchable)
IRQ: 40 (3525966 events)
Module Alias: "pci:v00008086d00001D02sv00001028sd000004F6bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.mMliFpw9RL9
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 0x04f6
Revision: 0xb5
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00008086d00001D10sv00001028sd000004F6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 3f10.0: 0880 System peripheral
[Created at pci.386]
Unique ID: YHYb.BJ+OH2TVn+1
SysFS ID: /devices/pci0000:3f/0000:3f:10.0
SysFS BusID: 0000:3f: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
37: 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
38: PCI 7f13.4: 1101 Performance counters
[Created at pci.386]
Unique ID: Pxwh.ttQMp12+5VF
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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Module Alias: "pci:v00008086d00003CE6sv00001028sd000004F6bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: 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
40: 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
41: PCI 900.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: x1VA.m2lGPNk7Xc4
Parent ID: nKpy.p1_ckuHmTM4
SysFS ID: /devices/pci0000:00/0000:00:03.2/0000:09:00.0
SysFS BusID: 0000:09:00.0
Hardware Class: usb controller
Model: "VIA VL805 USB 3.0 Host Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3483 "VL805 USB 3.0 Host Controller"
SubVendor: pci 0x1106 "VIA Technologies, Inc."
SubDevice: pci 0x3483
Revision: 0x01
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xdc0ff000-0xdc0fffff (rw,non-prefetchable)
IRQ: 39 (26 events)
Module Alias: "pci:v00001106d00003483sv00001106sd00003483bc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #84 (PCI bridge)
42: PCI 4005.0: 0880 System peripheral
[Created at pci.386]
Unique ID: NwCa.Fd3zYe7N5aF
SysFS ID: /devices/pci0000:40/0000:40:05.0
SysFS BusID: 0000:40: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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Module Alias: "pci:v00008086d00003C28sv00001028sd000004F6bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 3f0f.6: 0880 System peripheral
[Created at pci.386]
Unique ID: f7R8.9U6vJvD5kE1
SysFS ID: /devices/pci0000:3f/0000:3f:0f.6
SysFS BusID: 0000:3f: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
44: PCI 7f0d.0: 0880 System peripheral
[Created at pci.386]
Unique ID: UzgX.3WsLBrmQHd4
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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 7f0c.6: 0880 System peripheral
[Created at pci.386]
Unique ID: bpZ4.FUBLygBubD9
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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CF4sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.kcAW15Y_aqB
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 0x04f6
Revision: 0x05
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00001D41sv00001028sd000004F6bc06sc01i00"
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
47: PCI 3f0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: GOxU.NbOVx8P4qH9
SysFS ID: /devices/pci0000:3f/0000:3f:0e.1
SysFS BusID: 0000:3f: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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv00001028sd000004F6bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 3f13.0: 0880 System peripheral
[Created at pci.386]
Unique ID: nch+.+r4MGZIcA53
SysFS ID: /devices/pci0000:3f/0000:3f:13.0
SysFS BusID: 0000:3f: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
49: 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
50: PCI 200.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wcdH.r1AWGx81YF6
Parent ID: QSNP.ugIi5JD1f_A
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: network
Device Name: "NIC1"
Model: "Broadcom NetXtreme BCM5720 2-port Gigabit Ethernet PCIe"
Vendor: pci 0x14e4 "Broadcom"
Device: pci 0x165f "NetXtreme BCM5720 2-port Gigabit Ethernet PCIe"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04f6
Driver: "tg3"
Driver Modules: "tg3"
Device File: eno1
Memory Range: 0xd50a0000-0xd50affff (ro,non-prefetchable)
Memory Range: 0xd50b0000-0xd50bffff (ro,non-prefetchable)
Memory Range: 0xd50c0000-0xd50cffff (ro,non-prefetchable)
Memory Range: 0xda000000-0xda03ffff (ro,non-prefetchable,disabled)
IRQ: 16 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000014E4d0000165Fsv00001028sd000004F6bc02sc00i00"
Driver Info #0:
Driver Status: tg3 is active
Driver Activation Cmd: "modprobe tg3"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #123 (PCI bridge)
51: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.hjQduKL7GI1
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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d00003C02sv00001028sd000004F6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 3f0f.4: 0880 System peripheral
[Created at pci.386]
Unique ID: xTST.7fDPMm_ggT0
SysFS ID: /devices/pci0000:3f/0000:3f:0f.4
SysFS BusID: 0000:3f: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
53: PCI 3f0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: zUKO.3WsLBrmQHd4
SysFS ID: /devices/pci0000:3f/0000:3f:0c.2
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: 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
55: PCI 1c.7: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 0Rrv._9zB_jwFpHD
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 0x04f6
Revision: 0xb5
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00008086d00001D1Esv00001028sd000004F6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI 3f10.7: 0880 System peripheral
[Created at pci.386]
Unique ID: cZzR.oCceezdfTG3
SysFS ID: /devices/pci0000:3f/0000:3f:10.7
SysFS BusID: 0000:3f: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
57: PCI 800.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: 3WUg.ZTGG1DL4poA
Parent ID: 3hqH.nC57nl2MQb3
SysFS ID: /devices/pci0000:00/0000:00:03.0/0000:08:00.0
SysFS BusID: 0000:08:00.0
Hardware Class: network
Model: "Intel Ethernet Server Adapter I350-T2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1521 "I350 Gigabit Network Connection"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x5002 "Ethernet Server Adapter I350-T2"
Revision: 0x01
Driver: "igb"
Driver Modules: "igb"
Device File: enp8s0f0
Memory Range: 0xd9d00000-0xd9dfffff (rw,non-prefetchable)
Memory Range: 0xd9ff8000-0xd9ffbfff (rw,non-prefetchable)
Memory Range: 0xd9000000-0xd907ffff (ro,non-prefetchable,disabled)
IRQ: 42 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v00008086d00001521sv00008086sd00005002bc02sc00i00"
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: #94 (PCI bridge)
58: PCI 7f0e.1: 1101 Performance counters
[Created at pci.386]
Unique ID: QPDr.NbOVx8P4qH9
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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv00001028sd000004F6bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 3f0a.3: 0880 System peripheral
[Created at pci.386]
Unique ID: hbjH.hZCNfDbHerC
SysFS ID: /devices/pci0000:3f/0000:3f:0a.3
SysFS BusID: 0000:3f: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
60: 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
61: PCI 4200.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: M4NW.CORkUzrNu+B
Parent ID: Ei6e.nC57nl2MQb3
SysFS ID: /devices/pci0000:40/0000:40:03.0/0000:42:00.0
SysFS BusID: 0000:42:00.0
Hardware Class: storage
Model: "Phison Electronics Non-Volatile memory controller"
Vendor: pci 0x1987 "Phison Electronics Corporation"
Device: pci 0x5016
SubVendor: pci 0x1987 "Phison Electronics Corporation"
SubDevice: pci 0x5016
Revision: 0x01
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xd01fc000-0xd01fffff (rw,non-prefetchable)
IRQ: 61 (no events)
Module Alias: "pci:v00001987d00005016sv00001987sd00005016bc01sc08i02"
Driver Info #0:
Driver Status: nvme is active
Driver Activation Cmd: "modprobe nvme"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #103 (PCI bridge)
62: PCI 3f0f.2: 0880 System peripheral
[Created at pci.386]
Unique ID: CqTo.5qKvOdlGdiF
SysFS ID: /devices/pci0000:3f/0000:3f:0f.2
SysFS BusID: 0000:3f: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
63: PCI 3f0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: ErLj.3WsLBrmQHd4
SysFS ID: /devices/pci0000:3f/0000:3f:0c.0
SysFS BusID: 0000:3f: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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI 4001.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 4U0i.hjQduKL7GI1
SysFS ID: /devices/pci0000:40/0000:40:01.0
SysFS BusID: 0000:40:01.0
Hardware Class: bridge
Device Name: "SLOT 4"
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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "pcieport"
IRQ: 36 (no events)
Module Alias: "pci:v00008086d00003C02sv00001028sd000004F6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: 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
66: PCI 7f0c.2: 0880 System peripheral
[Created at pci.386]
Unique ID: 8Wck.3WsLBrmQHd4
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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI 3f10.5: 0880 System peripheral
[Created at pci.386]
Unique ID: tv_m.mNj8hu21Qw3
SysFS ID: /devices/pci0000:3f/0000:3f:10.5
SysFS BusID: 0000:3f: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
68: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.d06MrMHCOS3
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 0x04f6
Revision: 0x05
Memory Range: 0xdc1fb000-0xdc1fb00f (rw,non-prefetchable)
Module Alias: "pci:v00008086d00001D3Asv00001028sd000004F6bc07sc80i00"
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
69: 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
70: PCI 100.0: 0107 Serial Attached SCSI controller
[Created at pci.386]
Unique ID: VCu0.lsqn8QtYtLA
Parent ID: vSkL.hjQduKL7GI1
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: storage
Device Name: "Integrated RAID"
Model: "Broadcom / LSI SAS2308 PCI-Express Fusion-MPT SAS-2"
Vendor: pci 0x1000 "Broadcom / LSI"
Device: pci 0x0087 "SAS2308 PCI-Express Fusion-MPT SAS-2"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x1f38
Revision: 0x05
Driver: "mpt3sas"
Driver Modules: "mpt3sas"
I/O Ports: 0xfc00-0xfcff (rw)
Memory Range: 0xd8ff0000-0xd8ffffff (rw,non-prefetchable)
Memory Range: 0xd8f80000-0xd8fbffff (rw,non-prefetchable)
Memory Range: 0xd8000000-0xd80fffff (ro,non-prefetchable,disabled)
IRQ: 52 (no events)
Module Alias: "pci:v00001000d00000087sv00001028sd00001F38bc01sc07i00"
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: #51 (PCI bridge)
71: PCI 3f0a.1: 0880 System peripheral
[Created at pci.386]
Unique ID: yxkc.yL28Sgpik57
SysFS ID: /devices/pci0000:3f/0000:3f:0a.1
SysFS BusID: 0000:3f: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
72: 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
73: PCI 3f0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: TAV7.3+RPRUWsZxE
SysFS ID: /devices/pci0000:3f/0000:3f:0f.0
SysFS BusID: 0000:3f: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
74: 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
75: PCI 7f0c.0: 0880 System peripheral
[Created at pci.386]
Unique ID: Psd3.3WsLBrmQHd4
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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: PCI 3f13.5: 1101 Performance counters
[Created at pci.386]
Unique ID: 6F8B.LmV+z+9gmW8
SysFS ID: /devices/pci0000:3f/0000:3f:13.5
SysFS BusID: 0000:3f: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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C44sv00001028sd000004F6bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
77: PCI 3f10.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 8G06.kYqejlpcM93
SysFS ID: /devices/pci0000:3f/0000:3f:10.3
SysFS BusID: 0000:3f: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
78: 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
79: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+._oRBBfdgy4F
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 0x04f6
Revision: 0xa5
Module Alias: "pci:v00008086d0000244Esv00001028sd000004F6bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: PCI 3f0d.1: 0880 System peripheral
[Created at pci.386]
Unique ID: BHu0.3WsLBrmQHd4
SysFS ID: /devices/pci0000:3f/0000:3f:0d.1
SysFS BusID: 0000:3f:0d.1
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 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CE8sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
81: PCI 4100.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: gDAN.v03xHFJS+N7
Parent ID: 4U0i.hjQduKL7GI1
SysFS ID: /devices/pci0000:40/0000:40:01.0/0000:41:00.0
SysFS BusID: 0000:41:00.0
Hardware Class: usb controller
Model: "Renesas uPD720201 USB 3.0 Host Controller"
Vendor: pci 0x1912 "Renesas Technology Corp."
Device: pci 0x0014 "uPD720201 USB 3.0 Host Controller"
SubVendor: pci 0xffff "Illegal Vendor ID"
SubDevice: pci 0xffff
Revision: 0x03
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xd00fe000-0xd00fffff (rw,non-prefetchable)
IRQ: 41 (no events)
Module Alias: "pci:v00001912d00000014sv0000FFFFsd0000FFFFbc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #64 (PCI bridge)
82: PCI 3f0c.7: 0880 System peripheral
[Created at pci.386]
Unique ID: I7nZ.HJ4rvpQIf_9
SysFS ID: /devices/pci0000:3f/0000:3f:0c.7
SysFS BusID: 0000:3f:0c.7
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 System Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cf6 "Xeon E5/Core i7 System Address Decoder"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Module Alias: "pci:v00008086d00003CF6sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
83: PCI 7f0a.1: 0880 System peripheral
[Created at pci.386]
Unique ID: 7z0z.yL28Sgpik57
SysFS ID: /devices/pci0000:7f/0000:7f:0a.1
SysFS BusID: 0000:7f: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
84: PCI 03.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: nKpy.p1_ckuHmTM4
SysFS ID: /devices/pci0000:00/0000:00:03.2
SysFS BusID: 0000:00:03.2
Hardware Class: bridge
Device Name: "SLOT 3"
Model: "Intel Xeon E5/Core i7 IIO PCI Express Root Port 3c"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c0a "Xeon E5/Core i7 IIO PCI Express Root Port 3c"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d00003C0Asv00001028sd000004F6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
85: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.b2nHu45VO24
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Xeon E5/Core i7 DMI2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c00 "Xeon E5/Core i7 DMI2"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Module Alias: "pci:v00008086d00003C00sv00001028sd000004F6bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
86: PCI 7f0f.0: 0880 System peripheral
[Created at pci.386]
Unique ID: eBnT.3+RPRUWsZxE
SysFS ID: /devices/pci0000:7f/0000:7f:0f.0
SysFS BusID: 0000:7f: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
87: PCI 3f10.1: 0880 System peripheral
[Created at pci.386]
Unique ID: Pc1R.ijx8mcaCJO2
SysFS ID: /devices/pci0000:3f/0000:3f:10.1
SysFS BusID: 0000:3f:10.1
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb1 "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB1sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
88: PCI 7f13.5: 1101 Performance counters
[Created at pci.386]
Unique ID: GGQX.LmV+z+9gmW8
SysFS ID: /devices/pci0000:7f/0000:7f:13.5
SysFS BusID: 0000:7f: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 0x1028 "Dell"
SubDevice: pci 0x04f6
Revision: 0x07
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C44sv00001028sd000004F6bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
89: PCI 7f10.3: 0880 System peripheral
[Created at pci.386]
Unique ID: JHIS.kYqejlpcM93
SysFS ID: /devices/pci0000:7f/0000:7f:10.3
SysFS BusID: 0000:7f: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
90: PCI 600.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: vTuk.LfasQNMasD2
Parent ID: Ddhb.O345oJ4CKC8
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/0000:04:00.0/0000:05:00.0/0000:06:00.0
SysFS BusID: 0000:06: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 0x04f6
Driver: "mgag200"