-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path8E5E7A9260
1073 lines (1016 loc) · 44.6 KB
/
8E5E7A9260
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
20: PCI 300.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: UOJ9.LzY1zIwyli5
Parent ID: t2XO.i8FKtwNcacF
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:09.0/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: network
Model: "Gigabyte Onboard Ethernet"
Vendor: pci 0x10ec "Realtek Semiconductor Co., Ltd."
Device: pci 0x8168 "RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xe000 "Onboard Ethernet"
Revision: 0x16
Driver: "r8169"
Driver Modules: "r8169"
Device File: enp3s0
I/O Ports: 0xf000-0xffff (rw)
Memory Range: 0xfce04000-0xfce04fff (rw,non-prefetchable)
Memory Range: 0xfce00000-0xfce03fff (rw,non-prefetchable)
IRQ: 30 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v000010ECd00008168sv00001458sd0000E000bc02sc00i00"
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: #33 (PCI bridge)
21: PCI 08.0: 0600 Host bridge
[Created at pci.386]
Unique ID: RE4e.oWdkbtyDBO5
SysFS ID: /devices/pci0000:00/0000:00:08.0
SysFS BusID: 0000:00:08.0
Hardware Class: bridge
Model: "AMD Renoir PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1632 "Renoir PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001632sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 18.3: 0600 Host bridge
[Created at pci.386]
Unique ID: Fhhh.DzJxxNdGG99
SysFS ID: /devices/pci0000:00/0000:00:18.3
SysFS BusID: 0000:00:18.3
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x166d
Module Alias: "pci:v00001022d0000166Dsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 18.1: 0600 Host bridge
[Created at pci.386]
Unique ID: W1j0.B8RR_EOsCO8
SysFS ID: /devices/pci0000:00/0000:00:18.1
SysFS BusID: 0000:00:18.1
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x166b
Module Alias: "pci:v00001022d0000166Bsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
24: PCI 01.0: 0600 Host bridge
[Created at pci.386]
Unique ID: vSkL.oWdkbtyDBO5
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "AMD Renoir PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1632 "Renoir PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001632sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 400.3: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: 8lyy.tPtm5g0rm+E
Parent ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.3
SysFS BusID: 0000:04:00.3
Hardware Class: usb controller
Model: "AMD Renoir USB 3.1"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1639 "Renoir USB 3.1"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5007
Driver: "xhci_hcd"
Memory Range: 0xfcb00000-0xfcbfffff (rw,non-prefetchable)
IRQ: 30 (no events)
Module Alias: "pci:v00001022d00001639sv00001458sd00005007bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (PCI bridge)
26: PCI 100.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: Essh.BzveGkbzXX9
Parent ID: ruGf.JhR1dXh1J9E
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.2
SysFS BusID: 0000:01:00.2
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43e9
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x0201
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00001022d000043E9sv00001B21sd00000201bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
27: PCI 14.3: 0601 ISA bridge
[Created at pci.386]
Unique ID: yX7n.w7VAkXzoGP7
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x51
Module Alias: "pci:v00001022d0000790Esv00001458sd00005001bc06sc01i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 400.1: 0403 Audio device
[Created at pci.386]
Unique ID: P5_H.9NFLkWZC7B9
Parent ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.1
SysFS BusID: 0000:04:00.1
Hardware Class: sound
Model: "ATI Audio device"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x1637
SubVendor: pci 0x1002 "ATI Technologies Inc"
SubDevice: pci 0x1637
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfcd88000-0xfcd8bfff (rw,non-prefetchable)
IRQ: 60 (401 events)
Module Alias: "pci:v00001002d00001637sv00001002sd00001637bc04sc03i00"
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: #35 (PCI bridge)
29: PCI 100.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: VCu0.D43QojTWBCA
Parent ID: ruGf.JhR1dXh1J9E
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: usb controller
Model: "AMD USB Controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43ee
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x1142
Driver: "xhci_hcd"
Memory Range: 0xfcfa0000-0xfcfa7fff (rw,non-prefetchable)
IRQ: 32 (no events)
Module Alias: "pci:v00001022d000043EEsv00001B21sd00001142bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (PCI bridge)
30: PCI 02.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: ruGf.JhR1dXh1J9E
SysFS ID: /devices/pci0000:00/0000:00:02.1
SysFS BusID: 0000:00:02.1
Hardware Class: bridge
Model: "AMD Renoir PCIe GPP Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1634 "Renoir PCIe GPP Bridge"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1453
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00001022d00001634sv00001022sd00001453bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 00.2: 0806 IOMMU
[Created at pci.386]
Unique ID: Z+fY.aGLvlytPZYA
SysFS ID: /devices/pci0000:00/0000:00:00.2
SysFS BusID: 0000:00:00.2
Hardware Class: unknown
Model: "AMD Renoir IOMMU"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1631 "Renoir IOMMU"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1631
IRQ: 25 (no events)
Module Alias: "pci:v00001022d00001631sv00001022sd00001631bc08sc06i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 18.6: 0600 Host bridge
[Created at pci.386]
Unique ID: rf9C.mC9BO5_NrIA
SysFS ID: /devices/pci0000:00/0000:00:18.6
SysFS BusID: 0000:00:18.6
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1670
Module Alias: "pci:v00001022d00001670sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
33: PCI 209.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: t2XO.i8FKtwNcacF
Parent ID: Essh.BzveGkbzXX9
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.2/0000:02:09.0
SysFS BusID: 0000:02:09.0
Hardware Class: bridge
Model: "AMD PCI bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43ea
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x3308
Driver: "pcieport"
IRQ: 31 (no events)
Module Alias: "pci:v00001022d000043EAsv00001B21sd00003308bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #26 (PCI bridge)
34: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.Q+2eaLzh2S3
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "AMD Renoir Root Complex"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1630 "Renoir Root Complex"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1630
Module Alias: "pci:v00001022d00001630sv00001022sd00001630bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 08.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1
SysFS BusID: 0000:00:08.1
Hardware Class: bridge
Model: "AMD Renoir Internal PCIe GPP Bridge to Bus"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1635 "Renoir Internal PCIe GPP Bridge to Bus"
SubVendor: pci 0x1022 "AMD"
SubDevice: pci 0x1635
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00001022d00001635sv00001022sd00001635bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 18.4: 0600 Host bridge
[Created at pci.386]
Unique ID: 60BX.kNGhQykznX9
SysFS ID: /devices/pci0000:00/0000:00:18.4
SysFS BusID: 0000:00:18.4
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x166e
Module Alias: "pci:v00001022d0000166Esv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 400.6: 0403 Audio device
[Created at pci.386]
Unique ID: kjQT.M0LVzB04V53
Parent ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.6
SysFS BusID: 0000:04:00.6
Hardware Class: sound
Device Name: "Realtek ALC1220"
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xa184
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xfcd80000-0xfcd87fff (rw,non-prefetchable)
IRQ: 61 (1689 events)
Module Alias: "pci:v00001022d000015E3sv00001458sd0000A184bc04sc03i00"
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: #35 (PCI bridge)
38: PCI 18.2: 0600 Host bridge
[Created at pci.386]
Unique ID: OMCs.iYNBTpVZkm8
SysFS ID: /devices/pci0000:00/0000:00:18.2
SysFS BusID: 0000:00:18.2
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x166c
Module Alias: "pci:v00001022d0000166Csv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
39: PCI 400.4: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: +3So.tPtm5g0rm+E
Parent ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.4
SysFS BusID: 0000:04:00.4
Hardware Class: usb controller
Model: "AMD Renoir USB 3.1"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1639 "Renoir USB 3.1"
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5007
Driver: "xhci_hcd"
Memory Range: 0xfca00000-0xfcafffff (rw,non-prefetchable)
IRQ: 28 (no events)
Module Alias: "pci:v00001022d00001639sv00001458sd00005007bc0Csc03i30"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (PCI bridge)
40: PCI 18.0: 0600 Host bridge
[Created at pci.386]
Unique ID: fiDB.gjUhVgG9h+7
SysFS ID: /devices/pci0000:00/0000:00:18.0
SysFS BusID: 0000:00:18.0
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x166a
Module Alias: "pci:v00001022d0000166Asv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
41: PCI 400.2: 1080 Encryption controller
[Created at pci.386]
Unique ID: GQT7.mqggiCzXfhF
Parent ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.2
SysFS BusID: 0000:04: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 0x1022 "AMD"
SubDevice: pci 0x15df
Memory Range: 0xfcc00000-0xfccfffff (rw,non-prefetchable)
Memory Range: 0xfcd8c000-0xfcd8dfff (rw,non-prefetchable)
IRQ: 11 (no events)
Module Alias: "pci:v00001022d000015DFsv00001022sd000015DFbc10sc80i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (PCI bridge)
42: PCI 100.1: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: NXNs.AsM3J4DGDN1
Parent ID: ruGf.JhR1dXh1J9E
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.1
SysFS BusID: 0000:01:00.1
Hardware Class: storage
Model: "AMD SATA controller"
Vendor: pci 0x1022 "AMD"
Device: pci 0x43eb
SubVendor: pci 0x1b21 "ASMedia Technology Inc."
SubDevice: pci 0x1062
Driver: "ahci"
Driver Modules: "ahci"
Memory Range: 0xfcf80000-0xfcf9ffff (rw,non-prefetchable)
Memory Range: 0xfcf00000-0xfcf7ffff (ro,non-prefetchable,disabled)
IRQ: 57 (81264 events)
Module Alias: "pci:v00001022d000043EBsv00001B21sd00001062bc01sc06i01"
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: #30 (PCI bridge)
43: PCI 400.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: YmUS.SNPZ+bAx8y2
Parent ID: JZZT.e+TNXSUNut3
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.0
SysFS BusID: 0000:04:00.0
Hardware Class: graphics card
Model: "ATI VGA compatible controller"
Vendor: pci 0x1002 "ATI Technologies Inc"
Device: pci 0x1638
SubVendor: pci 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0xd000
Revision: 0xc9
Memory Range: 0xd0000000-0xdfffffff (ro,non-prefetchable)
Memory Range: 0xe0000000-0xe01fffff (ro,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xfcd00000-0xfcd7ffff (rw,non-prefetchable)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 5 (no events)
Module Alias: "pci:v00001002d00001638sv00001458sd0000D000bc03sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (PCI bridge)
44: PCI 02.0: 0600 Host bridge
[Created at pci.386]
Unique ID: _Znp.oWdkbtyDBO5
SysFS ID: /devices/pci0000:00/0000:00:02.0
SysFS BusID: 0000:00:02.0
Hardware Class: bridge
Model: "AMD Renoir PCIe Dummy Host Bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1632 "Renoir PCIe Dummy Host Bridge"
Module Alias: "pci:v00001022d00001632sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
45: PCI 18.7: 0600 Host bridge
[Created at pci.386]
Unique ID: j_e1.Hd5xsf55NhA
SysFS ID: /devices/pci0000:00/0000:00:18.7
SysFS BusID: 0000:00:18.7
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x1671
Module Alias: "pci:v00001022d00001671sv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
46: PCI 14.0: 0c05 SMBus
[Created at pci.386]
Unique ID: MZfG.XelFQa+O9vB
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 0x1458 "Gigabyte Technology Co., Ltd"
SubDevice: pci 0x5001
Revision: 0x51
Module Alias: "pci:v00001022d0000790Bsv00001458sd00005001bc0Csc05i00"
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
47: PCI 18.5: 0600 Host bridge
[Created at pci.386]
Unique ID: _KgM.FoCRvWsgJw9
SysFS ID: /devices/pci0000:00/0000:00:18.5
SysFS BusID: 0000:00:18.5
Hardware Class: bridge
Model: "AMD Host bridge"
Vendor: pci 0x1022 "AMD"
Device: pci 0x166f
Module Alias: "pci:v00001022d0000166Fsv00000000sd00000000bc06sc00i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
48: None 00.0: 10002 LCD Monitor
[Created at monitor.97]
Unique ID: rdCR.8cCzpqVelR0
Hardware Class: monitor
Model: "Acer XF270H B"
Vendor: ACR
Device: eisa 0x064d "Acer XF270H B"
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1152x864@75Hz
Resolution: 1280x1024@60Hz
Resolution: 1280x720@60Hz
Resolution: 1920x1080@60Hz
Size: 598x336 mm
Year of Manufacture: 2019
Week of Manufacture: 39
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Year of Manufacture: 2019
Week of Manufacture: 39
Detailed Timings #1:
Resolution: 1920x1080
Horizontal: 1920 1944 1976 2056 (+24 +56 +136) +hsync
Vertical: 1080 1083 1088 1098 (+3 +8 +18) +vsync
Frequencies: 325.06 MHz, 158.10 kHz, 143.99 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 48-144 Hz
Hor. Sync Range: 30-180 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
49: None 00.1: 10002 LCD Monitor
[Created at monitor.97]
Unique ID: jyhG.8cCzpqVelR0
Hardware Class: monitor
Model: "Acer XF270H B"
Vendor: ACR
Device: eisa 0x064d "Acer XF270H B"
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1152x864@75Hz
Resolution: 1280x1024@60Hz
Resolution: 1280x720@60Hz
Resolution: 1920x1080@60Hz
Size: 598x336 mm
Year of Manufacture: 2019
Week of Manufacture: 39
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Year of Manufacture: 2019
Week of Manufacture: 39
Detailed Timings #1:
Resolution: 1920x1080
Horizontal: 1920 1944 1976 2056 (+24 +56 +136) +hsync
Vertical: 1080 1083 1088 1098 (+3 +8 +18) +vsync
Frequencies: 325.06 MHz, 158.10 kHz, 143.99 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 48-144 Hz
Hor. Sync Range: 30-180 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
50: None 00.2: 10002 LCD Monitor
[Created at monitor.97]
Unique ID: aHB6.8cCzpqVelR0
Hardware Class: monitor
Model: "Acer XF270H B"
Vendor: ACR
Device: eisa 0x064d "Acer XF270H B"
Resolution: 720x400@70Hz
Resolution: 640x480@60Hz
Resolution: 640x480@67Hz
Resolution: 640x480@72Hz
Resolution: 640x480@75Hz
Resolution: 800x600@56Hz
Resolution: 800x600@60Hz
Resolution: 800x600@72Hz
Resolution: 800x600@75Hz
Resolution: 832x624@75Hz
Resolution: 1024x768@60Hz
Resolution: 1024x768@70Hz
Resolution: 1024x768@75Hz
Resolution: 1280x1024@75Hz
Resolution: 1152x864@75Hz
Resolution: 1280x1024@60Hz
Resolution: 1280x720@60Hz
Resolution: 1920x1080@60Hz
Size: 598x336 mm
Year of Manufacture: 2019
Week of Manufacture: 39
Detailed Timings #0:
Resolution: 1920x1080
Horizontal: 1920 2008 2052 2200 (+88 +132 +280) +hsync
Vertical: 1080 1084 1089 1125 (+4 +9 +45) +vsync
Frequencies: 148.50 MHz, 67.50 kHz, 60.00 Hz
Year of Manufacture: 2019
Week of Manufacture: 39
Detailed Timings #1:
Resolution: 1920x1080
Horizontal: 1920 1944 1976 2056 (+24 +56 +136) +hsync
Vertical: 1080 1083 1088 1098 (+3 +8 +18) +vsync
Frequencies: 325.06 MHz, 158.10 kHz, 143.99 Hz
Driver Info #0:
Max. Resolution: 1920x1080
Vert. Sync Range: 48-144 Hz
Hor. Sync Range: 30-180 kHz
Bandwidth: 148 MHz
Config Status: cfg=new, avail=yes, need=no, active=unknown
52: IDE 00.0: 10600 Disk
[Created at block.245]
Unique ID: 3OOL.1mwAUnaCcJD
Parent ID: NXNs.AsM3J4DGDN1
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:02.1/0000:01:00.1/ata1/host0/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "Samsung SSD 860"
Vendor: "Samsung"
Device: "SSD 860"
Revision: "3B6Q"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sda
Device Files: /dev/sda, /dev/disk/by-id/wwn-0x..., /dev/disk/by-path/pci-0000:01:00.1-ata-1, /dev/disk/by-id/ata-Samsung_SSD_860_EVO_500GB_...
Device Number: block 8:0-8:15
BIOS id: 0x80
Geometry (Logical): CHS 60801/255/63
Size: 976773168 sectors a 512 bytes
Capacity: 465 GB (500107862016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #42 (SATA controller)
53: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 7eqy.6esCzbh4+H1
Parent ID: +3So.tPtm5g0rm+E
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.4/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.04"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0504dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #39 (USB Controller)
54: USB 00.0: 0000 Unclassified device
[Created at usb.122]
Unique ID: fHJ1.egUd4ZKhLzF
Parent ID: k4bc.kNaPe9SZft4
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-10/1-10:1.0
SysFS BusID: 1-10:1.0
Hardware Class: unknown
Model: "Integrated Technology Express ITE Device"
Hotplug: USB
Vendor: usb 0x048d "Integrated Technology Express, Inc."
Device: usb 0x5702 "ITE Device"
Revision: "0.01"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v048Dp5702d0001dc00dsc00dp00ic03isc00ip00in00"
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: #62 (Hub)
55: USB 00.2: 0000 Unclassified device
[Created at usb.122]
Unique ID: HsYk.wpzchXHRb9E
Parent ID: wkjR.acAEQgOGgM2
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-5/1-5.4/1-5.4:1.2
SysFS BusID: 1-5.4:1.2
Hardware Class: unknown
Model: "Logitech Webcam C270"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0x0825 "Webcam C270"
Revision: "0.10"
Serial ID: --
Driver: "snd-usb-audio"
Driver Modules: "snd_usb_audio"
Speed: 480 Mbps
Module Alias: "usb:v046Dp0825d0010dcEFdsc02dp01ic01isc01ip00in02"
Driver Info #0:
Driver Status: snd_usb_audio is active
Driver Activation Cmd: "modprobe snd_usb_audio"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #67 (Hub)
56: USB 00.1: 10503 USB Mouse
[Created at usb.122]
Unique ID: QR8P.x2LcURBGx5F
Parent ID: k4bc.kNaPe9SZft4
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-8/1-8:1.1
SysFS BusID: 1-8:1.1
Hardware Class: mouse
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52b "Unifying Receiver"
Revision: "24.11"
Compatible to: int 0x0200 0x0001 "Generic USB Mouse"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Bd2411dc00dsc00dp00ic03isc01ip02in01"
Driver Info #0:
XFree86 Protocol: explorerps/2
GPM Protocol: exps2
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #62 (Hub)
57: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.SZfQ9u6h6o0
Parent ID: 8lyy.tPtm5g0rm+E
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.3/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: #25 (USB Controller)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.LvndbruM20A
Parent ID: 8lyy.tPtm5g0rm+E
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.3/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: #25 (USB Controller)
61: USB 00.2: 0000 Unclassified device
[Created at usb.122]
Unique ID: tcOT.lVLMBtrsHd4
Parent ID: k4bc.kNaPe9SZft4
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-8/1-8:1.2
SysFS BusID: 1-8:1.2
Hardware Class: unknown
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52b "Unifying Receiver"
Revision: "24.11"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Bd2411dc00dsc00dp00ic03isc00ip00in02"
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: #62 (Hub)
62: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.kNaPe9SZft4
Parent ID: VCu0.D43QojTWBCA
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.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.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: #29 (USB Controller)
64: USB 00.0: 10800 Keyboard
[Created at usb.122]
Unique ID: zFuK.0PGCqK2HNaA
Parent ID: k4bc.kNaPe9SZft4
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-8/1-8:1.0
SysFS BusID: 1-8:1.0
Hardware Class: keyboard
Model: "Logitech Unifying Receiver"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0xc52b "Unifying Receiver"
Revision: "24.11"
Driver: "usbhid"
Driver Modules: "usbhid"
Speed: 12 Mbps
Module Alias: "usb:v046DpC52Bd2411dc00dsc00dp00ic03isc01ip01in00"
Driver Info #0:
XkbRules: xfree86
XkbModel: pc104
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #62 (Hub)
65: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: 2XnU.DIk+WevO348
Parent ID: +3So.tPtm5g0rm+E
SysFS ID: /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb5/5-0:1.0
SysFS BusID: 5-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: #39 (USB Controller)
66: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.djic47EFb5E
Parent ID: VCu0.D43QojTWBCA
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/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: #29 (USB Controller)
67: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: wkjR.acAEQgOGgM2
Parent ID: k4bc.kNaPe9SZft4
SysFS ID: /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-5/1-5:1.0
SysFS BusID: 1-5:1.0
Hardware Class: hub
Model: "VIA Hub"
Hotplug: USB
Vendor: usb 0x2109 "VIA Labs, Inc."
Device: usb 0x2811 "Hub"
Revision: "90.90"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v2109p2811d9090dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #62 (Hub)
68: None 00.0: 10103 CPU
[Created at cpu.465]
Unique ID: rdCR.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2993 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
69: None 01.0: 10103 CPU
[Created at cpu.465]
Unique ID: wkFv.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2395 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
70: None 02.0: 10103 CPU
[Created at cpu.465]
Unique ID: +rIN.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2393 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
71: None 03.0: 10103 CPU
[Created at cpu.465]
Unique ID: 4zLr.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2394 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
72: None 04.0: 10103 CPU
[Created at cpu.465]
Unique ID: 94PJ.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2395 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
73: None 05.0: 10103 CPU
[Created at cpu.465]
Unique ID: EBSn.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2394 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
74: None 06.0: 10103 CPU
[Created at cpu.465]
Unique ID: JIVF.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2992 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
75: None 07.0: 10103 CPU
[Created at cpu.465]
Unique ID: OPYj.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2395 MHz
BogoMips: 7785.73
Cache: 512 kb
Units/Processor: 12
Config Status: cfg=new, avail=yes, need=no, active=unknown
76: None 08.0: 10103 CPU
[Created at cpu.465]
Unique ID: TWbB.j8NaKXDZtZ6
Hardware Class: cpu
Arch: X86-64
Vendor: "AuthenticAMD"
Model: 25.80.0 "AMD Ryzen 5 5600G with Radeon Graphics"
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,x2apic,movbe,popcnt,aes,xsave,avx,f16c,rdrand,lahf_lm,cmp_legacy,svm,extapic,cr8_legacy,abm,sse4a,misalignsse,3dnowprefetch,osvw,ibs,skinit,wdt,tce,topoext,perfctr_core,perfctr_nb,bpext,perfctr_llc,mwaitx,cpb,cat_l3,cdp_l3,hw_pstate,ssbd,mba,ibrs,ibpb,stibp,vmmcall,fsgsbase,bmi1,avx2,smep,bmi2,erms,invpcid,cqm,rdt_a,rdseed,adx,smap,clflushopt,clwb,sha_ni,xsaveopt,xsavec,xgetbv1,xsaves,cqm_llc,cqm_occup_llc,cqm_mbm_total,cqm_mbm_local,clzero,irperf,xsaveerptr,wbnoinvd,arat,npt,lbrv,svm_lock,nrip_save,tsc_scale,vmcb_clean,flushbyasid,decodeassists,pausefilter,pfthreshold,avic,v_vmsave_vmload,vgif,umip,pku,ospke,vaes,vpclmulqdq,rdpid,overflow_recov,succor,smca
Clock: 2395 MHz