-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path903973759D
1115 lines (1057 loc) · 39.7 KB
/
903973759D
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
07: PCI 300.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: svHJ.n9V0q7MLIb6
Parent ID: CvwD.JB6pWVATSP6
SysFS ID: /devices/pci0000:00/0000:00:05.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: usb controller
Model: "ASMedia ASM1042A USB 3.0 Host Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1142 "ASM1042A USB 3.0 Host Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x85bf
Driver: "xhci_hcd"
Memory Range: 0xfe300000-0xfe307fff (rw,non-prefetchable)
IRQ: 33 (no events)
Module Alias: "pci:v00001B21d00001142sv00001043sd000085BFbc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
08: PCI 605.0: 0401 Multimedia audio controller
[Created at pci.386]
Unique ID: H185.Vv_TGYft8+1
Parent ID: qscc.UsCA9N2eQqB
SysFS ID: /devices/pci0000:00/0000:00:14.4/0000:06:05.0
SysFS BusID: 0000:06:05.0
Hardware Class: sound
Model: "ASUSTeK Virtuoso 200 (Xonar D2)"
Vendor: pci 0x13f6 "C-Media Electronics Inc"
Device: pci 0x8788 "CMI8788 [Oxygen HD Audio]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8269 "Virtuoso 200 (Xonar D2)"
Driver: "snd_virtuoso"
Driver Modules: "snd_virtuoso"
I/O Ports: 0xb000-0xb0ff (rw)
IRQ: 20 (110 events)
Module Alias: "pci:v000013F6d00008788sv00001043sd00008269bc04sc01i00"
Driver Info #0:
Driver Status: snd_virtuoso is active
Driver Activation Cmd: "modprobe snd_virtuoso"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
09: PCI 18.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Fhhh.Z2GX093tQo4
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD Family 15h Processor Function 3"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1603 "Family 15h Processor Function 3"
Driver: "k10temp"
Driver Modules: "k10temp"
Module Alias: "pci:v00001022d00001603sv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: k10temp is active
Driver Activation Cmd: "modprobe k10temp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
10: PCI 13.2: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 06bT.PBoRvnalNQA
SysFS ID: /devices/pci0000:00/0000:00:13.2
SysFS BusID: 0000:00:13.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4396
Driver: "ehci-pci"
Memory Range: 0xfe403000-0xfe4030ff (rw,non-prefetchable)
IRQ: 21 (no events)
Module Alias: "pci:v00001002d00004396sv00001002sd00004396bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
11: PCI 18.1: 0600 Host bridge
[Created at pci.386]
Unique ID: W1j0.XDN130qSN14
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD Family 15h Processor Function 1"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1601 "Family 15h Processor Function 1"
Module Alias: "pci:v00001022d00001601sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
12: PCI 200.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: c3qJ.1WVRdh9En64
Parent ID: 8otl.om932x2mw06
SysFS ID: /devices/pci0000:00/0000:00:04.0/0000:02:00.0
SysFS BusID: 0000:02: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 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x8505 "P8 series motherboard"
Revision: 0x09
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp2s0
I/O Ports: 0xd000-0xd0ff (rw)
Memory Range: 0xfa104000-0xfa104fff (ro,non-prefetchable)
Memory Range: 0xfa100000-0xfa103fff (ro,non-prefetchable)
IRQ: 45 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008168sv00001043sd00008505bc02sc00i00"
Driver Info #0:
Driver Status: r8169 is active
Driver Activation Cmd: "modprobe r8169"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #16 (PCI bridge)
13: PCI 14.5: 0c03 USB Controller (OHCI)
[Created at pci.386]
Unique ID: hB6S.FHbuVMu8FwA
SysFS ID: /devices/pci0000:00/0000:00:14.5
SysFS BusID: 0000:00:14.5
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI2 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4399 "SB7x0/SB8x0/SB9x0 USB OHCI2 Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4399
Driver: "ohci-pci"
Memory Range: 0xfe402000-0xfe402fff (rw,non-prefetchable)
IRQ: 18 (9800 events)
Module Alias: "pci:v00001002d00004399sv00001002sd00004399bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is not active
Driver Activation Cmd: "modprobe ohci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
14: PCI 16.2: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: FRkt.PBoRvnalNQA
SysFS ID: /devices/pci0000:00/0000:00:16.2
SysFS BusID: 0000:00:16.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4396
Driver: "ehci-pci"
Memory Range: 0xfe400000-0xfe4000ff (rw,non-prefetchable)
IRQ: 23 (2 events)
Module Alias: "pci:v00001002d00004396sv00001002sd00004396bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 13.0: 0c03 USB Controller (OHCI)
[Created at pci.386]
Unique ID: HSco.BDXXLZhMRx2
SysFS ID: /devices/pci0000:00/0000:00:13.0
SysFS BusID: 0000:00:13.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4397
Driver: "ohci-pci"
Memory Range: 0xfe404000-0xfe404fff (rw,non-prefetchable)
IRQ: 20 (110 events)
Module Alias: "pci:v00001002d00004397sv00001002sd00004397bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is not active
Driver Activation Cmd: "modprobe ohci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 04.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 8otl.om932x2mw06
SysFS ID: /devices/pci0000:00/0000:00:04.0
SysFS BusID: 0000:00:04.0
Hardware Class: bridge
Model: "ATI RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 0)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a18 "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 0)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a14
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00001002d00005A18sv00001002sd00005A14bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 14.3: 0601 ISA bridge
[Created at pci.386]
Unique ID: yX7n.+aX_9dezDW4
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: bridge
Model: "ATI SB7x0/SB8x0/SB9x0 LPC host controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x439d "SB7x0/SB8x0/SB9x0 LPC host controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x439d
Revision: 0x40
Module Alias: "pci:v00001002d0000439Dsv00001002sd0000439Dbc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 16.0: 0c03 USB Controller (OHCI)
[Created at pci.386]
Unique ID: WnlC.BDXXLZhMRx2
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4397
Driver: "ohci-pci"
Memory Range: 0xfe401000-0xfe401fff (rw,non-prefetchable)
IRQ: 22 (1062 events)
Module Alias: "pci:v00001002d00004397sv00001002sd00004397bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is not active
Driver Activation Cmd: "modprobe ohci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.ITW8j7pZKx3
Parent ID: _Znp.mxGZ4sT7tg6
SysFS ID: /devices/pci0000:00/0000:00:02.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "nVidia GT216GL [Quadro 400]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0a38 "GT216GL [Quadro 400]"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0893
Revision: 0xa2
Memory Range: 0xfd000000-0xfdffffff (rw,non-prefetchable)
Memory Range: 0xf0000000-0xf7ffffff (ro,non-prefetchable)
Memory Range: 0xf8000000-0xf9ffffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xe07f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 10 (no events)
Module Alias: "pci:v000010DEd00000A38sv000010DEsd00000893bc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nouveau is not active
Driver Activation Cmd: "modprobe nouveau"
Driver Info #2:
Driver Status: nvidia_drm is not active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #3:
Driver Status: nvidia is not active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
20: PCI 07.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: M71A.L0+IUePtVA7
SysFS ID: /devices/pci0000:00/0000:00:07.0
SysFS BusID: 0000:00:07.0
Hardware Class: bridge
Model: "ATI RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 3)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a1b "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 3)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a14
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00001002d00005A1Bsv00001002sd00005A14bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 00.2: 0806 IOMMU
[Created at pci.386]
Unique ID: Z+fY.G_L0OhPaS43
SysFS ID: /devices/pci0000:00/0000:00:00.2
SysFS BusID: 0000:00:00.2
Hardware Class: unknown
Model: "ATI RD890S/RD990 I/O Memory Management Unit (IOMMU)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a23 "RD890S/RD990 I/O Memory Management Unit (IOMMU)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a23
IRQ: 27 (no events)
Module Alias: "pci:v00001002d00005A23sv00001002sd00005A23bc08sc06i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 12.2: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: x_X+.PBoRvnalNQA
SysFS ID: /devices/pci0000:00/0000:00:12.2
SysFS BusID: 0000:00:12.2
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB EHCI Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4396 "SB7x0/SB8x0/SB9x0 USB EHCI Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4396
Driver: "ehci-pci"
Memory Range: 0xfe405000-0xfe4050ff (rw,non-prefetchable)
IRQ: 17 (80 events)
Module Alias: "pci:v00001002d00004396sv00001002sd00004396bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.ivMOAR5UDX1
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "ATI RD9x0/RX980 Host Bridge"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a14 "RD9x0/RX980 Host Bridge"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a14
Revision: 0x02
Module Alias: "pci:v00001002d00005A14sv00001002sd00005A14bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 18.4: 0600 Host bridge
[Created at pci.386]
Unique ID: 60BX.4TCHVjAayA5
SysFS ID: /devices/pci0000:00/0000:00:18.4
SysFS BusID: 0000:00:18.4
Hardware Class: bridge
Model: "AMD Family 15h Processor Function 4"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1604 "Family 15h Processor Function 4"
Driver: "fam15h_power"
Driver Modules: "fam15h_power"
Module Alias: "pci:v00001022d00001604sv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: fam15h_power is active
Driver Activation Cmd: "modprobe fam15h_power"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 12.0: 0c03 USB Controller (OHCI)
[Created at pci.386]
Unique ID: CLZK.BDXXLZhMRx2
SysFS ID: /devices/pci0000:00/0000:00:12.0
SysFS BusID: 0000:00:12.0
Hardware Class: usb controller
Model: "ATI SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4397 "SB7x0/SB8x0/SB9x0 USB OHCI0 Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4397
Driver: "ohci-pci"
Memory Range: 0xfe406000-0xfe406fff (rw,non-prefetchable)
IRQ: 18 (9800 events)
Module Alias: "pci:v00001002d00004397sv00001002sd00004397bc0Csc03i10"
Driver Info #0:
Driver Status: ohci-hcd is not active
Driver Activation Cmd: "modprobe ohci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 18.2: 0600 Host bridge
[Created at pci.386]
Unique ID: OMCs.2eJnXax9vP4
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD Family 15h Processor Function 2"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1602 "Family 15h Processor Function 2"
Module Alias: "pci:v00001022d00001602sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 06.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: H0_h.qb2Z+3IA_n6
SysFS ID: /devices/pci0000:00/0000:00:06.0
SysFS BusID: 0000:00:06.0
Hardware Class: bridge
Model: "ATI RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 2)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a1a "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 2)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a14
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00001002d00005A1Asv00001002sd00005A14bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 500.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: Ddhb.n9V0q7MLIb6
Parent ID: M71A.L0+IUePtVA7
SysFS ID: /devices/pci0000:00/0000:00:07.0/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: usb controller
Model: "ASMedia ASM1042A USB 3.0 Host Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1142 "ASM1042A USB 3.0 Host Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x85bf
Driver: "xhci_hcd"
Memory Range: 0xfe100000-0xfe107fff (rw,non-prefetchable)
IRQ: 39 (no events)
Module Alias: "pci:v00001B21d00001142sv00001043sd000085BFbc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #20 (PCI bridge)
29: PCI 18.0: 0600 Host bridge
[Created at pci.386]
Unique ID: fiDB.0pQHaRilre3
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD Family 15h Processor Function 0"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1600 "Family 15h Processor Function 0"
Module Alias: "pci:v00001022d00001600sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 14.4: 0604 PCI bridge (Subtractive decode)
[Created at pci.386]
Unique ID: qscc.UsCA9N2eQqB
SysFS ID: /devices/pci0000:00/0000:00:14.4
SysFS BusID: 0000:00:14.4
Hardware Class: bridge
Model: "ATI SBx00 PCI to PCI Bridge"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4384 "SBx00 PCI to PCI Bridge"
Revision: 0x40
Module Alias: "pci:v00001002d00004384sv00000000sd00000000bc06sc04i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.ea1j0AeT002
Parent ID: _Znp.mxGZ4sT7tg6
SysFS ID: /devices/pci0000:00/0000:00:02.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "nVidia GT216 HDMI Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0be2 "GT216 HDMI Audio Controller"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x0893
Revision: 0xa1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfe080000-0xfe083fff (rw,non-prefetchable)
IRQ: 49 (450 events)
Module Alias: "pci:v000010DEd00000BE2sv000010DEsd00000893bc04sc03i00"
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)
32: PCI 11.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: 7EWs._PBwrxA5iH7
SysFS ID: /devices/pci0000:00/0000:00:11.0
SysFS BusID: 0000:00:11.0
Hardware Class: storage
Model: "ASUSTeK M5A99X EVO (R1.0) SB950"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4391 "SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x84dd "M5A99X EVO (R1.0) SB950"
Revision: 0x40
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xf040-0xf047 (rw)
I/O Ports: 0xf030-0xf033 (rw)
I/O Ports: 0xf020-0xf027 (rw)
I/O Ports: 0xf010-0xf013 (rw)
I/O Ports: 0xf000-0xf00f (rw)
Memory Range: 0xfe407000-0xfe4073ff (rw,non-prefetchable)
IRQ: 19 (32982 events)
Module Alias: "pci:v00001002d00004391sv00001043sd000084DDbc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 400.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: YmUS.NBHy3xK5hDF
Parent ID: H0_h.qb2Z+3IA_n6
SysFS ID: /devices/pci0000:00/0000:00:06.0/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: storage
Model: "ASMedia ASM1062 Serial ATA Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x0612 "ASM1062 Serial ATA Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x84b7
Revision: 0x01
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xc050-0xc057 (rw)
I/O Ports: 0xc040-0xc043 (rw)
I/O Ports: 0xc030-0xc037 (rw)
I/O Ports: 0xc020-0xc023 (rw)
I/O Ports: 0xc000-0xc01f (rw)
Memory Range: 0xfe200000-0xfe2001ff (rw,non-prefetchable)
IRQ: 48 (no events)
Module Alias: "pci:v00001B21d00000612sv00001043sd000084B7bc01sc06i01"
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: #27 (PCI bridge)
34: PCI 02.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: _Znp.mxGZ4sT7tg6
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: bridge
Device Name: "Onboard IGD"
Model: "ATI RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GFX port 0)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a16 "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GFX port 0)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a14
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00001002d00005A16sv00001002sd00005A14bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 14.0: 0c05 SMBus
[Created at pci.386]
Unique ID: MZfG.RDc9SkdNwo7
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "ATI SBx00 SMBus Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x4385 "SBx00 SMBus Controller"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x4385
Revision: 0x42
Driver: "piix4_smbus"
Driver Modules: "i2c_piix4"
Module Alias: "pci:v00001002d00004385sv00001002sd00004385bc0Csc05i00"
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
36: PCI 05.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: CvwD.JB6pWVATSP6
SysFS ID: /devices/pci0000:00/0000:00:05.0
SysFS BusID: 0000:00:05.0
Hardware Class: bridge
Model: "ATI RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 1)"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x5a19 "RD890/RD9x0/RX980 PCI to PCI bridge (PCI Express GPP Port 1)"
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x5a14
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00001002d00005A19sv00001002sd00005A14bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 18.5: 0600 Host bridge
[Created at pci.386]
Unique ID: _KgM.bt81_HIHUZ5
SysFS ID: /devices/pci0000:00/0000:00:18.5
SysFS BusID: 0000:00:18.5
Hardware Class: bridge
Model: "AMD Family 15h Processor Function 5"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1605 "Family 15h Processor Function 5"
Module Alias: "pci:v00001022d00001605sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: IDE 100.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.RPSb+N462x5
Parent ID: 7EWs._PBwrxA5iH7
SysFS ID: /class/block/sdb
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata2/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "FUJITSU MHV2120B"
Vendor: "FUJITSU"
Device: "MHV2120B"
Revision: "892C"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdb
Device Number: block 8:16-8:31
BIOS id: 0x80
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (SATA controller)
39: SCSI 500.0: 10600 Disk
[Created at block.245]
Unique ID: KD9E.5OWxfA+ssE3
Parent ID: 7EWs._PBwrxA5iH7
SysFS ID: /class/block/sr0
SysFS BusID: 5:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata6/host5/target5:0:0/5:0:0:0
Hardware Class: disk
Model: "ASUS DRW-24D5MT"
Vendor: "ASUS"
Device: "DRW-24D5MT"
Revision: "1.00"
Driver: "ahci", "sr"
Driver Modules: "ahci"
Device File: /dev/sr0 (/dev/sg3)
Device Number: block 11:0 (char 21:3)
BIOS id: 0x81
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (SATA controller)
40: IDE 300.0: 10600 Disk
[Created at block.245]
Unique ID: _kuT.K+KCCYXhly5
Parent ID: 7EWs._PBwrxA5iH7
SysFS ID: /class/block/sdc
SysFS BusID: 3:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata4/host3/target3:0:0/3:0:0:0
Hardware Class: disk
Model: "ST3250620AS"
Device: "ST3250620AS"
Revision: "D"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdc
Device Number: block 8:32-8:47
BIOS id: 0x82
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (SATA controller)
41: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.a3KgsdxVBbD
Parent ID: 7EWs._PBwrxA5iH7
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:11.0/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "WDC WD10EZEX-00R"
Vendor: "WDC"
Device: "WD10EZEX-00R"
Revision: "0A80"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Number: block 8:0-8:15
BIOS id: 0x83
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (SATA controller)
42: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy._WUAGn1cSY8
Parent ID: hB6S.FHbuVMu8FwA
SysFS ID: /devices/pci0000:00/0000:00:14.5/usb6/6-0:1.0
SysFS BusID: 6-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (USB Controller)
43: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.cj_idGsgx81
Parent ID: FRkt.PBoRvnalNQA
SysFS ID: /devices/pci0000:00/0000:00:16.2/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:v1D6Bp0002d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #14 (USB Controller)
44: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: __6e.d7FDLX76qXB
Parent ID: Uc5H.d7FDLX76qXB
SysFS ID: /devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4.1/1-4.1:1.0
SysFS BusID: 1-4.1:1.0
Hardware Class: hub
Model: "Genesys Logic Hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0608 "Hub"
Revision: "85.36"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0608d8536dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #54 (Hub)
45: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: HpcW.i6ODDxgArv2
Parent ID: zPk0.7qWCOCfUJwE
SysFS ID: /devices/pci0000:00/0000:00:12.0/usb4/4-3/4-3:1.0
SysFS BusID: 4-3:1.0
Hardware Class: keyboard
Model: "Logitech LX710 Cordless Desktop Laser"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc517 "LX710 Cordless Desktop Laser"
Revision: "38.10"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 1.5 Mbps
Module Alias: "usb:v046DpC517d3810dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #49 (Hub)
46: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: BSFT.BwiLSoUZ6N9
Parent ID: WnlC.BDXXLZhMRx2
SysFS ID: /devices/pci0000:00/0000:00:16.0/usb7/7-0:1.0
SysFS BusID: 7-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (USB Controller)
47: USB 00.0: 0401 Multimedia audio controller
[Created at usb.122]
Unique ID: wzl7.uImxIlDAy13
Parent ID: BSFT.BwiLSoUZ6N9
SysFS ID: /devices/pci0000:00/0000:00:16.0/usb7/7-4/7-4:1.0
SysFS BusID: 7-4:1.0
Hardware Class: sound
Model: "C-Media Electronics CM102-A+/102S+ Audio Controller"
Hotplug: USB
Vendor: usb 0x0d8c "C-Media Electronics, Inc."
Device: usb 0x0103 "CM102-A+/102S+ Audio Controller"
Revision: "0.10"
Driver: "snd-usb-audio"
Driver Modules: "snd_usb_audio"
Speed: 12 Mbps
Module Alias: "usb:v0D8Cp0103d0010dc00dsc00dp00ic01isc01ip00in00"
Driver Info #0:
Driver Status: snd_usb_audio is active
Driver Activation Cmd: "modprobe snd_usb_audio"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #46 (Hub)
48: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 9Cfs.Iij6smqB8J2
Parent ID: Ddhb.n9V0q7MLIb6
SysFS ID: /devices/pci0000:00/0000:00:07.0/0000:05:00.0/usb10/10-0:1.0
SysFS BusID: 10-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: #28 (USB Controller)
49: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.7qWCOCfUJwE
Parent ID: CLZK.BDXXLZhMRx2
SysFS ID: /devices/pci0000:00/0000:00:12.0/usb4/4-0:1.0
SysFS BusID: 4-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (USB Controller)
50: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: FZIx.029GFTetOb3
Parent ID: svHJ.n9V0q7MLIb6
SysFS ID: /devices/pci0000:00/0000:00:05.0/0000:03:00.0/usb8/8-0:1.0
SysFS BusID: 8-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: #7 (USB Controller)
51: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.YdoZZg0c8i6
Parent ID: x_X+.PBoRvnalNQA
SysFS ID: /devices/pci0000:00/0000:00:12.2/usb1/1-0:1.0
SysFS BusID: 1-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:v1D6Bp0002d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (USB Controller)
52: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: bKH1.1APfWjENdSC
Parent ID: 9Cfs.Iij6smqB8J2
SysFS ID: /devices/pci0000:00/0000:00:07.0/0000:05:00.0/usb10/10-1/10-1:1.0
SysFS BusID: 10-1:1.0
Hardware Class: hub
Model: "Microchip Technology, Inc. (formerly SMSC) USB2137B"
Hotplug: USB
Vendor: usb 0x0424 "Microchip Technology, Inc. (formerly SMSC)"
Device: usb 0x2137 "USB2137B"
Revision: "50.00"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v0424p2137d5000dc09dsc00dp02ic09isc00ip02in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (Hub)
53: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: EJiK.B2sJIkct3XB
Parent ID: Ddhb.n9V0q7MLIb6
SysFS ID: /devices/pci0000:00/0000:00:07.0/0000:05:00.0/usb11/11-0:1.0
SysFS BusID: 11-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: #28 (USB Controller)
54: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: Uc5H.d7FDLX76qXB
Parent ID: k4bc.YdoZZg0c8i6
SysFS ID: /devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4:1.0
SysFS BusID: 1-4:1.0
Hardware Class: hub
Model: "Genesys Logic Hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0608 "Hub"
Revision: "85.36"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0608d8536dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (Hub)
55: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: k_sa.dmSdt1q9PR7
Parent ID: zPk0.7qWCOCfUJwE
SysFS ID: /devices/pci0000:00/0000:00:12.0/usb4/4-3/4-3:1.1
SysFS BusID: 4-3:1.1
Hardware Class: mouse
Model: "Logitech LX710 Cordless Desktop Laser"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc517 "LX710 Cordless Desktop Laser"
Revision: "38.10"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 1.5 Mbps
Module Alias: "usb:v046DpC517d3810dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #49 (Hub)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 2XnU.erpEvbsFWX1
Parent ID: HSco.BDXXLZhMRx2
SysFS ID: /devices/pci0000:00/0000:00:13.0/usb5/5-0:1.0
SysFS BusID: 5-0:1.0
Hardware Class: hub
Model: "Linux Foundation 1.1 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0001 "1.1 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1D6Bp0001d0504dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (USB Controller)
58: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: KgLP.vNHThQQZKpC
Parent ID: svHJ.n9V0q7MLIb6
SysFS ID: /devices/pci0000:00/0000:00:05.0/0000:03:00.0/usb9/9-0:1.0
SysFS BusID: 9-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: #7 (USB Controller)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.3f5c44ENLJ9
Parent ID: 06bT.PBoRvnalNQA
SysFS ID: /devices/pci0000:00/0000:00:13.2/usb2/2-0:1.0