-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path5ACBE289AA
1278 lines (1213 loc) · 47.3 KB
/
5ACBE289AA
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
11: PCI 300.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: svHJ.sw6bxR4vqR7
Parent ID: hoOk.52zcte4tb88
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8168 "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8168 "Motherboard (one of many)"
Revision: 0x11
I/O Ports: 0xd000-0xd0ff (rw)
Memory Range: 0xef400000-0xef400fff (rw,non-prefetchable)
Memory Range: 0xe2100000-0xe2103fff (ro,non-prefetchable)
IRQ: 10 (no events)
Module Alias: "pci:v000010ECd00008168sv00001849sd00008168bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
12: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.zvquY2hI_A8
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 9 Series Chipset Family PCI Express Root Port 1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c90 "9 Series Chipset Family PCI Express Root Port 1"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8c90
Revision: 0xd0
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00008C90sv00001849sd00008C90bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
13: PCI 900.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: x1VA.JssZq8TP2s8
Parent ID: mO1u.zDgGtW2oSA0
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:07.0/0000:09:00.0
SysFS BusID: 0000:09: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 0x1849 "ASRock Incorporation"
SubDevice: pci 0x0612 "Motherboard"
Revision: 0x02
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xb050-0xb057 (rw)
I/O Ports: 0xb040-0xb043 (rw)
I/O Ports: 0xb030-0xb037 (rw)
I/O Ports: 0xb020-0xb023 (rw)
I/O Ports: 0xb000-0xb01f (rw)
Memory Range: 0xef100000-0xef1001ff (rw,non-prefetchable)
IRQ: 38 (no events)
Module Alias: "pci:v00001B21d00000612sv00001849sd00000612bc01sc06i01"
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: #28 (PCI bridge)
14: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.oFlgSr42mk7
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel Z97 Chipset LPC Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8cc4 "Z97 Chipset LPC Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8cc4
Module Alias: "pci:v00008086d00008CC4sv00001849sd00008CC4bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
15: PCI 200.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: B35A.AxGd7hiuG+6
Parent ID: z8Q3.zvquY2hI_A8
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: storage
Model: "Samsung Electronics NVMe SSD Controller SM981/PM981/PM983"
Vendor: pci 0x144d "Samsung Electronics Co Ltd"
Device: pci 0xa808 "NVMe SSD Controller SM981/PM981/PM983"
SubVendor: pci 0x144d "Samsung Electronics Co Ltd"
SubDevice: pci 0xa801
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xef500000-0xef503fff (rw,non-prefetchable)
IRQ: 16 (29 events)
Module Alias: "pci:v0000144Dd0000A808sv0000144Dsd0000A801bc01sc08i02"
Driver Info #0:
Driver Status: nvme is active
Driver Activation Cmd: "modprobe nvme"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #12 (PCI bridge)
16: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.L3QNiGMcNjA
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0c01 "Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x0c01
Revision: 0x06
Driver: "pcieport"
IRQ: 24 (no events)
Module Alias: "pci:v00008086d00000C01sv00001849sd00000C01bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
17: PCI 505.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: cAxx.zDgGtW2oSA0
Parent ID: YmUS.zDgGtW2oSA0
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:05.0
SysFS BusID: 0000:05:05.0
Hardware Class: bridge
Model: "ASRock In ASM1184e PCIe Switch"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1184 "ASM1184e PCIe Switch Port"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1184 "ASM1184e PCIe Switch"
Driver: "pcieport"
IRQ: 32 (no events)
Module Alias: "pci:v00001B21d00001184sv00001849sd00001184bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
18: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC._Ezyp6fGC8A
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 9 Series Chipset Family ME Interface #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8cba "9 Series Chipset Family ME Interface #1"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8cba
Memory Range: 0xef639000-0xef63900f (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00008CBAsv00001849sd00008CBAbc07sc80i00"
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._u3fc0JRfv2
Parent ID: vSkL.L3QNiGMcNjA
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 GM107 [GeForce GTX 750]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1381 "GM107 [GeForce GTX 750]"
SubVendor: pci 0x196e "PNY"
SubDevice: pci 0x1381
Revision: 0xa2
Driver: "nvidia"
Driver Modules: "nvidia"
Memory Range: 0xee000000-0xeeffffff (rw,non-prefetchable)
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
Memory Range: 0xe0000000-0xe1ffffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xe07f (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 55 (26682 events)
Module Alias: "pci:v000010DEd00001381sv0000196Esd00001381bc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nvidia_drm is active
Driver Activation Cmd: "modprobe nvidia_drm"
Driver Info #2:
Driver Status: nvidia is active
Driver Activation Cmd: "modprobe nvidia"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #16 (PCI bridge)
20: PCI 1b.0: 0403 Audio device
[Created at pci.386]
Unique ID: u1Nb.8aqJBU3KF13
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel 9 Series Chipset Family HD Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8ca0 "9 Series Chipset Family HD Audio Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1151
Memory Range: 0xef630000-0xef633fff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00008086d00008CA0sv00001849sd00001151bc04sc03i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI a00.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: cuhJ.ErrQHOgyZ+8
Parent ID: 96M4.LID3Xjlt6l2
SysFS ID: /devices/pci0000:00/0000:00:1c.6/0000:0a:00.0
SysFS BusID: 0000:0a: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 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1142
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xef300000-0xef307fff (rw,non-prefetchable)
IRQ: 18 (no events)
Module Alias: "pci:v00001B21d00001142sv00001849sd00001142bc0Csc03i30"
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: #31 (PCI bridge)
22: PCI 700.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: aK5u.JssZq8TP2s8
Parent ID: Syq+.zDgGtW2oSA0
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:03.0/0000:07:00.0
SysFS BusID: 0000:07: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 0x1849 "ASRock Incorporation"
SubDevice: pci 0x0612 "Motherboard"
Revision: 0x02
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: 0xef200000-0xef2001ff (rw,non-prefetchable)
IRQ: 37 (600 events)
Module Alias: "pci:v00001B21d00000612sv00001849sd00000612bc01sc06i01"
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: #33 (PCI bridge)
23: PCI 1c.3: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Z7uZ.961_1SHfP70
SysFS ID: /devices/pci0000:00/0000:00:1c.3
SysFS BusID: 0000:00:1c.3
Hardware Class: bridge
Model: "Intel 9 Series Chipset Family PCI Express Root Port 4"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c96 "9 Series Chipset Family PCI Express Root Port 4"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8c96
Revision: 0xd0
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00008086d00008C96sv00001849sd00008C96bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 501.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Ikk3.zDgGtW2oSA0
Parent ID: YmUS.zDgGtW2oSA0
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:01.0
SysFS BusID: 0000:05:01.0
Hardware Class: bridge
Model: "ASRock In ASM1184e PCIe Switch"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1184 "ASM1184e PCIe Switch Port"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1184 "ASM1184e PCIe Switch"
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00001B21d00001184sv00001849sd00001184bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
25: PCI 19.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: ID95.fptuA0IGYI1
SysFS ID: /devices/pci0000:00/0000:00:19.0
SysFS BusID: 0000:00:19.0
Hardware Class: network
Model: "Intel Ethernet Connection (2) I218-V"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x15a1 "Ethernet Connection (2) I218-V"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x15a1
Driver: "e1000e"
Driver Modules: "e1000e"
Device File: enp0s25
Memory Range: 0xef600000-0xef61ffff (rw,non-prefetchable)
Memory Range: 0xef637000-0xef637fff (rw,non-prefetchable)
I/O Ports: 0xf020-0xf03f (rw)
IRQ: 35 (111764 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d000015A1sv00001849sd000015A1bc02sc00i00"
Driver Info #0:
Driver Status: e1000e is active
Driver Activation Cmd: "modprobe e1000e"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.uwltq7CYB1B
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel 9 Series Chipset Family SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8ca2 "9 Series Chipset Family SMBus Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8ca2
Memory Range: 0xef634000-0xef6340ff (rw,non-prefetchable)
I/O Ports: 0xf000-0xf01f (rw)
IRQ: 10 (no events)
Module Alias: "pci:v00008086d00008CA2sv00001849sd00008CA2bc0Csc05i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.FB7M4mEV9FA
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel 4th Gen Core Processor DRAM Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0c00 "4th Gen Core Processor DRAM Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x0c00
Revision: 0x06
Driver: "hsw_uncore"
Module Alias: "pci:v00008086d00000C00sv00001849sd00000C00bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 507.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: mO1u.zDgGtW2oSA0
Parent ID: YmUS.zDgGtW2oSA0
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:07.0
SysFS BusID: 0000:05:07.0
Hardware Class: bridge
Model: "ASRock In ASM1184e PCIe Switch"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1184 "ASM1184e PCIe Switch Port"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1184 "ASM1184e PCIe Switch"
Driver: "pcieport"
IRQ: 33 (no events)
Module Alias: "pci:v00001B21d00001184sv00001849sd00001184bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
29: PCI 1a.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: pwJ7.isJd_1n+lWD
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel 9 Series Chipset Family USB EHCI Controller #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8cad "9 Series Chipset Family USB EHCI Controller #2"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8cad
Driver: "ehci-pci"
Memory Range: 0xef636000-0xef6363ff (rw,non-prefetchable)
IRQ: 16 (29 events)
Module Alias: "pci:v00008086d00008CADsv00001849sd00008CADbc0Csc03i20"
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
30: PCI 1d.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 1GTX.UebMwE4mwa1
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel 9 Series Chipset Family USB EHCI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8ca6 "9 Series Chipset Family USB EHCI Controller #1"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8ca6
Driver: "ehci-pci"
Memory Range: 0xef635000-0xef6353ff (rw,non-prefetchable)
IRQ: 23 (33 events)
Module Alias: "pci:v00008086d00008CA6sv00001849sd00008CA6bc0Csc03i20"
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
31: PCI 1c.6: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 96M4.LID3Xjlt6l2
SysFS ID: /devices/pci0000:00/0000:00:1c.6
SysFS BusID: 0000:00:1c.6
Hardware Class: bridge
Model: "Intel 9 Series Chipset Family PCI Express Root Port 7"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c9c "9 Series Chipset Family PCI Express Root Port 7"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8c9c
Revision: 0xd0
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d00008C9Csv00001849sd00008C9Cbc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.u57nhhoqO4A
Parent ID: vSkL.L3QNiGMcNjA
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "nVidia GM107 High Definition Audio Controller [GeForce 940MX]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0fbc "GM107 High Definition Audio Controller [GeForce 940MX]"
SubVendor: pci 0x196e "PNY"
SubDevice: pci 0x1381
Revision: 0xa1
Memory Range: 0xef080000-0xef083fff (rw,non-prefetchable)
IRQ: 10 (no events)
Module Alias: "pci:v000010DEd00000FBCsv0000196Esd00001381bc04sc03i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #16 (PCI bridge)
33: PCI 503.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Syq+.zDgGtW2oSA0
Parent ID: YmUS.zDgGtW2oSA0
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:03.0
SysFS BusID: 0000:05:03.0
Hardware Class: bridge
Model: "ASRock In ASM1184e PCIe Switch"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1184 "ASM1184e PCIe Switch Port"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1184 "ASM1184e PCIe Switch"
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00001B21d00001184sv00001849sd00001184bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
34: PCI 400.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: YmUS.zDgGtW2oSA0
Parent ID: Z7uZ.961_1SHfP70
SysFS ID: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: bridge
Model: "ASRock In ASM1184e PCIe Switch"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x1184 "ASM1184e PCIe Switch Port"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x1184 "ASM1184e PCIe Switch"
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00001B21d00001184sv00001849sd00001184bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (PCI bridge)
35: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.4+ERSCoAHAC
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel 9 Series Chipset Family USB xHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8cb1 "9 Series Chipset Family USB xHCI Controller"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8cb1
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xef620000-0xef62ffff (rw,non-prefetchable)
IRQ: 34 (12969 events)
Module Alias: "pci:v00008086d00008CB1sv00001849sd00008CB1bc0Csc03i30"
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
36: PCI 1c.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: hoOk.52zcte4tb88
SysFS ID: /devices/pci0000:00/0000:00:1c.2
SysFS BusID: 0000:00:1c.2
Hardware Class: bridge
Model: "Intel 9 Series Chipset Family PCI Express Root Port 3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c94 "9 Series Chipset Family PCI Express Root Port 3"
SubVendor: pci 0x1849 "ASRock Incorporation"
SubDevice: pci 0x8c94
Revision: 0xd0
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d00008C94sv00001849sd00008C94bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: SCSI 600.3: 10600 Disk
[Created at block.256]
Unique ID: 6ib8.obBCTNJxf96
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /class/block/sdf
SysFS BusID: 6:0:0:3
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.4/3-9.1.4.3/3-9.1.4.3:1.0/host6/target6:0:0/6:0:0:3
Hardware Class: disk
Model: "Sony USB HS-SD Card"
Vendor: usb 0x054c "Sony"
Device: usb 0x01bd "USB HS-SD Card"
Revision: "5.23"
Serial ID: --
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sdf (/dev/sg6)
Device Number: block 8:80-8:95 (char 21:6)
Speed: 480 Mbps
Module Alias: "usb:v054Cp01BDd0523dc00dsc00dp00ic08isc06ip50in00"
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"
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
38: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: wLCS.EJHvc9MwvZ7
Parent ID: B35A.AxGd7hiuG+6
SysFS ID: /class/block/nvme0n1
SysFS BusID: nvme0
SysFS Device Link: /devices/pci0000:00/0000:00:1c.0/0000:02:00.0/nvme/nvme0
Hardware Class: disk
Model: "Samsung Electronics NVMe SSD Controller SM981/PM981/PM983"
Vendor: pci 0x144d "Samsung Electronics Co Ltd"
Device: pci 0xa808 "NVMe SSD Controller SM981/PM981/PM983"
SubVendor: pci 0x144d "Samsung Electronics Co Ltd"
SubDevice: pci 0xa801
Driver: "nvme"
Driver Modules: "nvme"
Device File: /dev/nvme0n1
Device Number: block 259:0
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #15 (Non-Volatile memory controller)
39: SCSI 600.1: 10600 Disk
[Created at block.256]
Unique ID: ofUZ.Kkm+GXchVtF
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /class/block/sdd
SysFS BusID: 6:0:0:1
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.4/3-9.1.4.3/3-9.1.4.3:1.0/host6/target6:0:0/6:0:0:1
Hardware Class: disk
Model: "Sony USB HS-xD/SM"
Vendor: usb 0x054c "Sony"
Device: usb 0x01bd "USB HS-xD/SM"
Revision: "5.23"
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sdd (/dev/sg4)
Device Number: block 8:48-8:63 (char 21:4)
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
40: SCSI 500.0: 10600 Disk
[Created at block.245]
Unique ID: uI_Q.6ItlFxEzWUE
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /class/block/sdb
SysFS BusID: 5:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb4/4-3/4-3.3/4-3.3.1/4-3.3.1.1/4-3.3.1.1:1.0/host5/target5:0:0/5:0:0:0
Hardware Class: disk
Model: "Seagate OneTouch HDD"
Vendor: "Seagate"
Device: "OneTouch HDD"
Revision: "1707"
Driver: "uas", "sd"
Driver Modules: "uas"
Device File: /dev/sdb (/dev/sg1)
Device Number: block 8:16-8:31 (char 21:1)
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
41: SCSI 400.0: 10600 Disk
[Created at block.245]
Unique ID: 1xzV.aDCFYZrr2v9
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /class/block/sr0
SysFS BusID: 4:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.3/3-9.1.3:1.0/host4/target4:0:0/4:0:0:0
Hardware Class: disk
Model: "HL-DT-ST DVDRAM GP60NB50"
Vendor: usb 0x0e8d "HL-DT-ST"
Device: usb 0x1887 "DVDRAM GP60NB50"
Revision: "PE00"
Serial ID: --
Driver: "usb-storage", "sr"
Driver Modules: "usb_storage"
Device File: /dev/sr0 (/dev/sg2)
Device Number: block 11:0 (char 21:2)
Speed: 480 Mbps
Module Alias: "usb:v0E8Dp1887d0000dc00dsc00dp00ic08isc02ip50in00"
Driver Info #0:
Driver Status: usb_storage is active
Driver Activation Cmd: "modprobe usb_storage"
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
42: SCSI 600.2: 10600 Disk
[Created at block.256]
Unique ID: Frkd.Kkm+GXchVtF
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /class/block/sde
SysFS BusID: 6:0:0:2
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.4/3-9.1.4.3/3-9.1.4.3:1.0/host6/target6:0:0/6:0:0:2
Hardware Class: disk
Model: "Sony USB HS-MS Card"
Vendor: usb 0x054c "Sony"
Device: usb 0x01bd "USB HS-MS Card"
Revision: "5.23"
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sde (/dev/sg5)
Device Number: block 8:64-8:79 (char 21:5)
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
43: SCSI 600.0: 10600 Disk
[Created at block.256]
Unique ID: LUEV.Kkm+GXchVtF
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /class/block/sdc
SysFS BusID: 6:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.4/3-9.1.4.3/3-9.1.4.3:1.0/host6/target6:0:0/6:0:0:0
Hardware Class: disk
Model: "Sony USB HS-CF Card"
Vendor: usb 0x054c "Sony"
Device: usb 0x01bd "USB HS-CF Card"
Revision: "5.23"
Driver: "usb-storage", "sd"
Driver Modules: "usb_storage"
Device File: /dev/sdc (/dev/sg3)
Device Number: block 8:32-8:47 (char 21:3)
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
44: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.qXi0eao0HID
Parent ID: aK5u.JssZq8TP2s8
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/0000:05:03.0/0000:07:00.0/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "Samsung SSD 850"
Vendor: "Samsung"
Device: "SSD 850"
Revision: "2B6Q"
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Number: block 8:0-8:15
Drive status: no medium
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #22 (SATA controller)
45: USB 00.0: 10600 Disk
[Created at usb.122]
Unique ID: 0Gb7.U5zO7k+vdN9
Parent ID: Vz39.nGhi8EJ95NF
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb4/4-3/4-3.3/4-3.3.1/4-3.3.1.1/4-3.3.1.1:1.0
SysFS BusID: 4-3.3.1.1:1.0
Hardware Class: disk
Model: "Seagate RSS LLC OneTouch HDD"
Hotplug: USB
Vendor: usb 0x0bc2 "Seagate RSS LLC"
Device: usb 0xab62 "OneTouch HDD"
Revision: "17.07"
Serial ID: --
Driver: "uas"
Driver Modules: "uas"
Module Alias: "usb:v0BC2pAB62d1707dc00dsc00dp00ic08isc06ip62in00"
Driver Info #0:
Driver Status: uas is active
Driver Activation Cmd: "modprobe uas"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #66 (Hub)
46: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.NaS4fLCXwp9
Parent ID: cuhJ.ErrQHOgyZ+8
SysFS ID: /devices/pci0000:00/0000:00:1c.6/0000:0a: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.08"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0508dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (USB Controller)
47: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: T3cg.d7FDLX76qXB
Parent ID: jCDx.d7FDLX76qXB
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.4/3-9.1.4:1.0
SysFS BusID: 3-9.1.4:1.0
Hardware Class: hub
Model: "Genesys Logic Hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0608 "Hub"
Revision: "32.98"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0608d3298dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #61 (Hub)
49: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: qa2N.nGhi8EJ95NF
Parent ID: HpcW.Ofi6CDF3DAE
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb4/4-3/4-3.3/4-3.3:1.0
SysFS BusID: 4-3.3:1.0
Hardware Class: hub
Model: "Genesys Logic Hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0612 "Hub"
Revision: "92.24"
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v05E3p0612d9224dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #54 (Hub)
50: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: FKGF.19grXQ5EwyA
Parent ID: pBe4.oLWCeziExdF
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0
SysFS BusID: 2-1:1.0
Hardware Class: hub
Model: "Intel Hub"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x8001
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p8001d0000dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #68 (Hub)
51: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.2DFUsyrieMD
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /devices/pci0000:00/0000:00:14.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.08"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0508dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
52: USB 00.2: 0000 Unclassified device
[Created at usb.122]
Unique ID: 41EJ.lVLMBtrsHd4
Parent ID: jCDx.d7FDLX76qXB
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.1/3-9.1.1:1.2
SysFS BusID: 3-9.1.1:1.2
Hardware Class: unknown
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52b "Unifying Receiver"
Revision: "12.10"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Bd1210dc00dsc00dp00ic03isc00ip00in02"
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: #61 (Hub)
53: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: bTTG.lRoCB54l1cE
Parent ID: YccR.8V6_77ho4l5
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.3/3-9.3:1.0
SysFS BusID: 3-9.3:1.0
Hardware Class: hub
Model: "Genesys Logic 4-port hub"
Hotplug: USB
Vendor: usb 0x05e3 "Genesys Logic, Inc."
Device: usb 0x0610 "4-port hub"
Revision: "92.24"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v05E3p0610d9224dc09dsc00dp02ic09isc00ip02in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #59 (Hub)
54: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: HpcW.Ofi6CDF3DAE
Parent ID: zPk0.xYNhIwdOaa6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb4/4-3/4-3:1.0
SysFS BusID: 4-3:1.0
Hardware Class: hub
Model: "ASMedia ASM1074 SuperSpeed hub"
Hotplug: USB
Vendor: usb 0x174c "ASMedia Technology Inc."
Device: usb 0x3074 "ASM1074 SuperSpeed hub"
Revision: "1.00"
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v174Cp3074d0100dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #57 (Hub)
55: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: AgjA.0PGCqK2HNaA
Parent ID: jCDx.d7FDLX76qXB
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.1/3-9.1.1/3-9.1.1:1.0
SysFS BusID: 3-9.1.1:1.0
Hardware Class: keyboard
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52b "Unifying Receiver"
Revision: "12.10"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event3
Device Number: char 13:67
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Bd1210dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #61 (Hub)
56: USB 00.2: 0000 Unclassified device
[Created at usb.122]
Unique ID: xybZ.41Gj5ss5mS1
Parent ID: YccR.8V6_77ho4l5
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.4/3-9.4:1.2
SysFS BusID: 3-9.4:1.2
Hardware Class: unknown
Model: "Cooler Master MASTERKEYS PRO L with intelligent RGB"
Hotplug: USB
Vendor: usb 0x2516 "Cooler Master Co., Ltd."
Device: usb 0x003b "MASTERKEYS PRO L with intelligent RGB"
Revision: "11.04"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event9
Device Number: char 13:73
Speed: 12 Mbps
Module Alias: "usb:v2516p003Bd1104dc00dsc00dp00ic03isc00ip00in02"
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: #59 (Hub)
57: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.xYNhIwdOaa6
Parent ID: MZfG.4+ERSCoAHAC
SysFS ID: /devices/pci0000:00/0000:00:14.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.08"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0508dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
58: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: 1c5R.LwAZkJ3WrP7
Parent ID: YccR.8V6_77ho4l5
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9.4/3-9.4:1.0
SysFS BusID: 3-9.4:1.0
Hardware Class: keyboard
Model: "Cooler Master MASTERKEYS PRO L with intelligent RGB"
Hotplug: USB
Vendor: usb 0x2516 "Cooler Master Co., Ltd."
Device: usb 0x003b "MASTERKEYS PRO L with intelligent RGB"
Revision: "11.04"
Driver: "usbhid"
Driver Modules: "usbhid"
Device File: /dev/input/event7
Device Number: char 13:71
Speed: 12 Mbps
Module Alias: "usb:v2516p003Bd1104dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #59 (Hub)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: YccR.8V6_77ho4l5
Parent ID: uIhY.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-9/3-9:1.0
SysFS BusID: 3-9:1.0
Hardware Class: hub
Model: "ASMedia ASM1074 High-Speed hub"
Hotplug: USB
Vendor: usb 0x174c "ASMedia Technology Inc."
Device: usb 0x2074 "ASM1074 High-Speed hub"
Revision: "1.00"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v174Cp2074d0100dc09dsc00dp02ic09isc00ip02in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (Hub)
60: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.FHd55n4xKo7
Parent ID: pwJ7.isJd_1n+lWD
SysFS ID: /devices/pci0000:00/0000:00:1a.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.08"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0508dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #29 (USB Controller)