-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path7672395A1C
1805 lines (1712 loc) · 71.1 KB
/
7672395A1C
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
23: PCI 300.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: svHJ.SLW4QPYfJ26
Parent ID: u1Nb.WmWk9YDr0F1
SysFS ID: /devices/pci0000:00/0000:00:1b.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: usb controller
Model: "ASMedia ASM2142 USB 3.1 Host Controller"
Vendor: pci 0x1b21 "ASMedia Technology Inc."
Device: pci 0x2142 "ASM2142 USB 3.1 Host Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1050
Driver: "xhci_hcd"
Memory Range: 0x71500000-0x71507fff (rw,non-prefetchable)
IRQ: 18 (417 events)
Module Alias: "pci:v00001B21d00002142sv00003842sd00001050bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (PCI bridge)
24: PCI 17.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: abAj.EnjKGrK_GX5
SysFS ID: /devices/pci0000:00/0000:00:17.0
SysFS BusID: 0000:00:17.0
Hardware Class: storage
Device Name: "Onboard - SATA"
Model: "Intel Cannon Lake PCH SATA AHCI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa352 "Cannon Lake PCH SATA AHCI Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0x71420000-0x71421fff (rw,non-prefetchable)
Memory Range: 0x71423000-0x714230ff (rw,non-prefetchable)
I/O Ports: 0x7090-0x7097 (rw)
I/O Ports: 0x7080-0x7083 (rw)
I/O Ports: 0x7060-0x707f (rw)
Memory Range: 0x71422000-0x714227ff (rw,non-prefetchable)
IRQ: 131 (26423 events)
Module Alias: "pci:v00008086d0000A352sv00003842sd00001055bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.xho_lhdJOKF
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel Cannon Lake PCH PCI Express Root Port #6"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa33d "Cannon Lake PCH PCI Express Root Port #6"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0xf0
Driver: "pcieport"
IRQ: 126 (no events)
Module Alias: "pci:v00008086d0000A33Dsv00003842sd00001055bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 08.0: 0880 System peripheral
[Created at pci.386]
Unique ID: RE4e.yfgzRAlL9b4
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: unknown
Device Name: "Onboard - Other"
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 0x8086 "Intel Corporation"
SubDevice: pci 0x7270
Memory Range: 0x6224421000-0x6224421fff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d00001911sv00008086sd00007270bc08sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 200.2: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: wi3r.YirhAsWZzo3
Parent ID: mnDB.VCQCPW2YRU3
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:02:00.2
SysFS BusID: 0000:02:00.2
Hardware Class: usb controller
Model: "nVidia TU102 USB 3.1 Host Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1ad6 "TU102 USB 3.1 Host Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2589
Revision: 0xa1
Driver: "xhci_hcd"
Memory Range: 0x6222000000-0x622203ffff (ro,non-prefetchable)
Memory Range: 0x6222040000-0x622204ffff (ro,non-prefetchable)
IRQ: 165 (242 events)
Module Alias: "pci:v000010DEd00001AD6sv00003842sd00002589bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (PCI bridge)
28: PCI 15.1: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: I+Ba.9DygZ1_A1f9
SysFS ID: /devices/pci0000:00/0000:00:15.1
SysFS BusID: 0000:00:15.1
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH Serial IO I2C Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa369 "Cannon Lake PCH Serial IO I2C Controller #1"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Memory Range: 0x4010001000-0x4010001fff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d0000A369sv00003842sd00001055bc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.03F6na4dfJ0
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Device Name: "Onboard - Other"
Model: "Intel Z390 Chipset LPC/eSPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa305 "Z390 Chipset LPC/eSPI Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Module Alias: "pci:v00008086d0000A305sv00003842sd00001055bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
30: PCI 1b.4: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: LLKx.3ms7uzkTHn4
SysFS ID: /devices/pci0000:00/0000:00:1b.4
SysFS BusID: 0000:00:1b.4
Hardware Class: bridge
Model: "Intel Cannon Lake PCH PCI Express Root Port #21"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa32c "Cannon Lake PCH PCI Express Root Port #21"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x7270
Revision: 0xf0
Driver: "pcieport"
IRQ: 125 (no events)
Module Alias: "pci:v00008086d0000A32Csv00008086sd00007270bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 200.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: B35A.xTu0vKSbCU0
Parent ID: mnDB.VCQCPW2YRU3
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: graphics card
Model: "nVidia TU102 [GeForce RTX 2080 Ti Rev. A]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1e07 "TU102 [GeForce RTX 2080 Ti Rev. A]"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2589
Revision: 0xa1
Driver: "vfio-pci"
Driver Modules: "vfio_pci"
Memory Range: 0x70000000-0x70ffffff (rw,non-prefetchable)
Memory Range: 0x6210000000-0x621fffffff (ro,non-prefetchable)
Memory Range: 0x6220000000-0x6221ffffff (ro,non-prefetchable)
I/O Ports: 0x5000-0x5fff (rw)
Memory Range: 0x71000000-0x7107ffff (ro,non-prefetchable,disabled)
IRQ: 17 (462354 events)
Module Alias: "pci:v000010DEd00001E07sv00003842sd00002589bc03sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (PCI bridge)
32: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.RYeCUEajKy1
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel 6th-10th Gen Core Processor PCIe Controller (x16)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1901 "6th-10th Gen Core Processor PCIe Controller (x16)"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x7270
Revision: 0x0d
Driver: "pcieport"
IRQ: 122 (no events)
Module Alias: "pci:v00008086d00001901sv00008086sd00007270bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 1c.7: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 0Rrv.zWhUjqsjR50
SysFS ID: /devices/pci0000:00/0000:00:1c.7
SysFS BusID: 0000:00:1c.7
Hardware Class: bridge
Model: "Intel Cannon Lake PCH PCI Express Root Port #8"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa33f "Cannon Lake PCH PCI Express Root Port #8"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0xf0
Driver: "pcieport"
IRQ: 128 (no events)
Module Alias: "pci:v00008086d0000A33Fsv00003842sd00001055bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 800.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: GBI1.46N42qAR1f7
Parent ID: 1GTX.EJXFWLlwXmB
SysFS ID: /devices/pci0000:00/0000:00:1d.0/0000:08:00.0
SysFS BusID: 0000:08:00.0
Hardware Class: storage
Model: "Seagate Technology PLC FireCuda 520 SSD"
Vendor: pci 0x1bb1 "Seagate Technology PLC"
Device: pci 0x5016 "FireCuda 520 SSD"
SubVendor: pci 0x1bb1 "Seagate Technology PLC"
SubDevice: pci 0x5016
Revision: 0x01
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0x71700000-0x71703fff (rw,non-prefetchable)
IRQ: 16 (6 events)
Module Alias: "pci:v00001BB1d00005016sv00001BB1sd00005016bc01sc08i02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #50 (PCI bridge)
35: PCI 14.3: 0282 WLAN controller
[Created at pci.386]
Unique ID: S6TQ.ZSOAAbMaHi6
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: network
Device Name: "Onboard - Ethernet"
Model: "Intel Wireless-AC 9560"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa370 "Cannon Lake PCH CNVi WiFi"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0034 "Wireless-AC 9560"
Revision: 0x10
Driver: "iwlwifi"
Driver Modules: "iwlwifi"
Device File: wlo1
Features: WLAN
Memory Range: 0x6224414000-0x6224417fff (rw,non-prefetchable)
IRQ: 16 (6 events)
HW Address: 06B5F0E1C977B215A9878C70159E0672
Permanent HW Address: D48AE892FCA65E184AFAB16313E1326F
Link detected: no
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100 104
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 2.484 5.18 5.2 5.22 5.24 5.26 5.28 5.3 5.32 5.34 5.36 5.38 5.4 5.42 5.44 5.46 5.48 5.5 5.52
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v00008086d0000A370sv00008086sd00000034bc02sc80i00"
Driver Info #0:
Driver Status: iwlwifi is active
Driver Activation Cmd: "modprobe iwlwifi"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.R3hMgXRb4E9
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH HECI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa360 "Cannon Lake PCH HECI Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Memory Range: 0x622441c000-0x622441cfff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d0000A360sv00003842sd00001055bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 100.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: VCu0.7llna27zhVF
Parent ID: vSkL.RYeCUEajKy1
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "Sapphire Radeon RX 570 Pulse 4GB"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x67df "Ellesmere [Radeon RX 470/480/570/570X/580/580X/590]"
SubVendor: pci 0x1da2 "Sapphire Technology Limited"
SubDevice: pci 0xe387 "Radeon RX 570 Pulse 4GB"
Revision: 0xe7
Driver: "amdgpu"
Driver Modules: "amdgpu"
Memory Range: 0x6000000000-0x61ffffffff (ro,non-prefetchable)
Memory Range: 0x6200000000-0x62001fffff (ro,non-prefetchable)
I/O Ports: 0x6000-0x6fff (rw)
Memory Range: 0x71300000-0x7133ffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 183 (2834512 events)
Module Alias: "pci:v00001002d000067DFsv00001DA2sd0000E387bc03sc00i00"
Driver Info #0:
Driver Status: amdgpu is active
Driver Activation Cmd: "modprobe amdgpu"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
38: PCI 1b.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: u1Nb.WmWk9YDr0F1
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: bridge
Model: "Intel Cannon Lake PCH PCI Express Root Port #19"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa342 "Cannon Lake PCH PCI Express Root Port #19"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0xf0
Driver: "pcieport"
IRQ: 124 (no events)
Module Alias: "pci:v00008086d0000A342sv00003842sd00001055bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 1f.5: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: W60f.adp_Pq75h22
SysFS ID: /devices/pci0000:00/0000:00:1f.5
SysFS BusID: 0000:00:1f.5
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH SPI Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa324 "Cannon Lake PCH SPI Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Memory Range: 0xfe010000-0xfe010fff (rw,non-prefetchable)
Module Alias: "pci:v00008086d0000A324sv00003842sd00001055bc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
40: PCI 1e.0: 0780 Communication controller
[Created at pci.386]
Unique ID: 6NW+.ZspPmk7gac6
SysFS ID: /devices/pci0000:00/0000:00:1e.0
SysFS BusID: 0000:00:1e.0
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH Serial IO UART Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa328 "Cannon Lake PCH Serial IO UART Host Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Memory Range: 0x4010002000-0x4010002fff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d0000A328sv00003842sd00001055bc07sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 1f.3: 0403 Audio device
[Created at pci.386]
Unique ID: nS1_.ZGGuSfvvT+C
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: sound
Device Name: "Onboard - Sound"
Model: "Intel Cannon Lake PCH cAVS"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa348 "Cannon Lake PCH cAVS"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0x6224410000-0x6224413fff (rw,non-prefetchable)
Memory Range: 0x6224000000-0x62240fffff (rw,non-prefetchable)
IRQ: 175 (2242 events)
Module Alias: "pci:v00008086d0000A348sv00003842sd00001055bc04sc03i00"
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
42: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.x0XuDd5QdUD
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Device Name: "Onboard - Other"
Model: "Intel 8th/9th Gen Core 8-core Desktop Processor Host Bridge/DRAM Registers [Coffee Lake S]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3e30 "8th/9th Gen Core 8-core Desktop Processor Host Bridge/DRAM Registers [Coffee Lake S]"
SubVendor: pci 0x62e1
SubDevice: pci 0x0500
Revision: 0x0d
Driver: "skl_uncore"
Module Alias: "pci:v00008086d00003E30sv000062E1sd00000500bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 200.3: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: n1Zg.mVVwMAYwi6F
Parent ID: mnDB.VCQCPW2YRU3
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:02:00.3
SysFS BusID: 0000:02:00.3
Hardware Class: unknown
Model: "nVidia TU102 USB Type-C UCSI Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x1ad7 "TU102 USB Type-C UCSI Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2589
Revision: 0xa1
Driver: "nvidia-gpu"
Memory Range: 0x71084000-0x71084fff (rw,non-prefetchable)
IRQ: 174 (25 events)
Module Alias: "pci:v000010DEd00001AD7sv00003842sd00002589bc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #48 (PCI bridge)
44: PCI 12.0: 1180 Signal processing controller
[Created at pci.386]
Unique ID: CLZK.UGqEqShwfKB
SysFS ID: /devices/pci0000:00/0000:00:12.0
SysFS BusID: 0000:00:12.0
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH Thermal Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa379 "Cannon Lake PCH Thermal Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Memory Range: 0x6224420000-0x6224420fff (rw,non-prefetchable)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d0000A379sv00003842sd00001055bc11sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 600.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: vTuk.kOvEFeQi1KC
Parent ID: 96M4.S6lkEGl0wiF
SysFS ID: /devices/pci0000:00/0000:00:1c.6/0000:06:00.0
SysFS BusID: 0000:06: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 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x1060
Revision: 0x02
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0x3050-0x3057 (rw)
I/O Ports: 0x3040-0x3043 (rw)
I/O Ports: 0x3030-0x3037 (rw)
I/O Ports: 0x3020-0x3023 (rw)
I/O Ports: 0x3000-0x3fff (rw)
Memory Range: 0x71100000-0x711001ff (rw,non-prefetchable)
IRQ: 157 (no events)
Module Alias: "pci:v00001B21d00000612sv00001B21sd00001060bc01sc06i01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #51 (PCI bridge)
46: PCI 200.1: 0403 Audio device
[Created at pci.386]
Unique ID: 2Oa+.HeoEij1wTH4
Parent ID: mnDB.VCQCPW2YRU3
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:02:00.1
SysFS BusID: 0000:02:00.1
Hardware Class: sound
Model: "nVidia TU102 High Definition Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x10f7 "TU102 High Definition Audio Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x2589
Revision: 0xa1
Driver: "vfio-pci"
Driver Modules: "vfio_pci"
Memory Range: 0x71080000-0x71083fff (rw,non-prefetchable)
IRQ: 18 (417 events)
Module Alias: "pci:v000010DEd000010F7sv00003842sd00002589bc04sc03i00"
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: #48 (PCI bridge)
47: PCI 15.0: 0c80 Serial bus controller
[Created at pci.386]
Unique ID: Rgik.eo+w4TsTVG9
SysFS ID: /devices/pci0000:00/0000:00:15.0
SysFS BusID: 0000:00:15.0
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH Serial IO I2C Controller #0"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa368 "Cannon Lake PCH Serial IO I2C Controller #0"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Memory Range: 0x4010000000-0x4010000fff (rw,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d0000A368sv00003842sd00001055bc0Csc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 01.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: mnDB.VCQCPW2YRU3
SysFS ID: /devices/pci0000:00/0000:00:01.1
SysFS BusID: 0000:00:01.1
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x8)"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1905 "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor PCIe Controller (x8)"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x7270
Revision: 0x0d
Driver: "pcieport"
IRQ: 123 (no events)
Module Alias: "pci:v00008086d00001905sv00008086sd00007270bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: PCI 500.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: Ddhb.LRW8+K_KDEE
Parent ID: z8Q3.xho_lhdJOKF
SysFS ID: /devices/pci0000:00/0000:00:1c.0/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: network
Model: "Intel I210 Gigabit Network Connection"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x1533 "I210 Gigabit Network Connection"
SubVendor: pci 0xffff "Illegal Vendor ID"
SubDevice: pci 0x0000
Revision: 0x03
Driver: "vfio-pci"
Driver Modules: "vfio_pci"
Memory Range: 0x71200000-0x7127ffff (rw,non-prefetchable)
I/O Ports: 0x4000-0x4fff (rw,disabled)
Memory Range: 0x71280000-0x71283fff (rw,non-prefetchable)
IRQ: 17 (462354 events)
Module Alias: "pci:v00008086d00001533sv0000FFFFsd00000000bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #25 (PCI bridge)
50: PCI 1d.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 1GTX.EJXFWLlwXmB
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: bridge
Model: "Intel Cannon Lake PCH PCI Express Root Port #9"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa330 "Cannon Lake PCH PCI Express Root Port #9"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0xf0
Driver: "pcieport"
IRQ: 129 (no events)
Module Alias: "pci:v00008086d0000A330sv00003842sd00001055bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
51: PCI 1c.6: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 96M4.S6lkEGl0wiF
SysFS ID: /devices/pci0000:00/0000:00:1c.6
SysFS BusID: 0000:00:1c.6
Hardware Class: bridge
Model: "Intel Cannon Lake PCH PCI Express Root Port #7"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa33e "Cannon Lake PCH PCI Express Root Port #7"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0xf0
Driver: "pcieport"
IRQ: 127 (no events)
Module Alias: "pci:v00008086d0000A33Esv00003842sd00001055bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: PCI 100.1: 0403 Audio device
[Created at pci.386]
Unique ID: NXNs.uqEkfx7xsoD
Parent ID: vSkL.RYeCUEajKy1
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: sound
Model: "ATI Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0xaaf0 "Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590]"
SubVendor: pci 0x1da2 "Sapphire Technology Limited"
SubDevice: pci 0xaaf0
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0x71360000-0x71363fff (rw,non-prefetchable)
IRQ: 176 (580 events)
Module Alias: "pci:v00001002d0000AAF0sv00001DA2sd0000AAF0bc04sc03i00"
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: #32 (PCI bridge)
53: PCI 14.2: 0500 RAM memory
[Created at pci.386]
Unique ID: 5Dex.1OQmjAj4CvB
SysFS ID: /devices/pci0000:00/0000:00:14.2
SysFS BusID: 0000:00:14.2
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH Shared SRAM"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa36f "Cannon Lake PCH Shared SRAM"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x7270
Revision: 0x10
Memory Range: 0x6224418000-0x6224419fff (rw,non-prefetchable,disabled)
Memory Range: 0x622441f000-0x622441ffff (rw,non-prefetchable,disabled)
Module Alias: "pci:v00008086d0000A36Fsv00008086sd00007270bc05sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
54: PCI 1f.6: 0200 Ethernet controller
[Created at pci.386]
Unique ID: NotL.xizhhHJqdj6
SysFS ID: /devices/pci0000:00/0000:00:1f.6
SysFS BusID: 0000:00:1f.6
Hardware Class: network
Device Name: "Onboard - Ethernet"
Model: "Intel Ethernet Connection (7) I219-V"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x15bc "Ethernet Connection (7) I219-V"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x0000
Revision: 0x10
Driver: "e1000e"
Driver Modules: "e1000e"
Device File: eno2
Memory Range: 0x71400000-0x7141ffff (rw,non-prefetchable)
IRQ: 158 (238228 events)
HW Address: 844FCB9B27800946920E78B4CDBDBD4C
Permanent HW Address: 844FCB9B27800946920E78B4CDBDBD4C
Link detected: yes
Module Alias: "pci:v00008086d000015BCsv00008086sd00000000bc02sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
55: PCI 400.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: YmUS.AxGd7hiuG+6
Parent ID: LLKx.3ms7uzkTHn4
SysFS ID: /devices/pci0000:00/0000:00:1b.4/0000:04:00.0
SysFS BusID: 0000:04: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: 0x71600000-0x71603fff (rw,non-prefetchable)
IRQ: 16 (6 events)
Module Alias: "pci:v0000144Dd0000A808sv0000144Dsd0000A801bc01sc08i02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
56: PCI 02.0: 0380 Display controller
[Created at pci.386]
Unique ID: _Znp.VzhfaL3fwWB
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: graphics card
Device Name: "Onboard - Video"
Model: "Intel CoffeeLake-S GT2 [UHD Graphics 630]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x3e98 "CoffeeLake-S GT2 [UHD Graphics 630]"
SubVendor: pci 0x8086 "Intel Corporation"
SubDevice: pci 0x2212
Revision: 0x02
Driver: "vfio-pci"
Driver Modules: "vfio_pci"
Memory Range: 0x6223000000-0x6223ffffff (rw,non-prefetchable,disabled)
Memory Range: 0x4000000000-0x400fffffff (ro,non-prefetchable,disabled)
I/O Ports: 0x7000-0x703f (rw,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00008086d00003E98sv00008086sd00002212bc03sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
57: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.WU0CnVuZwqE
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH USB 3.1 xHCI Host Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa36d "Cannon Lake PCH USB 3.1 xHCI Host Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Driver: "xhci_hcd"
Memory Range: 0x6224400000-0x622440ffff (rw,non-prefetchable)
IRQ: 164 (3707233 events)
Module Alias: "pci:v00008086d0000A36Dsv00003842sd00001055bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PCI 1f.4: 0c05 SMBus
[Created at pci.386]
Unique ID: fnWp.eEfvJNMiw10
SysFS ID: /devices/pci0000:00/0000:00:1f.4
SysFS BusID: 0000:00:1f.4
Hardware Class: unknown
Device Name: "Onboard - Other"
Model: "Intel Cannon Lake PCH SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0xa323 "Cannon Lake PCH SMBus Controller"
SubVendor: pci 0x3842 "eVga.com. Corp."
SubDevice: pci 0x1055
Revision: 0x10
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0x622441a000-0x622441a0ff (rw,non-prefetchable)
I/O Ports: 0xefa0-0xefbf (rw)
IRQ: 16 (6 events)
Module Alias: "pci:v00008086d0000A323sv00003842sd00001055bc0Csc05i00"
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
59: None 00.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: rdCR.MowvB8NoVh4
Parent ID: VCu0.7llna27zhVF
Hardware Class: monitor
Model: "Lenovo P24h-10"
Vendor: LEN "Lenovo"
Device: eisa 0x61ae "P24h-10"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 800x600@60Hz
Resolution: 1024x768@60Hz
Resolution: 1280x1024@60Hz
Resolution: 1600x900@60Hz
Resolution: 2560x1440@60Hz
Size: 527x296 mm
Year of Manufacture: 2018
Week of Manufacture: 10
Detailed Timings #0:
Resolution: 2560x1440
Horizontal: 2560 2608 2640 2720 (+48 +80 +160) -hsync
Vertical: 1440 1443 1448 1481 (+3 +8 +41) +vsync
Frequencies: 241.50 MHz, 88.79 kHz, 59.95 Hz
Driver Info #0:
Max. Resolution: 2560x1440
Vert. Sync Range: 49-76 Hz
Hor. Sync Range: 30-112 kHz
Bandwidth: 241 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #37 (VGA compatible controller)
60: None 01.0: 10002 LCD Monitor
[Created at monitor.125]
Unique ID: wkFv.8s_ShnADH24
Parent ID: VCu0.7llna27zhVF
Hardware Class: monitor
Model: "DELL S3221QS"
Vendor: DEL "DELL"
Device: eisa 0xd107 "DELL S3221QS"
Serial ID: --
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@75Hz
Resolution: 800x600@60Hz
Resolution: 800x600@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1600x900@60Hz
Resolution: 1152x864@75Hz
Resolution: 3840x2160@60Hz
Size: 697x392 mm
Year of Manufacture: 2021
Week of Manufacture: 36
Detailed Timings #0:
Resolution: 3840x2160
Horizontal: 3840 3888 3920 4000 (+48 +80 +160) -hsync
Vertical: 2160 2163 2168 2222 (+3 +8 +62) +vsync
Frequencies: 533.25 MHz, 133.31 kHz, 60.00 Hz
Driver Info #0:
Max. Resolution: 3840x2160
Vert. Sync Range: 40-60 Hz
Hor. Sync Range: 140-140 kHz
Bandwidth: 533 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #37 (VGA compatible controller)
61: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: wLCS.EJHvc9MwvZ7
Parent ID: YmUS.AxGd7hiuG+6
SysFS ID: /class/block/nvme0n1
SysFS BusID: nvme0
SysFS Device Link: /devices/pci0000:00/0000:00:1b.4/0000:04: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:5
Geometry (Logical): CHS 1907729/64/32
Size: 3907029168 sectors a 512 bytes
Capacity: 1863 GB (2000398934016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #55 (Non-Volatile memory controller)
62: IDE 500.0: 10600 Disk
[Created at block.245]
Unique ID: WZeP.TZ6tMoTIpTA
Parent ID: abAj.EnjKGrK_GX5
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: "Samsung SSD 860"
Vendor: "Samsung"
Device: "SSD 860"
Revision: "1B6Q"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdb
Device Number: block 8:16-8:31
Geometry (Logical): CHS 124519/255/63
Size: 2000409264 sectors a 512 bytes
Capacity: 953 GB (1024209543168 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (SATA controller)
63: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: nghH.df+G_NOTZA4
Parent ID: GBI1.46N42qAR1f7
SysFS ID: /class/block/nvme1n1
SysFS BusID: nvme1
SysFS Device Link: /devices/pci0000:00/0000:00:1d.0/0000:08:00.0/nvme/nvme1
Hardware Class: disk
Model: "Seagate Technology PLC FireCuda 520 SSD"
Vendor: pci 0x1bb1 "Seagate Technology PLC"
Device: pci 0x5016 "FireCuda 520 SSD"
SubVendor: pci 0x1bb1 "Seagate Technology PLC"
SubDevice: pci 0x5016
Driver: "nvme"
Driver Modules: "nvme"
Device File: /dev/nvme1n1
Device Number: block 259:0
Geometry (Logical): CHS 1907729/64/32
Size: 3907029168 sectors a 512 bytes
Capacity: 1863 GB (2000398934016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (Non-Volatile memory controller)
64: IDE 400.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.dpzroRwWYW1
Parent ID: abAj.EnjKGrK_GX5
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: "Samsung SSD 860"
Vendor: "Samsung"
Device: "SSD 860"
Revision: "2B6Q"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Number: block 8:0-8:15
Geometry (Logical): CHS 124519/255/63
Size: 2000409264 sectors a 512 bytes
Capacity: 953 GB (1024209543168 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #24 (SATA controller)
65: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: POWV.DFkaVl_rzX0
Parent ID: k4bc.2DFUsyrieMD
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0
SysFS BusID: 1-9:1.0
Hardware Class: hub
Model: "Terminus Hub"
Hotplug: USB
Vendor: usb 0x1a40 "Terminus Technology Inc."
Device: usb 0x0101 "Hub"
Revision: "1.00"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1A40p0101d0100dc09dsc00dp02ic09isc00ip02in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #92 (Hub)
66: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 1Nxo.ZoxbP5s5pNC
Parent ID: pBe4.xYNhIwdOaa6
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0
SysFS BusID: 2-8:1.0
Hardware Class: hub
Model: "Realtek 2-Port USB 3.1 Hub"
Hotplug: USB
Vendor: usb 0x0bda "Realtek Semiconductor Corp."
Device: usb 0x0409 "2-Port USB 3.1 Hub"
Revision: "1.36"
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v0BDAp0409d0136dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #106 (Hub)
67: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: rg_L.d14PWhums44
Parent ID: zPk0.IW8CdnvKM04
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:02:00.2/usb4/4-2/4-2:1.0
SysFS BusID: 4-2:1.0
Hardware Class: unknown
Model: "Logitech StreamCam"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0x0893 "StreamCam"
Revision: "3.17"
Serial ID: --
Driver: "uvcvideo"
Driver Modules: "uvcvideo"
Device File: /dev/input/event9
Device Number: char 13:73
Module Alias: "usb:v046Dp0893d0317dcEFdsc02dp01ic0Eisc01ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #87 (Hub)
68: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.vNHThQQZKpC
Parent ID: svHJ.SLW4QPYfJ26
SysFS ID: /devices/pci0000:00/0000:00:1b.0/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.15"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0515dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (USB Controller)
69: USB 00.1: 0401 Multimedia audio controller
[Created at usb.122]
Unique ID: pQ_4.rZ8MvU6O1ED
Parent ID: POWV.DFkaVl_rzX0
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9.1/1-9.1:1.1
SysFS BusID: 1-9.1:1.1
Hardware Class: sound
Model: "SteelSeries ApS Arctis 7 wireless adapter"
Hotplug: USB
Vendor: usb 0x1038 "SteelSeries ApS"
Device: usb 0x1260 "Arctis 7 wireless adapter"
Revision: "1.19"
Driver: "usbfs"
Driver Modules: "usbcore"
Speed: 12 Mbps
Module Alias: "usb:v1038p1260d0119dc00dsc00dp00ic01isc02ip00in01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #65 (Hub)
70: USB 00.3: 0000 Unclassified device
[Created at usb.122]
Unique ID: Vlzm.zk8dDqqggE1
Parent ID: MtLc.pbwGkRb5OTC
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6.1/1-6.1:1.3
SysFS BusID: 1-6.1:1.3
Hardware Class: unknown
Model: "Logitech Yeti X"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0x0aaf "Yeti X"
Revision: "b.03"
Serial ID: --