-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathB3EAB0C7AC
1182 lines (1127 loc) · 44.4 KB
/
B3EAB0C7AC
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
13: PCI 300.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: svHJ.m2lGPNk7Xc4
Parent ID: 0Rrv.jbJYSMyUCF2
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: usb controller
Model: "VIA VL805 USB 3.0 Host Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3483 "VL805 USB 3.0 Host Controller"
SubVendor: pci 0x1106 "VIA Technologies, Inc."
SubDevice: pci 0x3483
Revision: 0x01
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xdf300000-0xdf300fff (rw,non-prefetchable)
IRQ: 132 (463007 events)
Module Alias: "pci:v00001106d00003483sv00001106sd00003483bc0Csc03i30"
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: #23 (PCI bridge)
14: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: abAj.sXV6Kr0Z7e1
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Model: "Intel Q170/Q150/B150/H170/H110/Z170/CM236 Chipset SATA Controller [AHCI Mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa102 "Q170/Q150/B150/H170/H110/Z170/CM236 Chipset SATA Controller [AHCI Mode]"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xdf528000-0xdf529fff (rw,non-prefetchable)
Memory Range: 0xdf52d000-0xdf52d0ff (rw,non-prefetchable)
I/O Ports: 0xf090-0xf097 (rw)
I/O Ports: 0xf080-0xf083 (rw)
I/O Ports: 0xf060-0xf07f (rw)
Memory Range: 0xdf52c000-0xdf52c7ff (rw,non-prefetchable)
IRQ: 128 (62206 events)
Module Alias: "pci:v00008086d0000A102sv00001462sd00007971bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 1f.2: 0580 Memory controller
[Created at pci.386]
Unique ID: w7Y8.ouO2tgLf+S3
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Power Management Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa121 "100 Series/C230 Series Chipset Family Power Management Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Memory Range: 0xdf524000-0xdf527fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000A121sv00001462sd00007971bc05sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
16: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.CBNozrUZgH3
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #7"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa116 "100 Series/C230 Series Chipset Family PCI Express Root Port #7"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0xf1
Driver: "pcieport"
IRQ: 123 (no events)
Module Alias: "pci:v00008086d0000A116sv00001462sd00007971bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: RE4e.C9fYJ74DQ63
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Model: "Intel Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1911 "Xeon E3-1200 v5/v6 / E3-1500 v5 / 6th/7th/8th Gen Core Processor Gaussian Mixture Model"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Memory Range: 0xdf532000-0xdf532fff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00001911sv00001462sd00007971bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 15.1: 1180 Signal processing controller
[Created at pci.386]
Unique ID: I+Ba._DTznJLC0UB
SysFS ID: /devices/pci0000:00/0000:00:15.1
SysFS BusID: 0000:00:15.1
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Serial IO I2C Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa161 "100 Series/C230 Series Chipset Family Serial IO I2C Controller #1"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "intel-lpss"
Driver Modules: "intel_lpss_pci"
Memory Range: 0xdf52f000-0xdf52ffff (rw,non-prefetchable)
IRQ: 17 (189 events)
Module Alias: "pci:v00008086d0000A161sv00001462sd00007971bc11sc80i00"
Driver Info #0:
Driver Status: intel_lpss_pci is active
Driver Activation Cmd: "modprobe intel_lpss_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 1d.3: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: eEx1.nF5YNeQJJn3
SysFS ID: /devices/pci0000:00/0000:00:1d.3
SysFS BusID: 0000:00:1d.3
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #12"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa11b "100 Series/C230 Series Chipset Family PCI Express Root Port #12"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0xf1
Driver: "pcieport"
IRQ: 127 (no events)
Module Alias: "pci:v00008086d0000A11Bsv00001462sd00007971bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.Rjn+S7Xjx3F
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel B150 Chipset LPC/eSPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa148 "B150 Chipset LPC/eSPI Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Module Alias: "pci:v00008086d0000A148sv00001462sd00007971bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 200.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: B35A.m2lGPNk7Xc4
Parent ID: z8Q3.CBNozrUZgH3
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: usb controller
Model: "VIA VL805 USB 3.0 Host Controller"
Vendor: pci 0x1106 "VIA Technologies, Inc."
Device: pci 0x3483 "VL805 USB 3.0 Host Controller"
SubVendor: pci 0x1106 "VIA Technologies, Inc."
SubDevice: pci 0x3483
Revision: 0x01
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xdf400000-0xdf400fff (rw,non-prefetchable)
IRQ: 131 (452126 events)
Module Alias: "pci:v00001106d00003483sv00001106sd00003483bc0Csc03i30"
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: #16 (PCI bridge)
22: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.4I0CWnreq74
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1901 "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x16)"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x06
Driver: "pcieport"
IRQ: 122 (no events)
Module Alias: "pci:v00008086d00001901sv00001462sd00007971bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 1c.7: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 0Rrv.jbJYSMyUCF2
SysFS ID: /devices/pci0000:00/0000:00:1c.7
SysFS BusID: 0000:00:1c.7
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #8"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa117 "100 Series/C230 Series Chipset Family PCI Express Root Port #8"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0xf1
Driver: "pcieport"
IRQ: 124 (no events)
Module Alias: "pci:v00008086d0000A117sv00001462sd00007971bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 601.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: XY1k.wsppdX8HN5E
Parent ID: Ddhb.JMVvvbmYGr7
SysFS ID: /devices/pci0000:00/0000:00:1d.2/0000:05:00.0/0000:06:01.0
SysFS BusID: 0000:06:01.0
Hardware Class: network
Model: "Realtek RTL-8100/8101L/8139 PCI Fast Ethernet Adapter"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8139 "RTL-8100/8101L/8139 PCI Fast Ethernet Adapter"
SubVendor: pci 0x1432 "Edimax Computer Co."
SubDevice: pci 0x9503
Revision: 0x10
Driver: "8139too"
Driver Modules: "8139too"
Device File: enp6s1
I/O Ports: 0xd000-0xdfff (rw)
Memory Range: 0xdf210000-0xdf2100ff (rw,non-prefetchable)
IRQ: 19 (3282781 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008139sv00001432sd00009503bc02sc00i00"
Driver Info #0:
Driver Status: 8139too is active
Driver Activation Cmd: "modprobe 8139too"
Driver Info #1:
Driver Status: 8139cp is active
Driver Activation Cmd: "modprobe 8139cp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
25: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.jD6cvPR+204
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa13a "100 Series/C230 Series Chipset Family MEI Controller #1"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "mei_me"
Driver Modules: "mei_me"
Memory Range: 0xdf52e000-0xdf52efff (rw,non-prefetchable)
IRQ: 133 (46 events)
Module Alias: "pci:v00008086d0000A13Asv00001462sd00007971bc07sc80i00"
Driver Info #0:
Driver Status: mei_me is active
Driver Activation Cmd: "modprobe mei_me"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.Geo4XLWEfzB
Parent ID: vSkL.4I0CWnreq74
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "nVidia GP108 [GeForce GT 1030]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1d01 "GP108 [GeForce GT 1030]"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x85f4
Revision: 0xa1
Driver: "nouveau"
Driver Modules: "nouveau"
Memory Range: 0xde000000-0xdeffffff (rw,non-prefetchable)
Memory Range: 0xc0000000-0xcfffffff (ro,non-prefetchable)
Memory Range: 0xd0000000-0xd1ffffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xdf000000-0xdf07ffff (ro,non-prefetchable,disabled)
IRQ: 129 (3044 events)
Module Alias: "pci:v000010DEd00001D01sv00001043sd000085F4bc03sc00i00"
Driver Info #0:
Driver Status: nouveau is active
Driver Activation Cmd: "modprobe nouveau"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (PCI bridge)
27: PCI 700.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: QgzS.Gvk95N2DTQB
Parent ID: eEx1.nF5YNeQJJn3
SysFS ID: /devices/pci0000:00/0000:00:1d.3/0000:07:00.0
SysFS BusID: 0000:07: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 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x15
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp7s0
I/O Ports: 0xc000-0xcfff (rw)
Memory Range: 0xdf104000-0xdf104fff (rw,non-prefetchable)
Memory Range: 0xdf100000-0xdf103fff (rw,non-prefetchable)
IRQ: 19 (3282781 events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000010ECd00008168sv00001462sd00007971bc02sc00i00"
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: #19 (PCI bridge)
28: PCI 1e.0: 1180 Signal processing controller
[Created at pci.386]
Unique ID: 6NW+.4CjWwNosS58
SysFS ID: /devices/pci0000:00/0000:00:1e.0
SysFS BusID: 0000:00:1e.0
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Serial IO UART #0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa127 "100 Series/C230 Series Chipset Family Serial IO UART #0"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "intel-lpss"
Driver Modules: "intel_lpss_pci"
Memory Range: 0xdf52b000-0xdf52bfff (rw,non-prefetchable)
IRQ: 20 (no events)
Module Alias: "pci:v00008086d0000A127sv00001462sd00007971bc11sc80i00"
Driver Info #0:
Driver Status: intel_lpss_pci is active
Driver Activation Cmd: "modprobe intel_lpss_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 1f.3: 0403 Audio device
[Created at pci.386]
Unique ID: nS1_.31lHi3bcDx3
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: sound
Model: "Intel 100 Series/C230 Series Chipset Family HD Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa170 "100 Series/C230 Series Chipset Family HD Audio Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0xf971
Revision: 0x31
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xdf520000-0xdf523fff (rw,non-prefetchable)
Memory Range: 0xdf500000-0xdf50ffff (rw,non-prefetchable)
IRQ: 136 (1039 events)
Module Alias: "pci:v00008086d0000A170sv00001462sd0000F971bc04sc03i00"
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
30: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.EurNSvf1rg4
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x590f "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x06
Driver: "skl_uncore"
Driver Modules: "intel_uncore"
Module Alias: "pci:v00008086d0000590Fsv00001462sd00007971bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 600.0: 0780 Communication controller
[Created at pci.386]
Unique ID: vTuk.EPmae4YutVA
Parent ID: Ddhb.JMVvvbmYGr7
SysFS ID: /devices/pci0000:00/0000:00:1d.2/0000:05:00.0/0000:06:00.0
SysFS BusID: 0000:06:00.0
Hardware Class: unknown
Model: "Rockwell International PCI56RVP Modem"
Vendor: pci 0x127a "Rockwell International"
Device: pci 0x1005 "PCI56RVP Modem"
SubVendor: pci 0x127a "Rockwell International"
SubDevice: pci 0x1005
Revision: 0x01
Memory Range: 0xdf200000-0xdf20ffff (rw,non-prefetchable)
I/O Ports: 0xd100-0xd107 (rw)
IRQ: 11 (no events)
Module Alias: "pci:v0000127Ad00001005sv0000127Asd00001005bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
32: PCI 15.0: 1180 Signal processing controller
[Created at pci.386]
Unique ID: Rgik.TpWDJlDVU5B
SysFS ID: /devices/pci0000:00/0000:00:15.0
SysFS BusID: 0000:00:15.0
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Serial IO I2C Controller #0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa160 "100 Series/C230 Series Chipset Family Serial IO I2C Controller #0"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "intel-lpss"
Driver Modules: "intel_lpss_pci"
Memory Range: 0xdf530000-0xdf530fff (rw,non-prefetchable)
IRQ: 16 (3 events)
Module Alias: "pci:v00008086d0000A160sv00001462sd00007971bc11sc80i00"
Driver Info #0:
Driver Status: intel_lpss_pci is active
Driver Activation Cmd: "modprobe intel_lpss_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 1d.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: mvRC.Gr8ou3JcnO3
SysFS ID: /devices/pci0000:00/0000:00:1d.2
SysFS BusID: 0000:00:1d.2
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #11"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa11a "100 Series/C230 Series Chipset Family PCI Express Root Port #11"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0xf1
Driver: "pcieport"
IRQ: 126 (no events)
Module Alias: "pci:v00008086d0000A11Asv00001462sd00007971bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 500.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Ddhb.JMVvvbmYGr7
Parent ID: mvRC.Gr8ou3JcnO3
SysFS ID: /devices/pci0000:00/0000:00:1d.2/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: bridge
Model: "ASMedia ASM1083/1085 PCIe to PCI Bridge"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1080 "ASM1083/1085 PCIe to PCI Bridge"
Revision: 0x03
IRQ: 18 (no events)
Module Alias: "pci:v00001B21d00001080sv00000000sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (PCI bridge)
35: PCI 1d.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 1GTX.E0GIxw3Ckd2
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: bridge
Model: "Intel 100 Series/C230 Series Chipset Family PCI Express Root Port #9"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa118 "100 Series/C230 Series Chipset Family PCI Express Root Port #9"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0xf1
Driver: "pcieport"
IRQ: 125 (no events)
Module Alias: "pci:v00008086d0000A118sv00001462sd00007971bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.DBvbxMgwumC
Parent ID: vSkL.4I0CWnreq74
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "nVidia GP108 High Definition Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0fb8 "GP108 High Definition Audio Controller"
SubVendor: pci 0x1043 "ASUSTeK Computer Inc."
SubDevice: pci 0x85f4
Revision: 0xa1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xdf080000-0xdf083fff (rw,non-prefetchable)
IRQ: 17 (189 events)
Module Alias: "pci:v000010DEd00000FB8sv00001043sd000085F4bc04sc03i00"
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: #22 (PCI bridge)
37: PCI 14.2: 1180 Signal processing controller
[Created at pci.386]
Unique ID: 5Dex.EL90k4_vjwB
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family Thermal Subsystem"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa131 "100 Series/C230 Series Chipset Family Thermal Subsystem"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "intel_pch_thermal"
Driver Modules: "intel_pch_thermal"
Memory Range: 0xdf531000-0xdf531fff (rw,non-prefetchable)
IRQ: 18 (no events)
Module Alias: "pci:v00008086d0000A131sv00001462sd00007971bc11sc80i00"
Driver Info #0:
Driver Status: intel_pch_thermal is active
Driver Activation Cmd: "modprobe intel_pch_thermal"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI 02.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: _Znp.i1HjFzSQt89
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: graphics card
Device Name: "Onboard IGD"
Model: "Intel HD Graphics 630"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x5912 "HD Graphics 630"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x04
Driver: "i915"
Driver Modules: "i915"
Memory Range: 0xdd000000-0xddffffff (rw,non-prefetchable)
Memory Range: 0xb0000000-0xbfffffff (ro,non-prefetchable)
I/O Ports: 0xf000-0xf03f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 135 (1906361 events)
Module Alias: "pci:v00008086d00005912sv00001462sd00007971bc03sc00i00"
Driver Info #0:
Driver Status: i915 is active
Driver Activation Cmd: "modprobe i915"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.QinSUmiqFr1
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel 100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa12f "100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xdf510000-0xdf51ffff (rw,non-prefetchable)
IRQ: 130 (no events)
Module Alias: "pci:v00008086d0000A12Fsv00001462sd00007971bc0Csc03i30"
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
40: PCI 1f.4: 0c05 SMBus
[Created at pci.386]
Unique ID: fnWp.W8ycprB7wy7
SysFS ID: /devices/pci0000:00/0000:00:1f.4
SysFS BusID: 0000:00:1f.4
Hardware Class: unknown
Model: "Intel 100 Series/C230 Series Chipset Family SMBus"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa123 "100 Series/C230 Series Chipset Family SMBus"
SubVendor: pci 0x1462 "Micro-Star International Co., Ltd. [MSI]"
SubDevice: pci 0x7971
Revision: 0x31
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xdf52a000-0xdf52a0ff (rw,non-prefetchable)
I/O Ports: 0xf040-0xf05f (rw)
IRQ: 16 (3 events)
Module Alias: "pci:v00008086d0000A123sv00001462sd00007971bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_i801 is active
Driver Activation Cmd: "modprobe i2c_i801"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: None 00.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: rdCR.fx0JZZQtPu1
Parent ID: _Znp.i1HjFzSQt89
Hardware Class: monitor
Model: "BenQ FP73GS"
Vendor: BNQ
Device: eisa 0x7709 "BenQ FP73GS"
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1152x864@75Hz
Resolution: 1280x1024@76Hz
Resolution: 1280x1024@60Hz
Resolution: 1280x1024@72Hz
Resolution: 640x350@60Hz
Size: 338x270 mm
Year of Manufacture: 2007
Week of Manufacture: 29
Detailed Timings #0:
Resolution: 1280x1024
Horizontal: 1280 1328 1440 1688 (+48 +160 +408) +hsync
Vertical: 1024 1025 1028 1066 (+1 +4 +42) +vsync
Frequencies: 108.00 MHz, 63.98 kHz, 60.02 Hz
Year of Manufacture: 2007
Week of Manufacture: 29
Detailed Timings #1:
Resolution: 640x350
Horizontal: 640 656 752 800 (+16 +112 +160) -hsync
Vertical: 350 387 389 449 (+37 +39 +99) +vsync
Frequencies: 25.17 MHz, 31.46 kHz, 70.07 Hz
Driver Info #0:
Max. Resolution: 1280x1024
Vert. Sync Range: 56-76 Hz
Hor. Sync Range: 30-82 kHz
Bandwidth: 108 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (VGA compatible controller)
42: None 01.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: wkFv.b0WcA5wEYf5
Parent ID: _Znp.i1HjFzSQt89
Hardware Class: monitor
Model: "BenQ GW2280"
Vendor: BNQ
Device: eisa 0x78e8 "BenQ GW2280"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@75Hz
Resolution: 800x600@60Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1920x1080@60Hz
Resolution: 1600x900@60Hz
Resolution: 1280x1024@60Hz
Size: 476x268 mm
Year of Manufacture: 2018
Week of Manufacture: 24
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 50-76 Hz
Hor. Sync Range: 30-83 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (VGA compatible controller)
45: IDE 500.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.a8NM9g7i7UF
Parent ID: abAj.sXV6Kr0Z7e1
SysFS ID: /class/block/sdb
SysFS BusID: 5:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata6/host5/target5:0:0/5:0:0:0
Hardware Class: disk
Model: "KINGSTON SA400S3"
Vendor: "KINGSTON"
Device: "SA400S3"
Revision: "B1D1"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdb
Device Files: /dev/sdb, /dev/disk/by-id/ata-KINGSTON_SA400S37120G_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-path/pci-0000:00:17.0-ata-6.0, /dev/disk/by-path/pci-0000:00:17.0-ata-6
Device Number: block 8:16-8:31
Geometry (Logical): CHS 14593/255/63
Size: 234441648 sectors a 512 bytes
Capacity: 111 GB (120034123776 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #14 (SATA controller)
46: SCSI 600.0: 10600 Disk
[Created at block.245]
Unique ID: Uax2.ZNqEZUyIn17
Parent ID: svHJ.m2lGPNk7Xc4
SysFS ID: /class/block/sdc
SysFS BusID: 6:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/usb5/5-1/5-1.1/5-1.1:1.0/host6/target6:0:0/6:0:0:0
Hardware Class: disk
Model: "Generic Flash Disk"
Vendor: usb 0x058f "Generic"
Device: usb 0x6387 "Flash Disk"
Revision: "8.07"
Serial ID: --
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sdc (/dev/sg2)
Device Files: /dev/sdc, /dev/disk/by-uuid/2015-10-21-16-17-40-00, /dev/disk/by-path/pci-0000:03:00.0-usb-0:1.1:1.0-scsi-0:0:0:0, /dev/disk/by-label/Ubuntu\x2015.10\x20amd64, /dev/disk/by-id/usb-Generic_Flash_Disk_...
Device Number: block 8:32-8:47 (char 21:2)
Geometry (Logical): CHS 1022/248/62
Size: 15728640 sectors a 512 bytes
Capacity: 7 GB (8053063680 bytes)
Speed: 480 Mbps
Module Alias: "usb:v058Fp6387d0105dc00dsc00dp00ic08isc06ip50in00"
Driver Info #0:
Driver Status: uas is active
Driver Activation Cmd: "modprobe uas"
Driver Info #1:
Driver Status: usb_storage is active
Driver Activation Cmd: "modprobe usb_storage"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (USB Controller)
47: IDE 400.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.0E8rWXAMY4F
Parent ID: abAj.sXV6Kr0Z7e1
SysFS ID: /class/block/sda
SysFS BusID: 4:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:17.0/ata5/host4/target4:0:0/4:0:0:0
Hardware Class: disk
Model: "ST3500630A"
Device: "ST3500630A"
Revision: "F"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-path/pci-0000:00:17.0-ata-5.0, /dev/disk/by-id/ata-ST3500630A_..., /dev/disk/by-path/pci-0000:00:17.0-ata-5
Device Number: block 8:0-8:15
Geometry (Logical): CHS 60801/255/63
Size: 976773168 sectors a 512 bytes
Capacity: 465 GB (500107862016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #14 (SATA controller)
48: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: UfPf.mUqILwxEtWB
Parent ID: 2XnU.029GFTetOb3
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/usb5/5-1/5-1:1.0
SysFS BusID: 5-1:1.0
Hardware Class: hub
Model: "VIA Hub"
Hotplug: USB
Vendor: usb 0x2109 "VIA Labs, Inc."
Device: usb 0x3431 "Hub"
Revision: "4.20"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v2109p3431d0420dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #63 (Hub)
49: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.vNHThQQZKpC
Parent ID: svHJ.m2lGPNk7Xc4
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/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.09"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0509dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #13 (USB Controller)
50: USB 00.0: 0282 WLAN controller
[Created at usb.122]
Unique ID: MrBO.M1BlfozBLm7
Parent ID: UfPf.mUqILwxEtWB
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/usb5/5-1/5-1.3/5-1.3:1.0
SysFS BusID: 5-1.3:1.0
Hardware Class: network
Model: "Realtek RTL8188EUS 802.11n Wireless Network Adapter"
Hotplug: USB
Vendor: usb 0x0bda "Realtek Semiconductor Corp."
Device: usb 0x8179 "RTL8188EUS 802.11n Wireless Network Adapter"
Serial ID: --
Driver: "r8188eu"
Driver Modules: "r8188eu"
Device File: wlp3s0u1u3
Features: WLAN
Speed: 480 Mbps
HW Address: ...
Permanent HW Address: ...
Link detected: no
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 2.467 2.472
WLAN bitrates: 1 2 5.5 11
WLAN encryption modes: TKIP CCMP
WLAN authentication modes: open wpa-psk wpa-eap
Module Alias: "usb:v0BDAp8179d0000dc00dsc00dp00icFFiscFFipFFin00"
Driver Info #0:
Driver Status: r8188eu is active
Driver Activation Cmd: "modprobe r8188eu"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (Hub)
51: USB 00.2: 0401 Multimedia audio controller
[Created at usb.122]
Unique ID: LNrm.0zGQ5BCeC13
Parent ID: KRJj.mUqILwxEtWB
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/usb3/3-1/3-1.4/3-1.4:1.2
SysFS BusID: 3-1.4:1.2
Hardware Class: sound
Model: "C-Media Electronics Audio Adapter (Unitek Y-247A)"
Hotplug: USB
Vendor: usb 0x0d8c "C-Media Electronics, Inc."
Device: usb 0x0014 "Audio Adapter (Unitek Y-247A)"
Revision: "1.00"
Driver: "snd-usb-audio"
Driver Modules: "snd_usb_audio"
Speed: 12 Mbps
Module Alias: "usb:v0D8Cp0014d0100dc00dsc00dp00ic01isc02ip00in02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #57 (Hub)
52: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.tisqRJYDXEC
Parent ID: B35A.m2lGPNk7Xc4
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/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.09"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0509dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (USB Controller)
54: USB 00.2: 0000 Unclassified device
[Created at usb.122]
Unique ID: iKKh.CerxQ4Skv08
Parent ID: UfPf.mUqILwxEtWB
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/usb5/5-1/5-1.4/5-1.4:1.2
SysFS BusID: 5-1.4:1.2
Hardware Class: unknown
Model: "Clay Logic flirc"
Hotplug: USB
Vendor: usb 0x20a0 "Clay Logic"
Device: usb 0x0006 "flirc"
Revision: "2.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v20A0p0006d0200dc00dsc00dp00ic03isc00ip01in02"
Driver Info #0:
Driver Status: usbhid is active
Driver Activation Cmd: "modprobe usbhid"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (Hub)
55: USB 00.1: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: NupH.nQKjiuCfL84
Parent ID: UfPf.mUqILwxEtWB
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/usb5/5-1/5-1.2/5-1.2:1.1
SysFS BusID: 5-1.2:1.1
Hardware Class: bluetooth
Model: "Cambridge Silicon Radio Bluetooth Dongle (HCI mode)"
Hotplug: USB
Vendor: usb 0x0a12 "Cambridge Silicon Radio, Ltd"
Device: usb 0x0001 "Bluetooth Dongle (HCI mode)"
Revision: "19.15"
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v0A12p0001d1915dcE0dsc01dp01icE0isc01ip01in01"
Driver Info #0:
Driver Status: btusb is active
Driver Activation Cmd: "modprobe btusb"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (Hub)
57: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: KRJj.mUqILwxEtWB
Parent ID: uIhY.tisqRJYDXEC
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/usb3/3-1/3-1:1.0
SysFS BusID: 3-1:1.0
Hardware Class: hub
Model: "VIA Hub"
Hotplug: USB
Vendor: usb 0x2109 "VIA Labs, Inc."
Device: usb 0x3431 "Hub"
Revision: "4.20"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v2109p3431d0420dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #52 (Hub)
58: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.m2+1uGKvSS5
Parent ID: B35A.m2lGPNk7Xc4
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/usb4/4-0:1.0
SysFS BusID: 4-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.09"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0509dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (USB Controller)
60: USB 00.3: 0000 Unclassified device
[Created at usb.122]
Unique ID: oY5r.Rpc2Hp6bk7B
Parent ID: KRJj.mUqILwxEtWB
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/usb3/3-1/3-1.4/3-1.4:1.3
SysFS BusID: 3-1.4:1.3
Hardware Class: unknown
Model: "C-Media Electronics Audio Adapter (Unitek Y-247A)"
Hotplug: USB
Vendor: usb 0x0d8c "C-Media Electronics, Inc."
Device: usb 0x0014 "Audio Adapter (Unitek Y-247A)"
Revision: "1.00"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event4
Device Files: /dev/input/event4, /dev/input/by-path/pci-0000:02:00.0-usb-0:1.4:1.3-event, /dev/input/by-id/usb-C-Media_Electronics_Inc._USB_Audio_...
Device Number: char 13:68
Speed: 12 Mbps
Module Alias: "usb:v0D8Cp0014d0100dc00dsc00dp00ic03isc00ip00in03"
Driver Info #0:
Driver Status: usbhid is active
Driver Activation Cmd: "modprobe usbhid"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #57 (Hub)
61: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.2DFUsyrieMD
Parent ID: MZfG.QinSUmiqFr1
SysFS ID: /devices/pci0000:00/0000:00:14.0/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.09"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0509dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (USB Controller)
63: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 2XnU.029GFTetOb3
Parent ID: svHJ.m2lGPNk7Xc4
SysFS ID: /devices/pci0000:00/0000:00:1c.7/0000:03:00.0/usb5/5-0:1.0
SysFS BusID: 5-0:1.0
Hardware Class: hub