-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path129A6CF35E
980 lines (924 loc) · 39 KB
/
129A6CF35E
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
16: PCI 300.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: UOJ9.rhxWibbOUL6
Parent ID: 5QgM.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.6/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 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Revision: 0x15
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
I/O Ports: 0x2000-0x2fff (rw)
Memory Range: 0xc0904000-0xc0904fff (rw,non-prefetchable)
Memory Range: 0xc0900000-0xc0903fff (rw,non-prefetchable)
IRQ: 51 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v000010ECd00008168sv00001025sd0000134Dbc02sc00i00"
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: #43 (PCI bridge)
17: PCI 08.0: 0600 Host bridge
[Created at pci.386]
Unique ID: RE4e.00mBDY0_eA3
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: bridge
Model: "AMD Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1452 "Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001452sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 500.3: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: pb96.+7s6eltujr8
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.3
SysFS BusID: 0000:05:00.3
Hardware Class: usb controller
Model: "AMD Raven USB 3.1"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e0 "Raven USB 3.1"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Driver: "xhci_hcd"
Memory Range: 0xc0600000-0xc06fffff (rw,non-prefetchable)
IRQ: 32 (no events)
Module Alias: "pci:v00001022d000015E0sv00001025sd0000134Dbc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
19: PCI 18.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Fhhh.Ynj36isTxDD
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 3"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15eb "Raven/Raven2 Device 24: Function 3"
Driver: "k10temp"
Driver Modules: "k10temp"
Module Alias: "pci:v00001022d000015EBsv00000000sd00000000bc06sc00i00"
Driver Info #0:
Driver Status: k10temp is active
Driver Activation Cmd: "modprobe k10temp"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 01.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: e6j0.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.2
SysFS BusID: 0000:00:01.2
Hardware Class: bridge
Model: "AMD Raven/Raven2 PCIe GPP Bridge [6:0]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3 "Raven/Raven2 PCIe GPP Bridge [6:0]"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00001022d000015D3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
21: PCI 500.1: 0403 Audio device
[Created at pci.386]
Unique ID: 5yAR.bvBdrKSseV2
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.1
SysFS BusID: 0000:05:00.1
Hardware Class: sound
Model: "ATI Raven/Raven2/Fenghuang HDMI/DP Audio Controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x15de "Raven/Raven2/Fenghuang HDMI/DP Audio Controller"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xc08c8000-0xc08cbfff (rw,non-prefetchable)
IRQ: 76 (304 events)
Module Alias: "pci:v00001002d000015DEsv00001025sd0000134Dbc04sc03i00"
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)
22: PCI 18.1: 0600 Host bridge
[Created at pci.386]
Unique ID: W1j0.WyqZ8Zd3uSC
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 1"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e9 "Raven/Raven2 Device 24: Function 1"
Module Alias: "pci:v00001022d000015E9sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 200.0: 0108 Non-Volatile memory controller (NVM Express)
[Created at pci.386]
Unique ID: B35A.Hgy65+zxBD6
Parent ID: e6j0.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.2/0000:02:00.0
SysFS BusID: 0000:02:00.0
Hardware Class: storage
Model: "SK hynix Non-Volatile memory controller"
Vendor: pci 0x1c5c "SK hynix"
Device: pci 0x1327
SubVendor: pci 0x1c5c "SK hynix"
SubDevice: pci 0x0000
Driver: "nvme"
Driver Modules: "nvme"
Memory Range: 0xc0a00000-0xc0a03fff (rw,non-prefetchable)
IRQ: 54 (no events)
Module Alias: "pci:v00001C5Cd00001327sv00001C5Csd00000000bc01sc08i02"
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: #20 (PCI bridge)
24: PCI 01.0: 0600 Host bridge
[Created at pci.386]
Unique ID: vSkL.00mBDY0_eA3
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "AMD Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1452 "Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001452sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 14.3: 0601 ISA bridge
[Created at pci.386]
Unique ID: yX7n.gluF0_HfDX4
SysFS ID: /devices/pci0000:00/0000:00:14.3
SysFS BusID: 0000:00:14.3
Hardware Class: bridge
Model: "AMD FCH LPC Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x790e "FCH LPC Bridge"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Revision: 0x51
Module Alias: "pci:v00001022d0000790Esv00001025sd0000134Dbc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 100.0: 0380 Display controller
[Created at pci.386]
Unique ID: VCu0.2lvnVlarVC5
Parent ID: mnDB.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.1/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: graphics card
Model: "ATI Lexa [Radeon E9171 MCM]"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x6987 "Lexa [Radeon E9171 MCM]"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134e
Revision: 0xc3
Memory Range: 0xb0000000-0xbfffffff (ro,non-prefetchable)
Memory Range: 0xc0000000-0xc01fffff (ro,non-prefetchable)
I/O Ports: 0x3000-0x3fff (rw,disabled)
Memory Range: 0xc0b00000-0xc0b3ffff (rw,non-prefetchable)
Memory Range: 0xc0b40000-0xc0b5ffff (ro,non-prefetchable,disabled)
IRQ: 255 (no events)
Module Alias: "pci:v00001002d00006987sv00001025sd0000134Ebc03sc80i00"
Driver Info #0:
Driver Status: amdgpu is not active
Driver Activation Cmd: "modprobe amdgpu"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #38 (PCI bridge)
27: PCI 01.7: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: yk9C.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.7
SysFS BusID: 0000:00:01.7
Hardware Class: bridge
Model: "AMD Raven/Raven2 PCIe GPP Bridge [6:0]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3 "Raven/Raven2 PCIe GPP Bridge [6:0]"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00001022d000015D3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 00.2: 0806 IOMMU
[Created at pci.386]
Unique ID: Z+fY.+bP4ENbvka5
SysFS ID: /devices/pci0000:00/0000:00:00.2
SysFS BusID: 0000:00:00.2
Hardware Class: unknown
Model: "AMD Raven/Raven2 IOMMU"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d1 "Raven/Raven2 IOMMU"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
IRQ: 25 (no events)
Module Alias: "pci:v00001022d000015D1sv00001025sd0000134Dbc08sc06i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 500.6: 0403 Audio device
[Created at pci.386]
Unique ID: Padc.gUsmXezfLw4
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.6
SysFS BusID: 0000:05:00.6
Hardware Class: sound
Model: "AMD Family 17h (Models 10h-1fh) HD Audio Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e3 "Family 17h (Models 10h-1fh) HD Audio Controller"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xc08c0000-0xc08c7fff (rw,non-prefetchable)
IRQ: 77 (575772 events)
Module Alias: "pci:v00001022d000015E3sv00001025sd0000134Dbc04sc03i00"
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)
30: PCI 18.6: 0600 Host bridge
[Created at pci.386]
Unique ID: rf9C.51ZJYPDbWNE
SysFS ID: /devices/pci0000:00/0000:00:18.6
SysFS BusID: 0000:00:18.6
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 6"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ee "Raven/Raven2 Device 24: Function 6"
Module Alias: "pci:v00001022d000015EEsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.MyiE9bfN652
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "AMD Raven/Raven2 Root Complex"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d0 "Raven/Raven2 Root Complex"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Module Alias: "pci:v00001022d000015D0sv00001025sd0000134Dbc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 08.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1
SysFS BusID: 0000:00:08.1
Hardware Class: bridge
Model: "AMD Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus A"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15db "Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus A"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x0000
Driver: "pcieport"
IRQ: 30 (no events)
Module Alias: "pci:v00001022d000015DBsv00001022sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 500.4: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: hwex.WYos6K+bFE9
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.4
SysFS BusID: 0000:05:00.4
Hardware Class: usb controller
Model: "AMD Raven USB 3.1"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e1 "Raven USB 3.1"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Driver: "xhci_hcd"
Memory Range: 0xc0500000-0xc05fffff (rw,non-prefetchable)
IRQ: 41 (no events)
Module Alias: "pci:v00001022d000015E1sv00001025sd0000134Dbc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
34: PCI 18.4: 0600 Host bridge
[Created at pci.386]
Unique ID: 60BX.3CgpaG_ATcD
SysFS ID: /devices/pci0000:00/0000:00:18.4
SysFS BusID: 0000:00:18.4
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 4"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ec "Raven/Raven2 Device 24: Function 4"
Module Alias: "pci:v00001022d000015ECsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 600.0: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: vTuk.kJNP1evUrA1
Parent ID: Au2J.hOSa98SS_B3
SysFS ID: /devices/pci0000:00/0000:00:08.2/0000:06:00.0
SysFS BusID: 0000:06:00.0
Hardware Class: storage
Model: "AMD FCH SATA Controller [AHCI mode]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x7901 "FCH SATA Controller [AHCI mode]"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Revision: 0x61
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xc0400000-0xc04007ff (rw,non-prefetchable)
IRQ: 53 (no events)
Module Alias: "pci:v00001022d00007901sv00001025sd0000134Dbc01sc06i01"
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: #45 (PCI bridge)
36: PCI 500.2: 1080 Encryption controller
[Created at pci.386]
Unique ID: yGgG.F2rVw4vcAb5
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.2
SysFS BusID: 0000:05:00.2
Hardware Class: unknown
Model: "AMD Family 17h (Models 10h-1fh) Platform Security Processor"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15df "Family 17h (Models 10h-1fh) Platform Security Processor"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Memory Range: 0xc0700000-0xc07fffff (rw,non-prefetchable)
Memory Range: 0xc08cc000-0xc08cdfff (rw,non-prefetchable)
IRQ: 255 (no events)
Module Alias: "pci:v00001022d000015DFsv00001025sd0000134Dbc10sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
37: PCI 18.2: 0600 Host bridge
[Created at pci.386]
Unique ID: OMCs.1NnJd7lmPrC
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 2"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ea "Raven/Raven2 Device 24: Function 2"
Module Alias: "pci:v00001022d000015EAsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
38: PCI 01.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: mnDB.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.1
SysFS BusID: 0000:00:01.1
Hardware Class: bridge
Model: "AMD Raven/Raven2 PCIe GPP Bridge [6:0]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3 "Raven/Raven2 PCIe GPP Bridge [6:0]"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00001022d000015D3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 500.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: Ddhb.SgUHz_pa+s1
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: graphics card
Model: "ATI Picasso"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x15d8 "Picasso"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Revision: 0xc1
Memory Range: 0x90000000-0x9fffffff (ro,non-prefetchable)
Memory Range: 0xa0000000-0xa01fffff (ro,non-prefetchable)
I/O Ports: 0x1000-0x1fff (rw)
Memory Range: 0xc0800000-0xc087ffff (rw,non-prefetchable)
IRQ: 255 (no events)
Module Alias: "pci:v00001002d000015D8sv00001025sd0000134Dbc03sc00i00"
Driver Info #0:
Driver Status: amdgpu is not active
Driver Activation Cmd: "modprobe amdgpu"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
40: PCI 18.0: 0600 Host bridge
[Created at pci.386]
Unique ID: fiDB.+Xupf_VMM4C
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 0"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e8 "Raven/Raven2 Device 24: Function 0"
Module Alias: "pci:v00001022d000015E8sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 400.0: 0282 WLAN controller
[Created at pci.386]
Unique ID: YVtp.XdAXaWs3LQ2
Parent ID: yk9C.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.7/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: network
Model: "Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter"
Vendor: pci 0x168c "Qualcomm Atheros"
Device: pci 0x0042 "QCA9377 802.11ac Wireless Network Adapter"
SubVendor: pci 0x11ad "Lite-On Communications Inc"
SubDevice: pci 0x08a6
Revision: 0x31
Driver: "ath10k_pci"
Driver Modules: "ath10k_pci"
Device File: wlp4s0
Features: WLAN
Memory Range: 0xc0200000-0xc03fffff (rw,non-prefetchable)
IRQ: 74 (1385074 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
WLAN channels: 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 144 149
WLAN frequencies: 2.412 2.417 2.422 2.427 2.432 2.437 2.442 2.447 2.452 2.457 2.462 5.18 5.2 5.22 5.24 5.26 5.28 5.3 5.32 5.5 5.52 5.54 5.56 5.58 5.6 5.62 5.64 5.66 5.68 5.7 5.72 5.745
WLAN encryption modes: WEP40 WEP104 TKIP CCMP
WLAN authentication modes: open sharedkey wpa-psk wpa-eap
Module Alias: "pci:v0000168Cd00000042sv000011ADsd000008A6bc02sc80i00"
Driver Info #0:
Driver Status: ath10k_pci is active
Driver Activation Cmd: "modprobe ath10k_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #27 (PCI bridge)
42: PCI 18.7: 0600 Host bridge
[Created at pci.386]
Unique ID: j_e1.cRV31_KI2mE
SysFS ID: /devices/pci0000:00/0000:00:18.7
SysFS BusID: 0000:00:18.7
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 7"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ef "Raven/Raven2 Device 24: Function 7"
Module Alias: "pci:v00001022d000015EFsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
43: PCI 01.6: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: 5QgM.fA+tdbAkMSD
SysFS ID: /devices/pci0000:00/0000:00:01.6
SysFS BusID: 0000:00:01.6
Hardware Class: bridge
Model: "AMD Raven/Raven2 PCIe GPP Bridge [6:0]"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15d3 "Raven/Raven2 PCIe GPP Bridge [6:0]"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00001022d000015D3sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
44: PCI 14.0: 0c05 SMBus
[Created at pci.386]
Unique ID: MZfG.XO6hTb0dW60
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: unknown
Model: "AMD FCH SMBus Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x790b "FCH SMBus Controller"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Revision: 0x61
Driver: "piix4_smbus"
Driver Modules: "i2c_piix4"
Module Alias: "pci:v00001022d0000790Bsv00001025sd0000134Dbc0Csc05i00"
Driver Info #0:
Driver Status: i2c_piix4 is active
Driver Activation Cmd: "modprobe i2c_piix4"
Driver Info #1:
Driver Status: sp5100_tco is not active
Driver Activation Cmd: "modprobe sp5100_tco"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 08.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Au2J.hOSa98SS_B3
SysFS ID: /devices/pci0000:00/0000:00:08.2
SysFS BusID: 0000:00:08.2
Hardware Class: bridge
Model: "AMD Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus B"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15dc "Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus B"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x0000
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00001022d000015DCsv00001022sd00000000bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 500.5: 0480 Multimedia controller
[Created at pci.386]
Unique ID: YF8n.cT0nBWWlSP4
Parent ID: JZZT.A_VqgZKlSp2
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.5
SysFS BusID: 0000:05:00.5
Hardware Class: unknown
Model: "AMD Raven/Raven2/FireFlight/Renoir Audio Processor"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15e2 "Raven/Raven2/FireFlight/Renoir Audio Processor"
SubVendor: pci 0x1025 "Acer Incorporated [ALI]"
SubDevice: pci 0x134d
Memory Range: 0xc0880000-0xc08bffff (rw,non-prefetchable)
IRQ: 73 (no events)
Module Alias: "pci:v00001022d000015E2sv00001025sd0000134Dbc04sc80i00"
Driver Info #0:
Driver Status: snd_pci_acp3x is active
Driver Activation Cmd: "modprobe snd_pci_acp3x"
Driver Info #1:
Driver Status: snd_rn_pci_acp3x is active
Driver Activation Cmd: "modprobe snd_rn_pci_acp3x"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #32 (PCI bridge)
47: PCI 18.5: 0600 Host bridge
[Created at pci.386]
Unique ID: _KgM.accZ3r5u__D
SysFS ID: /devices/pci0000:00/0000:00:18.5
SysFS BusID: 0000:00:18.5
Hardware Class: bridge
Model: "AMD Raven/Raven2 Device 24: Function 5"
Vendor: pci 0x1022 "AMD"
Device: pci 0x15ed "Raven/Raven2 Device 24: Function 5"
Module Alias: "pci:v00001022d000015EDsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: PCI 00.0: 10600 Disk
[Created at block.245]
Unique ID: wLCS.L2zOaTdzqn6
Parent ID: B35A.Hgy65+zxBD6
SysFS ID: /class/block/nvme0n1
SysFS BusID: nvme0
SysFS Device Link: /devices/pci0000:00/0000:00:01.2/0000:02:00.0/nvme/nvme0
Hardware Class: disk
Model: "SK hynix Disk"
Vendor: pci 0x1c5c "SK hynix"
Device: pci 0x1327
SubVendor: pci 0x1c5c "SK hynix"
SubDevice: pci 0x0000
Driver: "nvme"
Driver Modules: "nvme"
Device File: /dev/nvme0n1
Device Files: /dev/nvme0n1, /dev/disk/by-path/pci-0000:02:00.0-nvme-1, /dev/disk/by-id/nvme-nvme.1c5c-464a30384e3733373231313030384d315a-48464d32353647444a544e472d3833313041-00000001, /dev/disk/by-id/nvme-HFM256GDJTNG-8310A_...
Device Number: block 259:0
BIOS id: 0x80
Geometry (Logical): CHS 244198/64/32
Size: 500118192 sectors a 512 bytes
Capacity: 238 GB (256060514304 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Non-Volatile memory controller)
49: USB 00.1: 11500 Bluetooth Device
[Created at usb.122]
Unique ID: xnLL.t33cCWqEH5F
Parent ID: k4bc.buxry1DL_88
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-4/1-4:1.1
SysFS BusID: 1-4:1.1
Hardware Class: bluetooth
Model: "Lite-On Bluetooth Device"
Hotplug: USB
Vendor: usb 0x04ca "Lite-On Technology Corp."
Device: usb 0x3015
Revision: "0.01"
Driver: "btusb"
Driver Modules: "btusb"
Speed: 12 Mbps
Module Alias: "usb:v04CAp3015d0001dcE0dsc01dp01icE0isc01ip01in01"
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: #53 (Hub)
50: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.Md0RKo+2xQF
Parent ID: hwex.WYos6K+bFE9
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (USB Controller)
51: USB 00.1: 0000 Unclassified device
[Created at usb.122]
Unique ID: dOTr.QKLUPpBSj5E
Parent ID: k4bc.buxry1DL_88
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-1/1-1:1.1
SysFS BusID: 1-1:1.1
Hardware Class: unknown
Model: "Chicony Electronics VGA WebCam"
Hotplug: USB
Vendor: usb 0x04f2 "Chicony Electronics Co., Ltd"
Device: usb 0xb5e0 "VGA WebCam"
Revision: "14.10"
Serial ID: --
Driver: "uvcvideo"
Driver Modules: "uvcvideo"
Speed: 480 Mbps
Module Alias: "usb:v04F2pB5E0d1410dcEFdsc02dp01ic0Eisc02ip00in01"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #53 (Hub)
52: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.Fz8emlnkse8
Parent ID: hwex.WYos6K+bFE9
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.4/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.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #33 (USB Controller)
53: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.buxry1DL_88
Parent ID: pb96.+7s6eltujr8
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-0:1.0
SysFS BusID: 1-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0504dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (USB Controller)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.UE43P+_0wM1
Parent ID: pb96.+7s6eltujr8
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb2/2-0:1.0
SysFS BusID: 2-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #18 (USB Controller)
57: PS/2 00.0: 10800 Keyboard
[Created at input.226]
Unique ID: c3zD.+49ps10DtUF
Hardware Class: keyboard
Model: "AT Translated Set 2 keyboard"
Vendor: 0x0001
Device: 0x0001 "AT Translated Set 2 keyboard"
Compatible to: int 0x0211 0x0001
Device File: /dev/input/event4
Device Files: /dev/input/event4, /dev/input/by-path/platform-i8042-serio-0-event-kbd
Device Number: char 13:68
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
58: PS/2 00.0: 10500 PS/2 Mouse
[Created at input.249]
Unique ID: AH6Q.nLHQlTlqtW1
Hardware Class: mouse
Model: "SYNA7DB5:01 06CB:CD41 Mouse"
Vendor: 0x06cb
Device: 0xcd41 "SYNA7DB5:01 06CB:CD41 Mouse"
Compatible to: int 0x0210 0x0002
Device File: /dev/input/mice (/dev/input/mouse0)
Device Files: /dev/input/mice, /dev/input/mouse0, /dev/input/event11
Device Number: char 13:63 (char 13:32)
Driver Info #0:
Buttons: 2
Wheels: 0
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
59: PS/2 00.0: 10500 PS/2 Mouse
[Created at input.249]
Unique ID: AH6Q.m2fS5EV9sY9
Hardware Class: mouse
Model: "SYNA7DB5:01 06CB:CD41 Touchpad"
Vendor: 0x06cb
Device: 0xcd41 "SYNA7DB5:01 06CB:CD41 Touchpad"
Compatible to: int 0x0210 0x0001
Device File: /dev/input/mice (/dev/input/mouse1)
Device Files: /dev/input/mice, /dev/input/mouse1, /dev/input/event12, /dev/input/by-path/platform-AMDI0010:01-event-mouse, /dev/input/by-path/platform-AMDI0010:01-mouse
Device Number: char 13:63 (char 13:33)
Driver Info #0:
Buttons: 1
Wheels: 0
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
60: None 00.0: 10103 CPU
[Created at cpu.465]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1919 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
61: None 01.0: 10103 CPU
[Created at cpu.465]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 2425 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
62: None 02.0: 10103 CPU
[Created at cpu.465]
Unique ID: +rIN.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1466 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
63: None 03.0: 10103 CPU
[Created at cpu.465]
Unique ID: 4zLr.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1436 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
64: None 04.0: 10103 CPU
[Created at cpu.465]
Unique ID: 94PJ.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1575 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
65: None 05.0: 10103 CPU
[Created at cpu.465]
Unique ID: EBSn.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1454 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
66: None 06.0: 10103 CPU
[Created at cpu.465]
Unique ID: JIVF.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1485 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
67: None 07.0: 10103 CPU
[Created at cpu.465]
Unique ID: OPYj.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 23.24.1 "AMD Ryzen 7 3700U with Radeon Vega Mobile Gfx"
Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,ht,syscall,nx,mmxext,fxsr_opt,pdpe1gb,rdtscp,lm,constant_tsc,rep_good,nopl,nonstop_tsc,cpuid,extd_apicid,aperfmperf,pni,pclmulqdq,monitor,ssse3,fma,cx16,sse4_1,sse4_2,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,hw_pstate,sme,ssbd,sev,ibpb,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,rdseed,adx,smap,clflushopt,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,clzero,irperf,xsaveerptr,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,overflow_recov,succor,smca
Clock: 1456 MHz
BogoMips: 4591.21
Cache: 512 kb
Units/Processor: 8
Config Status: cfg=new, avail=yes, need=no, active=unknown
68: None 00.0: 10000 Monitor
[Created at fb.71]
Unique ID: rdCR.EY_qmtb9YY0
Hardware Class: monitor
Model: "Generic Monitor"
Vendor: "Generic"
Device: "Monitor"
Resolution: 1366x768@76Hz
Year of Manufacture: 0
Week of Manufacture: 0
Driver Info #0:
Max. Resolution: 1366x768
Vert. Sync Range: 50-90 Hz
Hor. Sync Range: 31-62 kHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: 7iXG.ndpeucax6V1
SysFS ID: /class/net/docker0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "bridge"
Device File: docker0
HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: z+ka.ndpeucax6V1
SysFS ID: /class/net/br-2d6a614e3a84
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "bridge"
Device File: br-2d6a614e3a84
HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: 92a1.ndpeucax6V1
Parent ID: UOJ9.rhxWibbOUL6
SysFS ID: /class/net/enp3s0
SysFS Device Link: /devices/pci0000:00/0000:00:01.6/0000:03:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
HW Address: ...
Permanent HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #16 (Ethernet controller)
72: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: jjHD.ndpeucax6V1
SysFS ID: /class/net/br-cc6089e35936
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "bridge"
Device File: br-cc6089e35936
HW Address: ...
Link detected: no
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: None 00.0: 10700 Loopback
[Created at net.126]
Unique ID: ZsBS.GQNx7L4uPNA
SysFS ID: /class/net/lo
Hardware Class: network interface
Model: "Loopback network interface"
Device File: lo
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: None 00.0: 10701 Ethernet
[Created at net.126]
Unique ID: E98i.ndpeucax6V1
Parent ID: YVtp.XdAXaWs3LQ2
SysFS ID: /class/net/wlp4s0
SysFS Device Link: /devices/pci0000:00/0000:00:01.7/0000:04:00.0
Hardware Class: network interface
Model: "Ethernet network interface"
Driver: "ath10k_pci"
Driver Modules: "ath10k_pci"
Device File: wlp4s0
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #41 (WLAN controller)