-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathBB16149062
1420 lines (1334 loc) · 51.5 KB
/
BB16149062
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
16: PCI 08.0: 0600 Host bridge
[Created at pci.386]
Unique ID: RE4e.00mBDY0_eA3
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: bridge
Model: "AMD Family 17h (Models 00h-0fh) PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1452 "Family 17h (Models 00h-0fh) PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001452sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 18.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Fhhh.Ynj36isTxDD
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15eb
Driver: "k10temp"
Driver Modules: "k10temp"
Module Alias: "pci:v00001022d000015EBsv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: k10temp is active
Driver Activation Cmd: "modprobe k10temp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 900.0: 1300 Non-Essential Instrumentation
[Created at pci.386]
Unique ID: x1VA.cYMzbOE9zB4
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.0
SysFS BusID: 0000:09:00.0
Hardware Class: unknown
Model: "AMD Non-Essential Instrumentation"
Vendor: pci 0x1022 "AMD"
Device: pci 0x145a
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x15d8
Revision: 0xc8
Module Alias: "pci:v00001022d0000145Asv00001002sd000015D8bc13sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
19: PCI 01.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: e6j0.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.2
SysFS BusID: 0000:00:01.2
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00001022d000015D3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 18.1: 0600 Host bridge
[Created at pci.386]
Unique ID: W1j0.WyqZ8Zd3uSC
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e9
Module Alias: "pci:v00001022d000015E9sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 200.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: B35A.wLQWNoZ9vUC
Parent ID: e6j0.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x57ad
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v00001022d000057ADsv00000000sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #19 (PCI bridge)
22: PCI 01.0: 0600 Host bridge
[Created at pci.386]
Unique ID: vSkL.00mBDY0_eA3
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "AMD Family 17h (Models 00h-0fh) PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1452 "Family 17h (Models 00h-0fh) PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001452sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 306.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Kaa7.Bi8_aVsHuA4
Parent ID: B35A.wLQWNoZ9vUC
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:06.0
SysFS BusID: 0000:03:06.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x57a3
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00001022d000057A3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
24: PCI 800.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: GBI1.bD2u07ABOQ0
Parent ID: d0n+.zMur_b8T_WD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:0a.0/0000:08:00.0
SysFS BusID: 0000:08:00.0
Hardware Class: storage
Model: "AMD FCH SATA Controller [AHCI mode]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x7901 "FCH SATA Controller [AHCI mode]"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x7901
Revision: 0x51
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xfc600000-0xfc6007ff (rw,non-prefetchable)
IRQ: 104 (no events)
Module Alias: "pci:v00001022d00007901sv00001022sd00007901bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (PCI bridge)
25: PCI 309.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: ZvjX.zMur_b8T_WD
Parent ID: B35A.wLQWNoZ9vUC
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:09.0
SysFS BusID: 0000:03:09.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x57a4
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1484
Driver: "pcieport"
IRQ: 35 (no events)
Module Alias: "pci:v00001022d000057A4sv00001022sd00001484bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
26: PCI 14.3: 0601 ISA bridge
[Created at pci.386]
Unique ID: yX7n.KM0yhTWbzT6
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: bridge
Model: "AMD FCH LPC Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x790e "FCH LPC Bridge"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0xffff
Revision: 0x51
Module Alias: "pci:v00001022d0000790Esv00001849sd0000FFFFbc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.+aqnMRFdgwE
Parent ID: mnDB.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "ATI Caicos XTX [Radeon HD 8490 / R5 235X OEM]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x6771 "Caicos XTX [Radeon HD 8490 / R5 235X OEM]"
SubVendor: pci 0x174b "PC Partner Limited / Sapphire Technology"
SubDevice: pci 0xa01c
Driver: "radeon"
Driver Modules: "radeon"
Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)
Memory Range: 0xfcf20000-0xfcf3ffff (rw,non-prefetchable)
I/O Ports: 0xf000-0xffff (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 124 (5 events)
Module Alias: "pci:v00001002d00006771sv0000174Bsd0000A01Cbc03sc00i00"
Driver Info #0:
Driver Status: radeon is active
Driver Activation Cmd: "modprobe radeon"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #40 (PCI bridge)
28: PCI a00.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: cuhJ.OwU5j78Rb73
Parent ID: Au2J.hOSa98SS_B3
SysFS ID: /devices/pci0000:00/0000:00:08.2/0000:0a:00.0
SysFS BusID: 0000:0a:00.0
Hardware Class: storage
Model: "AMD FCH SATA Controller [AHCI mode]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x7901 "FCH SATA Controller [AHCI mode]"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0xffff
Revision: 0x61
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xfce00000-0xfce007ff (rw,non-prefetchable)
IRQ: 121 (no events)
Module Alias: "pci:v00001022d00007901sv00001849sd0000FFFFbc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #50 (PCI bridge)
29: PCI 700.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: aK5u.bD2u07ABOQ0
Parent ID: ZvjX.zMur_b8T_WD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:09.0/0000:07:00.0
SysFS BusID: 0000:07:00.0
Hardware Class: storage
Model: "AMD FCH SATA Controller [AHCI mode]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x7901 "FCH SATA Controller [AHCI mode]"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x7901
Revision: 0x51
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xfc700000-0xfc7007ff (rw,non-prefetchable)
IRQ: 77 (no events)
Module Alias: "pci:v00001022d00007901sv00001022sd00007901bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (PCI bridge)
30: PCI 00.2: 0806 IOMMU
[Created at pci.386]
Unique ID: Z+fY.Il0DcxNZf41
SysFS ID: /devices/pci0000:00/0000:00:00.2
SysFS BusID: 0000:00:00.2
Hardware Class: unknown
Model: "AMD IOMMU"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d1
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x15d1
IRQ: 26 (no events)
Module Alias: "pci:v00001022d000015D1sv00001022sd000015D1bc08sc06i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 18.6: 0600 Host bridge
[Created at pci.386]
Unique ID: rf9C.51ZJYPDbWNE
SysFS ID: /devices/pci0000:00/0000:00:18.6
SysFS BusID: 0000:00:18.6
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ee
Module Alias: "pci:v00001022d000015EEsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 900.3: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: X0zg.fkzoJF6rToA
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.3
SysFS BusID: 0000:09:00.3
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e0
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0xffff
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xfcb00000-0xfcbfffff (rw,non-prefetchable)
IRQ: 86 (no events)
Module Alias: "pci:v00001022d000015E0sv00001849sd0000FFFFbc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
33: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.tfK0znOQ2Q6
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d0
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x15d0
Module Alias: "pci:v00001022d000015D0sv00001849sd000015D0bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 08.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1
SysFS BusID: 0000:00:08.1
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15db
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x0000
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00001022d000015DBsv00001022sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 30a.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: d0n+.zMur_b8T_WD
Parent ID: B35A.wLQWNoZ9vUC
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:0a.0
SysFS BusID: 0000:03:0a.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x57a4
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1484
Driver: "pcieport"
IRQ: 37 (no events)
Module Alias: "pci:v00001022d000057A4sv00001022sd00001484bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
36: PCI 18.4: 0600 Host bridge
[Created at pci.386]
Unique ID: 60BX.3CgpaG_ATcD
SysFS ID: /devices/pci0000:00/0000:00:18.4
SysFS BusID: 0000:00:18.4
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ec
Module Alias: "pci:v00001022d000015ECsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 600.0: 1300 Non-Essential Instrumentation
[Created at pci.386]
Unique ID: vTuk.jofoRp_RyUA
Parent ID: Uog3.zMur_b8T_WD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:08.0/0000:06:00.0
SysFS BusID: 0000:06:00.0
Hardware Class: unknown
Model: "AMD Non-Essential Instrumentation"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1485
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1485
Module Alias: "pci:v00001022d00001485sv00001022sd00001485bc13sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (PCI bridge)
38: PCI 308.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Uog3.zMur_b8T_WD
Parent ID: B35A.wLQWNoZ9vUC
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:08.0
SysFS BusID: 0000:03:08.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x57a4
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1484
Driver: "pcieport"
IRQ: 33 (no events)
Module Alias: "pci:v00001022d000057A4sv00001022sd00001484bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
39: PCI 18.2: 0600 Host bridge
[Created at pci.386]
Unique ID: OMCs.1NnJd7lmPrC
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ea
Module Alias: "pci:v00001022d000015EAsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 01.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: mnDB.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.1
SysFS BusID: 0000:00:01.1
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00001022d000015D3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 500.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: D2Iq.yzhPPZaqyNE
Parent ID: Kaa7.Bi8_aVsHuA4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:06.0/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: network
Model: "Intel I211 Gigabit Network Connection"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1539 "I211 Gigabit Network Connection"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1539
Revision: 0x03
Driver: "igb"
Driver Modules: "igb"
Device File: enp5s0
Memory Range: 0xfc800000-0xfc81ffff (rw,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xfc820000-0xfc823fff (rw,non-prefetchable)
IRQ: 36 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d00001539sv00001849sd00001539bc02sc00i00"
Driver Info #0:
Driver Status: igb is active
Driver Activation Cmd: "modprobe igb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (PCI bridge)
42: PCI 301.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: x0Ln.Bi8_aVsHuA4
Parent ID: B35A.wLQWNoZ9vUC
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:01.0
SysFS BusID: 0000:03:01.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x57a3
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00001022d000057A3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
43: PCI 18.0: 0600 Host bridge
[Created at pci.386]
Unique ID: fiDB.+Xupf_VMM4C
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e8
Module Alias: "pci:v00001022d000015E8sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 900.6: 0403 Audio device
[Created at pci.386]
Unique ID: 7+QB.2NpyT1pum05
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.6
SysFS BusID: 0000:09:00.6
Hardware Class: sound
Model: "AMD Audio device"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e3
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1202
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfcd00000-0xfcd07fff (rw,non-prefetchable)
IRQ: 122 (703 events)
Module Alias: "pci:v00001022d000015E3sv00001849sd00001202bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
45: PCI 400.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: YmUS.AxGd7hiuG+6
Parent ID: x0Ln.Bi8_aVsHuA4
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:01.0/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: storage
Model: "Samsung Electronics NVMe SSD Controller SM981/PM981"
Vendor: pci 0x144d "Samsung Electronics Co Ltd"
Device: pci 0xa808 "NVMe SSD Controller SM981/PM981"
SubVendor: pci 0x144d "Samsung Electronics Co Ltd"
SubDevice: pci 0xa801
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xfc900000-0xfc903fff (rw,non-prefetchable)
IRQ: 34 (no events)
Module Alias: "pci:v0000144Dd0000A808sv0000144Dsd0000A801bc01sc08i02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (PCI bridge)
46: PCI 18.7: 0600 Host bridge
[Created at pci.386]
Unique ID: j_e1.cRV31_KI2mE
SysFS ID: /devices/pci0000:00/0000:00:18.7
SysFS BusID: 0000:00:18.7
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ef
Module Alias: "pci:v00001022d000015EFsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
47: PCI 900.4: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: OLSW.A9wYopDY+AB
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.4
SysFS BusID: 0000:09:00.4
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e1
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0xffff
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xfca00000-0xfcafffff (rw,non-prefetchable)
IRQ: 95 (no events)
Module Alias: "pci:v00001022d000015E1sv00001849sd0000FFFFbc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
48: PCI 600.3: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: VSMF.NvJ2JDH_ffE
Parent ID: Uog3.zMur_b8T_WD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:08.0/0000:06:00.3
SysFS BusID: 0000:06:00.3
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x149c
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x148c
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xfc400000-0xfc4fffff (rw,non-prefetchable)
IRQ: 36 (no events)
Module Alias: "pci:v00001022d0000149Csv00001022sd0000148Cbc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (PCI bridge)
49: PCI 14.0: 0c05 SMBus
[Created at pci.386]
Unique ID: MZfG.B+DN95FZG32
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "AMD FCH SMBus Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x790b "FCH SMBus Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0xffff
Revision: 0x61
Driver: "piix4_smbus"
Driver Modules: "i2c_piix4"
Module Alias: "pci:v00001022d0000790Bsv00001849sd0000FFFFbc0Csc05i00"
Driver Info #0:
Driver Status: i2c_piix4 is active
Driver Activation Cmd: "modprobe i2c_piix4"
Driver Info #1:
Driver Status: sp5100_tco is not active
Driver Activation Cmd: "modprobe sp5100_tco"
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: PCI 08.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Au2J.hOSa98SS_B3
SysFS ID: /devices/pci0000:00/0000:00:08.2
SysFS BusID: 0000:00:08.2
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15dc
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x0000
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00001022d000015DCsv00001022sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI 18.5: 0600 Host bridge
[Created at pci.386]
Unique ID: _KgM.accZ3r5u__D
SysFS ID: /devices/pci0000:00/0000:00:18.5
SysFS BusID: 0000:00:18.5
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ed
Module Alias: "pci:v00001022d000015EDsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 900.2: 1080 Encryption controller
[Created at pci.386]
Unique ID: ghTr.mqggiCzXfhF
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.2
SysFS BusID: 0000:09:00.2
Hardware Class: unknown
Model: "AMD Encryption controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15df
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x15df
Memory Range: 0xfcc00000-0xfccfffff (rw,non-prefetchable)
Memory Range: 0xfcd08000-0xfcd09fff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00001022d000015DFsv00001022sd000015DFbc10sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
53: PCI 600.1: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: moNa.HCoSiEOsO09
Parent ID: Uog3.zMur_b8T_WD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:08.0/0000:06:00.1
SysFS BusID: 0000:06:00.1
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x149c
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1486
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xfc500000-0xfc5fffff (rw,non-prefetchable)
IRQ: 76 (no events)
Module Alias: "pci:v00001022d0000149Csv00001022sd00001486bc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (PCI bridge)
55: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: wLCS.EJHvc9MwvZ7
Parent ID: YmUS.AxGd7hiuG+6
SysFS ID: /class/block/nvme0n1
SysFS BusID: nvme0
SysFS Device Link: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:01.0/0000:04:00.0/nvme/nvme0
Hardware Class: disk
Model: "Samsung Electronics NVMe SSD Controller SM981/PM981"
Vendor: pci 0x144d "Samsung Electronics Co Ltd"
Device: pci 0xa808 "NVMe SSD Controller SM981/PM981"
SubVendor: pci 0x144d "Samsung Electronics Co Ltd"
SubDevice: pci 0xa801
Driver: "nvme"
Driver Modules: "nvme"
Device File: /dev/nvme0n1
Device Files: /dev/nvme0n1, /dev/disk/by-path/pci-0000:04:00.0-nvme-1, /dev/disk/by-id/nvme-eui.0025385a0143f7e8, /dev/disk/by-id/nvme-Samsung_SSD_970_EVO_1TB_...
Device Number: block 259:0
Geometry (Logical): CHS 953869/64/32
Size: 1953525168 sectors a 512 bytes
Capacity: 931 GB (1000204886016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #45 (Non-Volatile memory controller)
56: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: pTvH.Fxp0d3BezAE
SysFS ID: /class/block/zd192
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd192
Device Files: /dev/zd192, /dev/backup/vm-108-disk-0, /dev/zvol/backup/vm-108-disk-0
Device Number: block 230:192-230:207
Geometry (Logical): CHS 416101/16/63
Size: 419430400 sectors a 512 bytes
Capacity: 200 GB (214748364800 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: Li7A.Fxp0d3BezAE
SysFS ID: /class/block/zd144
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd144
Device Files: /dev/zd144, /dev/zvol/vmpool/vm-104-disk-1, /dev/vmpool/vm-104-disk-1
Device Number: block 230:144-230:159
Geometry (Logical): CHS 2080/16/63
Size: 2097152 sectors a 512 bytes
Capacity: 1 GB (1073741824 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: IDE 600.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.NziqWbc8WlA
Parent ID: GBI1.bD2u07ABOQ0
SysFS ID: /class/block/sdb
SysFS BusID: 6:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:0a.0/0000:08:00.0/ata7/host6/target6:0:0/6:0:0:0
Hardware Class: disk
Model: "TOSHIBA HDWE140"
Vendor: "TOSHIBA"
Device: "HDWE140"
Revision: "FP1R"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdb
Device Files: /dev/sdb, /dev/disk/by-id/ata-TOSHIBA_HDWE140_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-path/pci-0000:08:00.0-ata-6
Device Number: block 8:16-8:31
Geometry (Logical): CHS 486401/255/63
Size: 7814037168 sectors a 512 bytes
Capacity: 3726 GB (4000787030016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (SATA controller)
59: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: LBMT.Fxp0d3BezAE
SysFS ID: /class/block/zd160
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd160
Device Files: /dev/zd160, /dev/zvol/vmpool/vm-100-disk-2, /dev/vmpool/vm-100-disk-2
Device Number: block 230:160-230:175
Geometry (Logical): CHS 1456355/16/63
Size: 1468006400 sectors a 512 bytes
Capacity: 700 GB (751619276800 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: XQ0S.Fxp0d3BezAE
SysFS ID: /class/block/zd0
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd0
Device Files: /dev/zd0, /dev/backup/vm-100-disk-2, /dev/zvol/backup/vm-100-disk-2
Device Number: block 230:0-230:15
Geometry (Logical): CHS 1456355/16/63
Size: 1468006400 sectors a 512 bytes
Capacity: 700 GB (751619276800 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: EYGB.Fxp0d3BezAE
SysFS ID: /class/block/zd112
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd112
Device Files: /dev/zd112, /dev/zvol/vmpool/vm-102-disk-0, /dev/vmpool/vm-102-disk-0
Device Number: block 230:112-230:127
Geometry (Logical): CHS 24966/16/63
Size: 25165824 sectors a 512 bytes
Capacity: 12 GB (12884901888 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: j1CE.Fxp0d3BezAE
SysFS ID: /class/block/zd96
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd96
Device Files: /dev/zd96, /dev/zvol/backup/vm-100-disk-1, /dev/backup/vm-100-disk-1
Device Number: block 230:96-230:111
Geometry (Logical): CHS 1040253/16/63
Size: 1048576000 sectors a 512 bytes
Capacity: 500 GB (536870912000 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: VXLX.Fxp0d3BezAE
SysFS ID: /class/block/zd48
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd48
Device Files: /dev/zd48, /dev/vmpool/vm-100-disk-3, /dev/zvol/vmpool/vm-100-disk-3
Device Number: block 230:48-230:63
Geometry (Logical): CHS 145635/16/63
Size: 146800640 sectors a 512 bytes
Capacity: 70 GB (75161927680 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: FleP.Fxp0d3BezAE
SysFS ID: /class/block/zd64
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd64
Device Files: /dev/zd64, /dev/vmpool/vm-101-disk-1, /dev/zvol/vmpool/vm-101-disk-1
Device Number: block 230:64-230:79
Geometry (Logical): CHS 145635/16/63
Size: 146800640 sectors a 512 bytes
Capacity: 70 GB (75161927680 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 86Z7.Fxp0d3BezAE
SysFS ID: /class/block/zd16
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd16
Device Files: /dev/zd16, /dev/backup/vm-100-disk-0, /dev/zvol/backup/vm-100-disk-0
Device Number: block 230:16-230:31
Geometry (Logical): CHS 353686/16/63
Size: 356515840 sectors a 512 bytes
Capacity: 170 GB (182536110080 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: bMZY.Fxp0d3BezAE
SysFS ID: /class/block/zd80
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd80
Device Files: /dev/zd80, /dev/vmpool/vm-100-disk-0, /dev/zvol/vmpool/vm-100-disk-0
Device Number: block 230:80-230:95
Geometry (Logical): CHS 353686/16/63
Size: 356515840 sectors a 512 bytes
Capacity: 170 GB (182536110080 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: 8bnQ.Fxp0d3BezAE
SysFS ID: /class/block/zd32
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd32
Device Files: /dev/zd32, /dev/backup/vm-102-disk-0, /dev/zvol/backup/vm-102-disk-0
Device Number: block 230:32-230:47
Geometry (Logical): CHS 24966/16/63
Size: 25165824 sectors a 512 bytes
Capacity: 12 GB (12884901888 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: fc4Z.Fxp0d3BezAE
SysFS ID: /class/block/zd208
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd208
Device Files: /dev/zd208, /dev/zvol/backup/vm-108-disk-1, /dev/backup/vm-108-disk-1
Device Number: block 230:208-230:223
Geometry (Logical): CHS 145635/16/63
Size: 146800640 sectors a 512 bytes
Capacity: 70 GB (75161927680 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: IDE 500.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.VsgRczypBb1
Parent ID: GBI1.bD2u07ABOQ0
SysFS ID: /class/block/sda
SysFS BusID: 5:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:0a.0/0000:08:00.0/ata6/host5/target5:0:0/5:0:0:0
Hardware Class: disk
Model: "TOSHIBA HDWE140"
Vendor: "TOSHIBA"
Device: "HDWE140"
Revision: "FP1R"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-path/pci-0000:08:00.0-ata-5, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/ata-TOSHIBA_HDWE140_...
Device Number: block 8:0-8:15
Geometry (Logical): CHS 486401/255/63
Size: 7814037168 sectors a 512 bytes
Capacity: 3726 GB (4000787030016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (SATA controller)
70: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: PqNR.Fxp0d3BezAE
SysFS ID: /class/block/zd224
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd224
Device Files: /dev/zd224, /dev/zvol/backup/vm-108-disk-2, /dev/backup/vm-108-disk-2
Device Number: block 230:224-230:239
Geometry (Logical): CHS 2080/16/63
Size: 2097152 sectors a 512 bytes
Capacity: 1 GB (1073741824 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: None 00.0: 10600 Disk
[Created at block.245]
Unique ID: q_g_.Fxp0d3BezAE
SysFS ID: /class/block/zd176
Hardware Class: disk
Model: "Disk"
Device File: /dev/zd176
Device Files: /dev/zd176, /dev/zvol/vmpool/vm-100-disk-1, /dev/vmpool/vm-100-disk-1
Device Number: block 230:176-230:191
Geometry (Logical): CHS 2080/16/63
Size: 2097152 sectors a 512 bytes
Capacity: 1 GB (1073741824 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.2ZDmc23Wh4C
Parent ID: X0zg.fkzoJF6rToA
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.3/usb6/6-0:1.0
SysFS BusID: 6-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (USB Controller)
73: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.kDEHmBJ+rVF
Parent ID: VSMF.NvJ2JDH_ffE
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/0000:03:08.0/0000:06:00.3/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (USB Controller)
74: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: BSFT.wx98Yr3Yi8A
Parent ID: OLSW.A9wYopDY+AB
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:09:00.4/usb7/7-0:1.0
SysFS BusID: 7-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps