summaryrefslogtreecommitdiffstats
path: root/dumps/no-periph
blob: 579db2487316a63b5eb50bf5782e49c463380351 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
[    0.000000] Linux version 6.6.10-arch1-1 (linux@archlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.41.0) #1 SMP PREEMPT_DYNAMIC Fri, 05 Jan 2024 16:20:41 +0000
[    0.000000] Command line: root=PARTUUID=0f7b4bc0-7ba0-48ba-a2aa-2269d103e6b9 rw initrd=\initramfs-linux.img
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009afffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000009e00000-0x0000000009efffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000009f3c000-0x000000004235ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000042360000-0x000000004455ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000044560000-0x0000000044568fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000044569000-0x000000004456cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004456d000-0x000000004456efff] usable
[    0.000000] BIOS-e820: [mem 0x000000004456f000-0x000000004456ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000044570000-0x000000005077efff] usable
[    0.000000] BIOS-e820: [mem 0x000000005077f000-0x0000000052f7efff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000052f7f000-0x000000005af7efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000005af7f000-0x000000005affefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000005afff000-0x000000005affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005b000000-0x000000005bffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005d790000-0x000000005d7effff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005d7f5000-0x000000005fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000047e2fffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000480000000-0x00000004c01fffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] e820: update [mem 0x44570018-0x44574257] usable ==> usable
[    0.000000] e820: update [mem 0x44570018-0x44574257] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009afffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000009e00000-0x0000000009efffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000009f3c000-0x000000004235ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000042360000-0x000000004455ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000044560000-0x0000000044568fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000044569000-0x000000004456cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000004456d000-0x000000004456efff] usable
[    0.000000] reserve setup_data: [mem 0x000000004456f000-0x000000004456ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000044570000-0x0000000044570017] usable
[    0.000000] reserve setup_data: [mem 0x0000000044570018-0x0000000044574257] usable
[    0.000000] reserve setup_data: [mem 0x0000000044574258-0x000000005077efff] usable
[    0.000000] reserve setup_data: [mem 0x000000005077f000-0x0000000052f7efff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000052f7f000-0x000000005af7efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000005af7f000-0x000000005affefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000005afff000-0x000000005affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000005b000000-0x000000005bffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000005d790000-0x000000005d7effff] reserved
[    0.000000] reserve setup_data: [mem 0x000000005d7f5000-0x000000005fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000047e2fffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000480000000-0x00000004c01fffff] reserved
[    0.000000] efi: EFI v2.8 by INSYDE Corp.
[    0.000000] efi: ACPI=0x5affe000 ACPI 2.0=0x5affe014 TPMFinalLog=0x5af3f000 SMBIOS=0x51677000 SMBIOS 3.0=0x51674000 MEMATTR=0x4b822018 ESRT=0x4d16b898 INITRD=0x4457df18 RNG=0x5af9b018 TPMEventLog=0x44575018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem55: MMIO range=[0xc0300000-0xc03fffff] (1MB) from e820 map
[    0.000000] e820: remove [mem 0xc0300000-0xc03fffff] reserved
[    0.000000] efi: Not removing mem56: MMIO range=[0xfed80000-0xfed80fff] (4KB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] efi: Remove mem59: MMIO range=[0x4a0000000-0x4c01fffff] (514MB) from e820 map
[    0.000000] e820: remove [mem 0x4a0000000-0x4c01fffff] reserved
[    0.000000] SMBIOS 3.5.0 present.
[    0.000000] DMI: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP07, BIOS 03.03 10/17/2023
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3293.750 MHz processor
[    0.000123] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000125] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000130] last_pfn = 0x47e300 max_arch_pfn = 0x400000000
[    0.000136] MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
[    0.000137] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000482] last_pfn = 0x5b000 max_arch_pfn = 0x400000000
[    0.003245] esrt: Reserving ESRT space from 0x000000004d16b898 to 0x000000004d16b8d0.
[    0.003250] e820: update [mem 0x4d16b000-0x4d16bfff] usable ==> reserved
[    0.003264] Using GB pages for direct mapping
[    0.003913] Secure boot disabled
[    0.003914] RAMDISK: [mem 0x3e0ab000-0x3fffdfff]
[    0.003916] ACPI: Early table checksum verification disabled
[    0.003919] ACPI: RSDP 0x000000005AFFE014 000024 (v02 INSYDE)
[    0.003922] ACPI: XSDT 0x000000005AF9E228 00017C (v01 INSYDE EDK2     00000002      01000013)
[    0.003926] ACPI: FACP 0x000000005AFEE000 00010C (v05 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003929] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20230628/tbfadt-615)
[    0.003931] ACPI: DSDT 0x000000005AFDE000 0093A6 (v02 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003933] ACPI: FACS 0x000000005AEB4000 000040
[    0.003935] ACPI: UEFI 0x000000005AF67000 0001CF (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003936] ACPI: SSDT 0x000000005AFF4000 008416 (v02 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003938] ACPI: SSDT 0x000000005AFF3000 00033E (v01 INSYDE EDK2     00001000 ACPI 00040000)
[    0.003939] ACPI: SSDT 0x000000005AFF1000 000ABD (v02 INSYDE EDK2     00001000 ACPI 00040000)
[    0.003940] ACPI: ASF! 0x000000005AFF0000 0000A5 (v32 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003942] ACPI: BOOT 0x000000005AFEF000 000028 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003943] ACPI: HPET 0x000000005AFED000 000038 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003945] ACPI: APIC 0x000000005AFEC000 000138 (v03 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003946] ACPI: MCFG 0x000000005AFEB000 00003C (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003947] ACPI: SLIC 0x000000005AFEA000 000176 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003949] ACPI: VFCT 0x000000005AFD9000 004284 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003950] ACPI: SSDT 0x000000005AFD8000 0000F8 (v02 INSYDE EDK2     00001000 ACPI 00040000)
[    0.003951] ACPI: SSDT 0x000000005AFD2000 00547E (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003953] ACPI: CRAT 0x000000005AFD1000 000F10 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003954] ACPI: CDIT 0x000000005AFD0000 000029 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003955] ACPI: SSDT 0x000000005AFCF000 000F8D (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003957] ACPI: SSDT 0x000000005AFCE000 000EC1 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003958] ACPI: SSDT 0x000000005AFFD000 000931 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003960] ACPI: SSDT 0x000000005AFCB000 0013EC (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003961] ACPI: SSDT 0x000000005AFCA000 00077A (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003962] ACPI: SSDT 0x000000005AFC9000 000737 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003964] ACPI: SSDT 0x000000005AFC7000 0015C8 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003965] ACPI: SSDT 0x000000005AFC4000 002A8F (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003966] ACPI: SSDT 0x000000005AFBA000 009821 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003968] ACPI: FPDT 0x000000005AFB9000 000044 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003969] ACPI: BGRT 0x000000005AFB8000 000038 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003970] ACPI: WSMT 0x000000005AFB7000 000028 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003972] ACPI: TPM2 0x000000005AFE9000 000050 (v05 INSYDE EDK2     20505348 ACPI 00040000)
[    0.003973] ACPI: MHSP 0x000000005AFE8000 0000C8 (v04 INSYDE EDK2     20505348 ACPI 00040000)
[    0.003975] ACPI: SSDT 0x000000005AFB6000 0000E5 (v02 INSYDE EDK2     00000004 ACPI 00040000)
[    0.003976] ACPI: IVRS 0x000000005AFB5000 0001A4 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003977] ACPI: SSDT 0x000000005AFB4000 000747 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003979] ACPI: SSDT 0x000000005AFB3000 000C88 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003980] ACPI: SSDT 0x000000005AFB2000 000057 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003981] ACPI: SSDT 0x000000005AFB0000 00170B (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003983] ACPI: SSDT 0x000000005AFAF000 000FF7 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003984] ACPI: SSDT 0x000000005AFA5000 0097E3 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003986] ACPI: SSDT 0x000000005AFA0000 004FEB (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003987] ACPI: SSDT 0x000000005AF9F000 000C7F (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003988] ACPI: SSDT 0x000000005AFCD000 000956 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003990] ACPI: SSDT 0x000000005AF9D000 00008D (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003991] ACPI: SSDT 0x000000005AF9C000 000EAD (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003992] ACPI: Reserving FACP table memory at [mem 0x5afee000-0x5afee10b]
[    0.003993] ACPI: Reserving DSDT table memory at [mem 0x5afde000-0x5afe73a5]
[    0.003993] ACPI: Reserving FACS table memory at [mem 0x5aeb4000-0x5aeb403f]
[    0.003994] ACPI: Reserving UEFI table memory at [mem 0x5af67000-0x5af671ce]
[    0.003994] ACPI: Reserving SSDT table memory at [mem 0x5aff4000-0x5affc415]
[    0.003995] ACPI: Reserving SSDT table memory at [mem 0x5aff3000-0x5aff333d]
[    0.003995] ACPI: Reserving SSDT table memory at [mem 0x5aff1000-0x5aff1abc]
[    0.003995] ACPI: Reserving ASF! table memory at [mem 0x5aff0000-0x5aff00a4]
[    0.003996] ACPI: Reserving BOOT table memory at [mem 0x5afef000-0x5afef027]
[    0.003996] ACPI: Reserving HPET table memory at [mem 0x5afed000-0x5afed037]
[    0.003997] ACPI: Reserving APIC table memory at [mem 0x5afec000-0x5afec137]
[    0.003997] ACPI: Reserving MCFG table memory at [mem 0x5afeb000-0x5afeb03b]
[    0.003997] ACPI: Reserving SLIC table memory at [mem 0x5afea000-0x5afea175]
[    0.003998] ACPI: Reserving VFCT table memory at [mem 0x5afd9000-0x5afdd283]
[    0.003998] ACPI: Reserving SSDT table memory at [mem 0x5afd8000-0x5afd80f7]
[    0.003999] ACPI: Reserving SSDT table memory at [mem 0x5afd2000-0x5afd747d]
[    0.003999] ACPI: Reserving CRAT table memory at [mem 0x5afd1000-0x5afd1f0f]
[    0.003999] ACPI: Reserving CDIT table memory at [mem 0x5afd0000-0x5afd0028]
[    0.004000] ACPI: Reserving SSDT table memory at [mem 0x5afcf000-0x5afcff8c]
[    0.004000] ACPI: Reserving SSDT table memory at [mem 0x5afce000-0x5afceec0]
[    0.004001] ACPI: Reserving SSDT table memory at [mem 0x5affd000-0x5affd930]
[    0.004001] ACPI: Reserving SSDT table memory at [mem 0x5afcb000-0x5afcc3eb]
[    0.004002] ACPI: Reserving SSDT table memory at [mem 0x5afca000-0x5afca779]
[    0.004002] ACPI: Reserving SSDT table memory at [mem 0x5afc9000-0x5afc9736]
[    0.004002] ACPI: Reserving SSDT table memory at [mem 0x5afc7000-0x5afc85c7]
[    0.004003] ACPI: Reserving SSDT table memory at [mem 0x5afc4000-0x5afc6a8e]
[    0.004003] ACPI: Reserving SSDT table memory at [mem 0x5afba000-0x5afc3820]
[    0.004004] ACPI: Reserving FPDT table memory at [mem 0x5afb9000-0x5afb9043]
[    0.004004] ACPI: Reserving BGRT table memory at [mem 0x5afb8000-0x5afb8037]
[    0.004004] ACPI: Reserving WSMT table memory at [mem 0x5afb7000-0x5afb7027]
[    0.004005] ACPI: Reserving TPM2 table memory at [mem 0x5afe9000-0x5afe904f]
[    0.004005] ACPI: Reserving MHSP table memory at [mem 0x5afe8000-0x5afe80c7]
[    0.004006] ACPI: Reserving SSDT table memory at [mem 0x5afb6000-0x5afb60e4]
[    0.004006] ACPI: Reserving IVRS table memory at [mem 0x5afb5000-0x5afb51a3]
[    0.004007] ACPI: Reserving SSDT table memory at [mem 0x5afb4000-0x5afb4746]
[    0.004007] ACPI: Reserving SSDT table memory at [mem 0x5afb3000-0x5afb3c87]
[    0.004007] ACPI: Reserving SSDT table memory at [mem 0x5afb2000-0x5afb2056]
[    0.004008] ACPI: Reserving SSDT table memory at [mem 0x5afb0000-0x5afb170a]
[    0.004008] ACPI: Reserving SSDT table memory at [mem 0x5afaf000-0x5afafff6]
[    0.004009] ACPI: Reserving SSDT table memory at [mem 0x5afa5000-0x5afae7e2]
[    0.004009] ACPI: Reserving SSDT table memory at [mem 0x5afa0000-0x5afa4fea]
[    0.004009] ACPI: Reserving SSDT table memory at [mem 0x5af9f000-0x5af9fc7e]
[    0.004010] ACPI: Reserving SSDT table memory at [mem 0x5afcd000-0x5afcd955]
[    0.004010] ACPI: Reserving SSDT table memory at [mem 0x5af9d000-0x5af9d08c]
[    0.004011] ACPI: Reserving SSDT table memory at [mem 0x5af9c000-0x5af9ceac]
[    0.004108] No NUMA configuration found
[    0.004108] Faking a node at [mem 0x0000000000000000-0x000000047e2fffff]
[    0.004110] NODE_DATA(0) allocated [mem 0x47e2fb000-0x47e2fffff]
[    0.004129] Zone ranges:
[    0.004129]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.004130]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.004131]   Normal   [mem 0x0000000100000000-0x000000047e2fffff]
[    0.004132]   Device   empty
[    0.004132] Movable zone start for each node
[    0.004133] Early memory node ranges
[    0.004133]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.004134]   node   0: [mem 0x0000000000100000-0x0000000009afffff]
[    0.004134]   node   0: [mem 0x0000000009e00000-0x0000000009efffff]
[    0.004135]   node   0: [mem 0x0000000009f3c000-0x000000004235ffff]
[    0.004135]   node   0: [mem 0x0000000044560000-0x0000000044568fff]
[    0.004136]   node   0: [mem 0x000000004456d000-0x000000004456efff]
[    0.004136]   node   0: [mem 0x0000000044570000-0x000000005077efff]
[    0.004137]   node   0: [mem 0x000000005afff000-0x000000005affffff]
[    0.004137]   node   0: [mem 0x0000000100000000-0x000000047e2fffff]
[    0.004138] Initmem setup node 0 [mem 0x0000000000001000-0x000000047e2fffff]
[    0.004141] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.004154] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.004250] On node 0, zone DMA32: 768 pages in unavailable ranges
[    0.004873] On node 0, zone DMA32: 60 pages in unavailable ranges
[    0.004911] On node 0, zone DMA32: 8704 pages in unavailable ranges
[    0.004912] On node 0, zone DMA32: 4 pages in unavailable ranges
[    0.005198] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.005451] On node 0, zone DMA32: 43136 pages in unavailable ranges
[    0.021771] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.021803] On node 0, zone Normal: 7424 pages in unavailable ranges
[    0.022091] ACPI: PM-Timer IO Port: 0x408
[    0.022097] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.022098] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.022098] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.022099] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.022099] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.022099] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.022100] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.022100] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.022100] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.022101] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.022101] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.022102] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.022102] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.022102] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.022103] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.022103] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.022116] IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
[    0.022121] IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
[    0.022122] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.022124] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.022126] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.022127] ACPI: HPET id: 0x10228210 base: 0xfed00000
[    0.022134] e820: update [mem 0x4b845000-0x4b893fff] usable ==> reserved
[    0.022144] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.022160] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.022161] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000bffff]
[    0.022161] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.022162] PM: hibernation: Registered nosave memory: [mem 0x09b00000-0x09dfffff]
[    0.022164] PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f3bfff]
[    0.022165] PM: hibernation: Registered nosave memory: [mem 0x42360000-0x4455ffff]
[    0.022166] PM: hibernation: Registered nosave memory: [mem 0x44569000-0x4456cfff]
[    0.022167] PM: hibernation: Registered nosave memory: [mem 0x4456f000-0x4456ffff]
[    0.022167] PM: hibernation: Registered nosave memory: [mem 0x44570000-0x44570fff]
[    0.022168] PM: hibernation: Registered nosave memory: [mem 0x44574000-0x44574fff]
[    0.022169] PM: hibernation: Registered nosave memory: [mem 0x4b845000-0x4b893fff]
[    0.022170] PM: hibernation: Registered nosave memory: [mem 0x4d16b000-0x4d16bfff]
[    0.022171] PM: hibernation: Registered nosave memory: [mem 0x5077f000-0x52f7efff]
[    0.022171] PM: hibernation: Registered nosave memory: [mem 0x52f7f000-0x5af7efff]
[    0.022172] PM: hibernation: Registered nosave memory: [mem 0x5af7f000-0x5affefff]
[    0.022173] PM: hibernation: Registered nosave memory: [mem 0x5b000000-0x5bffffff]
[    0.022173] PM: hibernation: Registered nosave memory: [mem 0x5c000000-0x5d78ffff]
[    0.022173] PM: hibernation: Registered nosave memory: [mem 0x5d790000-0x5d7effff]
[    0.022174] PM: hibernation: Registered nosave memory: [mem 0x5d7f0000-0x5d7f4fff]
[    0.022174] PM: hibernation: Registered nosave memory: [mem 0x5d7f5000-0x5fffffff]
[    0.022174] PM: hibernation: Registered nosave memory: [mem 0x60000000-0xfed7ffff]
[    0.022175] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
[    0.022175] PM: hibernation: Registered nosave memory: [mem 0xfed81000-0xffffffff]
[    0.022176] [mem 0x60000000-0xfed7ffff] available for PCI devices
[    0.022177] Booting paravirtualized kernel on bare hardware
[    0.022179] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.025533] setup_percpu: NR_CPUS:320 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.025905] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[    0.025910] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[    0.025911] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.025928] Kernel command line: root=PARTUUID=0f7b4bc0-7ba0-48ba-a2aa-2269d103e6b9 rw initrd=\initramfs-linux.img
[    0.027117] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.027631] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027667] Fallback order for Node 0: 0 
[    0.027670] Built 1 zonelists, mobility grouping on.  Total pages: 3920170
[    0.027670] Policy zone: Normal
[    0.027826] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.027869] software IO TLB: area num 16.
[    0.053425] Memory: 15393304K/15930228K available (16384K kernel code, 2132K rwdata, 13072K rodata, 3412K init, 3840K bss, 536668K reserved, 0K cma-reserved)
[    0.053580] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.053599] ftrace: allocating 48819 entries in 191 pages
[    0.060540] ftrace: allocated 191 pages with 7 groups
[    0.060593] Dynamic Preempt: full
[    0.060635] rcu: Preemptible hierarchical RCU implementation.
[    0.060635] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
[    0.060636] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.060637] 	Trampoline variant of Tasks RCU enabled.
[    0.060637] 	Rude variant of Tasks RCU enabled.
[    0.060637] 	Tracing variant of Tasks RCU enabled.
[    0.060638] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.060638] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.062159] NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
[    0.062353] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.062493] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.062523] Console: colour dummy device 80x25
[    0.062524] printk: console [tty0] enabled
[    0.062558] ACPI: Core revision 20230628
[    0.062755] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.062774] APIC: Switch to symmetric I/O mode setup
[    0.063446] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
[    0.063448] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
[    0.063448] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
[    0.063449] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
[    0.063449] AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0
[    0.064023] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.064029] APIC: Switched APIC routing to: physical flat
[    0.064799] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.079446] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f7a3c4f274, max_idle_ns: 440795328267 ns
[    0.079449] Calibrating delay loop (skipped), value calculated using timer frequency.. 6590.97 BogoMIPS (lpj=10979166)
[    0.079466] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.079822] LVT offset 1 assigned for vector 0xf9
[    0.079974] LVT offset 2 assigned for vector 0xf4
[    0.080013] process: using mwait in idle threads
[    0.080014] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    0.080015] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.080018] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.080020] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.080020] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.080022] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.080023] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    0.080024] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.080026] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[    0.080026] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[    0.080027] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[    0.080031] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.080032] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.080032] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.080033] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.080034] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.080034] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.080034] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.080035] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.080036] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.080037] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.080037] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.080038] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.080038] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.080039] x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]:   16
[    0.080040] x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
[    0.097037] Freeing SMP alternatives memory: 40K
[    0.097039] pid_max: default: 32768 minimum: 301
[    0.101803] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
[    0.101825] landlock: Up and running.
[    0.101827] Yama: becoming mindful.
[    0.101830] LSM support for eBPF active
[    0.101869] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.101887] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.210787] smpboot: CPU0: AMD Ryzen 7 7840U w/ Radeon  780M Graphics (family: 0x19, model: 0x74, stepping: 0x1)
[    0.210958] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.210974] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.210987] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.211005] Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
[    0.211027] ... version:                2
[    0.211028] ... bit width:              48
[    0.211029] ... generic registers:      6
[    0.211030] ... value mask:             0000ffffffffffff
[    0.211031] ... max period:             00007fffffffffff
[    0.211031] ... fixed-purpose events:   0
[    0.211032] ... event mask:             000000000000003f
[    0.211103] signal: max sigframe size: 3376
[    0.211125] rcu: Hierarchical SRCU implementation.
[    0.211126] rcu: 	Max phase no-delay instances is 1000.
[    0.212781] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.212781] smp: Bringing up secondary CPUs ...
[    0.212781] smpboot: x86: Booting SMP configuration:
[    0.212781] .... node  #0, CPUs:        #2  #4  #6  #8 #10 #12 #14  #1  #3  #5  #7  #9 #11 #13 #15
[    0.231450] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    0.246149] smp: Brought up 1 node, 16 CPUs
[    0.246149] smpboot: Max logical packages: 1
[    0.246149] smpboot: Total of 16 processors activated (105442.66 BogoMIPS)
[    0.247782] devtmpfs: initialized
[    0.247782] x86/mm: Memory block size: 128MB
[    0.249596] ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f3bfff] (245760 bytes)
[    0.249596] ACPI: PM: Registering ACPI NVS region [mem 0x52f7f000-0x5af7efff] (134217728 bytes)
[    0.251252] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.251267] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.251321] pinctrl core: initialized pinctrl subsystem
[    0.251363] PM: RTC time: 21:25:09, date: 2024-01-15
[    0.251363] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.251363] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.251363] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.251363] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.251363] audit: initializing netlink subsys (disabled)
[    0.251401] audit: type=2000 audit(1705353909.186:1): state=initialized audit_enabled=0 res=1
[    0.251401] thermal_sys: Registered thermal governor 'fair_share'
[    0.251401] thermal_sys: Registered thermal governor 'bang_bang'
[    0.251401] thermal_sys: Registered thermal governor 'step_wise'
[    0.251401] thermal_sys: Registered thermal governor 'user_space'
[    0.251401] thermal_sys: Registered thermal governor 'power_allocator'
[    0.251401] cpuidle: using governor ladder
[    0.251401] cpuidle: using governor menu
[    0.251401] Simple Boot Flag at 0x44 set to 0x1
[    0.251401] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.251401] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.251401] PCI: not using MMCONFIG
[    0.251401] PCI: Using configuration type 1 for base access
[    0.251401] PCI: Using configuration type 1 for extended access
[    0.251401] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.252995] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.253000] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.253003] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.253005] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.253712] ACPI: Added _OSI(Module Device)
[    0.253714] ACPI: Added _OSI(Processor Device)
[    0.253715] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.253715] ACPI: Added _OSI(Processor Aggregator Device)
[    0.273899] ACPI: 27 ACPI AML tables successfully acquired and loaded
[    0.293366] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.293368] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.293450] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[    0.294011] ACPI: EC: EC started
[    0.294011] ACPI: EC: interrupt blocked
[    0.294100] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.294102] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
[    0.294103] ACPI: Interpreter enabled
[    0.294116] ACPI: PM: (supports S0 S4 S5)
[    0.294117] ACPI: Using IOAPIC for interrupt routing
[    0.294195] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.298466] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[    0.298468] PCI: not using MMCONFIG
[    0.298472] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.298473] PCI: Ignoring E820 reservations for host bridge windows
[    0.298902] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.302782] ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
[    0.304267] ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
[    0.305826] ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
[    0.307407] ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
[    0.308956] ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
[    0.309238] ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
[    0.309560] ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
[    0.309951] ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
[    0.310703] ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
[    0.311230] ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
[    0.311697] ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
[    0.314971] ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
[    0.316970] ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
[    0.318637] ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
[    0.319597] ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
[    0.321313] ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
[    0.322259] ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
[    0.329915] ACPI: \_SB_.PRWL: New power resource
[    0.329943] ACPI: \_SB_.PRWB: New power resource
[    0.330973] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.330978] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.331168] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER]
[    0.331528] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR DPC]
[    0.332047] PCI host bridge to bus 0000:00
[    0.332048] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.332050] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.332051] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.332053] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
[    0.332054] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
[    0.332055] pci_bus 0000:00: root bus resource [mem 0x60000000-0x90bfffff window]
[    0.332056] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfec00000 window]
[    0.332057] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfed814ff window]
[    0.332058] pci_bus 0000:00: root bus resource [mem 0xfed81900-0xfed81fff window]
[    0.332059] pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc0fff window]
[    0.332060] pci_bus 0000:00: root bus resource [mem 0xfedc6000-0xfedc6fff window]
[    0.332062] pci_bus 0000:00: root bus resource [mem 0x4c0200000-0x7d1fffffff window]
[    0.332063] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.332082] pci 0000:00:00.0: [1022:14e8] type 00 class 0x060000
[    0.332147] pci 0000:00:00.2: [1022:14e9] type 00 class 0x080600
[    0.332226] pci 0000:00:01.0: [1022:14ea] type 00 class 0x060000
[    0.332290] pci 0000:00:02.0: [1022:14ea] type 00 class 0x060000
[    0.332355] pci 0000:00:02.2: [1022:14ee] type 01 class 0x060400
[    0.332414] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.332513] pci 0000:00:02.4: [1022:14ee] type 01 class 0x060400
[    0.332571] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[    0.332652] pci 0000:00:03.0: [1022:14ea] type 00 class 0x060000
[    0.332718] pci 0000:00:03.1: [1022:14ef] type 01 class 0x060400
[    0.333158] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.334315] pci 0000:00:04.0: [1022:14ea] type 00 class 0x060000
[    0.334383] pci 0000:00:04.1: [1022:14ef] type 01 class 0x060400
[    0.334821] pci 0000:00:04.1: PME# supported from D0 D3hot D3cold
[    0.335973] pci 0000:00:08.0: [1022:14ea] type 00 class 0x060000
[    0.336029] pci 0000:00:08.1: [1022:14eb] type 01 class 0x060400
[    0.336052] pci 0000:00:08.1: enabling Extended Tags
[    0.336077] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.336185] pci 0000:00:08.2: [1022:14eb] type 01 class 0x060400
[    0.336239] pci 0000:00:08.2: enabling Extended Tags
[    0.336263] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    0.336334] pci 0000:00:08.3: [1022:14eb] type 01 class 0x060400
[    0.336357] pci 0000:00:08.3: enabling Extended Tags
[    0.336381] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
[    0.336637] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.336767] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.336915] pci 0000:00:18.0: [1022:14f0] type 00 class 0x060000
[    0.336948] pci 0000:00:18.1: [1022:14f1] type 00 class 0x060000
[    0.336981] pci 0000:00:18.2: [1022:14f2] type 00 class 0x060000
[    0.337013] pci 0000:00:18.3: [1022:14f3] type 00 class 0x060000
[    0.337046] pci 0000:00:18.4: [1022:14f4] type 00 class 0x060000
[    0.337078] pci 0000:00:18.5: [1022:14f5] type 00 class 0x060000
[    0.337114] pci 0000:00:18.6: [1022:14f6] type 00 class 0x060000
[    0.337146] pci 0000:00:18.7: [1022:14f7] type 00 class 0x060000
[    0.337273] pci 0000:01:00.0: [14c3:0616] type 00 class 0x028000
[    0.337294] pci 0000:01:00.0: reg 0x10: [mem 0x7c10900000-0x7c109fffff 64bit pref]
[    0.337307] pci 0000:01:00.0: reg 0x18: [mem 0x90b00000-0x90b07fff 64bit]
[    0.337381] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.337470] pci 0000:00:02.2: PCI bridge to [bus 01]
[    0.337476] pci 0000:00:02.2:   bridge window [mem 0x90b00000-0x90bfffff]
[    0.337479] pci 0000:00:02.2:   bridge window [mem 0x7c10900000-0x7c109fffff 64bit pref]
[    0.337963] pci 0000:02:00.0: [144d:a80c] type 00 class 0x010802
[    0.337982] pci 0000:02:00.0: reg 0x10: [mem 0x90a00000-0x90a03fff 64bit]
[    0.338329] pci 0000:00:02.4: PCI bridge to [bus 02]
[    0.338334] pci 0000:00:02.4:   bridge window [mem 0x90a00000-0x90afffff]
[    0.338443] pci 0000:00:03.1: PCI bridge to [bus 03-61]
[    0.338448] pci 0000:00:03.1:   bridge window [io  0x6000-0x9fff]
[    0.338451] pci 0000:00:03.1:   bridge window [mem 0x78000000-0x8fffffff]
[    0.338456] pci 0000:00:03.1:   bridge window [mem 0x6c00000000-0x7bffffffff 64bit pref]
[    0.338568] pci 0000:00:04.1: PCI bridge to [bus 62-c0]
[    0.338573] pci 0000:00:04.1:   bridge window [io  0x2000-0x5fff]
[    0.338576] pci 0000:00:04.1:   bridge window [mem 0x60000000-0x77ffffff]
[    0.338580] pci 0000:00:04.1:   bridge window [mem 0x5c00000000-0x6bffffffff 64bit pref]
[    0.338686] pci 0000:c1:00.0: [1002:15bf] type 00 class 0x030000
[    0.338699] pci 0000:c1:00.0: reg 0x10: [mem 0x7c00000000-0x7c0fffffff 64bit pref]
[    0.338708] pci 0000:c1:00.0: reg 0x18: [mem 0x90000000-0x901fffff 64bit pref]
[    0.338714] pci 0000:c1:00.0: reg 0x20: [io  0x1000-0x10ff]
[    0.338720] pci 0000:c1:00.0: reg 0x24: [mem 0x90500000-0x9057ffff]
[    0.338730] pci 0000:c1:00.0: enabling Extended Tags
[    0.338738] pci 0000:c1:00.0: BAR 0: assigned to efifb
[    0.338767] pci 0000:c1:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.338857] pci 0000:c1:00.1: [1002:1640] type 00 class 0x040300
[    0.338865] pci 0000:c1:00.1: reg 0x10: [mem 0x905c8000-0x905cbfff]
[    0.338891] pci 0000:c1:00.1: enabling Extended Tags
[    0.338921] pci 0000:c1:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.339003] pci 0000:c1:00.2: [1022:15c7] type 00 class 0x108000
[    0.339019] pci 0000:c1:00.2: reg 0x18: [mem 0x90400000-0x904fffff]
[    0.339030] pci 0000:c1:00.2: reg 0x24: [mem 0x905cc000-0x905cdfff]
[    0.339038] pci 0000:c1:00.2: enabling Extended Tags
[    0.339153] pci 0000:c1:00.3: [1022:15b9] type 00 class 0x0c0330
[    0.339165] pci 0000:c1:00.3: reg 0x10: [mem 0x90200000-0x902fffff 64bit]
[    0.339194] pci 0000:c1:00.3: enabling Extended Tags
[    0.339228] pci 0000:c1:00.3: PME# supported from D0 D3hot D3cold
[    0.339581] pci 0000:c1:00.4: [1022:15ba] type 00 class 0x0c0330
[    0.339594] pci 0000:c1:00.4: reg 0x10: [mem 0x90300000-0x903fffff 64bit]
[    0.339622] pci 0000:c1:00.4: enabling Extended Tags
[    0.339656] pci 0000:c1:00.4: PME# supported from D0 D3hot D3cold
[    0.340097] pci 0000:c1:00.5: [1022:15e2] type 00 class 0x048000
[    0.340171] pci 0000:c1:00.5: reg 0x10: [mem 0x90580000-0x905bffff]
[    0.340224] pci 0000:c1:00.5: reg 0x18: [mem 0x7c10000000-0x7c107fffff 64bit pref]
[    0.340276] pci 0000:c1:00.5: enabling Extended Tags
[    0.340307] pci 0000:c1:00.5: PME# supported from D0 D3hot D3cold
[    0.340394] pci 0000:c1:00.6: [1022:15e3] type 00 class 0x040300
[    0.340403] pci 0000:c1:00.6: reg 0x10: [mem 0x905c0000-0x905c7fff]
[    0.340428] pci 0000:c1:00.6: enabling Extended Tags
[    0.340459] pci 0000:c1:00.6: PME# supported from D0 D3hot D3cold
[    0.340566] pci 0000:00:08.1: PCI bridge to [bus c1]
[    0.340569] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    0.340571] pci 0000:00:08.1:   bridge window [mem 0x90000000-0x905fffff]
[    0.340575] pci 0000:00:08.1:   bridge window [mem 0x7c00000000-0x7c107fffff 64bit pref]
[    0.340630] pci 0000:c2:00.0: [1022:14ec] type 00 class 0x130000
[    0.340662] pci 0000:c2:00.0: enabling Extended Tags
[    0.340695] pci 0000:c2:00.0: PME# supported from D3hot D3cold
[    0.340753] pci 0000:c2:00.1: [1022:1502] type 00 class 0x118000
[    0.340770] pci 0000:c2:00.1: reg 0x10: [mem 0x90900000-0x9097ffff]
[    0.340774] pci 0000:c2:00.1: reg 0x14: [mem 0x909c0000-0x909c1fff]
[    0.340781] pci 0000:c2:00.1: reg 0x18: [mem 0x7c10800000-0x7c1083ffff 64bit pref]
[    0.340786] pci 0000:c2:00.1: reg 0x20: [mem 0x90980000-0x909bffff]
[    0.340798] pci 0000:c2:00.1: enabling Extended Tags
[    0.340914] pci 0000:00:08.2: PCI bridge to [bus c2]
[    0.340918] pci 0000:00:08.2:   bridge window [mem 0x90900000-0x909fffff]
[    0.340921] pci 0000:00:08.2:   bridge window [mem 0x7c10800000-0x7c108fffff 64bit pref]
[    0.341000] pci 0000:c3:00.0: [1022:14ec] type 00 class 0x130000
[    0.341032] pci 0000:c3:00.0: enabling Extended Tags
[    0.341403] pci 0000:c3:00.3: [1022:15c0] type 00 class 0x0c0330
[    0.341416] pci 0000:c3:00.3: reg 0x10: [mem 0x90600000-0x906fffff 64bit]
[    0.341444] pci 0000:c3:00.3: enabling Extended Tags
[    0.341478] pci 0000:c3:00.3: PME# supported from D0 D3hot D3cold
[    0.341818] pci 0000:c3:00.4: [1022:15c1] type 00 class 0x0c0330
[    0.341831] pci 0000:c3:00.4: reg 0x10: [mem 0x90700000-0x907fffff 64bit]
[    0.341860] pci 0000:c3:00.4: enabling Extended Tags
[    0.341893] pci 0000:c3:00.4: PME# supported from D0 D3hot D3cold
[    0.342236] pci 0000:c3:00.5: [1022:1668] type 00 class 0x0c0340
[    0.342252] pci 0000:c3:00.5: reg 0x10: [mem 0x90800000-0x9087ffff 64bit]
[    0.342286] pci 0000:c3:00.5: Max Payload Size set to 128 (was 256, max 256)
[    0.342289] pci 0000:c3:00.5: enabling Extended Tags
[    0.342322] pci 0000:c3:00.5: PME# supported from D0 D3hot D3cold
[    0.342406] pci 0000:c3:00.6: [1022:1669] type 00 class 0x0c0340
[    0.342423] pci 0000:c3:00.6: reg 0x10: [mem 0x90880000-0x908fffff 64bit]
[    0.342457] pci 0000:c3:00.6: Max Payload Size set to 128 (was 256, max 256)
[    0.342459] pci 0000:c3:00.6: enabling Extended Tags
[    0.342493] pci 0000:c3:00.6: PME# supported from D0 D3hot D3cold
[    0.342591] pci 0000:00:08.3: PCI bridge to [bus c3]
[    0.342596] pci 0000:00:08.3:   bridge window [mem 0x90600000-0x908fffff]
[    0.351202] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.351204] ACPI: PCI: Interrupt link LNKA disabled
[    0.351439] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.351439] ACPI: PCI: Interrupt link LNKB disabled
[    0.351656] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.351657] ACPI: PCI: Interrupt link LNKC disabled
[    0.351892] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.351893] ACPI: PCI: Interrupt link LNKD disabled
[    0.352121] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.352122] ACPI: PCI: Interrupt link LNKE disabled
[    0.352300] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.352301] ACPI: PCI: Interrupt link LNKF disabled
[    0.352479] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.352480] ACPI: PCI: Interrupt link LNKG disabled
[    0.352658] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.352659] ACPI: PCI: Interrupt link LNKH disabled
[    0.357756] Low-power S0 idle used by default for system suspend
[    0.357876] ACPI: EC: interrupt unblocked
[    0.357877] ACPI: EC: event unblocked
[    0.357880] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.357881] ACPI: EC: GPE=0xb
[    0.357883] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
[    0.357885] ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
[    0.359465] iommu: Default domain type: Translated
[    0.359465] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.359603] SCSI subsystem initialized
[    0.359610] libata version 3.00 loaded.
[    0.359610] ACPI: bus type USB registered
[    0.359610] usbcore: registered new interface driver usbfs
[    0.359610] usbcore: registered new interface driver hub
[    0.359610] usbcore: registered new device driver usb
[    0.375645] pps_core: LinuxPPS API ver. 1 registered
[    0.375647] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.375649] PTP clock support registered
[    0.375656] EDAC MC: Ver: 3.0.0
[    0.376161] efivars: Registered efivars operations
[    0.376310] NetLabel: Initializing
[    0.376311] NetLabel:  domain hash size = 128
[    0.376312] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.376327] NetLabel:  unlabeled traffic allowed by default
[    0.376331] mctp: management component transport protocol core
[    0.376332] NET: Registered PF_MCTP protocol family
[    0.376336] PCI: Using ACPI for IRQ routing
[    0.376337] PCI: pci_cache_line_size set to 64 bytes
[    0.377015] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.377016] e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
[    0.377017] e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
[    0.377018] e820: reserve RAM buffer [mem 0x42360000-0x43ffffff]
[    0.377019] e820: reserve RAM buffer [mem 0x44569000-0x47ffffff]
[    0.377020] e820: reserve RAM buffer [mem 0x4456f000-0x47ffffff]
[    0.377021] e820: reserve RAM buffer [mem 0x44570018-0x47ffffff]
[    0.377022] e820: reserve RAM buffer [mem 0x4b845000-0x4bffffff]
[    0.377022] e820: reserve RAM buffer [mem 0x4d16b000-0x4fffffff]
[    0.377023] e820: reserve RAM buffer [mem 0x5077f000-0x53ffffff]
[    0.377024] e820: reserve RAM buffer [mem 0x5b000000-0x5bffffff]
[    0.377025] e820: reserve RAM buffer [mem 0x47e300000-0x47fffffff]
[    0.379481] pci 0000:c1:00.0: vgaarb: setting as boot VGA device
[    0.379481] pci 0000:c1:00.0: vgaarb: bridge control possible
[    0.379481] pci 0000:c1:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.379481] vgaarb: loaded
[    0.379487] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.379502] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.381556] clocksource: Switched to clocksource tsc-early
[    0.381556] VFS: Disk quotas dquot_6.6.0
[    0.381556] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.381556] pnp: PnP ACPI init
[    0.381556] system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
[    0.381556] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.384656] system 00:02: [io  0x0400-0x04cf] has been reserved
[    0.384658] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.384659] system 00:02: [io  0x04d6] has been reserved
[    0.384661] system 00:02: [io  0x0c00-0x0c01] has been reserved
[    0.384662] system 00:02: [io  0x0c14] has been reserved
[    0.384663] system 00:02: [io  0x0c50-0x0c52] has been reserved
[    0.384664] system 00:02: [io  0x0c6c] has been reserved
[    0.384665] system 00:02: [io  0x0c6f] has been reserved
[    0.384666] system 00:02: [io  0x0cd0-0x0cdb] has been reserved
[    0.384730] system 00:03: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.384732] system 00:03: [mem 0xfe000000-0xffffffff] could not be reserved
[    0.386246] pnp: PnP ACPI: found 5 devices
[    0.392235] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.392369] NET: Registered PF_INET protocol family
[    0.392567] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.395109] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.395131] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.395198] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.395403] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.395468] TCP: Hash tables configured (established 131072 bind 65536)
[    0.395554] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[    0.395585] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.395613] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.395657] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.395663] NET: Registered PF_XDP protocol family
[    0.395671] pci 0000:00:02.2: PCI bridge to [bus 01]
[    0.395680] pci 0000:00:02.2:   bridge window [mem 0x90b00000-0x90bfffff]
[    0.395682] pci 0000:00:02.2:   bridge window [mem 0x7c10900000-0x7c109fffff 64bit pref]
[    0.395686] pci 0000:00:02.4: PCI bridge to [bus 02]
[    0.395689] pci 0000:00:02.4:   bridge window [mem 0x90a00000-0x90afffff]
[    0.395694] pci 0000:00:03.1: PCI bridge to [bus 03-61]
[    0.395696] pci 0000:00:03.1:   bridge window [io  0x6000-0x9fff]
[    0.395705] pci 0000:00:03.1:   bridge window [mem 0x78000000-0x8fffffff]
[    0.395718] pci 0000:00:03.1:   bridge window [mem 0x6c00000000-0x7bffffffff 64bit pref]
[    0.395732] pci 0000:00:04.1: PCI bridge to [bus 62-c0]
[    0.395734] pci 0000:00:04.1:   bridge window [io  0x2000-0x5fff]
[    0.395743] pci 0000:00:04.1:   bridge window [mem 0x60000000-0x77ffffff]
[    0.395756] pci 0000:00:04.1:   bridge window [mem 0x5c00000000-0x6bffffffff 64bit pref]
[    0.395771] pci 0000:00:08.1: PCI bridge to [bus c1]
[    0.395773] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    0.395778] pci 0000:00:08.1:   bridge window [mem 0x90000000-0x905fffff]
[    0.395780] pci 0000:00:08.1:   bridge window [mem 0x7c00000000-0x7c107fffff 64bit pref]
[    0.395783] pci 0000:00:08.2: PCI bridge to [bus c2]
[    0.395786] pci 0000:00:08.2:   bridge window [mem 0x90900000-0x909fffff]
[    0.395788] pci 0000:00:08.2:   bridge window [mem 0x7c10800000-0x7c108fffff 64bit pref]
[    0.395791] pci 0000:00:08.3: PCI bridge to [bus c3]
[    0.395794] pci 0000:00:08.3:   bridge window [mem 0x90600000-0x908fffff]
[    0.395798] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.395799] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.395800] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.395802] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
[    0.395803] pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
[    0.395804] pci_bus 0000:00: resource 9 [mem 0x60000000-0x90bfffff window]
[    0.395805] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfec00000 window]
[    0.395806] pci_bus 0000:00: resource 11 [mem 0xfed45000-0xfed814ff window]
[    0.395807] pci_bus 0000:00: resource 12 [mem 0xfed81900-0xfed81fff window]
[    0.395808] pci_bus 0000:00: resource 13 [mem 0xfedc0000-0xfedc0fff window]
[    0.395809] pci_bus 0000:00: resource 14 [mem 0xfedc6000-0xfedc6fff window]
[    0.395810] pci_bus 0000:00: resource 15 [mem 0x4c0200000-0x7d1fffffff window]
[    0.395811] pci_bus 0000:01: resource 1 [mem 0x90b00000-0x90bfffff]
[    0.395812] pci_bus 0000:01: resource 2 [mem 0x7c10900000-0x7c109fffff 64bit pref]
[    0.395813] pci_bus 0000:02: resource 1 [mem 0x90a00000-0x90afffff]
[    0.395815] pci_bus 0000:03: resource 0 [io  0x6000-0x9fff]
[    0.395816] pci_bus 0000:03: resource 1 [mem 0x78000000-0x8fffffff]
[    0.395817] pci_bus 0000:03: resource 2 [mem 0x6c00000000-0x7bffffffff 64bit pref]
[    0.395818] pci_bus 0000:62: resource 0 [io  0x2000-0x5fff]
[    0.395819] pci_bus 0000:62: resource 1 [mem 0x60000000-0x77ffffff]
[    0.395820] pci_bus 0000:62: resource 2 [mem 0x5c00000000-0x6bffffffff 64bit pref]
[    0.395821] pci_bus 0000:c1: resource 0 [io  0x1000-0x1fff]
[    0.395822] pci_bus 0000:c1: resource 1 [mem 0x90000000-0x905fffff]
[    0.395823] pci_bus 0000:c1: resource 2 [mem 0x7c00000000-0x7c107fffff 64bit pref]
[    0.395824] pci_bus 0000:c2: resource 1 [mem 0x90900000-0x909fffff]
[    0.395825] pci_bus 0000:c2: resource 2 [mem 0x7c10800000-0x7c108fffff 64bit pref]
[    0.395826] pci_bus 0000:c3: resource 1 [mem 0x90600000-0x908fffff]
[    0.396375] pci 0000:c1:00.1: D0 power state depends on 0000:c1:00.0
[    0.396974] PCI: CLS 64 bytes, default 64
[    0.396983] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.397020] pci 0000:00:01.0: Adding to iommu group 0
[    0.397046] Trying to unpack rootfs image as initramfs...
[    0.397048] pci 0000:00:02.0: Adding to iommu group 1
[    0.397058] pci 0000:00:02.2: Adding to iommu group 1
[    0.397069] pci 0000:00:02.4: Adding to iommu group 1
[    0.397092] pci 0000:00:03.0: Adding to iommu group 2
[    0.397104] pci 0000:00:03.1: Adding to iommu group 2
[    0.397127] pci 0000:00:04.0: Adding to iommu group 3
[    0.397139] pci 0000:00:04.1: Adding to iommu group 3
[    0.397177] pci 0000:00:08.0: Adding to iommu group 4
[    0.397188] pci 0000:00:08.1: Adding to iommu group 4
[    0.397198] pci 0000:00:08.2: Adding to iommu group 4
[    0.397210] pci 0000:00:08.3: Adding to iommu group 4
[    0.397235] pci 0000:00:14.0: Adding to iommu group 5
[    0.397246] pci 0000:00:14.3: Adding to iommu group 5
[    0.397305] pci 0000:00:18.0: Adding to iommu group 6
[    0.397318] pci 0000:00:18.1: Adding to iommu group 6
[    0.397331] pci 0000:00:18.2: Adding to iommu group 6
[    0.397342] pci 0000:00:18.3: Adding to iommu group 6
[    0.397354] pci 0000:00:18.4: Adding to iommu group 6
[    0.397368] pci 0000:00:18.5: Adding to iommu group 6
[    0.397380] pci 0000:00:18.6: Adding to iommu group 6
[    0.397392] pci 0000:00:18.7: Adding to iommu group 6
[    0.397397] pci 0000:01:00.0: Adding to iommu group 1
[    0.397402] pci 0000:02:00.0: Adding to iommu group 1
[    0.397405] pci 0000:c1:00.0: Adding to iommu group 4
[    0.397409] pci 0000:c1:00.1: Adding to iommu group 4
[    0.397413] pci 0000:c1:00.2: Adding to iommu group 4
[    0.397417] pci 0000:c1:00.3: Adding to iommu group 4
[    0.397421] pci 0000:c1:00.4: Adding to iommu group 4
[    0.397425] pci 0000:c1:00.5: Adding to iommu group 4
[    0.397430] pci 0000:c1:00.6: Adding to iommu group 4
[    0.397434] pci 0000:c2:00.0: Adding to iommu group 4
[    0.397438] pci 0000:c2:00.1: Adding to iommu group 4
[    0.397443] pci 0000:c3:00.0: Adding to iommu group 4
[    0.397447] pci 0000:c3:00.3: Adding to iommu group 4
[    0.397451] pci 0000:c3:00.4: Adding to iommu group 4
[    0.397454] pci 0000:c3:00.5: Adding to iommu group 4
[    0.397460] pci 0000:c3:00.6: Adding to iommu group 4
[    0.399140] pci 0000:00:00.2: can't derive routing for PCI INT A
[    0.399142] pci 0000:00:00.2: PCI INT A: not connected
[    0.399351] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.399353] AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC
[    0.399359] AMD-Vi: Interrupt remapping enabled
[    0.399499] AMD-Vi: Virtual APIC enabled
[    0.399543] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.399554] software IO TLB: mapped [mem 0x0000000046c53000-0x000000004ac53000] (64MB)
[    0.399579] LVT offset 0 assigned for vector 0x400
[    0.402880] perf: AMD IBS detected (0x00000bff)
[    0.402893] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.405524] Initialise system trusted keyrings
[    0.405537] Key type blacklist registered
[    0.405640] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[    0.405654] zbud: loaded
[    0.405827] integrity: Platform Keyring initialized
[    0.405829] integrity: Machine keyring initialized
[    0.411571] Key type asymmetric registered
[    0.411575] Asymmetric key parser 'x509' registered
[    0.411601] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.411673] io scheduler mq-deadline registered
[    0.411674] io scheduler kyber registered
[    0.411688] io scheduler bfq registered
[    0.413396] pcieport 0000:00:02.2: PME: Signaling with IRQ 38
[    0.413558] pcieport 0000:00:02.4: PME: Signaling with IRQ 39
[    0.413795] pcieport 0000:00:03.1: PME: Signaling with IRQ 40
[    0.413824] pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.414397] pcieport 0000:00:04.1: PME: Signaling with IRQ 41
[    0.414425] pcieport 0000:00:04.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.414875] pcieport 0000:00:08.1: PME: Signaling with IRQ 42
[    0.415112] pcieport 0000:00:08.2: PME: Signaling with IRQ 43
[    0.415278] pcieport 0000:00:08.3: PME: Signaling with IRQ 44
[    0.415359] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.416859] ACPI: AC: AC Adapter [ACAD] (off-line)
[    0.416908] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:44/PNP0C09:00/PNP0C0D:00/input/input0
[    0.416923] ACPI: button: Lid Switch [LID0]
[    0.416947] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.416962] ACPI: button: Power Button [PWRB]
[    0.417038] Estimated ratio of average max frequency by base frequency (times 1024): 1548
[    0.417053] Monitor-Mwait will be used to enter C-1 state
[    0.417059] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    0.417165] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[    0.417298] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[    0.417429] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[    0.417556] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[    0.417684] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[    0.417811] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[    0.417941] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[    0.418064] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[    0.418189] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[    0.418358] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[    0.418523] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[    0.418690] ACPI: \_SB_.PLTF.C00C: Found 3 idle states
[    0.418835] ACPI: \_SB_.PLTF.C00D: Found 3 idle states
[    0.418920] ACPI: \_SB_.PLTF.C00E: Found 3 idle states
[    0.419045] ACPI: \_SB_.PLTF.C00F: Found 3 idle states
[    0.419347] thermal LNXTHERM:00: registered as thermal_zone0
[    0.419348] ACPI: thermal: Thermal Zone [TZ00] (25 C)
[    0.419508] thermal LNXTHERM:01: registered as thermal_zone1
[    0.419509] ACPI: thermal: Thermal Zone [TZ01] (24 C)
[    0.419660] thermal LNXTHERM:02: registered as thermal_zone2
[    0.419661] ACPI: thermal: Thermal Zone [TZ02] (24 C)
[    0.419811] thermal LNXTHERM:03: registered as thermal_zone3
[    0.419812] ACPI: thermal: Thermal Zone [TZ03] (22 C)
[    0.419987] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.421506] ACPI: battery: Slot [BAT1] (battery present)
[    0.421982] Non-volatile memory driver v1.3
[    0.421984] Linux agpgart interface v0.103
[    0.463601] Freeing initrd memory: 32076K
[    0.478041] AMD-Vi: AMD IOMMUv2 loaded and initialized
[    0.478161] ACPI: bus type drm_connector registered
[    0.479158] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[    0.479958] fbcon: Deferring console take-over
[    0.479960] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    0.481926] usbcore: registered new interface driver usbserial_generic
[    0.481931] usbserial: USB Serial support registered for generic
[    0.482005] rtc_cmos 00:01: RTC can wake from S4
[    0.482302] rtc_cmos 00:01: registered as rtc0
[    0.482340] rtc_cmos 00:01: setting system clock to 2024-01-15T21:25:09 UTC (1705353909)
[    0.482368] rtc_cmos 00:01: alarms up to one month, 114 bytes nvram, hpet irqs
[    0.483934] ledtrig-cpu: registered to indicate activity on CPUs
[    0.484053] hid: raw HID events driver (C) Jiri Kosina
[    0.484150] drop_monitor: Initializing network drop monitor service
[    0.493232] Initializing XFRM netlink socket
[    0.493260] NET: Registered PF_INET6 protocol family
[    0.500751] Segment Routing with IPv6
[    0.500755] RPL Segment Routing with IPv6
[    0.500773] In-situ OAM (IOAM) with IPv6
[    0.500815] NET: Registered PF_PACKET protocol family
[    0.503013] microcode: CPU15: patch_level=0x0a704103
[    0.503013] microcode: CPU14: patch_level=0x0a704103
[    0.503020] microcode: CPU3: patch_level=0x0a704103
[    0.503020] microcode: CPU2: patch_level=0x0a704103
[    0.503022] microcode: CPU4: patch_level=0x0a704103
[    0.503022] microcode: CPU5: patch_level=0x0a704103
[    0.503024] microcode: CPU6: patch_level=0x0a704103
[    0.503024] microcode: CPU7: patch_level=0x0a704103
[    0.503030] microcode: CPU1: patch_level=0x0a704103
[    0.503030] microcode: CPU0: patch_level=0x0a704103
[    0.503036] microcode: CPU8: patch_level=0x0a704103
[    0.503036] microcode: CPU9: patch_level=0x0a704103
[    0.503038] microcode: CPU10: patch_level=0x0a704103
[    0.503038] microcode: CPU11: patch_level=0x0a704103
[    0.503039] microcode: CPU12: patch_level=0x0a704103
[    0.503039] microcode: CPU13: patch_level=0x0a704103
[    0.503060] microcode: Microcode Update Driver: v2.2.
[    0.503387] resctrl: L3 allocation detected
[    0.503389] resctrl: MB allocation detected
[    0.503391] resctrl: SMBA allocation detected
[    0.503392] resctrl: L3 monitoring detected
[    0.503396] IPI shorthand broadcast: enabled
[    0.505327] sched_clock: Marking stable (503574903, 401790)->(507556191, -3579498)
[    0.505500] registered taskstats version 1
[    0.506532] Loading compiled-in X.509 certificates
[    0.509062] Loaded X.509 cert 'Build time autogenerated kernel key: 53410b280f1f9fa61e1e2b36d549197ab7d81427'
[    0.511965] zswap: loaded using pool zstd/zsmalloc
[    0.513933] Key type .fscrypt registered
[    0.513934] Key type fscrypt-provisioning registered
[    0.515065] integrity: Loading X.509 certificate: UEFI:db
[    0.515084] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.515085] integrity: Loading X.509 certificate: UEFI:db
[    0.515097] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.515098] integrity: Loading X.509 certificate: UEFI:db
[    0.515105] integrity: Loaded X.509 cert 'frame.work-LaptopAMDDB: 02'
[    0.526062] PM:   Magic number: 8:698:449
[    0.530235] RAS: Correctable Errors collector initialized.
[    0.530996] clk: Disabling unused clocks
[    0.531707] Freeing unused decrypted memory: 2028K
[    0.532138] Freeing unused kernel image (initmem) memory: 3412K
[    0.549070] Write protecting the kernel read-only data: 30720k
[    0.549926] Freeing unused kernel image (rodata/data gap) memory: 1264K
[    0.582625] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.582630] rodata_test: all tests were successful
[    0.582635] Run /init as init process
[    0.582636]   with arguments:
[    0.582637]     /init
[    0.582638]   with environment:
[    0.582639]     HOME=/
[    0.582640]     TERM=linux
[    0.599445] fbcon: Taking over console
[    0.603182] Console: switching to colour frame buffer device 141x47
[    0.702525] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[    0.702788] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[    0.702790] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.702857] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:16/LNXVIDEO:00/input/input2
[    0.704757] i8042: Warning: Keylock active
[    0.704990] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.705334] xhci_hcd 0000:c1:00.3: xHCI Host Controller
[    0.705340] xhci_hcd 0000:c1:00.3: new USB bus registered, assigned bus number 1
[    0.705793] xhci_hcd 0000:c1:00.3: hcc params 0x0128ffc5 hci version 0x120 quirks 0x0000000200000410
[    0.706091] xhci_hcd 0000:c1:00.3: xHCI Host Controller
[    0.706094] xhci_hcd 0000:c1:00.3: new USB bus registered, assigned bus number 2
[    0.706096] xhci_hcd 0000:c1:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    0.706137] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    0.706139] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.706140] usb usb1: Product: xHCI Host Controller
[    0.706141] usb usb1: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.706142] usb usb1: SerialNumber: 0000:c1:00.3
[    0.706236] hub 1-0:1.0: USB hub found
[    0.706252] hub 1-0:1.0: 5 ports detected
[    0.710448] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.710467] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    0.710469] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.710470] usb usb2: Product: xHCI Host Controller
[    0.710471] usb usb2: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.710472] usb usb2: SerialNumber: 0000:c1:00.3
[    0.710544] hub 2-0:1.0: USB hub found
[    0.710554] hub 2-0:1.0: 2 ports detected
[    0.712155] nvme 0000:02:00.0: platform quirk: setting simple suspend
[    0.712238] nvme nvme0: pci function 0000:02:00.0
[    0.713046] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    0.713050] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 3
[    0.713415] xhci_hcd 0000:c1:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    0.713676] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    0.713678] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 4
[    0.713680] xhci_hcd 0000:c1:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    0.713708] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    0.713710] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.713711] usb usb3: Product: xHCI Host Controller
[    0.713712] usb usb3: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.713713] usb usb3: SerialNumber: 0000:c1:00.4
[    0.713781] hub 3-0:1.0: USB hub found
[    0.713793] hub 3-0:1.0: 1 port detected
[    0.714686] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.714704] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    0.714706] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.714707] usb usb4: Product: xHCI Host Controller
[    0.714708] usb usb4: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.714709] usb usb4: SerialNumber: 0000:c1:00.4
[    0.714770] hub 4-0:1.0: USB hub found
[    0.714790] hub 4-0:1.0: 1 port detected
[    0.715768] xhci_hcd 0000:c3:00.3: xHCI Host Controller
[    0.715772] xhci_hcd 0000:c3:00.3: new USB bus registered, assigned bus number 5
[    0.716136] xhci_hcd 0000:c3:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    0.716560] xhci_hcd 0000:c3:00.3: xHCI Host Controller
[    0.716562] xhci_hcd 0000:c3:00.3: new USB bus registered, assigned bus number 6
[    0.716564] xhci_hcd 0000:c3:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    0.716592] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    0.716593] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.716594] usb usb5: Product: xHCI Host Controller
[    0.716595] usb usb5: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.716596] usb usb5: SerialNumber: 0000:c3:00.3
[    0.716675] hub 5-0:1.0: USB hub found
[    0.716684] hub 5-0:1.0: 1 port detected
[    0.717607] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.717625] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    0.717627] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.717628] usb usb6: Product: xHCI Host Controller
[    0.717629] usb usb6: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.717630] usb usb6: SerialNumber: 0000:c3:00.3
[    0.717705] hub 6-0:1.0: USB hub found
[    0.717715] hub 6-0:1.0: 1 port detected
[    0.718991] xhci_hcd 0000:c3:00.4: xHCI Host Controller
[    0.718994] xhci_hcd 0000:c3:00.4: new USB bus registered, assigned bus number 7
[    0.719358] xhci_hcd 0000:c3:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    0.719777] xhci_hcd 0000:c3:00.4: xHCI Host Controller
[    0.719779] xhci_hcd 0000:c3:00.4: new USB bus registered, assigned bus number 8
[    0.719781] xhci_hcd 0000:c3:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    0.719811] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    0.719812] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.719813] usb usb7: Product: xHCI Host Controller
[    0.719814] usb usb7: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.719815] usb usb7: SerialNumber: 0000:c3:00.4
[    0.719890] hub 7-0:1.0: USB hub found
[    0.719908] hub 7-0:1.0: 1 port detected
[    0.720783] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.720801] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    0.720802] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.720803] usb usb8: Product: xHCI Host Controller
[    0.720804] usb usb8: Manufacturer: Linux 6.6.10-arch1-1 xhci-hcd
[    0.720805] usb usb8: SerialNumber: 0000:c3:00.4
[    0.720909] hub 8-0:1.0: USB hub found
[    0.720919] hub 8-0:1.0: 1 port detected
[    0.721025] nvme nvme0: Shutdown timeout set to 10 seconds
[    0.725440] nvme nvme0: 16/0/0 default/read/poll queues
[    0.728640]  nvme0n1: p1 p2 p3
[    0.738185] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.959347] usb 1-4: new full-speed USB device number 2 using xhci_hcd
[    1.131206] usb 1-4: New USB device found, idVendor=27c6, idProduct=609c, bcdDevice= 1.00
[    1.131213] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.131217] usb 1-4: Product: Goodix USB2.0 MISC
[    1.131220] usb 1-4: Manufacturer: Goodix Technology Co., Ltd.
[    1.131223] usb 1-4: SerialNumber: UIDXXXXXXXX_XXXX_MOC_B0
[    1.260461] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    1.404199] usb 1-5: New USB device found, idVendor=0e8d, idProduct=e616, bcdDevice= 1.00
[    1.404207] usb 1-5: New USB device strings: Mfr=5, Product=6, SerialNumber=7
[    1.404211] usb 1-5: Product: Wireless_Device
[    1.404213] usb 1-5: Manufacturer: MediaTek Inc.
[    1.404216] usb 1-5: SerialNumber: 000000000
[    1.420451] tsc: Refined TSC clocksource calibration: 3293.788 MHz
[    1.420462] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f7a6014960, max_idle_ns: 440795242421 ns
[    1.420612] clocksource: Switched to clocksource tsc
[    1.855147] [drm] amdgpu kernel modesetting enabled.
[    1.866019] amdgpu: Virtual CRAT table created for CPU
[    1.866035] amdgpu: Topology: Add CPU node
[    1.866167] amdgpu 0000:c1:00.0: enabling device (0006 -> 0007)
[    1.866225] [drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x15BF 0xF111:0x0006 0xC4).
[    1.866444] [drm] register mmio base: 0x90500000
[    1.866445] [drm] register mmio size: 524288
[    1.870006] [drm] add ip block number 0 <soc21_common>
[    1.870009] [drm] add ip block number 1 <gmc_v11_0>
[    1.870011] [drm] add ip block number 2 <ih_v6_0>
[    1.870012] [drm] add ip block number 3 <psp>
[    1.870014] [drm] add ip block number 4 <smu>
[    1.870015] [drm] add ip block number 5 <dm>
[    1.870017] [drm] add ip block number 6 <gfx_v11_0>
[    1.870018] [drm] add ip block number 7 <sdma_v6_0>
[    1.870020] [drm] add ip block number 8 <vcn_v4_0>
[    1.870021] [drm] add ip block number 9 <jpeg_v4_0>
[    1.870022] [drm] add ip block number 10 <mes_v11_0>
[    1.870048] amdgpu 0000:c1:00.0: amdgpu: Fetched VBIOS from VFCT
[    1.870050] amdgpu: ATOM BIOS: 113-PHXGENERIC-001
[    1.874951] [drm] VCN(0) encode/decode are enabled in VM mode
[    1.876386] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_early_init [amdgpu]] JPEG decode is enabled in VM mode
[    1.891295] Console: switching to colour dummy device 80x25
[    1.915394] amdgpu 0000:c1:00.0: vgaarb: deactivate vga console
[    1.915402] amdgpu 0000:c1:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[    1.915454] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    1.915478] amdgpu 0000:c1:00.0: amdgpu: VRAM: 512M 0x0000008000000000 - 0x000000801FFFFFFF (512M used)
[    1.915480] amdgpu 0000:c1:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    1.915482] amdgpu 0000:c1:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[    1.915495] [drm] Detected VRAM RAM=512M, BAR=512M
[    1.915496] [drm] RAM width 64bits DDR5
[    1.915696] [drm] amdgpu: 512M of VRAM memory ready
[    1.915699] [drm] amdgpu: 7587M of GTT memory ready.
[    1.915727] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.916220] [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
[    1.916648] [drm] Loading DMUB firmware via PSP: version=0x08002A81
[    1.917782] [drm] Found VCN firmware Version ENC: 1.10 DEC: 5 VEP: 0 Revision: 0
[    1.917788] amdgpu 0000:c1:00.0: amdgpu: Will use PSP to load VCN firmware
[    1.943398] [drm] reserve 0x4000000 from 0x8018000000 for PSP TMR
[    2.461643] amdgpu 0000:c1:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    2.469985] amdgpu 0000:c1:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    2.469987] amdgpu 0000:c1:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[    2.506262] amdgpu 0000:c1:00.0: amdgpu: SMU is initialized successfully!
[    2.506771] [drm] Display Core v3.2.247 initialized on DCN 3.1.4
[    2.506774] [drm] DP-HDMI FRL PCON supported
[    2.509086] [drm] DMUB hardware initialized: version=0x08002A81
[    2.609530] [drm] PSR support 1, DC PSR ver 0, sink PSR ver 3 DPCD caps 0x7b su_y_granularity 4
[    2.611541] [drm] kiq ring mec 3 pipe 1 q 0
[    2.614425] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[    2.614458] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_hw_init [amdgpu]] JPEG decode initialized successfully.
[    2.639269] amdgpu: HMM registered 512MB device memory
[    2.640877] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[    2.640894] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[    2.641026] amdgpu: Virtual CRAT table created for GPU
[    2.641339] amdgpu: Topology: Add dGPU node [0x15bf:0x1002]
[    2.641342] kfd kfd: amdgpu: added device 1002:15bf
[    2.641354] amdgpu 0000:c1:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
[    2.641950] amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[    2.641952] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    2.641953] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    2.641954] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[    2.641955] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[    2.641956] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[    2.641957] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[    2.641958] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[    2.641959] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[    2.641960] amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[    2.641961] amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[    2.641962] amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
[    2.641963] amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
[    2.642992] [drm] ring gfx_32768.1.1 was added
[    2.643482] [drm] ring compute_32768.2.2 was added
[    2.643958] [drm] ring sdma_32768.3.3 was added
[    2.644022] [drm] ring gfx_32768.1.1 ib test pass
[    2.644091] [drm] ring compute_32768.2.2 ib test pass
[    2.644173] [drm] ring sdma_32768.3.3 ib test pass
[    2.646413] [drm] Initialized amdgpu 3.54.0 20150101 for 0000:c1:00.0 on minor 1
[    2.652274] fbcon: amdgpudrmfb (fb0) is primary device
[    2.652514] [drm] DSC precompute is not needed.
[    3.646587] Console: switching to colour frame buffer device 141x47
[    3.666490] amdgpu 0000:c1:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[    3.830646] EXT4-fs (nvme0n1p2): mounted filesystem c619f3e3-b4cf-4ef9-b878-8ee7c77cef27 r/w with ordered data mode. Quota mode: none.
[    3.883710] systemd[1]: systemd 255.2-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    3.883715] systemd[1]: Detected architecture x86-64.
[    3.884522] systemd[1]: Hostname set to <hephaestus>.
[    4.341071] systemd[1]: bpf-lsm: LSM BPF program attached
[    4.412277] systemd[1]: Queued start job for default target Graphical Interface.
[    4.462945] systemd[1]: Created slice Slice /system/getty.
[    4.463277] systemd[1]: Created slice Slice /system/modprobe.
[    4.463514] systemd[1]: Created slice Slice /system/systemd-fsck.
[    4.463727] systemd[1]: Created slice User and Session Slice.
[    4.463852] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.463935] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.464131] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.464202] systemd[1]: Expecting device /dev/disk/by-uuid/4253c89e-1580-49bc-a81e-677f6b34103c...
[    4.464258] systemd[1]: Expecting device /dev/disk/by-uuid/E6EE-EBAE...
[    4.464303] systemd[1]: Reached target Local Encrypted Volumes.
[    4.464352] systemd[1]: Reached target Local Integrity Protected Volumes.
[    4.464407] systemd[1]: Reached target Path Units.
[    4.464448] systemd[1]: Reached target Remote File Systems.
[    4.464491] systemd[1]: Reached target Slice Units.
[    4.464536] systemd[1]: Reached target Swaps.
[    4.464593] systemd[1]: Reached target Local Verity Protected Volumes.
[    4.464818] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    4.465953] systemd[1]: Listening on Process Core Dump Socket.
[    4.466099] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.466227] systemd[1]: Listening on Journal Socket.
[    4.466295] systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.466493] systemd[1]: Listening on udev Control Socket.
[    4.466611] systemd[1]: Listening on udev Kernel Socket.
[    4.467636] systemd[1]: Mounting Huge Pages File System...
[    4.468239] systemd[1]: Mounting POSIX Message Queue File System...
[    4.468837] systemd[1]: Mounting Kernel Debug File System...
[    4.469436] systemd[1]: Mounting Kernel Trace File System...
[    4.470181] systemd[1]: Mounting Temporary Directory /tmp...
[    4.470898] systemd[1]: Starting Create List of Static Device Nodes...
[    4.471709] systemd[1]: Starting Load Kernel Module configfs...
[    4.472382] systemd[1]: Starting Load Kernel Module dm_mod...
[    4.473252] systemd[1]: Starting Load Kernel Module drm...
[    4.474057] systemd[1]: Starting Load Kernel Module fuse...
[    4.474750] systemd[1]: Starting Load Kernel Module loop...
[    4.474829] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[    4.476086] systemd[1]: Starting Journal Service...
[    4.478798] systemd[1]: Starting Load Kernel Modules...
[    4.479995] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.480644] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.482121] systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.483266] loop: module loaded
[    4.483295] systemd[1]: Starting Coldplug All udev Devices...
[    4.485841] device-mapper: uevent: version 1.0.3
[    4.485979] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    4.487553] fuse: init (API version 7.39)
[    4.488020] systemd-journald[335]: Collecting audit messages is disabled.
[    4.488045] systemd[1]: Mounted Huge Pages File System.
[    4.489822] systemd[1]: Mounted POSIX Message Queue File System.
[    4.491790] systemd[1]: Mounted Kernel Debug File System.
[    4.492991] systemd[1]: Mounted Kernel Trace File System.
[    4.493725] systemd[1]: Mounted Temporary Directory /tmp.
[    4.531135] EXT4-fs (nvme0n1p2): re-mounted c619f3e3-b4cf-4ef9-b878-8ee7c77cef27 r/w. Quota mode: none.
[    4.550795] systemd[1]: Finished Create List of Static Device Nodes.
[    4.553115] systemd[1]: Started Journal Service.
[    4.873206] systemd-journald[335]: Received client request to flush runtime journal.
[    4.893525] systemd-journald[335]: /var/log/journal/08fccfa9a0bf4e918d66c50b2f914988/system.journal: Journal file uses a different sequence number ID, rotating.
[    4.893532] systemd-journald[335]: Rotating system journal.
[    5.218681] amd-pmf AMDI0102:00: registered PMF device successfully
[    5.226825] ccp 0000:c1:00.2: enabling device (0000 -> 0002)
[    5.230155] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    5.230160] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    5.233228] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    5.233308] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    5.239215] ccp 0000:c1:00.2: tee enabled
[    5.239830] ccp 0000:c1:00.2: psp enabled
[    5.246463] ACPI: bus type thunderbolt registered
[    5.250517] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    5.250520] RAPL PMU: hw unit of domain package 2^-16 Joules
[    5.360371] input: FRMW0004:00 32AC:0006 Wireless Radio Control as /devices/platform/AMDI0010:00/i2c-0/i2c-FRMW0004:00/0018:32AC:0006.0001/input/input5
[    5.360576] input: FRMW0004:00 32AC:0006 Consumer Control as /devices/platform/AMDI0010:00/i2c-0/i2c-FRMW0004:00/0018:32AC:0006.0001/input/input6
[    5.360837] hid-generic 0018:32AC:0006.0001: input,hidraw0: I2C HID v1.00 Device [FRMW0004:00 32AC:0006] on i2c-FRMW0004:00
[    5.368038] cryptd: max_cpu_qlen set to 1000
[    5.372357] hid-generic 0018:32AC:001B.0002: hidraw1: I2C HID v1.00 Device [FRMW0005:00 32AC:001B] on i2c-FRMW0005:00
[    5.377282] input: PIXA3854:00 093A:0274 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0003/input/input7
[    5.377389] input: PIXA3854:00 093A:0274 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0003/input/input8
[    5.377483] hid-generic 0018:093A:0274.0003: input,hidraw2: I2C HID v1.00 Mouse [PIXA3854:00 093A:0274] on i2c-PIXA3854:00
[    5.381631] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    5.381899] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    5.382023] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    5.388183] AVX2 version of gcm_enc/dec engaged.
[    5.388243] AES CTR mode by8 optimization enabled
[    5.391941] cros_ec_lpcs cros_ec_lpcs.0: EC ID not detected
[    5.425404] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    5.425589] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    5.425687] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    5.426256] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    5.426259] cfg80211: failed to load regulatory.db
[    5.438642] snd_pci_ps 0000:c1:00.5: enabling device (0000 -> 0002)
[    5.480597] input: PIXA3854:00 093A:0274 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0003/input/input9
[    5.480942] input: PIXA3854:00 093A:0274 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0003/input/input10
[    5.481224] hid-multitouch 0018:093A:0274.0003: input,hidraw2: I2C HID v1.00 Mouse [PIXA3854:00 093A:0274] on i2c-PIXA3854:00
[    5.526726] mousedev: PS/2 mouse device common for all mice
[    5.533235] snd_hda_intel 0000:c1:00.1: enabling device (0000 -> 0002)
[    5.533312] snd_hda_intel 0000:c1:00.1: Handle vga_switcheroo audio client
[    5.533392] snd_hda_intel 0000:c1:00.6: enabling device (0000 -> 0002)
[    5.572371] snd_hda_intel 0000:c1:00.1: bound 0000:c1:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[    5.574405] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:c1:00.1/sound/card0/input11
[    5.574458] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:c1:00.1/sound/card0/input12
[    5.574493] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:c1:00.1/sound/card0/input13
[    5.581557] kvm_amd: TSC scaling supported
[    5.581564] kvm_amd: Nested Virtualization enabled
[    5.581567] kvm_amd: Nested Paging enabled
[    5.581576] kvm_amd: Virtual VMLOAD VMSAVE supported
[    5.581578] kvm_amd: Virtual GIF supported
[    5.581578] kvm_amd: Virtual NMI enabled
[    5.581579] kvm_amd: LBR virtualization supported
[    5.588328] mt7921e 0000:01:00.0: enabling device (0000 -> 0002)
[    5.589389] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC295: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    5.589393] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.589396] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    5.589398] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    5.589399] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    5.589400] snd_hda_codec_realtek hdaudioC1D0:      Headset Mic=0x19
[    5.589402] snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
[    5.591279] EXT4-fs (nvme0n1p3): mounted filesystem 4253c89e-1580-49bc-a81e-677f6b34103c r/w with ordered data mode. Quota mode: none.
[    5.593557] MCE: In-kernel MCE decoding enabled.
[    5.595806] mt7921e 0000:01:00.0: ASIC revision: 79220010
[    5.597282] EDAC amd64: Node 0: No DIMMs detected.
[    5.675400] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20231120183400a

