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 | [ 0.000000] Linux version 6.1.39-calculate (root@localhost) (gcc (Gentoo 12.3.1_p20230526 p2) 12.3.1 20230526, GNU ld (Gentoo 2.40 p5) 2.40.0) #1 SMP PREEMPT_DYNAMIC Wed Jul 19 21:20:18 UTC 2023
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate root=UUID=8ffc75a2-5a99-4feb-82bd-282435e3c39d ro video=1920x1080 rd.retry=40 calculate=video:amdgpu rd.plymouth=0 splash=off console=tty1 quiet
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
[ 0.000000] signal: max sigframe size: 3376
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000009bff000-0x0000000009ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20dfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000000a20e000-0x000000000affffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000bb9f0fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bb9f1000-0x00000000bd133fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bd134000-0x00000000bd177fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bd178000-0x00000000bd492fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bd493000-0x00000000bdf76fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bdf77000-0x00000000bdffefff] type 20
[ 0.000000] BIOS-e820: [mem 0x00000000bdfff000-0x00000000beffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bf000000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd600000-0x00000000fd7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043f37ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000043f380000-0x000000043fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.70 by American Megatrends
[ 0.000000] efi: ACPI=0xbd47c000 ACPI 2.0=0xbd47c014 TPMFinalLog=0xbd446000 SMBIOS=0xbde22000 SMBIOS 3.0=0xbde21000 MEMATTR=0xb9b1d698 ESRT=0xba3a2118
[ 0.000000] SMBIOS 3.3.0 present.
[ 0.000000] DMI: To Be Filled By O.E.M. A320M-HDV R4.0/A320M-HDV R4.0, BIOS P8.01 01/30/2023
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3700.088 MHz processor
[ 0.000206] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000208] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000214] last_pfn = 0x43f380 max_arch_pfn = 0x400000000
[ 0.000616] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000752] e820: update [mem 0xbd220000-0xbd22ffff] usable ==> reserved
[ 0.000755] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[ 0.000758] last_pfn = 0xbf000 max_arch_pfn = 0x400000000
[ 0.003272] esrt: Reserving ESRT space from 0x00000000ba3a2118 to 0x00000000ba3a21a0.
[ 0.003277] e820: update [mem 0xba3a2000-0xba3a2fff] usable ==> reserved
[ 0.003305] Using GB pages for direct mapping
[ 0.003559] Secure boot disabled
[ 0.003559] RAMDISK: [mem 0x34b19000-0x36583fff]
[ 0.003563] ACPI: Early table checksum verification disabled
[ 0.003565] ACPI: RSDP 0x00000000BD47C014 000024 (v02 ALASKA)
[ 0.003567] ACPI: XSDT 0x00000000BD47B728 0000C4 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.003570] ACPI: FACP 0x00000000BD169000 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
[ 0.003572] ACPI: DSDT 0x00000000BD13E000 006050 (v02 ALASKA A M I 01072009 INTL 20120913)
[ 0.003574] ACPI: FACS 0x00000000BD476000 000040
[ 0.003575] ACPI: SSDT 0x00000000BD16F000 008CE9 (v02 AMD AmdTable 00000002 MSFT 04000000)
[ 0.003577] ACPI: SSDT 0x00000000BD16B000 003CB6 (v02 AMD AMD AOD 00000001 INTL 20120913)
[ 0.003578] ACPI: SSDT 0x00000000BD16A000 0000C8 (v02 ALASKA CPUSSDT 01072009 AMI 01072009)
[ 0.003579] ACPI: FIDT 0x00000000BD162000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.003581] ACPI: MCFG 0x00000000BD161000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
[ 0.003582] ACPI: AAFT 0x00000000BD160000 0000CF (v01 ALASKA OEMAAFT 01072009 MSFT 00000097)
[ 0.003583] ACPI: HPET 0x00000000BD15F000 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
[ 0.003585] ACPI: VFCT 0x00000000BD154000 00AC84 (v01 ALASKA A M I 00000001 AMD 31504F47)
[ 0.003586] ACPI: TPM2 0x00000000BD153000 00004C (v04 ALASKA A M I 00000001 AMI 00000000)
[ 0.003587] ACPI: PCCT 0x00000000BD152000 00006E (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.003589] ACPI: SSDT 0x00000000BD14E000 003047 (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.003590] ACPI: CRAT 0x00000000BD14D000 000B90 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.003591] ACPI: CDIT 0x00000000BD14C000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.003593] ACPI: SSDT 0x00000000BD148000 0037C4 (v02 AMD MYRTLE 00000001 INTL 20120913)
[ 0.003594] ACPI: SSDT 0x00000000BD147000 0000BF (v01 AMD AmdTable 00001000 INTL 20120913)
[ 0.003595] ACPI: WSMT 0x00000000BD146000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.003596] ACPI: APIC 0x00000000BD145000 00015E (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.003598] ACPI: SSDT 0x00000000BD167000 0010AF (v02 AMD MYRTLE 00000001 INTL 20120913)
[ 0.003599] ACPI: FPDT 0x00000000BD166000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.003600] ACPI: Reserving FACP table memory at [mem 0xbd169000-0xbd169113]
[ 0.003601] ACPI: Reserving DSDT table memory at [mem 0xbd13e000-0xbd14404f]
[ 0.003601] ACPI: Reserving FACS table memory at [mem 0xbd476000-0xbd47603f]
[ 0.003602] ACPI: Reserving SSDT table memory at [mem 0xbd16f000-0xbd177ce8]
[ 0.003602] ACPI: Reserving SSDT table memory at [mem 0xbd16b000-0xbd16ecb5]
[ 0.003602] ACPI: Reserving SSDT table memory at [mem 0xbd16a000-0xbd16a0c7]
[ 0.003603] ACPI: Reserving FIDT table memory at [mem 0xbd162000-0xbd16209b]
[ 0.003603] ACPI: Reserving MCFG table memory at [mem 0xbd161000-0xbd16103b]
[ 0.003604] ACPI: Reserving AAFT table memory at [mem 0xbd160000-0xbd1600ce]
[ 0.003604] ACPI: Reserving HPET table memory at [mem 0xbd15f000-0xbd15f037]
[ 0.003604] ACPI: Reserving VFCT table memory at [mem 0xbd154000-0xbd15ec83]
[ 0.003605] ACPI: Reserving TPM2 table memory at [mem 0xbd153000-0xbd15304b]
[ 0.003605] ACPI: Reserving PCCT table memory at [mem 0xbd152000-0xbd15206d]
[ 0.003606] ACPI: Reserving SSDT table memory at [mem 0xbd14e000-0xbd151046]
[ 0.003606] ACPI: Reserving CRAT table memory at [mem 0xbd14d000-0xbd14db8f]
[ 0.003606] ACPI: Reserving CDIT table memory at [mem 0xbd14c000-0xbd14c028]
[ 0.003607] ACPI: Reserving SSDT table memory at [mem 0xbd148000-0xbd14b7c3]
[ 0.003607] ACPI: Reserving SSDT table memory at [mem 0xbd147000-0xbd1470be]
[ 0.003608] ACPI: Reserving WSMT table memory at [mem 0xbd146000-0xbd146027]
[ 0.003608] ACPI: Reserving APIC table memory at [mem 0xbd145000-0xbd14515d]
[ 0.003608] ACPI: Reserving SSDT table memory at [mem 0xbd167000-0xbd1680ae]
[ 0.003609] ACPI: Reserving FPDT table memory at [mem 0xbd166000-0xbd166043]
[ 0.003653] No NUMA configuration found
[ 0.003654] Faking a node at [mem 0x0000000000000000-0x000000043f37ffff]
[ 0.003657] NODE_DATA(0) allocated [mem 0x43f355000-0x43f37ffff]
[ 0.003688] Zone ranges:
[ 0.003688] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.003689] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.003690] Normal [mem 0x0000000100000000-0x000000043f37ffff]
[ 0.003691] Device empty
[ 0.003691] Movable zone start for each node
[ 0.003692] Early memory node ranges
[ 0.003692] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.003693] node 0: [mem 0x0000000000100000-0x0000000009bfefff]
[ 0.003694] node 0: [mem 0x000000000a000000-0x000000000a1fffff]
[ 0.003694] node 0: [mem 0x000000000a20e000-0x000000000affffff]
[ 0.003694] node 0: [mem 0x000000000b020000-0x00000000bb9f0fff]
[ 0.003695] node 0: [mem 0x00000000bdfff000-0x00000000beffffff]
[ 0.003695] node 0: [mem 0x0000000100000000-0x000000043f37ffff]
[ 0.003697] Initmem setup node 0 [mem 0x0000000000001000-0x000000043f37ffff]
[ 0.003699] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.003708] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.003789] On node 0, zone DMA32: 1025 pages in unavailable ranges
[ 0.003797] On node 0, zone DMA32: 14 pages in unavailable ranges
[ 0.005686] On node 0, zone DMA32: 32 pages in unavailable ranges
[ 0.005741] On node 0, zone DMA32: 9742 pages in unavailable ranges
[ 0.017715] On node 0, zone Normal: 4096 pages in unavailable ranges
[ 0.017731] On node 0, zone Normal: 3200 pages in unavailable ranges
[ 0.018141] ACPI: PM-Timer IO Port: 0x808
[ 0.018147] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.018158] IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
[ 0.018162] IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
[ 0.018163] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.018165] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.018166] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.018167] ACPI: HPET id: 0x10228201 base: 0xfed00000
[ 0.018170] smpboot: Allowing 32 CPUs, 20 hotplug CPUs
[ 0.018187] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.018188] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.018189] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[ 0.018190] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20dfff]
[ 0.018191] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[ 0.018192] PM: hibernation: Registered nosave memory: [mem 0xba3a2000-0xba3a2fff]
[ 0.018193] PM: hibernation: Registered nosave memory: [mem 0xbb9f1000-0xbd133fff]
[ 0.018193] PM: hibernation: Registered nosave memory: [mem 0xbd134000-0xbd177fff]
[ 0.018193] PM: hibernation: Registered nosave memory: [mem 0xbd178000-0xbd492fff]
[ 0.018194] PM: hibernation: Registered nosave memory: [mem 0xbd493000-0xbdf76fff]
[ 0.018194] PM: hibernation: Registered nosave memory: [mem 0xbdf77000-0xbdffefff]
[ 0.018195] PM: hibernation: Registered nosave memory: [mem 0xbf000000-0xbfffffff]
[ 0.018195] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
[ 0.018195] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[ 0.018196] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfd1fffff]
[ 0.018196] PM: hibernation: Registered nosave memory: [mem 0xfd200000-0xfd2fffff]
[ 0.018196] PM: hibernation: Registered nosave memory: [mem 0xfd300000-0xfd5fffff]
[ 0.018197] PM: hibernation: Registered nosave memory: [mem 0xfd600000-0xfd7fffff]
[ 0.018197] PM: hibernation: Registered nosave memory: [mem 0xfd800000-0xfe9fffff]
[ 0.018197] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[ 0.018198] PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[ 0.018198] PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[ 0.018198] PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[ 0.018198] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[ 0.018199] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[ 0.018199] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[ 0.018199] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[ 0.018200] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[ 0.018200] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[ 0.018200] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[ 0.018200] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[ 0.018201] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[ 0.018201] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[ 0.018201] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[ 0.018202] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[ 0.018202] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[ 0.018202] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff]
[ 0.018203] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.018204] [mem 0xc0000000-0xefffffff] available for PCI devices
[ 0.018205] Booting paravirtualized kernel on bare hardware
[ 0.018207] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.021092] setup_percpu: NR_CPUS:512 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.021756] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[ 0.021760] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[ 0.021762] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.021766] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
[ 0.021784] Fallback order for Node 0: 0
[ 0.021787] Built 1 zonelists, mobility grouping on. Total pages: 4110685
[ 0.021787] Policy zone: Normal
[ 0.021788] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate root=UUID=8ffc75a2-5a99-4feb-82bd-282435e3c39d ro video=1920x1080 rd.retry=40 calculate=video:amdgpu rd.plymouth=0 splash=off console=tty1 quiet
[ 0.021854] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate calculate=video:amdgpu splash=off", will be passed to user space.
[ 0.021875] random: crng init done
[ 0.022443] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.022729] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.022863] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.022868] software IO TLB: area num 32.
[ 0.044010] Memory: 16172124K/16704392K available (16393K kernel code, 2890K rwdata, 5460K rodata, 2752K init, 17612K bss, 532008K reserved, 0K cma-reserved)
[ 0.044074] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.044082] ftrace: allocating 50920 entries in 199 pages
[ 0.050876] ftrace: allocated 199 pages with 5 groups
[ 0.051442] Dynamic Preempt: voluntary
[ 0.051481] rcu: Preemptible hierarchical RCU implementation.
[ 0.051482] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=32.
[ 0.051483] Trampoline variant of Tasks RCU enabled.
[ 0.051483] Rude variant of Tasks RCU enabled.
[ 0.051483] Tracing variant of Tasks RCU enabled.
[ 0.051484] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.051484] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.053836] NR_IRQS: 33024, nr_irqs: 1224, preallocated irqs: 16
[ 0.053999] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.054070] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.054094] Console: colour dummy device 80x25
[ 0.054103] printk: console [tty1] enabled
[ 0.054119] ACPI: Core revision 20220331
[ 0.054210] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.054225] APIC: Switch to symmetric I/O mode setup
[ 0.054355] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.054416] Switched APIC routing to physical flat.
[ 0.055008] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.070892] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6aab5272cf0, max_idle_ns: 881590459359 ns
[ 0.070895] Calibrating delay loop (skipped), value calculated using timer frequency.. 7403.51 BogoMIPS (lpj=12333626)
[ 0.070897] pid_max: default: 32768 minimum: 301
[ 0.072427] LSM: Security Framework initializing
[ 0.072430] Yama: becoming mindful.
[ 0.072456] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.072470] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.072600] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.072612] LVT offset 1 assigned for vector 0xf9
[ 0.072631] LVT offset 2 assigned for vector 0xf4
[ 0.072640] process: using mwait in idle threads
[ 0.072641] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[ 0.072642] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[ 0.072644] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.072645] Spectre V2 : Mitigation: Retpolines
[ 0.072646] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.072646] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.072646] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.072647] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.072648] Spectre V2 : User space: Mitigation: STIBP always-on protection
[ 0.072648] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.084704] Freeing SMP alternatives memory: 48K
[ 0.191546] smpboot: CPU0: AMD Ryzen 5 5600X 6-Core Processor (family: 0x19, model: 0x21, stepping: 0x0)
[ 0.191615] cblist_init_generic: Setting adjustable number of callback queues.
[ 0.191617] cblist_init_generic: Setting shift to 5 and lim to 1.
[ 0.191625] cblist_init_generic: Setting shift to 5 and lim to 1.
[ 0.191631] cblist_init_generic: Setting shift to 5 and lim to 1.
[ 0.191638] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[ 0.191640] ... version: 0
[ 0.191641] ... bit width: 48
[ 0.191641] ... generic registers: 6
[ 0.191641] ... value mask: 0000ffffffffffff
[ 0.191642] ... max period: 00007fffffffffff
[ 0.191642] ... fixed-purpose events: 0
[ 0.191642] ... event mask: 000000000000003f
[ 0.191689] rcu: Hierarchical SRCU implementation.
[ 0.191690] rcu: Max phase no-delay instances is 1000.
[ 0.191974] smp: Bringing up secondary CPUs ...
[ 0.192012] x86: Booting SMP configuration:
[ 0.192012] .... node #0, CPUs: #1 #2 #3 #4 #5 #6
[ 0.204257] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[ 0.204281] #7 #8 #9 #10 #11
[ 0.214239] smp: Brought up 1 node, 12 CPUs
[ 0.214240] smpboot: Max logical packages: 3
[ 0.214241] smpboot: Total of 12 processors activated (88837.19 BogoMIPS)
[ 0.214997] devtmpfs: initialized
[ 0.214997] x86/mm: Memory block size: 128MB
[ 0.214997] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20dfff] (57344 bytes)
[ 0.214997] ACPI: PM: Registering ACPI NVS region [mem 0xbd178000-0xbd492fff] (3256320 bytes)
[ 0.214997] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.214997] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.214997] pinctrl core: initialized pinctrl subsystem
[ 0.214997] PM: RTC time: 15:40:40, date: 2023-08-01
[ 0.217691] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.217744] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.217747] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.217751] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.217755] audit: initializing netlink subsys (disabled)
[ 0.217758] audit: type=2000 audit(1690904440.163:1): state=initialized audit_enabled=0 res=1
[ 0.217758] thermal_sys: Registered thermal governor 'fair_share'
[ 0.217758] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.217758] thermal_sys: Registered thermal governor 'step_wise'
[ 0.217758] thermal_sys: Registered thermal governor 'user_space'
[ 0.217758] cpuidle: using governor menu
[ 0.217758] Detected 1 PCC Subspaces
[ 0.217758] Registering PCC driver as Mailbox controller
[ 0.217758] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.217758] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[ 0.217758] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[ 0.217758] PCI: Using configuration type 1 for base access
[ 0.218421] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.218421] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.218421] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.218421] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.218421] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.218421] cryptd: max_cpu_qlen set to 1000
[ 0.218421] raid6: skipped pq benchmark and selected avx2x4
[ 0.218421] raid6: using avx2x2 recovery algorithm
[ 0.218421] ACPI: Added _OSI(Module Device)
[ 0.218421] ACPI: Added _OSI(Processor Device)
[ 0.218421] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.218421] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.223439] ACPI: 8 ACPI AML tables successfully acquired and loaded
[ 0.223962] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.235024] ACPI: Interpreter enabled
[ 0.235024] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.235024] ACPI: Using IOAPIC for interrupt routing
[ 0.235024] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.235024] PCI: Ignoring E820 reservations for host bridge windows
[ 0.235024] ACPI: Enabled 3 GPEs in block 00 to 1F
[ 0.239080] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.239084] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.239117] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
[ 0.239174] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.239180] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[ 0.239342] PCI host bridge to bus 0000:00
[ 0.239343] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.239344] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.239344] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.239345] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.239346] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.239347] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfcffffff window]
[ 0.239347] pci_bus 0000:00: root bus resource [mem 0x440000000-0x7fffffffff window]
[ 0.239348] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.239357] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000
[ 0.239426] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000
[ 0.239472] pci 0000:00:01.1: [1022:1483] type 01 class 0x060400
[ 0.239500] pci 0000:00:01.1: enabling Extended Tags
[ 0.239546] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.239646] pci 0000:00:01.3: [1022:1483] type 01 class 0x060400
[ 0.239674] pci 0000:00:01.3: enabling Extended Tags
[ 0.239720] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[ 0.239820] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000
[ 0.239867] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000
[ 0.239909] pci 0000:00:03.1: [1022:1483] type 01 class 0x060400
[ 0.239971] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[ 0.240057] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000
[ 0.240103] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000
[ 0.240151] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000
[ 0.240193] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400
[ 0.240215] pci 0000:00:07.1: enabling Extended Tags
[ 0.240251] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[ 0.240328] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000
[ 0.240370] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400
[ 0.240394] pci 0000:00:08.1: enabling Extended Tags
[ 0.240433] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.240532] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[ 0.240621] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[ 0.240894] pci 0000:00:18.0: [1022:1440] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.1: [1022:1441] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.2: [1022:1442] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.3: [1022:1443] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.4: [1022:1444] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.5: [1022:1445] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.6: [1022:1446] type 00 class 0x060000
[ 0.240894] pci 0000:00:18.7: [1022:1447] type 00 class 0x060000
[ 0.240922] pci 0000:01:00.0: [126f:2262] type 00 class 0x010802
[ 0.240941] pci 0000:01:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit]
[ 0.241144] pci 0000:00:01.1: PCI bridge to [bus 01]
[ 0.241148] pci 0000:00:01.1: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.241197] pci 0000:02:00.0: [1022:43bc] type 00 class 0x0c0330
[ 0.241216] pci 0000:02:00.0: reg 0x10: [mem 0xfcea0000-0xfcea7fff 64bit]
[ 0.241258] pci 0000:02:00.0: enabling Extended Tags
[ 0.241319] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.241429] pci 0000:02:00.1: [1022:43b8] type 00 class 0x010601
[ 0.241480] pci 0000:02:00.1: reg 0x24: [mem 0xfce80000-0xfce9ffff]
[ 0.241488] pci 0000:02:00.1: reg 0x30: [mem 0xfce00000-0xfce7ffff pref]
[ 0.241494] pci 0000:02:00.1: enabling Extended Tags
[ 0.241536] pci 0000:02:00.1: PME# supported from D3hot D3cold
[ 0.241600] pci 0000:02:00.2: [1022:43b3] type 01 class 0x060400
[ 0.241647] pci 0000:02:00.2: enabling Extended Tags
[ 0.241694] pci 0000:02:00.2: PME# supported from D3hot D3cold
[ 0.241777] pci 0000:00:01.3: PCI bridge to [bus 02-06]
[ 0.241780] pci 0000:00:01.3: bridge window [io 0xf000-0xffff]
[ 0.241782] pci 0000:00:01.3: bridge window [mem 0xfcd00000-0xfcefffff]
[ 0.241854] pci 0000:03:04.0: [1022:43b4] type 01 class 0x060400
[ 0.241904] pci 0000:03:04.0: enabling Extended Tags
[ 0.241965] pci 0000:03:04.0: PME# supported from D3hot D3cold
[ 0.242063] pci 0000:03:06.0: [1022:43b4] type 01 class 0x060400
[ 0.242114] pci 0000:03:06.0: enabling Extended Tags
[ 0.242174] pci 0000:03:06.0: PME# supported from D3hot D3cold
[ 0.242272] pci 0000:03:07.0: [1022:43b4] type 01 class 0x060400
[ 0.242322] pci 0000:03:07.0: enabling Extended Tags
[ 0.242382] pci 0000:03:07.0: PME# supported from D3hot D3cold
[ 0.242490] pci 0000:02:00.2: PCI bridge to [bus 03-06]
[ 0.242495] pci 0000:02:00.2: bridge window [io 0xf000-0xffff]
[ 0.242497] pci 0000:02:00.2: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.242535] pci 0000:03:04.0: PCI bridge to [bus 04]
[ 0.242577] pci 0000:03:06.0: PCI bridge to [bus 05]
[ 0.242645] pci 0000:06:00.0: [10ec:8168] type 00 class 0x020000
[ 0.242673] pci 0000:06:00.0: reg 0x10: [io 0xf000-0xf0ff]
[ 0.242712] pci 0000:06:00.0: reg 0x18: [mem 0xfcd04000-0xfcd04fff 64bit]
[ 0.242736] pci 0000:06:00.0: reg 0x20: [mem 0xfcd00000-0xfcd03fff 64bit]
[ 0.242890] pci 0000:06:00.0: supports D1 D2
[ 0.242891] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.243141] pci 0000:03:07.0: PCI bridge to [bus 06]
[ 0.243146] pci 0000:03:07.0: bridge window [io 0xf000-0xffff]
[ 0.243148] pci 0000:03:07.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.243213] pci 0000:07:00.0: [1002:1478] type 01 class 0x060400
[ 0.243227] pci 0000:07:00.0: reg 0x10: [mem 0xfcc00000-0xfcc03fff]
[ 0.243326] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[ 0.243393] pci 0000:07:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:03.1 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.243457] pci 0000:00:03.1: PCI bridge to [bus 07-09]
[ 0.243460] pci 0000:00:03.1: bridge window [io 0xe000-0xefff]
[ 0.243462] pci 0000:00:03.1: bridge window [mem 0xfca00000-0xfccfffff]
[ 0.243464] pci 0000:00:03.1: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.243502] pci 0000:08:00.0: [1002:1479] type 01 class 0x060400
[ 0.243612] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
[ 0.243746] pci 0000:07:00.0: PCI bridge to [bus 08-09]
[ 0.243751] pci 0000:07:00.0: bridge window [io 0xe000-0xefff]
[ 0.243753] pci 0000:07:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
[ 0.243758] pci 0000:07:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.243796] pci 0000:09:00.0: [1002:73ff] type 00 class 0x030000
[ 0.243813] pci 0000:09:00.0: reg 0x10: [mem 0x7c00000000-0x7dffffffff 64bit pref]
[ 0.243824] pci 0000:09:00.0: reg 0x18: [mem 0x7e00000000-0x7e0fffffff 64bit pref]
[ 0.243831] pci 0000:09:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.243839] pci 0000:09:00.0: reg 0x24: [mem 0xfca00000-0xfcafffff]
[ 0.243846] pci 0000:09:00.0: reg 0x30: [mem 0xfcb00000-0xfcb1ffff pref]
[ 0.243867] pci 0000:09:00.0: BAR 0: assigned to efifb
[ 0.243934] pci 0000:09:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.244012] pci 0000:09:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:03.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.244073] pci 0000:09:00.1: [1002:ab28] type 00 class 0x040300
[ 0.244084] pci 0000:09:00.1: reg 0x10: [mem 0xfcb20000-0xfcb23fff]
[ 0.244302] pci 0000:09:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.244397] pci 0000:08:00.0: PCI bridge to [bus 09]
[ 0.244401] pci 0000:08:00.0: bridge window [io 0xe000-0xefff]
[ 0.244404] pci 0000:08:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
[ 0.244408] pci 0000:08:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.244448] pci 0000:0a:00.0: [1022:148a] type 00 class 0x130000
[ 0.244474] pci 0000:0a:00.0: enabling Extended Tags
[ 0.244590] pci 0000:00:07.1: PCI bridge to [bus 0a]
[ 0.244630] pci 0000:0b:00.0: [1022:1485] type 00 class 0x130000
[ 0.244662] pci 0000:0b:00.0: enabling Extended Tags
[ 0.244790] pci 0000:0b:00.1: [1022:1486] type 00 class 0x108000
[ 0.244805] pci 0000:0b:00.1: reg 0x18: [mem 0xfc800000-0xfc8fffff]
[ 0.244816] pci 0000:0b:00.1: reg 0x24: [mem 0xfc908000-0xfc909fff]
[ 0.244824] pci 0000:0b:00.1: enabling Extended Tags
[ 0.244929] pci 0000:0b:00.3: [1022:149c] type 00 class 0x0c0330
[ 0.244941] pci 0000:0b:00.3: reg 0x10: [mem 0xfc700000-0xfc7fffff 64bit]
[ 0.244970] pci 0000:0b:00.3: enabling Extended Tags
[ 0.245012] pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold
[ 0.245085] pci 0000:0b:00.4: [1022:1487] type 00 class 0x040300
[ 0.245093] pci 0000:0b:00.4: reg 0x10: [mem 0xfc900000-0xfc907fff]
[ 0.245118] pci 0000:0b:00.4: enabling Extended Tags
[ 0.245158] pci 0000:0b:00.4: PME# supported from D0 D3hot D3cold
[ 0.245238] pci 0000:00:08.1: PCI bridge to [bus 0b]
[ 0.245242] pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfc9fffff]
[ 0.245429] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.245453] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.245472] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.245496] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.245517] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.245535] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.245552] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.245569] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.245871] iommu: Default domain type: Translated
[ 0.245871] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.245871] SCSI subsystem initialized
[ 0.245871] libata version 3.00 loaded.
[ 0.245871] ACPI: bus type USB registered
[ 0.245871] usbcore: registered new interface driver usbfs
[ 0.245871] usbcore: registered new interface driver hub
[ 0.245871] usbcore: registered new device driver usb
[ 0.245871] pps_core: LinuxPPS API ver. 1 registered
[ 0.245871] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.245871] PTP clock support registered
[ 0.245871] EDAC MC: Ver: 3.0.0
[ 0.245871] Registered efivars operations
[ 0.245871] NetLabel: Initializing
[ 0.245871] NetLabel: domain hash size = 128
[ 0.245871] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.245871] NetLabel: unlabeled traffic allowed by default
[ 0.245871] mctp: management component transport protocol core
[ 0.245871] NET: Registered PF_MCTP protocol family
[ 0.245871] PCI: Using ACPI for IRQ routing
[ 0.250095] PCI: pci_cache_line_size set to 64 bytes
[ 0.250440] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]
[ 0.250441] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[ 0.250442] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[ 0.250442] e820: reserve RAM buffer [mem 0xba3a2000-0xbbffffff]
[ 0.250443] e820: reserve RAM buffer [mem 0xbb9f1000-0xbbffffff]
[ 0.250443] e820: reserve RAM buffer [mem 0xbf000000-0xbfffffff]
[ 0.250444] e820: reserve RAM buffer [mem 0x43f380000-0x43fffffff]
[ 0.250450] pci 0000:09:00.0: vgaarb: setting as boot VGA device
[ 0.250450] pci 0000:09:00.0: vgaarb: bridge control possible
[ 0.250450] pci 0000:09:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.250450] vgaarb: loaded
[ 0.250450] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.250450] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.251920] clocksource: Switched to clocksource tsc-early
[ 0.251969] VFS: Disk quotas dquot_6.6.0
[ 0.251976] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.252010] pnp: PnP ACPI init
[ 0.252047] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 0.252062] system 00:01: [mem 0xfeb80000-0xfebfffff] has been reserved
[ 0.252090] system 00:02: [mem 0xfd200000-0xfd2fffff] has been reserved
[ 0.252187] system 00:04: [io 0x0280-0x028f] has been reserved
[ 0.252188] system 00:04: [io 0x0290-0x029f] has been reserved
[ 0.252189] system 00:04: [io 0x02a0-0x02af] has been reserved
[ 0.252190] system 00:04: [io 0x02b0-0x02bf] has been reserved
[ 0.252309] pnp 00:05: [dma 0 disabled]
[ 0.252415] system 00:06: [io 0x04d0-0x04d1] has been reserved
[ 0.252416] system 00:06: [io 0x040b] has been reserved
[ 0.252417] system 00:06: [io 0x04d6] has been reserved
[ 0.252417] system 00:06: [io 0x0c00-0x0c01] has been reserved
[ 0.252418] system 00:06: [io 0x0c14] has been reserved
[ 0.252419] system 00:06: [io 0x0c50-0x0c51] has been reserved
[ 0.252419] system 00:06: [io 0x0c52] has been reserved
[ 0.252420] system 00:06: [io 0x0c6c] has been reserved
[ 0.252420] system 00:06: [io 0x0c6f] has been reserved
[ 0.252421] system 00:06: [io 0x0cd8-0x0cdf] has been reserved
[ 0.252421] system 00:06: [io 0x0800-0x089f] has been reserved
[ 0.252422] system 00:06: [io 0x0b00-0x0b0f] has been reserved
[ 0.252422] system 00:06: [io 0x0b20-0x0b3f] has been reserved
[ 0.252423] system 00:06: [io 0x0900-0x090f] has been reserved
[ 0.252424] system 00:06: [io 0x0910-0x091f] has been reserved
[ 0.252424] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.252425] system 00:06: [mem 0xfec01000-0xfec01fff] could not be reserved
[ 0.252426] system 00:06: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 0.252427] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.252428] system 00:06: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 0.252429] system 00:06: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.252429] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[ 0.252635] pnp: PnP ACPI: found 7 devices
[ 0.256642] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.256679] NET: Registered PF_INET protocol family
[ 0.256769] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.258355] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.258362] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.258365] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.258428] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.258523] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.258573] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.258587] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.258605] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.258644] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.258647] NET: Registered PF_XDP protocol family
[ 0.258653] pci 0000:00:01.1: PCI bridge to [bus 01]
[ 0.258656] pci 0000:00:01.1: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.258662] pci 0000:03:04.0: PCI bridge to [bus 04]
[ 0.258672] pci 0000:03:06.0: PCI bridge to [bus 05]
[ 0.258683] pci 0000:03:07.0: PCI bridge to [bus 06]
[ 0.258684] pci 0000:03:07.0: bridge window [io 0xf000-0xffff]
[ 0.258688] pci 0000:03:07.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.258695] pci 0000:02:00.2: PCI bridge to [bus 03-06]
[ 0.258697] pci 0000:02:00.2: bridge window [io 0xf000-0xffff]
[ 0.258700] pci 0000:02:00.2: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.258707] pci 0000:00:01.3: PCI bridge to [bus 02-06]
[ 0.258708] pci 0000:00:01.3: bridge window [io 0xf000-0xffff]
[ 0.258711] pci 0000:00:01.3: bridge window [mem 0xfcd00000-0xfcefffff]
[ 0.258715] pci 0000:08:00.0: PCI bridge to [bus 09]
[ 0.258721] pci 0000:08:00.0: bridge window [io 0xe000-0xefff]
[ 0.258725] pci 0000:08:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
[ 0.258727] pci 0000:08:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.258732] pci 0000:07:00.0: PCI bridge to [bus 08-09]
[ 0.258733] pci 0000:07:00.0: bridge window [io 0xe000-0xefff]
[ 0.258736] pci 0000:07:00.0: bridge window [mem 0xfca00000-0xfcbfffff]
[ 0.258739] pci 0000:07:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.258743] pci 0000:00:03.1: PCI bridge to [bus 07-09]
[ 0.258744] pci 0000:00:03.1: bridge window [io 0xe000-0xefff]
[ 0.258747] pci 0000:00:03.1: bridge window [mem 0xfca00000-0xfccfffff]
[ 0.258748] pci 0000:00:03.1: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.258751] pci 0000:00:07.1: PCI bridge to [bus 0a]
[ 0.258757] pci 0000:00:08.1: PCI bridge to [bus 0b]
[ 0.258759] pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfc9fffff]
[ 0.258763] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.258764] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.258764] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.258765] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.258765] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.258766] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfcffffff window]
[ 0.258767] pci_bus 0000:00: resource 10 [mem 0x440000000-0x7fffffffff window]
[ 0.258767] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
[ 0.258768] pci_bus 0000:02: resource 0 [io 0xf000-0xffff]
[ 0.258768] pci_bus 0000:02: resource 1 [mem 0xfcd00000-0xfcefffff]
[ 0.258769] pci_bus 0000:03: resource 0 [io 0xf000-0xffff]
[ 0.258770] pci_bus 0000:03: resource 1 [mem 0xfcd00000-0xfcdfffff]
[ 0.258770] pci_bus 0000:06: resource 0 [io 0xf000-0xffff]
[ 0.258771] pci_bus 0000:06: resource 1 [mem 0xfcd00000-0xfcdfffff]
[ 0.258771] pci_bus 0000:07: resource 0 [io 0xe000-0xefff]
[ 0.258772] pci_bus 0000:07: resource 1 [mem 0xfca00000-0xfccfffff]
[ 0.258772] pci_bus 0000:07: resource 2 [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.258773] pci_bus 0000:08: resource 0 [io 0xe000-0xefff]
[ 0.258773] pci_bus 0000:08: resource 1 [mem 0xfca00000-0xfcbfffff]
[ 0.258774] pci_bus 0000:08: resource 2 [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.258774] pci_bus 0000:09: resource 0 [io 0xe000-0xefff]
[ 0.258775] pci_bus 0000:09: resource 1 [mem 0xfca00000-0xfcbfffff]
[ 0.258775] pci_bus 0000:09: resource 2 [mem 0x7c00000000-0x7e0fffffff 64bit pref]
[ 0.258776] pci_bus 0000:0b: resource 1 [mem 0xfc700000-0xfc9fffff]
[ 0.259015] pci 0000:09:00.1: D0 power state depends on 0000:09:00.0
[ 0.259115] PCI: CLS 64 bytes, default 64
[ 0.259118] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.259119] software IO TLB: mapped [mem 0x00000000b3440000-0x00000000b7440000] (64MB)
[ 0.259132] Trying to unpack rootfs image as initramfs...
[ 0.259143] LVT offset 0 assigned for vector 0x400
[ 0.259184] perf: AMD IBS detected (0x000003ff)
[ 0.259188] amd_uncore: 4 amd_df counters detected
[ 0.259191] amd_uncore: 6 amd_l3 counters detected
[ 0.260354] Initialise system trusted keyrings
[ 0.260359] Key type blacklist registered
[ 0.260373] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.260908] zbud: loaded
[ 0.263398] NET: Registered PF_ALG protocol family
[ 0.263400] xor: automatically using best checksumming function avx
[ 0.263401] Key type asymmetric registered
[ 0.263401] Asymmetric key parser 'x509' registered
[ 0.315723] Freeing initrd memory: 27052K
[ 0.316651] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[ 0.316661] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 0.316683] io scheduler mq-deadline registered
[ 0.316684] io scheduler kyber registered
[ 0.316701] io scheduler bfq registered
[ 0.316836] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.317657] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
[ 0.317692] pcieport 0000:00:01.1: AER: enabled with IRQ 26
[ 0.317776] pcieport 0000:00:01.3: PME: Signaling with IRQ 27
[ 0.317812] pcieport 0000:00:01.3: AER: enabled with IRQ 27
[ 0.317892] pcieport 0000:00:03.1: PME: Signaling with IRQ 28
[ 0.317923] pcieport 0000:00:03.1: AER: enabled with IRQ 28
[ 0.318027] pcieport 0000:00:07.1: PME: Signaling with IRQ 30
[ 0.318054] pcieport 0000:00:07.1: AER: enabled with IRQ 30
[ 0.318119] pcieport 0000:00:08.1: PME: Signaling with IRQ 31
[ 0.318147] pcieport 0000:00:08.1: AER: enabled with IRQ 31
[ 0.318785] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.318839] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.318848] ACPI: button: Power Button [PWRB]
[ 0.318860] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.318877] ACPI: button: Power Button [PWRF]
[ 0.319260] Estimated ratio of average max frequency by base frequency (times 1024): 1155
[ 0.319266] Monitor-Mwait will be used to enter C-1 state
[ 0.319269] ACPI: \_PR_.C000: Found 2 idle states
[ 0.319314] ACPI: \_PR_.C002: Found 2 idle states
[ 0.319362] ACPI: \_PR_.C004: Found 2 idle states
[ 0.319412] ACPI: \_PR_.C006: Found 2 idle states
[ 0.319459] ACPI: \_PR_.C008: Found 2 idle states
[ 0.319505] ACPI: \_PR_.C00A: Found 2 idle states
[ 0.319541] ACPI: \_PR_.C001: Found 2 idle states
[ 0.319587] ACPI: \_PR_.C003: Found 2 idle states
[ 0.319642] ACPI: \_PR_.C005: Found 2 idle states
[ 0.319697] ACPI: \_PR_.C007: Found 2 idle states
[ 0.319749] ACPI: \_PR_.C009: Found 2 idle states
[ 0.319801] ACPI: \_PR_.C00B: Found 2 idle states
[ 0.319924] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.319972] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.320857] Non-volatile memory driver v1.3
[ 0.320860] Linux agpgart interface v0.103
[ 0.419349] ACPI: bus type drm_connector registered
[ 0.419912] loop: module loaded
[ 0.420023] ahci 0000:02:00.1: version 3.0
[ 0.420106] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[ 0.420146] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[ 0.420147] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[ 0.420381] scsi host0: ahci
[ 0.420439] scsi host1: ahci
[ 0.420487] scsi host2: ahci
[ 0.420526] scsi host3: ahci
[ 0.420563] scsi host4: ahci
[ 0.420600] scsi host5: ahci
[ 0.420639] scsi host6: ahci
[ 0.420676] scsi host7: ahci
[ 0.420692] ata1: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80100 irq 41
[ 0.420695] ata2: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80180 irq 41
[ 0.420695] ata3: DUMMY
[ 0.420696] ata4: DUMMY
[ 0.420697] ata5: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80300 irq 41
[ 0.420698] ata6: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80380 irq 41
[ 0.420699] ata7: DUMMY
[ 0.420699] ata8: DUMMY
[ 0.420872] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 0.420888] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[ 0.476299] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000008000410
[ 0.476490] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 0.476502] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[ 0.476503] xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.476541] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 0.476542] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.476543] usb usb1: Product: xHCI Host Controller
[ 0.476543] usb usb1: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 0.476544] usb usb1: SerialNumber: 0000:02:00.0
[ 0.476585] hub 1-0:1.0: USB hub found
[ 0.476596] hub 1-0:1.0: 9 ports detected
[ 0.476824] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.476832] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[ 0.476833] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.476834] usb usb2: Product: xHCI Host Controller
[ 0.476835] usb usb2: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 0.476835] usb usb2: SerialNumber: 0000:02:00.0
[ 0.476864] hub 2-0:1.0: USB hub found
[ 0.476869] hub 2-0:1.0: 3 ports detected
[ 0.477051] xhci_hcd 0000:0b:00.3: xHCI Host Controller
[ 0.477066] xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 3
[ 0.477161] xhci_hcd 0000:0b:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000410
[ 0.477308] xhci_hcd 0000:0b:00.3: xHCI Host Controller
[ 0.477319] xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 4
[ 0.477320] xhci_hcd 0000:0b:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.477334] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 0.477335] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.477336] usb usb3: Product: xHCI Host Controller
[ 0.477336] usb usb3: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 0.477337] usb usb3: SerialNumber: 0000:0b:00.3
[ 0.477364] hub 3-0:1.0: USB hub found
[ 0.477368] hub 3-0:1.0: 4 ports detected
[ 0.477413] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.477420] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[ 0.477421] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.477422] usb usb4: Product: xHCI Host Controller
[ 0.477422] usb usb4: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 0.477423] usb usb4: SerialNumber: 0000:0b:00.3
[ 0.477445] hub 4-0:1.0: USB hub found
[ 0.477450] hub 4-0:1.0: 4 ports detected
[ 0.477503] usbcore: registered new interface driver usbserial_generic
[ 0.477505] usbserial: USB Serial support registered for generic
[ 0.477518] i8042: PNP: No PS/2 controller found.
[ 0.477530] mousedev: PS/2 mouse device common for all mice
[ 0.477568] rtc_cmos 00:03: RTC can wake from S4
[ 0.477722] rtc_cmos 00:03: registered as rtc0
[ 0.477747] rtc_cmos 00:03: setting system clock to 2023-08-01T15:40:40 UTC (1690904440)
[ 0.477763] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 0.477772] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.477780] device-mapper: uevent: version 1.0.3
[ 0.477800] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[ 0.477869] efifb: probing for efifb
[ 0.477874] efifb: No BGRT, not showing boot graphics
[ 0.477875] efifb: framebuffer at 0x7c00000000, using 8128k, total 8128k
[ 0.477876] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 0.477876] efifb: scrolling: redraw
[ 0.477877] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.477893] fbcon: Deferring console take-over
[ 0.477893] fb0: EFI VGA frame buffer device
[ 0.477906] hid: raw HID events driver (C) Jiri Kosina
[ 0.477918] usbcore: registered new interface driver usbhid
[ 0.477919] usbhid: USB HID core driver
[ 0.477967] drop_monitor: Initializing network drop monitor service
[ 0.478003] Initializing XFRM netlink socket
[ 0.478039] NET: Registered PF_INET6 protocol family
[ 0.478993] Segment Routing with IPv6
[ 0.478993] RPL Segment Routing with IPv6
[ 0.478996] In-situ OAM (IOAM) with IPv6
[ 0.479005] mip6: Mobile IPv6
[ 0.479007] NET: Registered PF_PACKET protocol family
[ 0.479330] microcode: CPU0: patch_level=0x0a201025
[ 0.479333] microcode: CPU1: patch_level=0x0a201025
[ 0.479336] microcode: CPU2: patch_level=0x0a201025
[ 0.479339] microcode: CPU3: patch_level=0x0a201025
[ 0.479343] microcode: CPU4: patch_level=0x0a201025
[ 0.479346] microcode: CPU5: patch_level=0x0a201025
[ 0.479349] microcode: CPU6: patch_level=0x0a201025
[ 0.479350] microcode: CPU7: patch_level=0x0a201025
[ 0.479352] microcode: CPU8: patch_level=0x0a201025
[ 0.479355] microcode: CPU9: patch_level=0x0a201025
[ 0.479358] microcode: CPU10: patch_level=0x0a201025
[ 0.479361] microcode: CPU11: patch_level=0x0a201025
[ 0.479362] microcode: Microcode Update Driver: v2.2.
[ 0.479410] resctrl: L3 allocation detected
[ 0.479411] resctrl: MB allocation detected
[ 0.479411] resctrl: L3 monitoring detected
[ 0.479413] IPI shorthand broadcast: enabled
[ 0.479416] AVX2 version of gcm_enc/dec engaged.
[ 0.479442] AES CTR mode by8 optimization enabled
[ 0.479573] sched_clock: Marking stable (479358480, 202293)->(482154363, -2593590)
[ 0.479612] registered taskstats version 1
[ 0.479682] Loading compiled-in X.509 certificates
[ 0.480346] zswap: loaded using pool zstd/zbud
[ 0.480389] Key type .fscrypt registered
[ 0.480389] Key type fscrypt-provisioning registered
[ 0.480528] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[ 0.480536] Key type big_key registered
[ 0.480578] Key type trusted registered
[ 0.481257] Key type encrypted registered
[ 0.481261] ima: Allocated hash algorithm: sha256
[ 0.590021] ima: No architecture policies found
[ 0.590029] evm: Initialising EVM extended attributes:
[ 0.590029] evm: security.selinux
[ 0.590030] evm: security.SMACK64 (disabled)
[ 0.590031] evm: security.SMACK64EXEC (disabled)
[ 0.590031] evm: security.SMACK64TRANSMUTE (disabled)
[ 0.590031] evm: security.SMACK64MMAP (disabled)
[ 0.590032] evm: security.apparmor
[ 0.590032] evm: security.ima
[ 0.590033] evm: security.capability
[ 0.590033] evm: HMAC attrs: 0x1
[ 0.590866] PM: Magic number: 3:809:688
[ 0.590944] RAS: Correctable Errors collector initialized.
[ 0.728840] usb 3-2: new low-speed USB device number 2 using xhci_hcd
[ 0.732173] usb 1-4: new full-speed USB device number 2 using xhci_hcd
[ 0.892398] usb 3-2: New USB device found, idVendor=04fc, idProduct=0538, bcdDevice= 1.10
[ 0.892399] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 0.892400] usb 3-2: Product: Defender 2.4GHz mouse
[ 0.892401] usb 3-2: Manufacturer: MLK
[ 0.900736] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.902103] ata1.00: ATA-10: TOSHIBA HDWD260, KQ000A, max UDMA/100
[ 0.902368] ata1.00: 11721045168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.903708] ata1.00: configured for UDMA/100
[ 0.903765] scsi 0:0:0:0: Direct-Access ATA TOSHIBA HDWD260 0A PQ: 0 ANSI: 5
[ 0.903875] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.903929] sd 0:0:0:0: [sda] Drive-managed SMR disk
[ 0.903932] sd 0:0:0:0: [sda] 11721045168 512-byte logical blocks: (6.00 TB/5.46 TiB)
[ 0.903933] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 0.903940] sd 0:0:0:0: [sda] Write Protect is off
[ 0.903941] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.903951] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.903964] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.924504] input: MLK Defender 2.4GHz mouse Mouse as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb3/3-2/3-2:1.0/0003:04FC:0538.0001/input/input2
[ 0.924543] input: MLK Defender 2.4GHz mouse Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb3/3-2/3-2:1.0/0003:04FC:0538.0001/input/input3
[ 0.936612] sd 0:0:0:0: [sda] Attached SCSI disk
[ 0.982211] hid-generic 0003:04FC:0538.0001: input,hiddev96,hidraw0: USB HID v1.10 Mouse [MLK Defender 2.4GHz mouse] on usb-0000:0b:00.3-2/input0
[ 1.002193] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.019345] usb 4-1: New USB device found, idVendor=1058, idProduct=1042, bcdDevice=10.19
[ 1.019346] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=5
[ 1.019347] usb 4-1: Product: Elements 1042
[ 1.019348] usb 4-1: Manufacturer: Western Digital
[ 1.019348] usb 4-1: SerialNumber: 575833314138323639313331
[ 1.146892] usb 3-3: new full-speed USB device number 3 using xhci_hcd
[ 1.280471] tsc: Refined TSC clocksource calibration: 3699.998 MHz
[ 1.280477] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6aaaa638e3b, max_idle_ns: 881590585313 ns
[ 1.280504] clocksource: Switched to clocksource tsc
[ 1.303669] usb 3-3: New USB device found, idVendor=2357, idProduct=0604, bcdDevice= 2.00
[ 1.303673] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.303674] usb 3-3: Product: TP-Nmnk UB500 Adapter
[ 1.303675] usb 3-3: Manufacturer:
[ 1.303676] usb 3-3: SerialNumber: E848B8C82000
[ 1.377155] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.379561] ata2.00: ATA-10: TOSHIBA HDWD260, KQ000A, max UDMA/100
[ 1.380629] ata2.00: 11721045168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.382608] ata2.00: configured for UDMA/100
[ 1.382725] scsi 1:0:0:0: Direct-Access ATA TOSHIBA HDWD260 0A PQ: 0 ANSI: 5
[ 1.382882] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 1.382923] sd 1:0:0:0: [sdb] Drive-managed SMR disk
[ 1.382926] sd 1:0:0:0: [sdb] 11721045168 512-byte logical blocks: (6.00 TB/5.46 TiB)
[ 1.382927] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[ 1.382937] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.382940] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.382952] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.382967] sd 1:0:0:0: [sdb] Preferred minimum I/O size 4096 bytes
[ 1.417516] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.729260] usb 1-4: New USB device found, idVendor=12c9, idProduct=1020, bcdDevice= 1.01
[ 1.729264] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.729265] usb 1-4: Product: Gaming Mouse
[ 1.729266] usb 1-4: Manufacturer: NEWMEN
[ 1.765185] input: NEWMEN Gaming Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-4/1-4:1.0/0003:12C9:1020.0002/input/input5
[ 1.765254] input: NEWMEN Gaming Mouse Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-4/1-4:1.0/0003:12C9:1020.0002/input/input6
[ 1.820567] hid-generic 0003:12C9:1020.0002: input,hiddev97,hidraw1: USB HID v1.10 Mouse [NEWMEN Gaming Mouse] on usb-0000:02:00.0-4/input0
[ 1.831127] input: NEWMEN Gaming Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-4/1-4:1.1/0003:12C9:1020.0003/input/input8
[ 1.853836] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.856236] ata5.00: ATA-10: TOSHIBA HDWD260, KQ000A, max UDMA/100
[ 1.857297] ata5.00: 11721045168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.861926] ata5.00: configured for UDMA/100
[ 1.862049] scsi 4:0:0:0: Direct-Access ATA TOSHIBA HDWD260 0A PQ: 0 ANSI: 5
[ 1.862209] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 1.862257] sd 4:0:0:0: [sdc] Drive-managed SMR disk
[ 1.862260] sd 4:0:0:0: [sdc] 11721045168 512-byte logical blocks: (6.00 TB/5.46 TiB)
[ 1.862262] sd 4:0:0:0: [sdc] 4096-byte physical blocks
[ 1.862272] sd 4:0:0:0: [sdc] Write Protect is off
[ 1.862274] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 1.862286] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.862301] sd 4:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
[ 1.886949] hid-generic 0003:12C9:1020.0003: input,hidraw2: USB HID v1.11 Keyboard [NEWMEN Gaming Mouse] on usb-0000:02:00.0-4/input1
[ 1.897554] sd 4:0:0:0: [sdc] Attached SCSI disk
[ 2.010474] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[ 2.328047] usb 1-5: New USB device found, idVendor=258a, idProduct=001a, bcdDevice=32.09
[ 2.328051] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.328052] usb 1-5: Product: Gaming KB
[ 2.328053] usb 1-5: Manufacturer: Gaming KB
[ 2.330443] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.330568] ata6.00: ATA-10: 120GB SSD, P0127C, max UDMA/133
[ 2.330725] ata6.00: NCQ Send/Recv Log not supported
[ 2.330727] ata6.00: 234441648 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 2.331014] ata6.00: NCQ Send/Recv Log not supported
[ 2.331017] ata6.00: configured for UDMA/133
[ 2.331136] scsi 5:0:0:0: Direct-Access ATA 120GB SSD 7C PQ: 0 ANSI: 5
[ 2.331316] sd 5:0:0:0: Attached scsi generic sg3 type 0
[ 2.331378] sd 5:0:0:0: [sdd] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[ 2.331390] sd 5:0:0:0: [sdd] Write Protect is off
[ 2.331393] sd 5:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 2.331406] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.331422] sd 5:0:0:0: [sdd] Preferred minimum I/O size 512 bytes
[ 2.333546] sdd: sdd1 sdd2
[ 2.333596] sd 5:0:0:0: [sdd] Attached SCSI disk
[ 2.334132] Freeing unused decrypted memory: 2036K
[ 2.334353] Freeing unused kernel image (initmem) memory: 2752K
[ 2.347889] input: Gaming KB Gaming KB as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-5/1-5:1.0/0003:258A:001A.0004/input/input9
[ 2.350207] Write protecting the kernel read-only data: 24576k
[ 2.350594] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 2.350660] Freeing unused kernel image (rodata/data gap) memory: 684K
[ 2.371041] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.371053] Run /init as init process
[ 2.371053] with arguments:
[ 2.371054] /init
[ 2.371054] with environment:
[ 2.371054] HOME=/
[ 2.371055] TERM=linux
[ 2.371055] BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate
[ 2.371055] calculate=video:amdgpu
[ 2.371056] splash=off
[ 2.390347] dracut: Calculate-23
[ 2.403583] hid-generic 0003:258A:001A.0004: input,hidraw3: USB HID v1.11 Keyboard [Gaming KB Gaming KB ] on usb-0000:02:00.0-5/input0
[ 2.416613] dracut: TuxOnIce premodule started
[ 2.416640] dracut: Kernel has no tuxonice support, aborting
[ 2.419461] fbcon: Taking over console
[ 2.419493] Console: switching to colour frame buffer device 240x67
[ 2.427200] input: Gaming KB Gaming KB System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-5/1-5:1.1/0003:258A:001A.0005/input/input10
[ 2.465323] nvme nvme0: pci function 0000:01:00.0
[ 2.465717] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[ 2.465756] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[ 2.466112] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[ 2.466427] ccp 0000:0b:00.1: enabling device (0000 -> 0002)
[ 2.466511] ccp 0000:0b:00.1: ccp: unable to access the device: you might be running a broken BIOS.
[ 2.466523] ccp 0000:0b:00.1: psp enabled
[ 2.466566] usb-storage 4-1:1.0: USB Mass Storage device detected
[ 2.466615] scsi host8: usb-storage 4-1:1.0
[ 2.466665] usbcore: registered new interface driver usb-storage
[ 2.470660] nvme nvme0: missing or invalid SUBNQN field.
[ 2.478566] nvme nvme0: 15/0/0 default/read/poll queues
[ 2.482659] nvme0n1: p1 p2 p3 p4
[ 2.483288] usbcore: registered new interface driver uas
[ 2.483656] input: Gaming KB Gaming KB Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-5/1-5:1.1/0003:258A:001A.0005/input/input11
[ 2.483701] input: Gaming KB Gaming KB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-5/1-5:1.1/0003:258A:001A.0005/input/input12
[ 2.483778] hid-generic 0003:258A:001A.0005: input,hiddev98,hidraw4: USB HID v1.11 Keyboard [Gaming KB Gaming KB ] on usb-0000:02:00.0-5/input1
[ 2.485722] BTRFS: device label CLD-23 devid 1 transid 273903 /dev/sdd1 scanned by (udev-worker) (478)
[ 2.488862] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[ 3.292611] [drm] amdgpu kernel modesetting enabled.
[ 3.292647] amdgpu: Ignoring ACPI CRAT on non-APU system
[ 3.292648] amdgpu: Virtual CRAT table created for CPU
[ 3.292653] amdgpu: Topology: Add CPU node
[ 3.292718] amdgpu 0000:09:00.0: enabling device (0006 -> 0007)
[ 3.292744] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1DA2:0x448E 0xC1).
[ 3.292749] [drm] register mmio base: 0xFCA00000
[ 3.292750] [drm] register mmio size: 1048576
[ 3.294879] [drm] add ip block number 0 <nv_common>
[ 3.294879] [drm] add ip block number 1 <gmc_v10_0>
[ 3.294880] [drm] add ip block number 2 <navi10_ih>
[ 3.294880] [drm] add ip block number 3 <psp>
[ 3.294881] [drm] add ip block number 4 <smu>
[ 3.294881] [drm] add ip block number 5 <dm>
[ 3.294881] [drm] add ip block number 6 <gfx_v10_0>
[ 3.294882] [drm] add ip block number 7 <sdma_v5_2>
[ 3.294882] [drm] add ip block number 8 <vcn_v3_0>
[ 3.294882] [drm] add ip block number 9 <jpeg_v3_0>
[ 3.294889] amdgpu 0000:09:00.0: amdgpu: Fetched VBIOS from VFCT
[ 3.294890] amdgpu: ATOM BIOS: 113-3E4480U-S6L
[ 3.294894] [drm] VCN(0) decode is enabled in VM mode
[ 3.294894] [drm] VCN(0) encode is enabled in VM mode
[ 3.294896] [drm] JPEG decode is enabled in VM mode
[ 3.294933] Console: switching to colour dummy device 80x25
[ 3.294946] amdgpu 0000:09:00.0: vgaarb: deactivate vga console
[ 3.294947] amdgpu 0000:09:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 3.295019] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 3.295023] amdgpu 0000:09:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 3.295024] amdgpu 0000:09:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 3.295025] amdgpu 0000:09:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[ 3.295032] [drm] Detected VRAM RAM=8176M, BAR=8192M
[ 3.295033] [drm] RAM width 128bits GDDR6
[ 3.295061] [drm] amdgpu: 8176M of VRAM memory ready
[ 3.295062] [drm] amdgpu: 7956M of GTT memory ready.
[ 3.295066] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 3.295204] [drm] PCIE GART of 512M enabled (table at 0x00000081FEB00000).
[ 3.295295] amdgpu 0000:09:00.0: amdgpu: PSP runtime database doesn't exist
[ 3.295298] amdgpu 0000:09:00.0: amdgpu: PSP runtime database doesn't exist
[ 3.467215] scsi 8:0:0:0: Direct-Access WD Elements 1042 1019 PQ: 0 ANSI: 6
[ 3.467593] sd 8:0:0:0: [sde] 1953519616 512-byte logical blocks: (1.00 TB/932 GiB)
[ 3.467892] sd 8:0:0:0: [sde] Write Protect is off
[ 3.467894] sd 8:0:0:0: [sde] Mode Sense: 47 00 10 08
[ 3.468034] sd 8:0:0:0: Attached scsi generic sg4 type 0
[ 3.468192] sd 8:0:0:0: [sde] No Caching mode page found
[ 3.468194] sd 8:0:0:0: [sde] Assuming drive cache: write through
[ 3.473459] sde: sde1
[ 3.473561] sd 8:0:0:0: [sde] Attached SCSI disk
[ 5.995940] amdgpu 0000:09:00.0: amdgpu: STB initialized to 2048 entries
[ 5.995990] [drm] Loading DMUB firmware via PSP: version=0x02020017
[ 5.996396] [drm] use_doorbell being set to: [true]
[ 5.996404] [drm] use_doorbell being set to: [true]
[ 5.996456] [drm] Found VCN firmware Version ENC: 1.26 DEC: 2 VEP: 0 Revision: 0
[ 5.996460] amdgpu 0000:09:00.0: amdgpu: Will use PSP to load VCN firmware
[ 6.075536] [drm] reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 6.197519] amdgpu 0000:09:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 6.218693] amdgpu 0000:09:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 6.218713] amdgpu 0000:09:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b2a00 (59.42.0)
[ 6.218715] amdgpu 0000:09:00.0: amdgpu: SMU driver if version not matched
[ 6.218747] amdgpu 0000:09:00.0: amdgpu: use vbios provided pptable
[ 6.268731] amdgpu 0000:09:00.0: amdgpu: SMU is initialized successfully!
[ 6.268893] [drm] Display Core initialized with v3.2.207!
[ 6.270061] [drm] DMUB hardware initialized: version=0x02020017
[ 6.302412] [drm] kiq ring mec 2 pipe 1 q 0
[ 6.306904] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[ 6.307233] [drm] JPEG decode initialized successfully.
[ 6.308167] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 6.308257] amdgpu: sdma_bitmap: ffff
[ 6.332193] memmap_init_zone_device initialised 2097152 pages in 7ms
[ 6.332199] amdgpu: HMM registered 8176MB device memory
[ 6.332601] amdgpu: SRAT table not found
[ 6.332602] amdgpu: Virtual CRAT table created for GPU
[ 6.332726] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 6.332728] kfd kfd: amdgpu: added device 1002:73ff
[ 6.332746] amdgpu 0000:09:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 32
[ 6.332798] amdgpu 0000:09:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 6.332799] amdgpu 0000:09:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 6.332800] amdgpu 0000:09:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 6.332800] amdgpu 0000:09:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 6.332801] amdgpu 0000:09:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 6.332801] amdgpu 0000:09:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 6.332802] amdgpu 0000:09:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 6.332802] amdgpu 0000:09:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 6.332803] amdgpu 0000:09:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 6.332803] amdgpu 0000:09:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[ 6.332804] amdgpu 0000:09:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 6.332804] amdgpu 0000:09:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 6.332805] amdgpu 0000:09:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 1
[ 6.332805] amdgpu 0000:09:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 1
[ 6.332806] amdgpu 0000:09:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 1
[ 6.332807] amdgpu 0000:09:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 1
[ 6.333816] amdgpu 0000:09:00.0: amdgpu: Using BACO for runtime pm
[ 6.334013] [drm] Initialized amdgpu 3.49.0 20150101 for 0000:09:00.0 on minor 0
[ 6.337855] fbcon: amdgpudrmfb (fb0) is primary device
[ 6.337935] [drm] DSC precompute is not needed.
[ 6.436997] Console: switching to colour frame buffer device 240x67
[ 6.453559] amdgpu 0000:09:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 6.476044] dracut: TuxOnIce lvmfix started
[ 6.476828] dracut: TuxOnIce udev should be now fully settled
[ 6.482587] BTRFS info (device sdd1): using crc32c (crc32c-intel) checksum algorithm
[ 6.482591] BTRFS info (device sdd1): enabling ssd optimizations
[ 6.482593] BTRFS info (device sdd1): using free space tree
[ 6.568232] dracut: Mounted root filesystem /dev/sdd1
[ 6.636476] dracut: Switching root
[ 7.389180] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 7.389185] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[ 7.389868] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[ 7.414614] input: PC Speaker as /devices/platform/pcspkr/input/input13
[ 7.420951] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[ 7.420953] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 7.433455] r8169 0000:06:00.0 eth0: RTL8168h/8111h, a8:a1:59:15:92:8f, XID 541, IRQ 80
[ 7.433458] r8169 0000:06:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 7.444672] md0: detected capacity change from 0 to 35163134976
[ 7.445218] r8169 0000:06:00.0 enp6s0: renamed from eth0
[ 7.493215] Bluetooth: Core ver 2.22
[ 7.493228] NET: Registered PF_BLUETOOTH protocol family
[ 7.493229] Bluetooth: HCI device and connection manager initialized
[ 7.493232] Bluetooth: HCI socket layer initialized
[ 7.493233] Bluetooth: L2CAP socket layer initialized
[ 7.493236] Bluetooth: SCO socket layer initialized
[ 7.516002] SVM: TSC scaling supported
[ 7.516004] kvm: Nested Virtualization enabled
[ 7.516005] SVM: kvm: Nested Paging enabled
[ 7.516009] SVM: Virtual VMLOAD VMSAVE supported
[ 7.516009] SVM: Virtual GIF supported
[ 7.516010] SVM: LBR virtualization supported
[ 7.523947] MCE: In-kernel MCE decoding enabled.
[ 7.524023] usbcore: registered new interface driver btusb
[ 7.525352] Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000b lmp_ver=0a lmp_subver=8761
[ 7.526414] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 7.526416] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_fw.bin
[ 7.530176] snd_hda_intel 0000:09:00.1: enabling device (0000 -> 0002)
[ 7.530292] snd_hda_intel 0000:09:00.1: Force to non-snoop mode
[ 7.530475] snd_hda_intel 0000:0b:00.4: enabling device (0000 -> 0002)
[ 7.531034] intel_rapl_common: Found RAPL domain package
[ 7.531036] intel_rapl_common: Found RAPL domain core
[ 7.533025] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_config.bin
[ 7.533046] Bluetooth: hci0: RTL: cfg_sz 6, total sz 30210
[ 7.536966] snd_hda_intel 0000:09:00.1: bound 0000:09:00.0 (ops __SCT__tp_func_dcn_fpu [amdgpu])
[ 7.537721] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:07:00.0/0000:08:00.0/0000:09:00.1/sound/card0/input14
[ 7.537749] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:07:00.0/0000:08:00.0/0000:09:00.1/sound/card0/input15
[ 7.537771] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:07:00.0/0000:08:00.0/0000:09:00.1/sound/card0/input16
[ 7.537794] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:07:00.0/0000:08:00.0/0000:09:00.1/sound/card0/input17
[ 7.537811] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:07:00.0/0000:08:00.0/0000:09:00.1/sound/card0/input18
[ 7.547514] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 7.547516] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 7.547517] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 7.547518] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 7.547518] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 7.547519] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19
[ 7.547520] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18
[ 7.547520] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a
[ 7.558795] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input19
[ 7.558827] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input20
[ 7.558845] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input21
[ 7.558866] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input22
[ 7.558885] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input23
[ 7.799343] Bluetooth: hci0: RTL: fw version 0xdfc6d922
[ 8.029136] BTRFS info (device sdd1: state M): use zstd compression, level 3
[ 8.091871] zram: Added device: zram0
[ 8.109856] zram0: detected capacity change from 0 to 65178384
[ 8.118064] Adding 32589188k swap on /dev/zram0. Priority:100 extents:1 across:32589188k SSFS
[ 8.496197] fuse: init (API version 7.37)
[ 8.519962] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 8.519964] Bluetooth: BNEP filters: protocol multicast
[ 8.519967] Bluetooth: BNEP socket layer initialized
[ 8.520520] Bluetooth: MGMT ver 1.22
[ 8.750212] Generic FE-GE Realtek PHY r8169-0-600:00: attached PHY driver (mii_bus:phy_addr=r8169-0-600:00, irq=MAC)
[ 8.940983] r8169 0000:06:00.0 enp6s0: Link is Down
[ 9.246367] NET: Registered PF_QIPCRTR protocol family
[ 11.689282] r8169 0000:06:00.0 enp6s0: Link is Up - 1Gbps/Full - flow control off
[ 11.689292] IPv6: ADDRCONF(NETDEV_CHANGE): enp6s0: link becomes ready
[ 62.704817] PPP generic driver version 2.4.2
[ 62.777763] NET: Registered PF_PPPOX protocol family
[ 64.458734] exFAT-fs (sde1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 64.485262] Bluetooth: RFCOMM TTY layer initialized
[ 64.485267] Bluetooth: RFCOMM socket layer initialized
[ 64.485268] Bluetooth: RFCOMM ver 1.11
[ 66.504216] EXT4-fs (md0): mounted filesystem with ordered data mode. Quota mode: none.
[ 76.128469] ntfs3: Max link count 4000
[ 76.128471] ntfs3: Enabled Linux POSIX ACLs support
[ 76.128471] ntfs3: Read-only LZX/Xpress compression included
[ 76.128601] ntfs3: Unknown parameter 'windows_names'
[ 90.696728] input: RustDesk UInput Keyboard as /devices/virtual/input/input24
[ 90.696896] input: mouce-library-fake-mouse as /devices/virtual/input/input25
|