-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathA9C87C6C9C
2497 lines (2342 loc) · 95.4 KB
/
A9C87C6C9C
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
33: PCI 300.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: 9k3S.E2l3+2nwDtC
Parent ID: z8Q3.2xsBCCOeCk0
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Hewlett-Packard Company NC382i Integrated Multi-port PCI Express Gigabit Server Adapter"
Vendor: pci 0x14e4 "Broadcom"
Device: pci 0x1639 "NetXtreme II BCM5709 Gigabit Ethernet"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x7055 "NC382i Integrated Multi-port PCI Express Gigabit Server Adapter"
Revision: 0x20
Driver: "bnx2"
Driver Modules: "bnx2"
Device File: enp3s0f0
Memory Range: 0xf4000000-0xf5ffffff (rw,non-prefetchable)
IRQ: 16 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000014E4d00001639sv0000103Csd00007055bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
34: PCI 3f06.1: 0600 Host bridge
[Created at pci.386]
Unique ID: eVYk.RwxNWYk_Ey7
SysFS ID: /devices/pci0000:3f/0000:3f:06.1
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DB1sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 3e05.0: 0600 Host bridge
[Created at pci.386]
Unique ID: 0DpH.oBSeBQgeVV4
SysFS ID: /devices/pci0000:3e/0000:3e:05.0
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA8sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.2xsBCCOeCk0
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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330d
Driver: "pcieport"
IRQ: 16 (no events)
Module Alias: "pci:v00008086d00003A40sv0000103Csd0000330Dbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 3f02.5: 0600 Host bridge
[Created at pci.386]
Unique ID: oMJC.+JWP3f41VeE
SysFS ID: /devices/pci0000:3f/0000:3f:02.5
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D95sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI 08.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: RE4e.igHgb8Z9aMC
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: bridge
Model: "Intel 5520/5500/X58 I/O Hub PCI Express Root Port 8"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340f "5520/5500/X58 I/O Hub PCI Express Root Port 8"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b
Revision: 0x13
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00008086d0000340Fsv0000103Csd0000330Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 0d.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qnJ_.FZ75pr5vsdC
SysFS ID: /devices/pci0000:00/0000:00:0d.0
SysFS BusID: 0000:00:0d.0
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x343a
Revision: 0x13
Module Alias: "pci:v00008086d0000343Asv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 200.2: 0880 System peripheral
[Created at pci.386]
Unique ID: wi3r.EAX6qDdDfHC
Parent ID: QSNP.AFQB2mKHQo3
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:02:00.2
SysFS BusID: 0000:02:00.2
Hardware Class: unknown
Model: "Hewlett-Packard Company iLO 2"
Vendor: pci 0x103c "Hewlett-Packard Company"
Device: pci 0x3307 "Integrated Lights-Out Standard Management Processor Support and Messaging"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x3309 "iLO 2"
Revision: 0x04
Driver: "hpilo"
Driver Modules: "hpilo"
I/O Ports: 0x3800-0x38ff (rw)
Memory Range: 0xf1fe0000-0xf1fe00ff (rw,non-prefetchable)
Memory Range: 0xf1e00000-0xf1efffff (rw,non-prefetchable)
Memory Range: 0xf1d80000-0xf1dfffff (rw,non-prefetchable)
Memory Range: 0xf1d70000-0xf1d77fff (rw,non-prefetchable)
Memory Range: 0xf1d60000-0xf1d67fff (rw,non-prefetchable)
Memory Range: 0xf1d00000-0xf1d0ffff (ro,non-prefetchable,disabled)
IRQ: 17 (no events)
Module Alias: "pci:v0000103Cd00003307sv0000103Csd00003309bc08sc80i00"
Driver Info #0:
Driver Status: hpilo is active
Driver Activation Cmd: "modprobe hpilo"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #111 (PCI bridge)
41: PCI 3f04.2: 0600 Host bridge
[Created at pci.386]
Unique ID: Mcxd.iin8J+yPLC2
SysFS ID: /devices/pci0000:3f/0000:3f:04.2
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA2sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
42: PCI 3e06.3: 0600 Host bridge
[Created at pci.386]
Unique ID: hIKG.TlqtThzOIj8
SysFS ID: /devices/pci0000:3e/0000:3e:06.3
SysFS BusID: 0000:3e:06.3
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2db3 "Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DB3sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 3e03.1: 0600 Host bridge
[Created at pci.386]
Unique ID: kJCB.3_HP_su3clE
SysFS ID: /devices/pci0000:3e/0000:3e:03.1
SysFS BusID: 0000:3e:03.1
Hardware Class: bridge
Model: "Intel Xeon 5600 Series Integrated Memory Controller Target Address Decoder"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x2d99 "Xeon 5600 Series Integrated Memory Controller Target Address Decoder"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D99sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 1d.3: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: eEx1.0k8k9aQ8T50
SysFS ID: /devices/pci0000:00/0000:00:1d.3
SysFS BusID: 0000:00:1d.3
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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330d
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1060-0x107f (rw)
IRQ: 23 (42 events)
Module Alias: "pci:v00008086d00003A39sv0000103Csd0000330Dbc0Csc03i00"
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
45: PCI 0e.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Vtqy.KNesqWZeei3
SysFS ID: /devices/pci0000:00/0000:00:0e.3
SysFS BusID: 0000:00:0e.3
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x341f
Revision: 0x13
Module Alias: "pci:v00008086d0000341Fsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.HPdH5PdtjM5
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel 82801JIB (ICH10) LPC Interface Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3a18 "82801JIB (ICH10) LPC Interface Controller"
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00003A18sv00000000sd00000000bc06sc01i00"
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 3f02.3: 0600 Host bridge
[Created at pci.386]
Unique ID: 3jKX.zUdv5WrcRtD
SysFS ID: /devices/pci0000:3f/0000:3f:02.3
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D93sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 200.0: 0880 System peripheral
[Created at pci.386]
Unique ID: B35A.jlaMLfVW7vB
Parent ID: QSNP.AFQB2mKHQo3
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: unknown
Model: "Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support"
Vendor: pci 0x103c "Hewlett-Packard Company"
Device: pci 0x3306 "Integrated Lights-Out Standard Slave Instrumentation & System Support"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x3309
Revision: 0x04
I/O Ports: 0x3000-0x3fff (rw)
Memory Range: 0xf1ff0000-0xf1ff01ff (rw,non-prefetchable)
I/O Ports: 0x3400-0x34ff (rw)
IRQ: 10 (no events)
Module Alias: "pci:v0000103Cd00003306sv0000103Csd00003309bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #111 (PCI bridge)
49: PCI 3f04.0: 0600 Host bridge
[Created at pci.386]
Unique ID: dyyy.gtueLsj+HR1
SysFS ID: /devices/pci0000:3f/0000:3f:04.0
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA0sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI 3e06.1: 0600 Host bridge
[Created at pci.386]
Unique ID: zeLb.RwxNWYk_Ey7
SysFS ID: /devices/pci0000:3e/0000:3e:06.1
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DB1sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.5ngQE9kDug9
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Hewlett-Packard Company ProLiant G6 series"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3408 "5520/5500/X58 I/O Hub PCI Express Root Port 1"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b "ProLiant G6 series"
Revision: 0x13
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00003408sv0000103Csd0000330Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 1d.1: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: vayM.y3NkEMc5M_F
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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330d
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1020-0x103f (rw)
IRQ: 23 (42 events)
Module Alias: "pci:v00008086d00003A35sv0000103Csd0000330Dbc0Csc03i00"
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
53: PCI b00.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: IluS.AxGd7hiuG+6
Parent ID: RE4e.igHgb8Z9aMC
SysFS ID: /devices/pci0000:00/0000:00:08.0/0000:0b:00.0
SysFS BusID: 0000:0b:00.0
Hardware Class: storage
Model: "Samsung Electronics NVMe SSD Controller SM981/PM981/PM983"
Vendor: pci 0x144d "Samsung Electronics Co Ltd"
Device: pci 0xa808 "NVMe SSD Controller SM981/PM981/PM983"
SubVendor: pci 0x144d "Samsung Electronics Co Ltd"
SubDevice: pci 0xa801
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xfbef0000-0xfbef3fff (rw,non-prefetchable)
IRQ: 52 (no events)
Module Alias: "pci:v0000144Dd0000A808sv0000144Dsd0000A801bc01sc08i02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (PCI bridge)
54: PCI 3e02.5: 0600 Host bridge
[Created at pci.386]
Unique ID: 7W63.+JWP3f41VeE
SysFS ID: /devices/pci0000:3e/0000:3e:02.5
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D95sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI 0e.1: 0600 Host bridge
[Created at pci.386]
Unique ID: mDsH.IYlMtNKEbx2
SysFS ID: /devices/pci0000:00/0000:00:0e.1
SysFS BusID: 0000:00:0e.1
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x341d
Revision: 0x13
Module Alias: "pci:v00008086d0000341Dsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
56: PCI 3f05.3: 0600 Host bridge
[Created at pci.386]
Unique ID: I2Ux.LRHud71m4f5
SysFS ID: /devices/pci0000:3f/0000:3f:05.3
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DABsv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI 3f02.1: 0600 Host bridge
[Created at pci.386]
Unique ID: L3Ms.xfkP8NcCO6D
SysFS ID: /devices/pci0000:3f/0000:3f:02.1
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D91sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 3e04.2: 0600 Host bridge
[Created at pci.386]
Unique ID: glkU.iin8J+yPLC2
SysFS ID: /devices/pci0000:3e/0000:3e:04.2
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA2sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PCI 04.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 8otl.e0Wggs4LTqA
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: bridge
Model: "Intel 5520/X58 I/O Hub PCI Express Root Port 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340b "5520/X58 I/O Hub PCI Express Root Port 4"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b
Revision: 0x13
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d0000340Bsv0000103Csd0000330Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: PCI 3f03.4: 0600 Host bridge
[Created at pci.386]
Unique ID: 09tq.cD7fQaFBBvF
SysFS ID: /devices/pci0000:3f/0000:3f:03.4
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D9Csv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: PCI 3e02.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Os7O.zUdv5WrcRtD
SysFS ID: /devices/pci0000:3e/0000:3e:02.3
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D93sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: PCI 400.1: 0200 Ethernet controller
[Created at pci.386]
Unique ID: 22yg.E2l3+2nwDtC
Parent ID: hoOk.6beB7UsSJG2
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:04:00.1
SysFS BusID: 0000:04:00.1
Hardware Class: network
Model: "Hewlett-Packard Company NC382i Integrated Multi-port PCI Express Gigabit Server Adapter"
Vendor: pci 0x14e4 "Broadcom"
Device: pci 0x1639 "NetXtreme II BCM5709 Gigabit Ethernet"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x7055 "NC382i Integrated Multi-port PCI Express Gigabit Server Adapter"
Revision: 0x20
Driver: "bnx2"
Driver Modules: "bnx2"
Device File: enp4s0f1
Memory Range: 0xf6000000-0xf7ffffff (rw,non-prefetchable)
IRQ: 19 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000014E4d00001639sv0000103Csd00007055bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #122 (PCI bridge)
63: PCI 3f05.1: 0600 Host bridge
[Created at pci.386]
Unique ID: ZOVG.JcOOg_nL1u4
SysFS ID: /devices/pci0000:3f/0000:3f:05.1
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA9sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: PCI 3e04.0: 0600 Host bridge
[Created at pci.386]
Unique ID: y5mp.gtueLsj+HR1
SysFS ID: /devices/pci0000:3e/0000:3e:04.0
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA0sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: PCI 0d.5: 0600 Host bridge
[Created at pci.386]
Unique ID: 9Qm9.EuzMy5sPUP1
SysFS ID: /devices/pci0000:00/0000:00:0d.5
SysFS BusID: 0000:00:0d.5
Hardware Class: bridge
Model: "Intel 7500/5520/5500 Physical Layer Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3419 "7500/5520/5500 Physical Layer Port 1"
Revision: 0x13
Module Alias: "pci:v00008086d00003419sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: PCI 07.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: M71A.BGLw6aRS2_B
SysFS ID: /devices/pci0000:00/0000:00:07.0
SysFS BusID: 0000:00:07.0
Hardware Class: bridge
Model: "Hewlett-Packard Company ProLiant ML150 G6 Server"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340e "5520/5500/X58 I/O Hub PCI Express Root Port 7"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b "ProLiant ML150 G6 Server"
Revision: 0x13
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00008086d0000340Esv0000103Csd0000330Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: PCI 14.1: 0800 PIC (8259)
[Created at pci.386]
Unique ID: Eu86.YmZvQ3q7l65
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"
SubVendor: pci 0x003c
SubDevice: pci 0x000b
Revision: 0x13
Module Alias: "pci:v00008086d00003422sv0000003Csd0000000Bbc08sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: PCI 3f03.2: 0600 Host bridge
[Created at pci.386]
Unique ID: HVu9.aOE9TR0n78F
SysFS ID: /devices/pci0000:3f/0000:3f:03.2
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D9Asv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: PCI 3e05.3: 0600 Host bridge
[Created at pci.386]
Unique ID: dBHo.LRHud71m4f5
SysFS ID: /devices/pci0000:3e/0000:3e:05.3
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DABsv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: PCI 3f00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: JWm4.Hc2RvMKCJMB
SysFS ID: /devices/pci0000:3f/0000:3f:00.0
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002C70sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: PCI 3e02.1: 0600 Host bridge
[Created at pci.386]
Unique ID: fC9j.xfkP8NcCO6D
SysFS ID: /devices/pci0000:3e/0000:3e:02.1
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D91sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: PCI 103.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: kX1R.o_JrRNWqxE3
Parent ID: 6NW+.RcDfn3vgRg7
SysFS ID: /devices/pci0000:00/0000:00:1e.0/0000:01:03.0
SysFS BusID: 0000:01:03.0
Hardware Class: graphics card
Model: "ATI ES1000 515E"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x515e "ES1000 515E"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x31fb
Revision: 0x02
Memory Range: 0xe8000000-0xefffffff (ro,non-prefetchable)
I/O Ports: 0x2000-0x2fff (rw)
Memory Range: 0xf1cf0000-0xf1cfffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 7 (no events)
I/O Ports: 0x3c0-0x3df (rw)
Module Alias: "pci:v00001002d0000515Esv0000103Csd000031FBbc03sc00i00"
Driver Info #0:
XFree86 v4 Server Module: radeon
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #74 (PCI bridge)
73: PCI 0d.3: 0600 Host bridge
[Created at pci.386]
Unique ID: QmnU.ooyKFZS0SnD
SysFS ID: /devices/pci0000:00/0000:00:0d.3
SysFS BusID: 0000:00:0d.3
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x343d
Revision: 0x13
Module Alias: "pci:v00008086d0000343Dsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: PCI 1e.0: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: 6NW+.RcDfn3vgRg7
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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330d
Revision: 0x90
Module Alias: "pci:v00008086d0000244Esv0000103Csd0000330Dbc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: PCI 3e03.4: 0600 Host bridge
[Created at pci.386]
Unique ID: KIgh.cD7fQaFBBvF
SysFS ID: /devices/pci0000:3e/0000:3e:03.4
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D9Csv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: PCI 300.1: 0200 Ethernet controller
[Created at pci.386]
Unique ID: cvJW.E2l3+2nwDtC
Parent ID: z8Q3.2xsBCCOeCk0
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:03:00.1
SysFS BusID: 0000:03:00.1
Hardware Class: network
Model: "Hewlett-Packard Company NC382i Integrated Multi-port PCI Express Gigabit Server Adapter"
Vendor: pci 0x14e4 "Broadcom"
Device: pci 0x1639 "NetXtreme II BCM5709 Gigabit Ethernet"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x7055 "NC382i Integrated Multi-port PCI Express Gigabit Server Adapter"
Revision: 0x20
Driver: "bnx2"
Driver Modules: "bnx2"
Device File: enp3s0f1
Memory Range: 0xf2000000-0xf3ffffff (rw,non-prefetchable)
IRQ: 17 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000014E4d00001639sv0000103Csd00007055bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
77: PCI 3f06.2: 0600 Host bridge
[Created at pci.386]
Unique ID: Wq1a.yKu7+6shmK8
SysFS ID: /devices/pci0000:3f/0000:3f:06.2
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DB2sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
78: PCI 3f03.0: 0600 Host bridge
[Created at pci.386]
Unique ID: YrvU.YZLfVInM4NE
SysFS ID: /devices/pci0000:3f/0000:3f:03.0
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D98sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
79: PCI 3e05.1: 0600 Host bridge
[Created at pci.386]
Unique ID: uXI7.JcOOg_nL1u4
SysFS ID: /devices/pci0000:3e/0000:3e:05.1
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA9sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
80: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.+515EvTb0RC
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Hewlett-Packard Company ProLiant G6 series"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3406 "5520 I/O Hub to ESI Port"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b "ProLiant G6 series"
Revision: 0x13
Module Alias: "pci:v00008086d00003406sv0000103Csd0000330Bbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
81: PCI 0d.1: 0600 Host bridge
[Created at pci.386]
Unique ID: h6pp.mz3rHQDcO0D
SysFS ID: /devices/pci0000:00/0000:00:0d.1
SysFS BusID: 0000:00:0d.1
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x343b
Revision: 0x13
Module Alias: "pci:v00008086d0000343Bsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
82: PCI 3f04.3: 0600 Host bridge
[Created at pci.386]
Unique ID: DxQT.D7kunZ47ta2
SysFS ID: /devices/pci0000:3f/0000:3f:04.3
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA3sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
83: PCI 3e03.2: 0600 Host bridge
[Created at pci.386]
Unique ID: beh0.aOE9TR0n78F
SysFS ID: /devices/pci0000:3e/0000:3e:03.2
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D9Asv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
84: PCI 3e00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: efZx.Hc2RvMKCJMB
SysFS ID: /devices/pci0000:3e/0000:3e:00.0
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002C70sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
85: PCI 3f06.0: 0600 Host bridge
[Created at pci.386]
Unique ID: nA3v.wV+d1_cHjZ7
SysFS ID: /devices/pci0000:3f/0000:3f:06.0
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DB0sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
86: PCI 03.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 3hqH.7cZwBIzdxRA
SysFS ID: /devices/pci0000:00/0000:00:03.0
SysFS BusID: 0000:00:03.0
Hardware Class: bridge
Model: "Hewlett-Packard Company ProLiant ML150 G6 Server"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340a "5520/5500/X58 I/O Hub PCI Express Root Port 3"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b "ProLiant ML150 G6 Server"
Revision: 0x13
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00008086d0000340Asv0000103Csd0000330Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
87: PCI 0e.4: 0600 Host bridge
[Created at pci.386]
Unique ID: MCKo.k8BLKH_BLFC
SysFS ID: /devices/pci0000:00/0000:00:0e.4
SysFS BusID: 0000:00:0e.4
Hardware Class: bridge
Model: "Intel Host bridge"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3439
Revision: 0x13
Module Alias: "pci:v00008086d00003439sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
88: PCI 3f02.4: 0600 Host bridge
[Created at pci.386]
Unique ID: x1qM.UvZfa4zJzFE
SysFS ID: /devices/pci0000:3f/0000:3f:02.4
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D94sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
89: PCI 3f04.1: 0600 Host bridge
[Created at pci.386]
Unique ID: UHSo.BIrOqQripp1
SysFS ID: /devices/pci0000:3f/0000:3f:04.1
SysFS BusID: 0000:3f: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DA1sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
90: PCI 3e06.2: 0600 Host bridge
[Created at pci.386]
Unique ID: qzqQ.yKu7+6shmK8
SysFS ID: /devices/pci0000:3e/0000:3e:06.2
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002DB2sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
91: PCI 3e03.0: 0600 Host bridge
[Created at pci.386]
Unique ID: t_iL.YZLfVInM4NE
SysFS ID: /devices/pci0000:3e/0000:3e:03.0
SysFS BusID: 0000:3e: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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330c
Revision: 0x02
Module Alias: "pci:v00008086d00002D98sv0000103Csd0000330Cbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
92: PCI 1d.2: 0c03 USB Controller (UHCI)
[Created at pci.386]
Unique ID: mvRC.TUJUjwjotM0
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 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330d
Driver: "uhci_hcd"
Driver Modules: "uhci_hcd"
I/O Ports: 0x1040-0x105f (rw)
IRQ: 22 (no events)
Module Alias: "pci:v00008086d00003A36sv0000103Csd0000330Dbc0Csc03i00"
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
93: PCI 06.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: H0_h.grOAe+JlWbB
SysFS ID: /devices/pci0000:00/0000:00:06.0
SysFS BusID: 0000:00:06.0
Hardware Class: bridge
Model: "Intel 5520/X58 I/O Hub PCI Express Root Port 6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x340d "5520/X58 I/O Hub PCI Express Root Port 6"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x330b
Revision: 0x13
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00008086d0000340Dsv0000103Csd0000330Bbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown