-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path30CFD7BC18
4830 lines (4537 loc) · 185 KB
/
30CFD7BC18
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
02: None 00.0: 11001 VESA Framebuffer
[Created at bios.459]
Unique ID: rdCR.mCUP8WwEfLD
Hardware Class: framebuffer
Model: "Matrox MGA-G200"
Vendor: "Matrox"
Device: "MGA-G200"
SubVendor: "Matrox Graphics Inc."
SubDevice:
Revision: "00"
Memory Size: 7 MB + 960 kB
Memory Range: 0x00000000-0x007effff (rw)
Mode 0x0301: 640x480 (+640), 8 bits
Mode 0x0310: 640x480 (+1280), 15 bits
Mode 0x0311: 640x480 (+1280), 16 bits
Mode 0x0312: 640x480 (+2560), 24 bits
Mode 0x0300: 640x400 (+640), 8 bits
Mode 0x0303: 800x600 (+800), 8 bits
Mode 0x0313: 800x600 (+1600), 15 bits
Mode 0x0314: 800x600 (+1600), 16 bits
Mode 0x0315: 800x600 (+3200), 24 bits
Mode 0x0305: 1024x768 (+1024), 8 bits
Mode 0x0316: 1024x768 (+2048), 15 bits
Mode 0x0317: 1024x768 (+2048), 16 bits
Mode 0x0318: 1024x768 (+4096), 24 bits
Mode 0x0307: 1280x1024 (+1280), 8 bits
Mode 0x0319: 1280x1024 (+2560), 15 bits
Mode 0x031a: 1280x1024 (+2560), 16 bits
Mode 0x031c: 1600x1200 (+3200), 15 bits
Mode 0x031d: 1600x1200 (+3200), 16 bits
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 7f0a.0: 0880 System peripheral
[Created at pci.378]
Unique ID: FeX7.d4v7Q4pdir1
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CC0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI ff0c.6: 0880 System peripheral
[Created at pci.378]
Unique ID: xr7n.Rd_4PfIW5M4
SysFS ID: /devices/pci0000:ff/0000:ff:0c.6
SysFS BusID: 0000:ff:0c.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cf4 "Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CF4sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.378]
Unique ID: w7Y8.oSbKBkjjDJ8
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Device Name: "PCH Integrated SATA Controller"
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0x3070-0x3077 (rw)
I/O Ports: 0x3060-0x3063 (rw)
I/O Ports: 0x3050-0x3057 (rw)
I/O Ports: 0x3040-0x3043 (rw)
I/O Ports: 0x3020-0x303f (rw)
Memory Range: 0xd0c00000-0xd0c007ff (rw,non-prefetchable)
IRQ: 29 (6349757 events)
Module Alias: "pci:v00008086d00001D02sv00008086sd000035B0bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI bf0e.1: 1101 Performance counters
[Created at pci.378]
Unique ID: bQVB.N4lomFO3NQ8
SysFS ID: /devices/pci0000:bf/0000:bf:0e.1
SysFS BusID: 0000:bf: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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv00008086sd000035B0bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: z8Q3.oUrABln7Ca0
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0xb6
Driver: "pcieport"
IRQ: 16 (no events)
Module Alias: "pci:v00008086d00001D10sv00008086sd000035B0bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI bf13.0: 0880 System peripheral
[Created at pci.378]
Unique ID: 6fFi.B+t5jXPEgDE
SysFS ID: /devices/pci0000:bf/0000:bf:13.0
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE4sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 3f10.0: 0880 System peripheral
[Created at pci.378]
Unique ID: YHYb.NSo8k0a7H8D
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 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 7f0b.3: 0880 System peripheral
[Created at pci.378]
Unique ID: wj26.gaxLEzHX8rD
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE3sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 7f13.4: 1101 Performance counters
[Created at pci.378]
Unique ID: Pxwh.tMnfe81_edE
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE6sv00008086sd000035B0bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI ff10.0: 0880 System peripheral
[Created at pci.378]
Unique ID: 3LOe.NSo8k0a7H8D
SysFS ID: /devices/pci0000:ff/0000:ff:10.0
SysFS BusID: 0000:ff:10.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb0 "Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 7f10.2: 0880 System peripheral
[Created at pci.378]
Unique ID: Syoc.PHheh9pXKvD
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CB2sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 7f08.0: 0880 System peripheral
[Created at pci.378]
Unique ID: 5QRB.dZUBgjY3+9C
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003C80sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 4005.0: 0880 System peripheral
[Created at pci.378]
Unique ID: NwCa.F6QGOl6MeiE
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003C28sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 04.4: 0880 System peripheral
[Created at pci.378]
Unique ID: b5r5.BSeGTTeXXAD
SysFS ID: /devices/pci0000:00/0000:00:04.4
SysFS BusID: 0000:00:04.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c24 "Xeon E5/Core i7 DMA Channel 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x38007ff50000-0x38007ff53fff (rw,non-prefetchable)
IRQ: 53 (no events)
Module Alias: "pci:v00008086d00003C24sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI bf0f.4: 0880 System peripheral
[Created at pci.378]
Unique ID: GW0A.Jo09pk5JAcB
SysFS ID: /devices/pci0000:bf/0000:bf:0f.4
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CACsv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 3f0f.6: 0880 System peripheral
[Created at pci.378]
Unique ID: f7R8.efkpm_n5dBD
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: 0x06
Module Alias: "pci:v00008086d00003CAEsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI 8005.2: 0880 System peripheral
[Created at pci.378]
Unique ID: HbTb.HxImLuLmhTF
SysFS ID: /devices/pci0000:80/0000:80:05.2
SysFS BusID: 0000:80:05.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Control Status and Global Errors"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c2a "Xeon E5/Core i7 Control Status and Global Errors"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003C2Asv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI c004.4: 0880 System peripheral
[Created at pci.378]
Unique ID: 69h8.BSeGTTeXXAD
SysFS ID: /devices/pci0000:c0/0000:c0:04.4
SysFS BusID: 0000:c0:04.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c24 "Xeon E5/Core i7 DMA Channel 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x3801fff30000-0x3801fff33fff (rw,non-prefetchable)
IRQ: 83 (no events)
Module Alias: "pci:v00008086d00003C24sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI 4004.6: 0880 System peripheral
[Created at pci.378]
Unique ID: Vm57.DHXmQctxaxD
SysFS ID: /devices/pci0000:40/0000:40:04.6
SysFS BusID: 0000:40:04.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c26 "Xeon E5/Core i7 DMA Channel 6"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x3800fff10000-0x3800fff13fff (rw,non-prefetchable)
IRQ: 63 (no events)
Module Alias: "pci:v00008086d00003C26sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 7f0d.0: 0880 System peripheral
[Created at pci.378]
Unique ID: UzgX.Fff5ept2nlF
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE8sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI bf0c.2: 0880 System peripheral
[Created at pci.378]
Unique ID: JXu4.Fff5ept2nlF
SysFS ID: /devices/pci0000:bf/0000:bf:0c.2
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE8sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI 8002.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: JcLW.j1gQhaZWsB1
SysFS ID: /devices/pci0000:80/0000:80:02.0
SysFS BusID: 0000:80:02.0
Hardware Class: bridge
Model: "Intel Xeon E5/Core i7 IIO PCI Express Root Port 2a"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c04 "Xeon E5/Core i7 IIO PCI Express Root Port 2a"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d00003C04sv00008086sd000035B0bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI ff0f.6: 0880 System peripheral
[Created at pci.378]
Unique ID: ABHB.efkpm_n5dBD
SysFS ID: /devices/pci0000:ff/0000:ff:0f.6
SysFS BusID: 0000:ff:0f.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cae "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x06
Module Alias: "pci:v00008086d00003CAEsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI 7f0c.6: 0880 System peripheral
[Created at pci.378]
Unique ID: bpZ4.Rd_4PfIW5M4
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CF4sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI bf10.7: 0880 System peripheral
[Created at pci.378]
Unique ID: xbX8._LPO5ykHzOE
SysFS ID: /devices/pci0000:bf/0000:bf:10.7
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CB7sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 1f.0: 0601 ISA bridge
[Created at pci.378]
Unique ID: BUZT.mkG_y0PyL33
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00001D41sv00008086sd000035B0bc06sc01i00"
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
59: PCI 3f0e.1: 1101 Performance counters
[Created at pci.378]
Unique ID: GOxU.N4lomFO3NQ8
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv00008086sd000035B0bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI 3f13.0: 0880 System peripheral
[Created at pci.378]
Unique ID: nch+.B+t5jXPEgDE
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE4sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI ff0e.1: 1101 Performance counters
[Created at pci.378]
Unique ID: mRnX.N4lomFO3NQ8
SysFS ID: /devices/pci0000:ff/0000:ff:0e.1
SysFS BusID: 0000:ff:0e.1
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Processor Home Agent Performance Monitoring"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c46 "Xeon E5/Core i7 Processor Home Agent Performance Monitoring"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv00008086sd000035B0bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI bf0a.3: 0880 System peripheral
[Created at pci.378]
Unique ID: 0eH_.ti+66Civ7_7
SysFS ID: /devices/pci0000:bf/0000:bf:0a.3
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CD0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI ff13.0: 0880 System peripheral
[Created at pci.378]
Unique ID: HgX2.B+t5jXPEgDE
SysFS ID: /devices/pci0000:ff/0000:ff:13.0
SysFS BusID: 0000:ff:13.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 R2PCIe"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce4 "Xeon E5/Core i7 R2PCIe"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE4sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI 7f10.0: 0880 System peripheral
[Created at pci.378]
Unique ID: jIqx.NSo8k0a7H8D
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 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 200.0: 0104 RAID bus controller
[Created at pci.378]
Unique ID: B35A.7lZj2LuXmUC
Parent ID: _Znp.j1gQhaZWsB1
SysFS ID: /devices/pci0000:00/0000:00:02.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: storage
Model: "Areca ARC-1212 4-Port PCIe to SAS/SATA II RAID Controller"
Vendor: pci 0x17d3 "Areca Technology Corp."
Device: pci 0x1680 "ARC-1680 series PCIe to SAS/SATA 3Gb RAID Controller"
SubVendor: pci 0x17d3 "Areca Technology Corp."
SubDevice: pci 0x1212 "ARC-1212 4-Port PCIe to SAS/SATA II RAID Controller"
Driver: "arcmsr"
Driver Modules: "arcmsr"
Memory Range: 0xd0b10000-0xd0b11fff (rw,non-prefetchable)
Memory Range: 0xd0b00000-0xd0b0ffff (ro,non-prefetchable,disabled)
IRQ: 33 (25555004 events)
Module Alias: "pci:v000017D3d00001680sv000017D3sd00001212bc01sc04i00"
Driver Info #0:
Driver Status: arcmsr is active
Driver Activation Cmd: "modprobe arcmsr"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #228 (PCI bridge)
66: PCI 04.2: 0880 System peripheral
[Created at pci.378]
Unique ID: sRsQ.9dlmVKP7UPC
SysFS ID: /devices/pci0000:00/0000:00:04.2
SysFS BusID: 0000:00:04.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c22 "Xeon E5/Core i7 DMA Channel 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x38007ff70000-0x38007ff73fff (rw,non-prefetchable)
IRQ: 53 (no events)
Module Alias: "pci:v00008086d00003C22sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: vSkL.hCnwjRK6pQ0
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v00008086d00003C02sv00008086sd000035B0bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI bf0f.2: 0880 System peripheral
[Created at pci.378]
Unique ID: Ys1V.Hz7frbsu6rA
SysFS ID: /devices/pci0000:bf/0000:bf:0f.2
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CAAsv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI 3f0f.4: 0880 System peripheral
[Created at pci.378]
Unique ID: xTST.Jo09pk5JAcB
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CACsv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI 8005.0: 0880 System peripheral
[Created at pci.378]
Unique ID: YxUw.F6QGOl6MeiE
SysFS ID: /devices/pci0000:80/0000:80:05.0
SysFS BusID: 0000:80:05.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Address Map, VTd_Misc, System Management"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c28 "Xeon E5/Core i7 Address Map, VTd_Misc, System Management"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003C28sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI c004.2: 0880 System peripheral
[Created at pci.378]
Unique ID: NViT.9dlmVKP7UPC
SysFS ID: /devices/pci0000:c0/0000:c0:04.2
SysFS BusID: 0000:c0:04.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c22 "Xeon E5/Core i7 DMA Channel 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x3801fff50000-0x3801fff53fff (rw,non-prefetchable)
IRQ: 83 (no events)
Module Alias: "pci:v00008086d00003C22sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI 4004.4: 0880 System peripheral
[Created at pci.378]
Unique ID: m67S.BSeGTTeXXAD
SysFS ID: /devices/pci0000:40/0000:40:04.4
SysFS BusID: 0000:40:04.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c24 "Xeon E5/Core i7 DMA Channel 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x3800fff30000-0x3800fff33fff (rw,non-prefetchable)
IRQ: 63 (no events)
Module Alias: "pci:v00008086d00003C24sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI bf0c.0: 0880 System peripheral
[Created at pci.378]
Unique ID: atvP.Fff5ept2nlF
SysFS ID: /devices/pci0000:bf/0000:bf:0c.0
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE8sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI 3f0c.2: 0880 System peripheral
[Created at pci.378]
Unique ID: zUKO.Fff5ept2nlF
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE8sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: PCI ff0f.4: 0880 System peripheral
[Created at pci.378]
Unique ID: RXIW.Jo09pk5JAcB
SysFS ID: /devices/pci0000:ff/0000:ff:0f.4
SysFS BusID: 0000:ff:0f.4
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cac "Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CACsv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: PCI 7f0f.6: 0880 System peripheral
[Created at pci.378]
Unique ID: q8jU.efkpm_n5dBD
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: 0x06
Module Alias: "pci:v00008086d00003CAEsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
77: PCI 8004.6: 0880 System peripheral
[Created at pci.378]
Unique ID: gnNT.DHXmQctxaxD
SysFS ID: /devices/pci0000:80/0000:80:04.6
SysFS BusID: 0000:80:04.6
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3c26 "Xeon E5/Core i7 DMA Channel 6"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0x38017ff10000-0x38017ff13fff (rw,non-prefetchable)
IRQ: 73 (no events)
Module Alias: "pci:v00008086d00003C26sv00008086sd000035B0bc08sc80i00"
Driver Info #0:
Driver Status: ioatdma is active
Driver Activation Cmd: "modprobe ioatdma"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI 1c.7: 0604 PCI bridge (Normal decode)
[Created at pci.378]
Unique ID: 0Rrv.0I3gvfnDaW4
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0xb6
Driver: "pcieport"
IRQ: 19 (no events)
Module Alias: "pci:v00008086d00001D1Esv00008086sd000035B0bc06sc04i00"
Driver Info #0:
Driver Status: shpchp is active
Driver Activation Cmd: "modprobe shpchp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
79: PCI ff0c.2: 0880 System peripheral
[Created at pci.378]
Unique ID: UYAR.Fff5ept2nlF
SysFS ID: /devices/pci0000:ff/0000:ff:0c.2
SysFS BusID: 0000:ff:0c.2
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Unicast Register 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3ce8 "Xeon E5/Core i7 Unicast Register 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE8sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: PCI bf10.5: 0880 System peripheral
[Created at pci.378]
Unique ID: DyYT.yWWu7t9fv2F
SysFS ID: /devices/pci0000:bf/0000:bf:10.5
SysFS BusID: 0000:bf: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 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003CB5sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
81: PCI 3f10.7: 0880 System peripheral
[Created at pci.378]
Unique ID: cZzR._LPO5ykHzOE
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CB7sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
82: PCI ff10.7: 0880 System peripheral
[Created at pci.378]
Unique ID: 6dpU._LPO5ykHzOE
SysFS ID: /devices/pci0000:ff/0000:ff:10.7
SysFS BusID: 0000:ff:10.7
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cb7 "Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CB7sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
83: PCI 800.0: 0300 VGA compatible controller (VGA)
[Created at pci.378]
Unique ID: GBI1.eidvwO3DyD5
Parent ID: 0Rrv.0I3gvfnDaW4
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:08:00.0
SysFS BusID: 0000:08:00.0
Hardware Class: graphics card
Device Name: "ServerEngines Pilot III"
Model: "Matrox G200 SE A (PCI)"
Vendor: pci 0x102b "Matrox Graphics, Inc."
Device: pci 0x0522 "G200 SE A (PCI)"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0103
Revision: 0x05
Driver: "mgag200"
Driver Modules: "mgag200"
Memory Range: 0xde000000-0xdeffffff (ro,non-prefetchable)
Memory Range: 0xd0810000-0xd0813fff (rw,non-prefetchable)
Memory Range: 0xd0000000-0xd07fffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 19 (no events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v0000102Bd00000522sv00008086sd00000103bc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: mga
Extensions:
Options: NoHal
XF86Config Entry: Option "XaaNoScreenToScreenCopy"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #78 (PCI bridge)
84: PCI 7f0e.1: 1101 Performance counters
[Created at pci.378]
Unique ID: QPDr.N4lomFO3NQ8
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 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Driver: "snbep_uncore"
Module Alias: "pci:v00008086d00003C46sv00008086sd000035B0bc11sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
85: PCI bf0a.1: 0880 System peripheral
[Created at pci.378]
Unique ID: I_IJ.RXg2vlNjd23
SysFS ID: /devices/pci0000:bf/0000:bf:0a.1
SysFS BusID: 0000:bf: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: 0x06
Module Alias: "pci:v00008086d00003CC1sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
86: PCI 3f0a.3: 0880 System peripheral
[Created at pci.378]
Unique ID: hbjH.ti+66Civ7_7
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CD0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
87: PCI 7f13.0: 0880 System peripheral
[Created at pci.378]
Unique ID: ydzL.B+t5jXPEgDE
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 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CE4sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
88: PCI ff0a.3: 0880 System peripheral
[Created at pci.378]
Unique ID: BfZK.ti+66Civ7_7
SysFS ID: /devices/pci0000:ff/0000:ff:0a.3
SysFS BusID: 0000:ff:0a.3
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 Power Control Unit 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3cd0 "Xeon E5/Core i7 Power Control Unit 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x35b0
Revision: 0x06
Module Alias: "pci:v00008086d00003CD0sv00008086sd000035B0bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
89: PCI 04.0: 0880 System peripheral
[Created at pci.378]
Unique ID: 8otl.7osGYBAjQeB
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: unknown
Model: "Intel Xeon E5/Core i7 DMA Channel 0"
Vendor: pci 0x8086 "Intel Corporation"