-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path6CB5C8DA29
1642 lines (1548 loc) · 62 KB
/
6CB5C8DA29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
20: PCI 300.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: UOJ9.m7pjCDtNwYF
Parent ID: hoOk.sEc69PpkVP7
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8168 "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
SubVendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
SubDevice: pci 0x0123
Revision: 0x15
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
I/O Ports: 0xd800-0xd8ff (rw)
Memory Range: 0xf7ffb000-0xf7ffbfff (rw,non-prefetchable)
Memory Range: 0xf7ffc000-0xf7ffffff (rw,non-prefetchable)
IRQ: 18 (20936 events)
HW Address: E24EF95E598E6AC7DDA3EE5B5BCCDFFC
Permanent HW Address: E24EF95E598E6AC7DDA3EE5B5BCCDFFC
Link detected: yes
Module Alias: "pci:v000010ECd00008168sv000010ECsd00000123bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #79 (PCI bridge)
21: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.mL+OcbU+PEA
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel 82801JI (ICH10 Family) SATA AHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a22 "82801JI (ICH10 Family) SATA AHCI Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a22
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xc080-0xc087 (rw)
I/O Ports: 0xc880-0xc883 (rw)
I/O Ports: 0xc800-0xc807 (rw)
I/O Ports: 0xc480-0xc483 (rw)
I/O Ports: 0xc400-0xc41f (rw)
Memory Range: 0xf7dfc000-0xf7dfc7ff (rw,non-prefetchable)
IRQ: 33 (24034 events)
Module Alias: "pci:v00008086d00003A22sv00008086sd00003A22bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 16.6: 0880 System peripheral
[Created at pci.386]
Unique ID: ikhD.gzciwzrlV6E
SysFS ID: /devices/pci0000:00/0000:00:16.6
SysFS BusID: 0000:00:16.6
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x342b "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7dec000-0xf7deffff (rw,non-prefetchable)
IRQ: 39 (no events)
Module Alias: "pci:v00008086d0000342Bsv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI ff06.1: 0600 Host bridge
[Created at pci.386]
Unique ID: 9ZOn.asgdt3uk9Y0
SysFS ID: /devices/pci0000:ff/0000:ff:06.1
SysFS BusID: 0000:ff:06.1
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 2 Address"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2db1 "Xeon 5600 Series Integrated Memory Controller Channel 2 Address"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DB1sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.k6UOqoPAuR7
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 82801JI (ICH10 Family) PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a40 "82801JI (ICH10 Family) PCI Express Root Port 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a40
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00008086d00003A40sv00008086sd00003A40bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI ff02.5: 0600 Host bridge
[Created at pci.386]
Unique ID: JQ9F.8GFfQAEnPE7
SysFS ID: /devices/pci0000:ff/0000:ff:02.5
SysFS BusID: 0000:ff:02.5
Hardware Class: bridge
Model: "Intel Xeon 5600 Series QPI Physical 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d95 "Xeon 5600 Series QPI Physical 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D95sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI ff04.2: 0600 Host bridge
[Created at pci.386]
Unique ID: sfng.reWOgW6AGoA
SysFS ID: /devices/pci0000:ff/0000:ff:04.2
SysFS BusID: 0000:ff:04.2
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 0 Rank"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2da2 "Xeon 5600 Series Integrated Memory Controller Channel 0 Rank"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DA2sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 1a.1: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: gFpy.3Z6kVzTTbZ9
SysFS ID: /devices/pci0000:00/0000:00:1a.1
SysFS BusID: 0000:00:1a.1
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB UHCI Controller #5"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a38 "82801JI (ICH10 Family) USB UHCI Controller #5"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a38
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xb480-0xb49f (rw)
IRQ: 21 (317 events)
Module Alias: "pci:v00008086d00003A38sv00008086sd00003A38bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.t8qh8RynD75
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel 82801JIR (ICH10R) LPC Interface Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a16 "82801JIR (ICH10R) LPC Interface Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a16
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00003A16sv00008086sd00003A16bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 16.4: 0880 System peripheral
[Created at pci.386]
Unique ID: _4jY.e8kCzqcLSLD
SysFS ID: /devices/pci0000:00/0000:00:16.4
SysFS BusID: 0000:00:16.4
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3429 "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7de4000-0xf7de7fff (rw,non-prefetchable)
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00003429sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI ff02.3: 0600 Host bridge
[Created at pci.386]
Unique ID: amAa.6RM9T1+MMT6
SysFS ID: /devices/pci0000:ff/0000:ff:02.3
SysFS BusID: 0000:ff:02.3
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Mirror Port Link 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d93 "Xeon 5600 Series Mirror Port Link 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D93sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 200.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: B35A.m2lGPNk7Xc4
Parent ID: Z7uZ.wIgTJC0XJOF
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: usb controller
Model: "VIA VL805/806 xHCI USB 3.0 Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3483 "VL805/806 xHCI USB 3.0 Controller"
SubVendor: pci 0x1106 "VIA Technologies, Inc."
SubDevice: pci 0x3483
Revision: 0x01
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xf7eff000-0xf7efffff (rw,non-prefetchable)
IRQ: 34 (36 events)
Module Alias: "pci:v00001106d00003483sv00001106sd00003483bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #46 (PCI bridge)
32: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.fJpciNQdF_0
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel 5520/5500/X58 I/O Hub PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3408 "5520/5500/X58 I/O Hub PCI Express Root Port 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00003408sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 1d.1: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: vayM.zSWBmuIw5w2
SysFS ID: /devices/pci0000:00/0000:00:1d.1
SysFS BusID: 0000:00:1d.1
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB UHCI Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a35 "82801JI (ICH10 Family) USB UHCI Controller #2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a35
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xbc00-0xbc1f (rw)
IRQ: 19 (no events)
Module Alias: "pci:v00008086d00003A35sv00008086sd00003A35bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI ff04.0: 0600 Host bridge
[Created at pci.386]
Unique ID: 80p+.ppduiNtlC1A
SysFS ID: /devices/pci0000:ff/0000:ff:04.0
SysFS BusID: 0000:ff:04.0
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 0 Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2da0 "Xeon 5600 Series Integrated Memory Controller Channel 0 Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DA0sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 16.2: 0880 System peripheral
[Created at pci.386]
Unique ID: FRkt.HtDyHzghBo0
SysFS ID: /devices/pci0000:00/0000:00:16.2
SysFS BusID: 0000:00:16.2
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3432 "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7ddc000-0xf7ddffff (rw,non-prefetchable)
IRQ: 39 (no events)
Module Alias: "pci:v00008086d00003432sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 13.0: 0800 PIC (IO(X)-APIC)
[Created at pci.386]
Unique ID: HSco.49ZMt6VmQI6
SysFS ID: /devices/pci0000:00/0000:00:13.0
SysFS BusID: 0000:00:13.0
Hardware Class: unknown
Model: "Intel 7500/5520/5500/X58 I/O Hub I/OxAPIC Interrupt Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x342d "7500/5520/5500/X58 I/O Hub I/OxAPIC Interrupt Controller"
Revision: 0x13
Memory Range: 0xfec8a000-0xfec8afff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000342Dsv00000000sd00000000bc08sc00i20"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI ff05.3: 0600 Host bridge
[Created at pci.386]
Unique ID: p5K_.UN08+eAW+EE
SysFS ID: /devices/pci0000:ff/0000:ff:05.3
SysFS BusID: 0000:ff:05.3
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2dab "Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DABsv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI ff02.1: 0600 Host bridge
[Created at pci.386]
Unique ID: r6Cv.4cTfVulyIi5
SysFS ID: /devices/pci0000:ff/0000:ff:02.1
SysFS BusID: 0000:ff:02.1
Hardware Class: bridge
Model: "Intel Xeon 5600 Series QPI Physical 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d91 "Xeon 5600 Series QPI Physical 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D91sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 14.3: 0800 PIC (8259)
[Created at pci.386]
Unique ID: yX7n.FiLQtFf_hF4
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: unknown
Model: "Intel 7500/5520/5500/X58 I/O Hub Throttle Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3438 "7500/5520/5500/X58 I/O Hub Throttle Registers"
Revision: 0x13
Module Alias: "pci:v00008086d00003438sv00000000sd00000000bc08sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI ff03.4: 0600 Host bridge
[Created at pci.386]
Unique ID: WCjt.l9sun5Px5V8
SysFS ID: /devices/pci0000:ff/0000:ff:03.4
SysFS BusID: 0000:ff:03.4
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Test Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d9c "Xeon 5600 Series Integrated Memory Controller Test Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D9Csv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 16.0: 0880 System peripheral
[Created at pci.386]
Unique ID: WnlC.F2LSKqRH810
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3430 "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7dd4000-0xf7dd7fff (rw,non-prefetchable)
IRQ: 35 (no events)
Module Alias: "pci:v00008086d00003430sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI ff05.1: 0600 Host bridge
[Created at pci.386]
Unique ID: 4SLJ.SY7e1Wx5yTD
SysFS ID: /devices/pci0000:ff/0000:ff:05.1
SysFS BusID: 0000:ff:05.1
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 1 Address"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2da9 "Xeon 5600 Series Integrated Memory Controller Channel 1 Address"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DA9sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 1b.0: 0403 Audio device
[Created at pci.386]
Unique ID: u1Nb.7tsUtAwqUyF
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel 82801JI (ICH10 Family) HD Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a3e "82801JI (ICH10 Family) HD Audio Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a3e
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xf7df4000-0xf7df7fff (rw,non-prefetchable)
IRQ: 47 (856 events)
Module Alias: "pci:v00008086d00003A3Esv00008086sd00003A3Ebc04sc03i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 07.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: M71A.loT6bo7sPH3
SysFS ID: /devices/pci0000:00/0000:00:07.0
SysFS BusID: 0000:00:07.0
Hardware Class: bridge
Model: "Intel 5520/5500/X58 I/O Hub PCI Express Root Port 7"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340e "5520/5500/X58 I/O Hub PCI Express Root Port 7"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d0000340Esv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 14.1: 0800 PIC (8259)
[Created at pci.386]
Unique ID: Eu86.vaaxIniF6FD
SysFS ID: /devices/pci0000:00/0000:00:14.1
SysFS BusID: 0000:00:14.1
Hardware Class: unknown
Model: "Intel 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3422 "7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers"
Revision: 0x13
Module Alias: "pci:v00008086d00003422sv00000000sd00000000bc08sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 1c.3: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Z7uZ.wIgTJC0XJOF
SysFS ID: /devices/pci0000:00/0000:00:1c.3
SysFS BusID: 0000:00:1c.3
Hardware Class: bridge
Model: "Intel 82801JI (ICH10 Family) PCI Express Root Port 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a46 "82801JI (ICH10 Family) PCI Express Root Port 4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a46
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00008086d00003A46sv00008086sd00003A46bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI ff03.2: 0600 Host bridge
[Created at pci.386]
Unique ID: nYkC.jKzOqy9X2k7
SysFS ID: /devices/pci0000:ff/0000:ff:03.2
SysFS BusID: 0000:ff:03.2
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller RAS Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d9a "Xeon 5600 Series Integrated Memory Controller RAS Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D9Asv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI ff00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qZc7.QYngGuTyDy3
SysFS ID: /devices/pci0000:ff/0000:ff:00.0
SysFS BusID: 0000:ff:00.0
Hardware Class: bridge
Model: "Intel Xeon 5600 Series QuickPath Architecture Generic Non-core Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2c70 "Xeon 5600 Series QuickPath Architecture Generic Non-core Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002C70sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+.Fl45wtGN5yC
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 0x8086 "Intel Corporation"
SubDevice: pci 0x244e
Revision: 0x90
Module Alias: "pci:v00008086d0000244Esv00008086sd0000244Ebc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.rjkiNSpZUCD
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel 82801JI (ICH10 Family) SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a30 "82801JI (ICH10 Family) SMBus Controller"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a30
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xf7dfe000-0xf7dfe0ff (rw,non-prefetchable)
I/O Ports: 0x400-0x41f (rw)
IRQ: 18 (20936 events)
Module Alias: "pci:v00008086d00003A30sv00008086sd00003A30bc0Csc05i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.Ze9Hi7A+Nk3
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel 5520 I/O Hub to ESI Port"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3406 "5520 I/O Hub to ESI Port"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Module Alias: "pci:v00008086d00003406sv00008086sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 16.7: 0880 System peripheral
[Created at pci.386]
Unique ID: a3B3.BOZSPYzS1VE
SysFS ID: /devices/pci0000:00/0000:00:16.7
SysFS BusID: 0000:00:16.7
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x342c "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7df0000-0xf7df3fff (rw,non-prefetchable)
IRQ: 41 (no events)
Module Alias: "pci:v00008086d0000342Csv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
53: PCI ff06.2: 0600 Host bridge
[Created at pci.386]
Unique ID: 0utc.5HdNMe+Rhw0
SysFS ID: /devices/pci0000:ff/0000:ff:06.2
SysFS BusID: 0000:ff:06.2
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 2 Rank"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2db2 "Xeon 5600 Series Integrated Memory Controller Channel 2 Rank"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DB2sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI ff03.0: 0600 Host bridge
[Created at pci.386]
Unique ID: 3vlX.hV4vspw6+y6
SysFS ID: /devices/pci0000:ff/0000:ff:03.0
SysFS BusID: 0000:ff:03.0
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d98 "Xeon 5600 Series Integrated Memory Controller Registers"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D98sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI ff04.3: 0600 Host bridge
[Created at pci.386]
Unique ID: k_GW.M3T895EtnAB
SysFS ID: /devices/pci0000:ff/0000:ff:04.3
SysFS BusID: 0000:ff:04.3
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2da3 "Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DA3sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI 1a.2: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: XaIo.5bev4NaM+YD
SysFS ID: /devices/pci0000:00/0000:00:1a.2
SysFS BusID: 0000:00:1a.2
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB UHCI Controller #6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a39 "82801JI (ICH10 Family) USB UHCI Controller #6"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a39
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xb800-0xb81f (rw)
IRQ: 19 (no events)
Module Alias: "pci:v00008086d00003A39sv00008086sd00003A39bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI 03.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 3hqH.h8i6gWf1Jl1
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Model: "Intel 5520/5500/X58 I/O Hub PCI Express Root Port 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340a "5520/5500/X58 I/O Hub PCI Express Root Port 3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00008086d0000340Asv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 16.5: 0880 System peripheral
[Created at pci.386]
Unique ID: rPCO.9ZgyRPk2_jD
SysFS ID: /devices/pci0000:00/0000:00:16.5
SysFS BusID: 0000:00:16.5
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x342a "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7de8000-0xf7debfff (rw,non-prefetchable)
IRQ: 37 (no events)
Module Alias: "pci:v00008086d0000342Asv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI ff06.0: 0600 Host bridge
[Created at pci.386]
Unique ID: HEvx.3SktOVm1e90
SysFS ID: /devices/pci0000:ff/0000:ff:06.0
SysFS BusID: 0000:ff:06.0
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 2 Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2db0 "Xeon 5600 Series Integrated Memory Controller Channel 2 Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DB0sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI ff02.4: 0600 Host bridge
[Created at pci.386]
Unique ID: R5gP.drIvxb64ur6
SysFS ID: /devices/pci0000:ff/0000:ff:02.4
SysFS BusID: 0000:ff:02.4
Hardware Class: bridge
Model: "Intel Xeon 5600 Series QPI Link 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d94 "Xeon 5600 Series QPI Link 1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D94sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI 1d.2: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: mvRC.+U2NLIPpVv6
SysFS ID: /devices/pci0000:00/0000:00:1d.2
SysFS BusID: 0000:00:1d.2
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB UHCI Controller #3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a36 "82801JI (ICH10 Family) USB UHCI Controller #3"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a36
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xc000-0xc01f (rw)
IRQ: 18 (20936 events)
Module Alias: "pci:v00008086d00003A36sv00008086sd00003A36bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI ff04.1: 0600 Host bridge
[Created at pci.386]
Unique ID: +KIr.KEaeBy_SkPA
SysFS ID: /devices/pci0000:ff/0000:ff:04.1
SysFS BusID: 0000:ff:04.1
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 0 Address"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2da1 "Xeon 5600 Series Integrated Memory Controller Channel 0 Address"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DA1sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: PCI 1a.0: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: pwJ7.1XaYwZNaBa5
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB UHCI Controller #4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a37 "82801JI (ICH10 Family) USB UHCI Controller #4"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a37
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xb400-0xb41f (rw)
IRQ: 16 (13381 events)
Module Alias: "pci:v00008086d00003A37sv00008086sd00003A37bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI 16.3: 0880 System peripheral
[Created at pci.386]
Unique ID: 6mDj.oHAimXoOjA1
SysFS ID: /devices/pci0000:00/0000:00:16.3
SysFS BusID: 0000:00:16.3
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3433 "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7de0000-0xf7de3fff (rw,non-prefetchable)
IRQ: 41 (no events)
Module Alias: "pci:v00008086d00003433sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 500.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: Ddhb.fULHEDuz979
Parent ID: M71A.loT6bo7sPH3
SysFS ID: /devices/pci0000:00/0000:00:07.0/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: graphics card
Model: "nVidia G92 [GeForce GTS 250]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0615 "G92 [GeForce GTS 250]"
SubVendor: pci 0x19da "ZOTAC International (MCO) Ltd."
SubDevice: pci 0x2103
Revision: 0xa2
Memory Range: 0xfa000000-0xfaffffff (rw,non-prefetchable)
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
Memory Range: 0xf8000000-0xf9ffffff (rw,non-prefetchable)
I/O Ports: 0xec00-0xec7f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 15 (no events)
I/O Port: 0x00 (rw)
Module Alias: "pci:v000010DEd00000615sv000019DAsd00002103bc03sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #44 (PCI bridge)
66: PCI ff02.2: 0600 Host bridge
[Created at pci.386]
Unique ID: iRhk.b0QP_Stfq46
SysFS ID: /devices/pci0000:ff/0000:ff:02.2
SysFS BusID: 0000:ff:02.2
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Mirror Port Link 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d92 "Xeon 5600 Series Mirror Port Link 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D92sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI 1d.0: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: 1GTX.xQ_+AVC1iwE
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB UHCI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a34 "82801JI (ICH10 Family) USB UHCI Controller #1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a34
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0xb880-0xb89f (rw)
IRQ: 23 (320 events)
Module Alias: "pci:v00008086d00003A34sv00008086sd00003A34bc0Csc03i00"
Driver Info #0:
Driver Status: uhci-hcd is active
Driver Activation Cmd: "modprobe uhci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 16.1: 0880 System peripheral
[Created at pci.386]
Unique ID: N6F2.mSHCpOZ_fP0
SysFS ID: /devices/pci0000:00/0000:00:16.1
SysFS BusID: 0000:00:16.1
Hardware Class: unknown
Model: "Intel 5520/5500/X58 Chipset QuickData Technology Device"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3431 "5520/5500/X58 Chipset QuickData Technology Device"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "ioatdma"
Driver Modules: "ioatdma"
Memory Range: 0xf7dd8000-0xf7ddbfff (rw,non-prefetchable)
IRQ: 37 (no events)
Module Alias: "pci:v00008086d00003431sv00008086sd00000000bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI ff05.2: 0600 Host bridge
[Created at pci.386]
Unique ID: xmq8.zy3OW43pTsD
SysFS ID: /devices/pci0000:ff/0000:ff:05.2
SysFS BusID: 0000:ff:05.2
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 1 Rank"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2daa "Xeon 5600 Series Integrated Memory Controller Channel 1 Rank"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DAAsv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI ff02.0: 0600 Host bridge
[Created at pci.386]
Unique ID: _ni3.ZBXv0KeFnJ5
SysFS ID: /devices/pci0000:ff/0000:ff:02.0
SysFS BusID: 0000:ff:02.0
Hardware Class: bridge
Model: "Intel Xeon 5600 Series QPI Link 0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d90 "Xeon 5600 Series QPI Link 0"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D90sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI 1a.7: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: sClz.hhqd6eMokME
SysFS ID: /devices/pci0000:00/0000:00:1a.7
SysFS BusID: 0000:00:1a.7
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB2 EHCI Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a3c "82801JI (ICH10 Family) USB2 EHCI Controller #2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a3c
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xf7df8000-0xf7df83ff (rw,non-prefetchable)
IRQ: 18 (20936 events)
Module Alias: "pci:v00008086d00003A3Csv00008086sd00003A3Cbc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI 14.2: 0800 PIC (8259)
[Created at pci.386]
Unique ID: 5Dex.Q+WhnLqyddD
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Model: "Intel 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3423 "7500/5520/5500/X58 I/O Hub Control Status and RAS Registers"
Revision: 0x13
Module Alias: "pci:v00008086d00003423sv00000000sd00000000bc08sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: PCI ff00.1: 0600 Host bridge
[Created at pci.386]
Unique ID: hu5z.qzMgpmsgtZF
SysFS ID: /devices/pci0000:ff/0000:ff:00.1
SysFS BusID: 0000:ff:00.1
Hardware Class: bridge
Model: "Intel Xeon 5600 Series QuickPath Architecture System Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d81 "Xeon 5600 Series QuickPath Architecture System Address Decoder"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002D81sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI 02.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: _Znp.AklMByXKnM1
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: bridge
Model: "Intel 5520/5500/X58 I/O Hub PCI Express Root Port 2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3409 "5520/5500/X58 I/O Hub PCI Express Root Port 2"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x13
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d00003409sv00008086sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: PCI ff05.0: 0600 Host bridge
[Created at pci.386]
Unique ID: C7sT.x7BuYxpOQ5D
SysFS ID: /devices/pci0000:ff/0000:ff:05.0
SysFS BusID: 0000:ff:05.0
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 1 Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2da8 "Xeon 5600 Series Integrated Memory Controller Channel 1 Control"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x8086
Revision: 0x02
Module Alias: "pci:v00008086d00002DA8sv00008086sd00008086bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: PCI 1d.7: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 5YuN.ddmGyq90xN6
SysFS ID: /devices/pci0000:00/0000:00:1d.7
SysFS BusID: 0000:00:1d.7
Hardware Class: usb controller
Model: "Intel 82801JI (ICH10 Family) USB2 EHCI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a3a "82801JI (ICH10 Family) USB2 EHCI Controller #1"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x3a3a
Driver: "ehci-pci"
Driver Modules: "ehci_pci"
Memory Range: 0xf7dfa000-0xf7dfa3ff (rw,non-prefetchable)
IRQ: 23 (320 events)
Module Alias: "pci:v00008086d00003A3Asv00008086sd00003A3Abc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
77: PCI 14.0: 0800 PIC (8259)
[Created at pci.386]
Unique ID: MZfG.5Zvw3d7jQr1
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "Intel 7500/5520/5500/X58 I/O Hub System Management Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x342e "7500/5520/5500/X58 I/O Hub System Management Registers"
Revision: 0x13
Driver: "i7core_edac"
Driver Modules: "i7core_edac"
Module Alias: "pci:v00008086d0000342Esv00000000sd00000000bc08sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI ff06.3: 0600 Host bridge
[Created at pci.386]
Unique ID: uCNS.chZ7rC79DJ1
SysFS ID: /devices/pci0000:ff/0000:ff:06.3