[    5.701383] intel_rapl_common: Found RAPL domain package
[    5.701388] intel_rapl_common: Found RAPL domain core
[    6.054520] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20231120183441
[    6.249680] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:c1:00.6/sound/card1/input14
[    6.378382] Bluetooth: Core ver 2.22
[    6.378432] NET: Registered PF_BLUETOOTH protocol family
[    6.378435] Bluetooth: HCI device and connection manager initialized
[    6.378445] Bluetooth: HCI socket layer initialized
[    6.378449] Bluetooth: L2CAP socket layer initialized
[    6.378457] Bluetooth: SCO socket layer initialized
[    6.531418] usbcore: registered new interface driver btusb
[    6.543151] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20231120183620
[    7.153651] mt7921e 0000:01:00.0 wlp1s0: renamed from wlan0
[    8.815567] Bluetooth: hci0: Device setup in 2230480 usecs
[    8.815581] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[    8.892118] Bluetooth: hci0: AOSP extensions version v1.00
[    8.892132] Bluetooth: hci0: AOSP quality report is supported
[   10.228041] wlp1s0: authenticate with cc:2d:e0:8c:84:9a
[   10.730564] wlp1s0: send auth to cc:2d:e0:8c:84:9a (try 1/3)
[   10.733405] wlp1s0: authenticated
[   10.733758] wlp1s0: associate with cc:2d:e0:8c:84:9a (try 1/3)
[   10.747554] wlp1s0: RX AssocResp from cc:2d:e0:8c:84:9a (capab=0x431 status=0 aid=3)
[   10.776670] wlp1s0: associated
[   11.016685] 8021q: 802.1Q VLAN Support v1.8
[  102.917039] systemd-journald[335]: /var/log/journal/08fccfa9a0bf4e918d66c50b2f914988/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[  104.822901] warning: `cat' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[  105.008210] pipewire[1442]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
[ 1467.538784] PM: suspend entry (s2idle)
[ 1467.545889] Filesystems sync: 0.007 seconds
[ 1467.549253] Freezing user space processes
[ 1467.550234] Freezing user space processes completed (elapsed 0.000 seconds)
[ 1467.550240] OOM killer disabled.
[ 1467.550241] Freezing remaining freezable tasks
[ 1467.551428] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[ 1467.551432] printk: Suspending console(s) (use no_console_suspend to debug)
[ 1467.554794] wlp1s0: deauthenticating from cc:2d:e0:8c:84:9a by local choice (Reason: 3=DEAUTH_LEAVING)
[ 1467.726325] pcieport 0000:00:08.3: quirk: disabling D3cold for suspend
[ 1467.727980] ACPI: EC: interrupt blocked
[30155.695007] ACPI: EC: interrupt unblocked
[30155.866917] nvme nvme0: Shutdown timeout set to 10 seconds
[30155.871685] nvme nvme0: 16/0/0 default/read/poll queues
[30155.919469] atkbd serio0: Unknown key pressed (translated set 2, code 0x6b on isa0060/serio0).
[30155.919478] atkbd serio0: Use 'setkeycodes 6b <keycode>' to make it known.
[30155.919945] atkbd serio0: Unknown key released (translated set 2, code 0x6b on isa0060/serio0).
[30155.919954] atkbd serio0: Use 'setkeycodes 6b <keycode>' to make it known.
[30156.009982] [drm:mes_v11_0_submit_pkt_and_poll_completion.constprop.0 [amdgpu]] *ERROR* MES failed to response msg=14
[30156.010311] [drm:amdgpu_mes_reg_write_reg_wait [amdgpu]] *ERROR* failed to reg_write_reg_wait
[30156.012459] [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
[30156.012541] amdgpu 0000:c1:00.0: amdgpu: SMU is resuming...
[30156.015945] amdgpu 0000:c1:00.0: amdgpu: SMU is resumed successfully!
[30156.209914] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[30156.210061] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_hw_init [amdgpu]] JPEG decode initialized successfully.
[30156.210455] amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[30156.210459] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[30156.210462] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[30156.210464] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[30156.210466] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[30156.210467] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[30156.210469] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[30156.210471] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[30156.210473] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[30156.210475] amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[30156.210476] amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[30156.210478] amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
[30156.210480] amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
[30156.216108] [drm] ring gfx_32771.1.1 was added
[30156.216654] [drm] ring compute_32771.2.2 was added
[30156.217183] [drm] ring sdma_32771.3.3 was added
[30156.217247] [drm] ring gfx_32771.1.1 ib test pass
[30156.217279] [drm] ring compute_32771.2.2 ib test pass
[30156.217364] [drm] ring sdma_32771.3.3 ib test pass
[30156.225873] OOM killer enabled.
[30156.225876] Restarting tasks ... done.
[30156.227604] random: crng reseeded on system resumption
[30156.234532] PM: suspend exit
[30158.901571] wlp1s0: authenticate with cc:2d:e0:8c:84:9a
[30158.935907] wlp1s0: send auth to cc:2d:e0:8c:84:9a (try 1/3)
[30158.938904] wlp1s0: authenticated
[30158.940516] wlp1s0: associate with cc:2d:e0:8c:84:9a (try 1/3)
[30158.953540] wlp1s0: RX AssocResp from cc:2d:e0:8c:84:9a (capab=0x431 status=0 aid=2)
[30158.982563] wlp1s0: associated
[31277.438316] PM: suspend entry (s2idle)
[31277.454787] Filesystems sync: 0.016 seconds
[31277.457931] Freezing user space processes
[31277.459197] Freezing user space processes completed (elapsed 0.001 seconds)
[31277.459203] OOM killer disabled.
[31277.459204] Freezing remaining freezable tasks
[31277.459982] Freezing remaining freezable tasks completed (elapsed 0.000 seconds)
[31277.459988] printk: Suspending console(s) (use no_console_suspend to debug)
[31277.463325] wlp1s0: deauthenticating from cc:2d:e0:8c:84:9a by local choice (Reason: 3=DEAUTH_LEAVING)
[31277.616227] ACPI: EC: interrupt blocked
[69775.960282] ACPI: EC: interrupt unblocked
[69776.131536] nvme nvme0: Shutdown timeout set to 10 seconds
[69776.136170] nvme nvme0: 16/0/0 default/read/poll queues
[69776.243913] atkbd serio0: Unknown key pressed (translated set 2, code 0x6b on isa0060/serio0).
[69776.243922] atkbd serio0: Use 'setkeycodes 6b <keycode>' to make it known.
[69776.244421] atkbd serio0: Unknown key released (translated set 2, code 0x6b on isa0060/serio0).
[69776.244429] atkbd serio0: Use 'setkeycodes 6b <keycode>' to make it known.
[69776.273646] [drm:mes_v11_0_submit_pkt_and_poll_completion.constprop.0 [amdgpu]] *ERROR* MES failed to response msg=14
[69776.273968] [drm:amdgpu_mes_reg_write_reg_wait [amdgpu]] *ERROR* failed to reg_write_reg_wait
[69776.276340] [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
[69776.276423] amdgpu 0000:c1:00.0: amdgpu: SMU is resuming...
[69776.279761] amdgpu 0000:c1:00.0: amdgpu: SMU is resumed successfully!
[69776.473965] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[69776.474111] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_hw_init [amdgpu]] JPEG decode initialized successfully.
[69776.474492] amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[69776.474495] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[69776.474498] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[69776.474500] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[69776.474502] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[69776.474503] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[69776.474505] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[69776.474507] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[69776.474509] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[69776.474511] amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[69776.474513] amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[69776.474514] amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
[69776.474516] amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
[69776.480028] [drm] ring gfx_32771.1.1 was added
[69776.480592] [drm] ring compute_32771.2.2 was added
[69776.481132] [drm] ring sdma_32771.3.3 was added
[69776.481187] [drm] ring gfx_32771.1.1 ib test pass
[69776.481222] [drm] ring compute_32771.2.2 ib test pass
[69776.481306] [drm] ring sdma_32771.3.3 ib test pass
[69776.488897] OOM killer enabled.
[69776.488899] Restarting tasks ... done.
[69776.489865] random: crng reseeded on system resumption
[69776.495527] PM: suspend exit
[69779.153508] wlp1s0: authenticate with cc:2d:e0:8c:84:9b
[69779.338925] wlp1s0: send auth to cc:2d:e0:8c:84:9b (try 1/3)
[69779.343063] wlp1s0: authenticated
[69779.345764] wlp1s0: associate with cc:2d:e0:8c:84:9b (try 1/3)
[69779.360225] wlp1s0: RX AssocResp from cc:2d:e0:8c:84:9b (capab=0x431 status=0 aid=1)
[69779.390165] wlp1s0: associated
[69901.148626] i2c_hid_acpi i2c-FRMW0005:00: i2c_hid_get_input: incomplete report (7/65535)
[70093.968804] usb 7-1: new high-speed USB device number 2 using xhci_hcd
[70094.123622] usb 7-1: New USB device found, idVendor=0bda, idProduct=5409, bcdDevice= 1.17
[70094.123635] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70094.123641] usb 7-1: Product: USB2.1 Hub
[70094.123645] usb 7-1: Manufacturer: Generic
[70094.186495] hub 7-1:1.0: USB hub found
[70094.187908] hub 7-1:1.0: 6 ports detected
[70094.248493] usb 8-1: new SuperSpeed USB device number 2 using xhci_hcd
[70094.274747] usb 8-1: New USB device found, idVendor=0bda, idProduct=0409, bcdDevice= 1.17
[70094.274760] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70094.274765] usb 8-1: Product: USB3.2 Hub
[70094.274769] usb 8-1: Manufacturer: Generic
[70094.297824] hub 8-1:1.0: USB hub found
[70094.299330] hub 8-1:1.0: 4 ports detected
[70094.552138] usb 7-1.1: new high-speed USB device number 3 using xhci_hcd
[70094.570962] ucsi_acpi USBC000:00: UCSI_GET_PDOS failed (-5)
[70094.671925] usb 7-1.1: New USB device found, idVendor=0bda, idProduct=5409, bcdDevice= 1.17
[70094.671937] usb 7-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70094.671941] usb 7-1.1: Product: USB2.1 Hub
[70094.671944] usb 7-1.1: Manufacturer: Generic
[70094.729003] hub 7-1.1:1.0: USB hub found
[70094.730397] hub 7-1.1:1.0: 2 ports detected
[70094.760638] usb 8-1.1: new SuperSpeed USB device number 3 using xhci_hcd
[70094.791906] usb 8-1.1: New USB device found, idVendor=0bda, idProduct=0409, bcdDevice= 1.17
[70094.791914] usb 8-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70094.791919] usb 8-1.1: Product: USB3.2 Hub
[70094.791922] usb 8-1.1: Manufacturer: Generic
[70094.825123] hub 8-1.1:1.0: USB hub found
[70094.826627] hub 8-1.1:1.0: 2 ports detected
[70094.898805] usb 7-1.2: new high-speed USB device number 4 using xhci_hcd
[70094.996728] usb 7-1.2: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
[70094.996740] usb 7-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70094.996745] usb 7-1.2: Product: USB2.1 Hub
[70094.996749] usb 7-1.2: Manufacturer: GenesysLogic
[70095.048533] hub 7-1.2:1.0: USB hub found
[70095.049061] hub 7-1.2:1.0: 4 ports detected
[70095.072470] usb 8-1.2: new SuperSpeed USB device number 4 using xhci_hcd
[70095.098985] usb 8-1.2: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.63
[70095.098998] usb 8-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70095.099003] usb 8-1.2: Product: USB3.1 Hub
[70095.099007] usb 8-1.2: Manufacturer: GenesysLogic
[70095.129332] hub 8-1.2:1.0: USB hub found
[70095.130219] hub 8-1.2:1.0: 4 ports detected
[70095.165971] usb 7-1.1.2: new full-speed USB device number 5 using xhci_hcd
[70095.272706] usb 7-1.1.2: New USB device found, idVendor=0a12, idProduct=4010, bcdDevice=16.80
[70095.272720] usb 7-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[70095.335577] usb 7-1.3: new high-speed USB device number 6 using xhci_hcd
[70095.337224] hub 7-1.1.2:1.0: USB hub found
[70095.339813] hub 7-1.1.2:1.0: 4 ports detected
[70095.449709] usb 7-1.3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
[70095.449721] usb 7-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70095.449726] usb 7-1.3: Product: USB2.1 Hub
[70095.449730] usb 7-1.3: Manufacturer: GenesysLogic
[70095.496528] hub 7-1.3:1.0: USB hub found
[70095.497108] hub 7-1.3:1.0: 4 ports detected
[70095.522476] usb 8-1.3: new SuperSpeed USB device number 5 using xhci_hcd
[70095.549262] usb 8-1.3: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.63
[70095.549277] usb 8-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70095.549282] usb 8-1.3: Product: USB3.1 Hub
[70095.549286] usb 8-1.3: Manufacturer: GenesysLogic
[70095.577871] hub 8-1.3:1.0: USB hub found
[70095.579134] hub 8-1.3:1.0: 4 ports detected
[70095.642148] usb 7-1.2.1: new full-speed USB device number 7 using xhci_hcd
[70095.775639] usb 7-1.2.1: New USB device found, idVendor=1532, idProduct=005c, bcdDevice= 2.00
[70095.775653] usb 7-1.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70095.775658] usb 7-1.2.1: Product: Razer DeathAdder Elite
[70095.775661] usb 7-1.2.1: Manufacturer: Razer
[70095.845451] usb 7-1.6: new high-speed USB device number 8 using xhci_hcd
[70095.950641] usb 7-1.6: New USB device found, idVendor=0bda, idProduct=1100, bcdDevice= 1.01
[70095.950653] usb 7-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70095.950658] usb 7-1.6: Product: HID Device
[70095.950662] usb 7-1.6: Manufacturer: Realtek
[70096.021914] usb 7-1.1.2.1: new full-speed USB device number 9 using xhci_hcd
[70096.145938] usb 7-1.1.2.1: New USB device found, idVendor=0b0e, idProduct=24c8, bcdDevice= 1.16
[70096.145951] usb 7-1.1.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[70096.145956] usb 7-1.1.2.1: Product: Jabra Link 380
[70096.145960] usb 7-1.1.2.1: SerialNumber: 08C8C2467D8F
[70096.202022] usb 8-1.4: new SuperSpeed USB device number 6 using xhci_hcd
[70096.219958] usb 8-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=33.10
[70096.219973] usb 8-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[70096.219978] usb 8-1.4: Product: USB 10/100/1000 LAN
[70096.219982] usb 8-1.4: Manufacturer: Realtek
[70096.219985] usb 8-1.4: SerialNumber: 0133000001
[70096.318829] usb 7-1.2.2: new full-speed USB device number 10 using xhci_hcd
[70096.457019] usb 7-1.2.2: New USB device found, idVendor=08bb, idProduct=29b0, bcdDevice= 1.00
[70096.457025] usb 7-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70096.457028] usb 7-1.2.2: Product: USB Audio CODEC 
[70096.457029] usb 7-1.2.2: Manufacturer: Burr-Brown from TI              
[70096.565059] input: Razer Razer DeathAdder Elite as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.1/7-1.2.1:1.0/0003:1532:005C.0004/input/input15
[70096.565290] hid-generic 0003:1532:005C.0004: input,hidraw3: USB HID v1.11 Mouse [Razer Razer DeathAdder Elite] on usb-0000:c3:00.4-1.2.1/input0
[70096.570253] input: Razer Razer DeathAdder Elite Keyboard as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.1/7-1.2.1:1.1/0003:1532:005C.0005/input/input16
[70096.619177] usb 7-1.2.3: new full-speed USB device number 11 using xhci_hcd
[70096.629082] input: Razer Razer DeathAdder Elite as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.1/7-1.2.1:1.1/0003:1532:005C.0005/input/input17
[70096.629432] hid-generic 0003:1532:005C.0005: input,hidraw4: USB HID v1.11 Keyboard [Razer Razer DeathAdder Elite] on usb-0000:c3:00.4-1.2.1/input1
[70096.633136] input: Razer Razer DeathAdder Elite as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.1/7-1.2.1:1.2/0003:1532:005C.0006/input/input18
[70096.689195] hid-generic 0003:1532:005C.0006: input,hidraw5: USB HID v1.11 Keyboard [Razer Razer DeathAdder Elite] on usb-0000:c3:00.4-1.2.1/input2
[70096.692549] hid-generic 0003:0BDA:1100.0007: hiddev96,hidraw6: USB HID v1.11 Device [Realtek HID Device] on usb-0000:c3:00.4-1.6/input0
[70096.705422] input: Burr-Brown from TI               USB Audio CODEC  as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.2/7-1.2.2:1.3/0003:08BB:29B0.0009/input/input19
[70096.762552] hid-generic 0003:08BB:29B0.0009: input,hidraw7: USB HID v1.00 Device [Burr-Brown from TI               USB Audio CODEC ] on usb-0000:c3:00.4-1.2.2/input3
[70096.762639] usbcore: registered new interface driver usbhid
[70096.762643] usbhid: USB HID core driver
[70096.762817] usb 7-1.2.3: New USB device found, idVendor=3434, idProduct=0411, bcdDevice= 1.01
[70096.762829] usb 7-1.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[70096.762835] usb 7-1.2.3: Product: Keychron S1
[70096.762840] usb 7-1.2.3: Manufacturer: Keychron
[70096.840991] usbcore: registered new device driver r8152-cfgselector
[70096.910505] input: Keychron Keychron S1 as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.3/7-1.2.3:1.0/0003:3434:0411.000A/input/input20
[70096.966552] hid-generic 0003:3434:0411.000A: input,hidraw8: USB HID v1.11 Keyboard [Keychron Keychron S1] on usb-0000:c3:00.4-1.2.3/input0
[70096.971578] hid-generic 0003:3434:0411.000B: hiddev97,hidraw9: USB HID v1.11 Device [Keychron Keychron S1] on usb-0000:c3:00.4-1.2.3/input1
[70096.976177] input: Keychron Keychron S1 Mouse as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.3/7-1.2.3:1.2/0003:3434:0411.000C/input/input21
[70096.976596] input: Keychron Keychron S1 System Control as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.3/7-1.2.3:1.2/0003:3434:0411.000C/input/input22
[70097.032575] input: Keychron Keychron S1 Consumer Control as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.3/7-1.2.3:1.2/0003:3434:0411.000C/input/input23
[70097.032962] input: Keychron Keychron S1 Keyboard as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.2/7-1.2.3/7-1.2.3:1.2/0003:3434:0411.000C/input/input24
[70097.033652] hid-generic 0003:3434:0411.000C: input,hidraw10: USB HID v1.11 Mouse [Keychron Keychron S1] on usb-0000:c3:00.4-1.2.3/input2
[70097.165294] usb 7-1.2.4: new high-speed USB device number 12 using xhci_hcd
[70097.280211] usb 7-1.2.4: config 1 interface 0 altsetting 0 endpoint 0x83 has an invalid bInterval 32, changing to 9
[70097.281684] usb 7-1.2.4: New USB device found, idVendor=1b3f, idProduct=2247, bcdDevice= 1.00
[70097.281696] usb 7-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=5
[70097.281701] usb 7-1.2.4: Product: GENERAL WEBCAM
[70097.281705] usb 7-1.2.4: Manufacturer: GENERAL
[70097.281709] usb 7-1.2.4: SerialNumber: JH0319_20200710_v012
[70097.384241] r8152-cfgselector 8-1.4: reset SuperSpeed USB device number 6 using xhci_hcd
[70097.451055] r8152 8-1.4:1.0: load rtl8156b-2 v3 10/20/23 successfully
[70097.486663] r8152 8-1.4:1.0 eth0: v1.12.13
[70097.486744] usbcore: registered new interface driver r8152
[70097.495451] usbcore: registered new interface driver cdc_ether
[70097.498649] usbcore: registered new interface driver cdc_ncm
[70097.501418] usbcore: registered new interface driver cdc_wdm
[70097.503780] usbcore: registered new interface driver cdc_mbim
[70097.511475] r8152 8-1.4:1.0 enp195s0f4u1u4: renamed from eth0
[70097.657569] mc: Linux media interface: v0.10
[70098.429935] videodev: Linux video capture interface: v2.00
[70098.444948] usb 7-1.2.4: Found UVC 1.00 device GENERAL WEBCAM (1b3f:2247)
[70098.536277] usb 7-1.2.4: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
[70098.537263] usbcore: registered new interface driver uvcvideo
[70099.469159] usb 7-1.2.4: Warning! Unlikely big volume range (=5120), cval->res is probably wrong.
[70099.469169] usb 7-1.2.4: [5] FU [Mic Capture Volume] ch = 1, val = 7680/12800/1
[70099.469636] usbcore: registered new interface driver snd-usb-audio
[70099.485654] input: Jabra Link 380 as /devices/pci0000:00/0000:00:08.3/0000:c3:00.4/usb7/7-1/7-1.1/7-1.1.2/7-1.1.2.1/7-1.1.2.1:1.3/0003:0B0E:24C8.0008/input/input25
[70099.542525] jabra 0003:0B0E:24C8.0008: input,hiddev98,hidraw11: USB HID v1.11 Device [Jabra Link 380] on usb-0000:c3:00.4-1.1.2.1/input3
[70099.881953] ucsi_acpi USBC000:00: ucsi_handle_connector_change: ACK failed (-110)
[70100.037274] ucsi_acpi USBC000:00: UCSI_GET_PDOS failed (-5)
[70780.419406] wlp1s0: deauthenticated from cc:2d:e0:8c:84:9b (Reason: 6=CLASS2_FRAME_FROM_NONAUTH_STA)
[70780.938778] wlp1s0: authenticate with cc:2d:e0:8c:84:9b
[70780.971732] wlp1s0: send auth to cc:2d:e0:8c:84:9b (try 1/3)
[70780.975798] wlp1s0: authenticated
[70780.978695] wlp1s0: associate with cc:2d:e0:8c:84:9b (try 1/3)
[70780.992455] wlp1s0: RX AssocResp from cc:2d:e0:8c:84:9b (capab=0x431 status=0 aid=1)
[70781.019662] wlp1s0: associated
[71257.242360] i2c_hid_acpi i2c-FRMW0005:00: i2c_hid_get_input: incomplete report (7/65535)
[73040.498134] i2c_designware AMDI0010:00: i2c_dw_handle_tx_abort: lost arbitration
[73706.694638] usb 7-1.3: USB disconnect, device number 6
[73706.803140] usb 8-1.3: USB disconnect, device number 5
[73720.328713] usb 7-1: USB disconnect, device number 2
[73720.328726] usb 7-1.1: USB disconnect, device number 3
[73720.328731] usb 7-1.1.2: USB disconnect, device number 5
[73720.328735] usb 7-1.1.2.1: USB disconnect, device number 9
[73720.547043] usb 7-1.2: USB disconnect, device number 4
[73720.547052] usb 7-1.2.1: USB disconnect, device number 7
[73721.042396] usb 8-1: USB disconnect, device number 2
[73721.042400] usb 8-1.1: USB disconnect, device number 3
[73721.059164] usb 8-1.2: USB disconnect, device number 4
[73721.090937] r8152-cfgselector 8-1.4: USB disconnect, device number 6
[73721.186813] usb 7-1.2.2: USB disconnect, device number 10
[73721.282932] usb 7-1.2.3: USB disconnect, device number 11
[73721.891683] usb 7-1.2.4: USB disconnect, device number 12
[73721.955022] usb 7-1.6: USB disconnect, device number 8




[73767.987957] usb 7-1: new high-speed USB device number 13 using xhci_hcd
[73768.148230] usb 7-1: New USB device found, idVendor=0bda, idProduct=5409, bcdDevice= 1.17
[73768.148244] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[73768.148249] usb 7-1: Product: USB2.1 Hub
[73768.148253] usb 7-1: Manufacturer: Generic
[73768.210171] hub 7-1:1.0: USB hub found
[73768.211522] hub 7-1:1.0: 6 ports detected
[73768.271554] usb 8-1: new SuperSpeed USB device number 7 using xhci_hcd
[73768.300694] usb 8-1: New USB device found, idVendor=0bda, idProduct=0409, bcdDevice= 1.17
[73768.300707] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[73768.300712] usb 8-1: Product: USB3.2 Hub
[73768.300716] usb 8-1: Manufacturer: Generic
[73768.321250] hub 8-1:1.0: USB hub found
[73768.323314] hub 8-1:1.0: 4 ports detected
[73768.578391] usb 7-1.1: new high-speed USB device number 14 using xhci_hcd
[73768.698770] usb 7-1.1: New USB device found, idVendor=0bda, idProduct=5409, bcdDevice= 1.17
[73768.698775] usb 7-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[73768.698777] usb 7-1.1: Product: USB2.1 Hub
[73768.698778] usb 7-1.1: Manufacturer: Generic
[73768.751871] hub 7-1.1:1.0: USB hub found
[73768.753790] hub 7-1.1:1.0: 2 ports detected
[73768.783654] usb 8-1.1: new SuperSpeed USB device number 8 using xhci_hcd
[73768.811090] usb 8-1.1: New USB device found, idVendor=0bda, idProduct=0409, bcdDevice= 1.17
[73768.811098] usb 8-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[73768.811102] usb 8-1.1: Product: USB3.2 Hub
[73768.811105] usb 8-1.1: Manufacturer: Generic
[73768.848025] hub 8-1.1:1.0: USB hub found
[73768.849435] hub 8-1.1:1.0: 2 ports detected
[73768.934661] usb 7-1.6: new high-speed USB device number 15 using xhci_hcd
[73769.058400] usb 7-1.6: New USB device found, idVendor=0bda, idProduct=1100, bcdDevice= 1.01
[73769.058414] usb 7-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[73769.058419] usb 7-1.6: Product: HID Device
[73769.058424] usb 7-1.6: Manufacturer: Realtek
[73769.108245] hid-generic 0003:0BDA:1100.000D: hiddev96,hidraw3: USB HID v1.11 Device [Realtek HID Device] on usb-0000:c3:00.4-1.6/input0
[73769.128140] usb 8-1.4: new SuperSpeed USB device number 9 using xhci_hcd
[73769.147209] usb 8-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=33.10
[73769.147214] usb 8-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[73769.147216] usb 8-1.4: Product: USB 10/100/1000 LAN
[73769.147217] usb 8-1.4: Manufacturer: Realtek
[73769.147218] usb 8-1.4: SerialNumber: 0133000001
[73769.222931] cdc_ncm 8-1.4:2.0: MAC-Address: ac:91:a1:fe:97:bf
[73769.222944] cdc_ncm 8-1.4:2.0: setting rx_max = 16384
[73769.223137] cdc_ncm 8-1.4:2.0: setting tx_max = 16384
[73769.223549] cdc_ncm 8-1.4:2.0 eth0: register 'cdc_ncm' at usb-0000:c3:00.4-1.4, CDC NCM (NO ZLP), ac:91:a1:fe:97:bf
[73769.223803] cdc_ncm 8-1.4:2.0 eth0: unregister 'cdc_ncm' usb-0000:c3:00.4-1.4, CDC NCM (NO ZLP)
[73769.455809] r8152-cfgselector 8-1.4: reset SuperSpeed USB device number 9 using xhci_hcd
[73769.510632] r8152 8-1.4:1.0: load rtl8156b-2 v3 10/20/23 successfully
[73769.546382] r8152 8-1.4:1.0 eth0: v1.12.13
[73769.567304] r8152 8-1.4:1.0 enp195s0f4u1u4: renamed from eth0