(midi) [~/work/linux] git describe HEAD v6.2.8-1-ga824da9e6e4b (midi) [~/work/linux] git format-patch -1 0001-PCI-Add-quirk-to-clear-AMD-strap_15B8-NO_SOFT_RESET-.patch (midi) [~/work/linux] cat 0001-PCI-Add-quirk-to-clear-AMD-strap_15B8-NO_SOFT_RESET-.patch From a824da9e6e4b3b895241afff81d938ae447ef271 Mon Sep 17 00:00:00 2001 From: Basavaraj Natikar Date: Wed, 29 Mar 2023 22:58:59 +0530 Subject: [PATCH] PCI: Add quirk to clear AMD strap_15B8 NO_SOFT_RESET dev2 f0 The AMD [1022:15b8] USB controller loses some internal functional MSI-X context when transitioning from D0 to D3hot. BIOS normally traps D0->D3hot and D3hot->D0 transitions so it can save and restore that internal context, but some firmware in the field lacks due to AMD_15B8_RCC_DEV2_EPF0_STRAP2 NO_SOFT_RESET bit is set. Hence add quirk to clear AMD_15B8_RCC_DEV2_EPF0_STRAP2 NO_SOFT_RESET bit before USB controller initialization during boot. Reported-by: Thomas Glanzmann Link: https://lore.kernel.org/linux-usb/Y%2Fz9GdHjPyF2rNG3@glanzmann.de/T/#u Signed-off-by: Basavaraj Natikar Reviewed-by: Mario Limonciello --- arch/x86/pci/fixup.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/arch/x86/pci/fixup.c b/arch/x86/pci/fixup.c index 615a76d70019..bf5161dcf89e 100644 --- a/arch/x86/pci/fixup.c +++ b/arch/x86/pci/fixup.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include @@ -824,3 +825,23 @@ static void rs690_fix_64bit_dma(struct pci_dev *pdev) DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7910, rs690_fix_64bit_dma); #endif + +#ifdef CONFIG_AMD_NB + +#define AMD_15B8_RCC_DEV2_EPF0_STRAP2 0x10136008 +#define AMD_15B8_RCC_DEV2_EPF0_STRAP2_NO_SOFT_RESET_DEV2_F0_MASK 0x00000080L + +static void quirk_clear_strap_no_soft_reset_dev2_f0(struct pci_dev *dev) +{ + u32 data; + + if (!amd_smn_read(0, AMD_15B8_RCC_DEV2_EPF0_STRAP2, &data)) { + data &= ~AMD_15B8_RCC_DEV2_EPF0_STRAP2_NO_SOFT_RESET_DEV2_F0_MASK; + if (amd_smn_write(0, AMD_15B8_RCC_DEV2_EPF0_STRAP2, data)) + pci_err(dev, "Failed to write data 0x%x\n", data); + } else { + pci_err(dev, "Failed to read data\n"); + } +} +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x15b8, quirk_clear_strap_no_soft_reset_dev2_f0); +#endif -- 2.39.2 (midi) [~/work/linux] lsmod | grep amdgpu (midi) [~/work/linux] cat /proc/modules overlay 184320 0 - Live 0x0000000000000000 bridge 376832 0 - Live 0x0000000000000000 stp 16384 1 bridge, Live 0x0000000000000000 llc 16384 2 bridge,stp, Live 0x0000000000000000 binfmt_misc 28672 1 - Live 0x0000000000000000 nls_ascii 16384 1 - Live 0x0000000000000000 nls_cp437 20480 1 - Live 0x0000000000000000 vfat 24576 1 - Live 0x0000000000000000 fat 102400 1 vfat, Live 0x0000000000000000 intel_rapl_msr 20480 0 - Live 0x0000000000000000 intel_rapl_common 32768 1 intel_rapl_msr, Live 0x0000000000000000 edac_mce_amd 45056 0 - Live 0x0000000000000000 kvm_amd 188416 0 - Live 0x0000000000000000 snd_hda_codec_realtek 192512 1 - Live 0x0000000000000000 snd_hda_codec_generic 114688 1 snd_hda_codec_realtek, Live 0x0000000000000000 kvm 1302528 1 kvm_amd, Live 0x0000000000000000 snd_hda_codec_hdmi 90112 1 - Live 0x0000000000000000 irqbypass 16384 1 kvm, Live 0x0000000000000000 snd_hda_intel 61440 0 - Live 0x0000000000000000 ghash_clmulni_intel 16384 0 - Live 0x0000000000000000 snd_intel_dspcfg 36864 1 snd_hda_intel, Live 0x0000000000000000 sha512_ssse3 49152 0 - Live 0x0000000000000000 snd_intel_sdw_acpi 20480 1 snd_intel_dspcfg, Live 0x0000000000000000 sha512_generic 16384 1 sha512_ssse3, Live 0x0000000000000000 snd_hda_codec 208896 4 snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel, Live 0x0000000000000000 eeepc_wmi 16384 0 - Live 0x0000000000000000 snd_hda_core 143360 5 snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec, Live 0x0000000000000000 asus_wmi 69632 1 eeepc_wmi, Live 0x0000000000000000 snd_hwdep 20480 1 snd_hda_codec, Live 0x0000000000000000 aesni_intel 401408 0 - Live 0x0000000000000000 platform_profile 16384 1 asus_wmi, Live 0x0000000000000000 crypto_simd 20480 1 aesni_intel, Live 0x0000000000000000 snd_pcm 188416 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core, Live 0x0000000000000000 battery 28672 1 asus_wmi, Live 0x0000000000000000 cryptd 32768 2 ghash_clmulni_intel,crypto_simd, Live 0x0000000000000000 sparse_keymap 16384 1 asus_wmi, Live 0x0000000000000000 ledtrig_audio 16384 2 snd_hda_codec_generic,asus_wmi, Live 0x0000000000000000 snd_timer 53248 1 snd_pcm, Live 0x0000000000000000 rapl 20480 0 - Live 0x0000000000000000 sp5100_tco 20480 0 - Live 0x0000000000000000 rfkill 40960 2 asus_wmi, Live 0x0000000000000000 wmi_bmof 16384 0 - Live 0x0000000000000000 pcspkr 16384 0 - Live 0x0000000000000000 snd 147456 8 snd_hda_codec_realtek,snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer, Live 0x0000000000000000 k10temp 16384 0 - Live 0x0000000000000000 watchdog 53248 1 sp5100_tco, Live 0x0000000000000000 ccp 135168 1 kvm_amd, Live 0x0000000000000000 soundcore 16384 1 snd, Live 0x0000000000000000 rng_core 24576 1 ccp, Live 0x0000000000000000 joydev 28672 0 - Live 0x0000000000000000 acpi_cpufreq 32768 0 - Live 0x0000000000000000 button 24576 0 - Live 0x0000000000000000 evdev 28672 6 - Live 0x0000000000000000 parport_pc 40960 0 - Live 0x0000000000000000 ppdev 24576 0 - Live 0x0000000000000000 lp 20480 0 - Live 0x0000000000000000 parport 81920 3 parport_pc,ppdev,lp, Live 0x0000000000000000 drm 708608 0 - Live 0x0000000000000000 loop 36864 0 - Live 0x0000000000000000 fuse 208896 1 - Live 0x0000000000000000 efi_pstore 16384 0 - Live 0x0000000000000000 dm_mod 208896 0 - Live 0x0000000000000000 configfs 61440 1 - Live 0x0000000000000000 ip_tables 40960 0 - Live 0x0000000000000000 x_tables 65536 1 ip_tables, Live 0x0000000000000000 autofs4 57344 4 - Live 0x0000000000000000 ext4 1118208 1 - Live 0x0000000000000000 crc16 16384 1 ext4, Live 0x0000000000000000 mbcache 20480 1 ext4, Live 0x0000000000000000 jbd2 196608 1 ext4, Live 0x0000000000000000 btrfs 1998848 0 - Live 0x0000000000000000 blake2b_generic 20480 0 - Live 0x0000000000000000 efivarfs 28672 1 - Live 0x0000000000000000 raid10 77824 0 - Live 0x0000000000000000 raid456 196608 0 - Live 0x0000000000000000 async_raid6_recov 24576 1 raid456, Live 0x0000000000000000 async_memcpy 20480 2 raid456,async_raid6_recov, Live 0x0000000000000000 async_pq 20480 2 raid456,async_raid6_recov, Live 0x0000000000000000 async_xor 20480 3 raid456,async_raid6_recov,async_pq, Live 0x0000000000000000 async_tx 20480 5 raid456,async_raid6_recov,async_memcpy,async_pq,async_xor, Live 0x0000000000000000 xor 24576 2 btrfs,async_xor, Live 0x0000000000000000 raid6_pq 122880 4 btrfs,raid456,async_raid6_recov,async_pq, Live 0x0000000000000000 libcrc32c 16384 2 btrfs,raid456, Live 0x0000000000000000 crc32c_generic 16384 0 - Live 0x0000000000000000 raid1 61440 0 - Live 0x0000000000000000 raid0 24576 0 - Live 0x0000000000000000 multipath 20480 0 - Live 0x0000000000000000 linear 20480 0 - Live 0x0000000000000000 md_mod 221184 6 raid10,raid456,raid1,raid0,multipath,linear, Live 0x0000000000000000 hid_generic 16384 0 - Live 0x0000000000000000 nvme 61440 2 - Live 0x0000000000000000 usbhid 69632 0 - Live 0x0000000000000000 hid 167936 2 hid_generic,usbhid, Live 0x0000000000000000 nvme_core 184320 3 nvme, Live 0x0000000000000000 ahci 49152 0 - Live 0x0000000000000000 xhci_pci 24576 0 - Live 0x0000000000000000 libahci 57344 1 ahci, Live 0x0000000000000000 t10_pi 20480 1 nvme_core, Live 0x0000000000000000 xhci_hcd 348160 1 xhci_pci, Live 0x0000000000000000 libata 442368 2 ahci,libahci, Live 0x0000000000000000 r8169 110592 0 - Live 0x0000000000000000 realtek 40960 1 - Live 0x0000000000000000 crc64_rocksoft 20480 1 t10_pi, Live 0x0000000000000000 mdio_devres 16384 1 r8169, Live 0x0000000000000000 crc64 20480 1 crc64_rocksoft, Live 0x0000000000000000 crc32_pclmul 16384 0 - Live 0x0000000000000000 usbcore 393216 3 usbhid,xhci_pci,xhci_hcd, Live 0x0000000000000000 crc_t10dif 20480 1 t10_pi, Live 0x0000000000000000 crc32c_intel 24576 3 - Live 0x0000000000000000 scsi_mod 315392 1 libata, Live 0x0000000000000000 libphy 200704 3 r8169,realtek,mdio_devres, Live 0x0000000000000000 crct10dif_generic 16384 0 - Live 0x0000000000000000 i2c_piix4 28672 0 - Live 0x0000000000000000 crct10dif_pclmul 16384 1 - Live 0x0000000000000000 scsi_common 16384 2 libata,scsi_mod, Live 0x0000000000000000 usb_common 20480 2 xhci_hcd,usbcore, Live 0x0000000000000000 video 73728 1 asus_wmi, Live 0x0000000000000000 crct10dif_common 16384 3 crc_t10dif,crct10dif_generic,crct10dif_pclmul, Live 0x0000000000000000 wmi 40960 3 asus_wmi,wmi_bmof,video, Live 0x0000000000000000 gpio_amdpt 20480 0 - Live 0x0000000000000000 gpio_generic 20480 1 gpio_amdpt, Live 0x0000000000000000 (midi) [~/work/linux] dmesg [ 0.000000] Linux version 6.2.8+ (sithglan@midi) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #21 SMP PREEMPT_DYNAMIC Wed Mar 29 21:33:38 CEST 2023 [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.2.8+ root=UUID=e9d7e2ef-75c8-44f6-8e7a-e173446d456a ro mitigations=off apparmor=0 net.ifnames=0 [ 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 0x020: 'AVX-512 opmask' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256' [ 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[5]: 832, xstate_sizes[5]: 64 [ 0.000000] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512 [ 0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024 [ 0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8 [ 0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 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-0x0000000009afefff] usable [ 0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable [ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20ffff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000000a210000-0x000000000affffff] usable [ 0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b020fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000000b021000-0x000000006fbecfff] usable [ 0.000000] BIOS-e820: [mem 0x000000006fbed000-0x0000000076438fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000076439000-0x00000000765b4fff] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000765b5000-0x00000000785b4fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000785b5000-0x000000007a07efff] reserved [ 0.000000] BIOS-e820: [mem 0x000000007a07f000-0x000000007a1fefff] type 20 [ 0.000000] BIOS-e820: [mem 0x000000007a1ff000-0x000000007bffafff] usable [ 0.000000] BIOS-e820: [mem 0x000000007bffb000-0x000000007cffffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000007d7f5000-0x000000007fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000001057ffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000001058000000-0x0000001077ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000107eec0000-0x00000010a01fffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] efi: EFI v2.80 by American Megatrends [ 0.000000] efi: ACPI=0x765b4000 ACPI 2.0=0x765b4014 TPMFinalLog=0x7856b000 SMBIOS=0x796a7000 SMBIOS 3.0=0x796a6000 MEMATTR=0x6a2cb018 ESRT=0x6c825898 [ 0.000000] efi: Remove mem52: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map [ 0.000000] e820: remove [mem 0xf0000000-0xf7ffffff] reserved [ 0.000000] efi: Remove mem53: MMIO range=[0xfd000000-0xfedfffff] (30MB) from e820 map [ 0.000000] e820: remove [mem 0xfd000000-0xfedfffff] reserved [ 0.000000] efi: Not removing mem54: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map [ 0.000000] efi: Remove mem55: MMIO range=[0xfee01000-0xffffffff] (17MB) from e820 map [ 0.000000] e820: remove [mem 0xfee01000-0xffffffff] reserved [ 0.000000] efi: Remove mem58: MMIO range=[0x1080000000-0x10a01fffff] (514MB) from e820 map [ 0.000000] e820: remove [mem 0x1080000000-0x10a01fffff] reserved [ 0.000000] SMBIOS 3.5.0 present. [ 0.000000] DMI: ASUS System Product Name/TUF GAMING B650M-PLUS, BIOS 1222 02/24/2023 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 4491.633 MHz processor [ 0.000118] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000119] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000123] last_pfn = 0x1058000 max_arch_pfn = 0x400000000 [ 0.000126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.000669] last_pfn = 0x7bffb max_arch_pfn = 0x400000000 [ 0.002817] esrt: Reserving ESRT space from 0x000000006c825898 to 0x000000006c8258d0. [ 0.002822] e820: update [mem 0x6c825000-0x6c825fff] usable ==> reserved [ 0.002831] Using GB pages for direct mapping [ 0.002935] Secure boot disabled [ 0.002935] RAMDISK: [mem 0x32311000-0x3517ffff] [ 0.002939] ACPI: Early table checksum verification disabled [ 0.002941] ACPI: RSDP 0x00000000765B4014 000024 (v02 ALASKA) [ 0.002944] ACPI: XSDT 0x00000000765B3728 0000FC (v01 ALASKA A M I 01072009 AMI 01000013) [ 0.002947] ACPI: FACP 0x00000000765A8000 000114 (v06 ALASKA A M I 01072009 AMI 00010013) [ 0.002949] ACPI: DSDT 0x000000007659C000 00BA2E (v02 ALASKA A M I 01072009 INTL 20120913) [ 0.002951] ACPI: FACS 0x000000007859B000 000040 [ 0.002952] ACPI: SSDT 0x00000000765B2000 00075E (v01 AMD PTUP 00000001 ASUS 00000001) [ 0.002953] ACPI: SSDT 0x00000000765AA000 007B72 (v02 AMD Splinter 00000002 MSFT 04000000) [ 0.002954] ACPI: SSDT 0x00000000765A9000 0003F1 (v02 ALASKA CPUSSDT 01072009 AMI 01072009) [ 0.002955] ACPI: FIDT 0x000000007659B000 00009C (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.002956] ACPI: MCFG 0x0000000076599000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013) [ 0.002957] ACPI: HPET 0x0000000076598000 000038 (v01 ALASKA A M I 01072009 AMI 00000005) [ 0.002958] ACPI: WDRT 0x0000000076597000 000047 (v01 ALASKA A M I 01072009 AMI 00000005) [ 0.002959] ACPI: FPDT 0x0000000076595000 000044 (v01 ALASKA A M I 01072009 AMI 01000013) [ 0.002960] ACPI: VFCT 0x000000007658A000 00AE84 (v01 ALASKA A M I 00000001 AMD 31504F47) [ 0.002961] ACPI: BGRT 0x0000000076589000 000038 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.002962] ACPI: WPBT 0x00000000764AA000 000040 (v01 ALASKA A M I 00000001 ASUS 00000001) [ 0.002963] ACPI: TPM2 0x00000000764A9000 00004C (v04 ALASKA A M I 00000001 AMI 00000000) [ 0.002964] ACPI: SSDT 0x000000007649F000 009BAE (v02 AMD AmdTable 00000001 AMD 00000001) [ 0.002965] ACPI: CRAT 0x000000007649D000 001D28 (v01 AMD AmdTable 00000001 AMD 00000001) [ 0.002966] ACPI: CDIT 0x000000007649C000 000029 (v01 AMD AmdTable 00000001 AMD 00000001) [ 0.002967] ACPI: SSDT 0x000000007649B000 000E0D (v02 AMD CPMDFIG2 00000001 INTL 20120913) [ 0.002968] ACPI: SSDT 0x0000000076498000 00250B (v02 AMD CDFAAIG2 00000001 INTL 20120913) [ 0.002969] ACPI: SSDT 0x000000007648F000 008879 (v02 AMD CPMCMN 00000001 INTL 20120913) [ 0.002970] ACPI: SSDT 0x000000007648C000 0022C7 (v02 AMD AOD 00000001 INTL 20120913) [ 0.002971] ACPI: WSMT 0x000000007648B000 000028 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.002972] ACPI: APIC 0x000000007648A000 00015E (v05 ALASKA A M I 01072009 AMI 00010013) [ 0.002973] ACPI: IVRS 0x0000000076489000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000001) [ 0.002974] ACPI: SSDT 0x0000000076488000 0000BC (v02 AMD MEMTOOL0 00000002 INTL 20120913) [ 0.002975] ACPI: SSDT 0x0000000076487000 0004E7 (v02 AMD CPMMSOSC 00000001 INTL 20120913) [ 0.002977] ACPI: SSDT 0x0000000076486000 000042 (v02 AMD AMDWOV 00000001 INTL 20120913) [ 0.002978] ACPI: SSDT 0x0000000076485000 000085 (v02 AMD AmdTable 00000001 INTL 20120913) [ 0.002978] ACPI: Reserving FACP table memory at [mem 0x765a8000-0x765a8113] [ 0.002979] ACPI: Reserving DSDT table memory at [mem 0x7659c000-0x765a7a2d] [ 0.002979] ACPI: Reserving FACS table memory at [mem 0x7859b000-0x7859b03f] [ 0.002980] ACPI: Reserving SSDT table memory at [mem 0x765b2000-0x765b275d] [ 0.002980] ACPI: Reserving SSDT table memory at [mem 0x765aa000-0x765b1b71] [ 0.002980] ACPI: Reserving SSDT table memory at [mem 0x765a9000-0x765a93f0] [ 0.002980] ACPI: Reserving FIDT table memory at [mem 0x7659b000-0x7659b09b] [ 0.002981] ACPI: Reserving MCFG table memory at [mem 0x76599000-0x7659903b] [ 0.002981] ACPI: Reserving HPET table memory at [mem 0x76598000-0x76598037] [ 0.002981] ACPI: Reserving WDRT table memory at [mem 0x76597000-0x76597046] [ 0.002982] ACPI: Reserving FPDT table memory at [mem 0x76595000-0x76595043] [ 0.002982] ACPI: Reserving VFCT table memory at [mem 0x7658a000-0x76594e83] [ 0.002982] ACPI: Reserving BGRT table memory at [mem 0x76589000-0x76589037] [ 0.002982] ACPI: Reserving WPBT table memory at [mem 0x764aa000-0x764aa03f] [ 0.002983] ACPI: Reserving TPM2 table memory at [mem 0x764a9000-0x764a904b] [ 0.002983] ACPI: Reserving SSDT table memory at [mem 0x7649f000-0x764a8bad] [ 0.002983] ACPI: Reserving CRAT table memory at [mem 0x7649d000-0x7649ed27] [ 0.002984] ACPI: Reserving CDIT table memory at [mem 0x7649c000-0x7649c028] [ 0.002984] ACPI: Reserving SSDT table memory at [mem 0x7649b000-0x7649be0c] [ 0.002984] ACPI: Reserving SSDT table memory at [mem 0x76498000-0x7649a50a] [ 0.002984] ACPI: Reserving SSDT table memory at [mem 0x7648f000-0x76497878] [ 0.002985] ACPI: Reserving SSDT table memory at [mem 0x7648c000-0x7648e2c6] [ 0.002985] ACPI: Reserving WSMT table memory at [mem 0x7648b000-0x7648b027] [ 0.002985] ACPI: Reserving APIC table memory at [mem 0x7648a000-0x7648a15d] [ 0.002986] ACPI: Reserving IVRS table memory at [mem 0x76489000-0x764890cf] [ 0.002986] ACPI: Reserving SSDT table memory at [mem 0x76488000-0x764880bb] [ 0.002986] ACPI: Reserving SSDT table memory at [mem 0x76487000-0x764874e6] [ 0.002986] ACPI: Reserving SSDT table memory at [mem 0x76486000-0x76486041] [ 0.002987] ACPI: Reserving SSDT table memory at [mem 0x76485000-0x76485084] [ 0.003031] No NUMA configuration found [ 0.003032] Faking a node at [mem 0x0000000000000000-0x0000001057ffffff] [ 0.003035] NODE_DATA(0) allocated [mem 0x1057fd5000-0x1057ffffff] [ 0.003121] Zone ranges: [ 0.003121] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.003122] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.003123] Normal [mem 0x0000000100000000-0x0000001057ffffff] [ 0.003123] Device empty [ 0.003124] Movable zone start for each node [ 0.003124] Early memory node ranges [ 0.003125] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.003125] node 0: [mem 0x0000000000100000-0x0000000009afefff] [ 0.003126] node 0: [mem 0x000000000a000000-0x000000000a1fffff] [ 0.003126] node 0: [mem 0x000000000a210000-0x000000000affffff] [ 0.003126] node 0: [mem 0x000000000b021000-0x000000006fbecfff] [ 0.003127] node 0: [mem 0x000000007a1ff000-0x000000007bffafff] [ 0.003127] node 0: [mem 0x0000000100000000-0x0000001057ffffff] [ 0.003129] Initmem setup node 0 [mem 0x0000000000001000-0x0000001057ffffff] [ 0.003132] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.003140] On node 0, zone DMA: 96 pages in unavailable ranges [ 0.003211] On node 0, zone DMA32: 1281 pages in unavailable ranges [ 0.003219] On node 0, zone DMA32: 16 pages in unavailable ranges [ 0.003931] On node 0, zone DMA32: 33 pages in unavailable ranges [ 0.003964] On node 0, zone DMA32: 9746 pages in unavailable ranges [ 0.004069] On node 0, zone Normal: 16389 pages in unavailable ranges [ 0.004366] ACPI: PM-Timer IO Port: 0x808 [ 0.004370] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.004381] IOAPIC[0]: apic_id 32, version 33, address 0xfec00000, GSI 0-23 [ 0.004384] IOAPIC[1]: apic_id 33, version 33, address 0xfec01000, GSI 24-55 [ 0.004385] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.004386] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) [ 0.004388] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.004388] ACPI: HPET id: 0x10228201 base: 0xfed00000 [ 0.004392] e820: update [mem 0x69a5b000-0x69c0bfff] usable ==> reserved [ 0.004398] smpboot: Allowing 32 CPUs, 0 hotplug CPUs [ 0.004407] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.004408] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.004409] PM: hibernation: Registered nosave memory: [mem 0x09aff000-0x09ffffff] [ 0.004409] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20ffff] [ 0.004410] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b020fff] [ 0.004410] PM: hibernation: Registered nosave memory: [mem 0x69a5b000-0x69c0bfff] [ 0.004411] PM: hibernation: Registered nosave memory: [mem 0x6c825000-0x6c825fff] [ 0.004412] PM: hibernation: Registered nosave memory: [mem 0x6fbed000-0x76438fff] [ 0.004412] PM: hibernation: Registered nosave memory: [mem 0x76439000-0x765b4fff] [ 0.004412] PM: hibernation: Registered nosave memory: [mem 0x765b5000-0x785b4fff] [ 0.004412] PM: hibernation: Registered nosave memory: [mem 0x785b5000-0x7a07efff] [ 0.004413] PM: hibernation: Registered nosave memory: [mem 0x7a07f000-0x7a1fefff] [ 0.004413] PM: hibernation: Registered nosave memory: [mem 0x7bffb000-0x7cffffff] [ 0.004413] PM: hibernation: Registered nosave memory: [mem 0x7d000000-0x7d7f4fff] [ 0.004414] PM: hibernation: Registered nosave memory: [mem 0x7d7f5000-0x7fffffff] [ 0.004414] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfedfffff] [ 0.004414] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.004414] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff] [ 0.004415] [mem 0x80000000-0xfedfffff] available for PCI devices [ 0.004416] Booting paravirtualized kernel on bare hardware [ 0.004417] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.006430] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1 [ 0.006926] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144 [ 0.006930] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152 [ 0.006931] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 [ 0.006934] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 [ 0.006950] Fallback order for Node 0: 0 [ 0.006951] Built 1 zonelists, mobility grouping on. Total pages: 16294244 [ 0.006952] Policy zone: Normal [ 0.006952] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.2.8+ root=UUID=e9d7e2ef-75c8-44f6-8e7a-e173446d456a ro mitigations=off apparmor=0 net.ifnames=0 [ 0.006987] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.2.8+", will be passed to user space. [ 0.007183] random: crng init done [ 0.007184] printk: log_buf_len individual max cpu contribution: 4096 bytes [ 0.007184] printk: log_buf_len total cpu_extra contributions: 126976 bytes [ 0.007184] printk: log_buf_len min size: 131072 bytes [ 0.007243] printk: log_buf_len: 262144 bytes [ 0.007244] printk: early log buf free: 116488(88%) [ 0.009727] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear) [ 0.010920] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) [ 0.011024] mem auto-init: stack:all(zero), heap alloc:on, heap free:off [ 0.011057] software IO TLB: area num 32. [ 0.026756] Memory: 1794492K/66212184K available (14336K kernel code, 2281K rwdata, 5628K rodata, 3732K init, 16388K bss, 1384160K reserved, 0K cma-reserved) [ 0.026816] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1 [ 0.026830] ftrace: allocating 40483 entries in 159 pages [ 0.032032] ftrace: allocated 159 pages with 6 groups [ 0.032435] Dynamic Preempt: voluntary [ 0.032468] rcu: Preemptible hierarchical RCU implementation. [ 0.032469] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32. [ 0.032470] Trampoline variant of Tasks RCU enabled. [ 0.032470] Rude variant of Tasks RCU enabled. [ 0.032470] Tracing variant of Tasks RCU enabled. [ 0.032470] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.032471] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32 [ 0.033606] NR_IRQS: 524544, nr_irqs: 1224, preallocated irqs: 16 [ 0.033763] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.033872] Console: colour dummy device 80x25 [ 0.033873] printk: console [tty0] enabled [ 0.034007] ACPI: Core revision 20221020 [ 0.034110] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns [ 0.034123] APIC: Switch to symmetric I/O mode setup [ 0.034563] AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0 [ 0.034754] x2apic: IRQ remapping doesn't support X2APIC mode [ 0.034757] Switched APIC routing to physical flat. [ 0.035346] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.054128] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x40be88b7974, max_idle_ns: 440795357419 ns [ 0.054132] Calibrating delay loop (skipped), value calculated using timer frequency.. 8983.26 BogoMIPS (lpj=17966532) [ 0.054134] pid_max: default: 32768 minimum: 301 [ 0.055304] LSM: initializing lsm=lockdown,capability,landlock,yama,integrity,selinux,tomoyo,bpf [ 0.055310] landlock: Up and running. [ 0.055311] Yama: becoming mindful. [ 0.055314] SELinux: Initializing. [ 0.055322] TOMOYO Linux initialized [ 0.055324] LSM support for eBPF active [ 0.055371] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.055414] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.055520] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 0.055561] LVT offset 1 assigned for vector 0xf9 [ 0.055690] LVT offset 2 assigned for vector 0xf4 [ 0.055730] process: using mwait in idle threads [ 0.055731] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256 [ 0.055732] Last level dTLB entries: 4KB 3072, 2MB 3072, 4MB 1536, 1GB 0 [ 0.055734] Spectre V2 : User space: Vulnerable [ 0.055735] Speculative Store Bypass: Vulnerable [ 0.063671] Freeing SMP alternatives memory: 36K [ 0.177616] smpboot: CPU0: AMD Ryzen 9 7950X 16-Core Processor (family: 0x19, model: 0x61, stepping: 0x2) [ 0.177658] cblist_init_generic: Setting adjustable number of callback queues. [ 0.177660] cblist_init_generic: Setting shift to 5 and lim to 1. [ 0.177666] cblist_init_generic: Setting shift to 5 and lim to 1. [ 0.177672] cblist_init_generic: Setting shift to 5 and lim to 1. [ 0.177677] Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver. [ 0.177688] ... version: 2 [ 0.177689] ... bit width: 48 [ 0.177689] ... generic registers: 6 [ 0.177690] ... value mask: 0000ffffffffffff [ 0.177691] ... max period: 00007fffffffffff [ 0.177691] ... fixed-purpose events: 0 [ 0.177692] ... event mask: 000000000000003f [ 0.177727] rcu: Hierarchical SRCU implementation. [ 0.177727] rcu: Max phase no-delay instances is 1000. [ 0.177852] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 0.177936] smp: Bringing up secondary CPUs ... [ 0.177964] x86: Booting SMP configuration: [ 0.177965] .... node #0, CPUs: #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 [ 0.242148] smp: Brought up 1 node, 32 CPUs [ 0.242152] smpboot: Max logical packages: 1 [ 0.242154] smpboot: Total of 32 processors activated (287464.51 BogoMIPS) [ 0.278959] node 0 deferred pages initialised in 36ms [ 0.278961] devtmpfs: initialized [ 0.278961] x86/mm: Memory block size: 2048MB [ 0.278961] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20ffff] (65536 bytes) [ 0.278961] ACPI: PM: Registering ACPI NVS region [mem 0x765b5000-0x785b4fff] (33554432 bytes) [ 0.278961] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.278961] futex hash table entries: 8192 (order: 7, 524288 bytes, linear) [ 0.278961] pinctrl core: initialized pinctrl subsystem [ 0.278961] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.278961] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations [ 0.278973] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.279133] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.279138] audit: initializing netlink subsys (disabled) [ 0.279142] audit: type=2000 audit(1680118486.244:1): state=initialized audit_enabled=0 res=1 [ 0.279142] thermal_sys: Registered thermal governor 'fair_share' [ 0.279142] thermal_sys: Registered thermal governor 'bang_bang' [ 0.279142] thermal_sys: Registered thermal governor 'step_wise' [ 0.279142] thermal_sys: Registered thermal governor 'user_space' [ 0.279142] thermal_sys: Registered thermal governor 'power_allocator' [ 0.279142] cpuidle: using governor ladder [ 0.279142] cpuidle: using governor menu [ 0.279142] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.279142] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) [ 0.279142] PCI: not using MMCONFIG [ 0.279142] PCI: Using configuration type 1 for base access [ 0.279142] PCI: Using configuration type 1 for extended access [ 0.279142] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.279142] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.279142] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.279142] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.279142] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.279142] ACPI: Added _OSI(Module Device) [ 0.279142] ACPI: Added _OSI(Processor Device) [ 0.279142] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.279142] ACPI: Added _OSI(Processor Aggregator Device) [ 0.285567] ACPI: 13 ACPI AML tables successfully acquired and loaded [ 0.286144] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.292413] ACPI: Interpreter enabled [ 0.292413] ACPI: PM: (supports S0 S3 S4 S5) [ 0.292413] ACPI: Using IOAPIC for interrupt routing [ 0.292413] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) [ 0.292413] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved as ACPI motherboard resource [ 0.292413] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.292413] PCI: Ignoring E820 reservations for host bridge windows [ 0.292413] ACPI: Enabled 7 GPEs in block 00 to 1F [ 0.296944] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.296948] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.296994] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR] [ 0.297000] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge [ 0.297142] PCI host bridge to bus 0000:00 [ 0.297143] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 0.297144] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 0.297145] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] [ 0.297146] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.297147] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window] [ 0.297148] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfcffffff window] [ 0.297149] pci_bus 0000:00: root bus resource [mem 0x1080000000-0xfcffffffff window] [ 0.297150] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.297159] pci 0000:00:00.0: [1022:14d8] type 00 class 0x060000 [ 0.297214] pci 0000:00:00.2: [1022:14d9] type 00 class 0x080600 [ 0.297262] pci 0000:00:01.0: [1022:14da] type 00 class 0x060000 [ 0.297302] pci 0000:00:01.2: [1022:14db] type 01 class 0x060400 [ 0.297359] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold [ 0.297436] pci 0000:00:02.0: [1022:14da] type 00 class 0x060000 [ 0.297471] pci 0000:00:02.1: [1022:14db] type 01 class 0x060400 [ 0.297490] pci 0000:00:02.1: enabling Extended Tags [ 0.297528] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold [ 0.297608] pci 0000:00:03.0: [1022:14da] type 00 class 0x060000 [ 0.297650] pci 0000:00:04.0: [1022:14da] type 00 class 0x060000 [ 0.297694] pci 0000:00:08.0: [1022:14da] type 00 class 0x060000 [ 0.297731] pci 0000:00:08.1: [1022:14dd] type 01 class 0x060400 [ 0.297745] pci 0000:00:08.1: enabling Extended Tags [ 0.297766] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold [ 0.297819] pci 0000:00:08.3: [1022:14dd] type 01 class 0x060400 [ 0.297833] pci 0000:00:08.3: enabling Extended Tags [ 0.297854] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold [ 0.297916] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 [ 0.297989] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 [ 0.298070] pci 0000:00:18.0: [1022:14e0] type 00 class 0x060000 [ 0.298087] pci 0000:00:18.1: [1022:14e1] type 00 class 0x060000 [ 0.298104] pci 0000:00:18.2: [1022:14e2] type 00 class 0x060000 [ 0.298120] pci 0000:00:18.3: [1022:14e3] type 00 class 0x060000 [ 0.298140] pci 0000:00:18.4: [1022:14e4] type 00 class 0x060000 [ 0.298157] pci 0000:00:18.5: [1022:14e5] type 00 class 0x060000 [ 0.298173] pci 0000:00:18.6: [1022:14e6] type 00 class 0x060000 [ 0.298191] pci 0000:00:18.7: [1022:14e7] type 00 class 0x060000 [ 0.298435] pci 0000:01:00.0: [2646:5013] type 00 class 0x010802 [ 0.298475] pci 0000:01:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit] [ 0.299166] pci 0000:00:01.2: PCI bridge to [bus 01] [ 0.299170] pci 0000:00:01.2: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.299216] pci 0000:02:00.0: [1022:43f4] type 01 class 0x060400 [ 0.299243] pci 0000:02:00.0: enabling Extended Tags [ 0.299283] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold [ 0.299383] pci 0000:00:02.1: PCI bridge to [bus 02-0a] [ 0.299386] pci 0000:00:02.1: bridge window [io 0xf000-0xffff] [ 0.299387] pci 0000:00:02.1: bridge window [mem 0xfcb00000-0xfcdfffff] [ 0.299422] pci 0000:03:00.0: [1022:43f5] type 01 class 0x060400 [ 0.299451] pci 0000:03:00.0: enabling Extended Tags [ 0.299493] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 0.299577] pci 0000:03:08.0: [1022:43f5] type 01 class 0x060400 [ 0.299605] pci 0000:03:08.0: enabling Extended Tags [ 0.299647] pci 0000:03:08.0: PME# supported from D0 D3hot D3cold [ 0.299727] pci 0000:03:09.0: [1022:43f5] type 01 class 0x060400 [ 0.299755] pci 0000:03:09.0: enabling Extended Tags [ 0.299797] pci 0000:03:09.0: PME# supported from D0 D3hot D3cold [ 0.299870] pci 0000:03:0a.0: [1022:43f5] type 01 class 0x060400 [ 0.299898] pci 0000:03:0a.0: enabling Extended Tags [ 0.299938] pci 0000:03:0a.0: PME# supported from D0 D3hot D3cold [ 0.300019] pci 0000:03:0b.0: [1022:43f5] type 01 class 0x060400 [ 0.300047] pci 0000:03:0b.0: enabling Extended Tags [ 0.300089] pci 0000:03:0b.0: PME# supported from D0 D3hot D3cold [ 0.300163] pci 0000:03:0c.0: [1022:43f5] type 01 class 0x060400 [ 0.300191] pci 0000:03:0c.0: enabling Extended Tags [ 0.300219] pci 0000:03:0c.0: PME# supported from D0 D3hot D3cold [ 0.300274] pci 0000:03:0d.0: [1022:43f5] type 01 class 0x060400 [ 0.300302] pci 0000:03:0d.0: enabling Extended Tags [ 0.300330] pci 0000:03:0d.0: PME# supported from D0 D3hot D3cold [ 0.300374] pci 0000:02:00.0: PCI bridge to [bus 03-0a] [ 0.300377] pci 0000:02:00.0: bridge window [io 0xf000-0xffff] [ 0.300379] pci 0000:02:00.0: bridge window [mem 0xfcb00000-0xfcdfffff] [ 0.300402] pci 0000:03:00.0: PCI bridge to [bus 04] [ 0.300430] pci 0000:03:08.0: PCI bridge to [bus 05] [ 0.300455] pci 0000:03:09.0: PCI bridge to [bus 06] [ 0.300501] pci 0000:07:00.0: [10ec:8125] type 00 class 0x020000 [ 0.300521] pci 0000:07:00.0: reg 0x10: [io 0xf000-0xf0ff] [ 0.300547] pci 0000:07:00.0: reg 0x18: [mem 0xfcd00000-0xfcd0ffff 64bit] [ 0.300563] pci 0000:07:00.0: reg 0x20: [mem 0xfcd10000-0xfcd13fff 64bit] [ 0.300679] pci 0000:07:00.0: supports D1 D2 [ 0.300680] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.300891] pci 0000:03:0a.0: PCI bridge to [bus 07] [ 0.300894] pci 0000:03:0a.0: bridge window [io 0xf000-0xffff] [ 0.300896] pci 0000:03:0a.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.300917] pci 0000:03:0b.0: PCI bridge to [bus 08] [ 0.300953] pci 0000:09:00.0: [1022:43f7] type 00 class 0x0c0330 [ 0.300964] pci 0000:09:00.0: reg 0x10: [mem 0xfcc00000-0xfcc07fff 64bit] [ 0.300989] pci 0000:09:00.0: enabling Extended Tags [ 0.301020] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold [ 0.301087] pci 0000:03:0c.0: PCI bridge to [bus 09] [ 0.301090] pci 0000:03:0c.0: bridge window [mem 0xfcc00000-0xfccfffff] [ 0.301118] pci 0000:0a:00.0: [1022:43f6] type 00 class 0x010601 [ 0.301141] pci 0000:0a:00.0: reg 0x24: [mem 0xfcb80000-0xfcb803ff] [ 0.301145] pci 0000:0a:00.0: reg 0x30: [mem 0xfcb00000-0xfcb7ffff pref] [ 0.301149] pci 0000:0a:00.0: enabling Extended Tags [ 0.301174] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold [ 0.301220] pci 0000:03:0d.0: PCI bridge to [bus 0a] [ 0.301223] pci 0000:03:0d.0: bridge window [mem 0xfcb00000-0xfcbfffff] [ 0.301290] pci 0000:0b:00.0: [1002:164e] type 00 class 0x030000 [ 0.301297] pci 0000:0b:00.0: reg 0x10: [mem 0xfce0000000-0xfcefffffff 64bit pref] [ 0.301302] pci 0000:0b:00.0: reg 0x18: [mem 0xfcf0000000-0xfcf01fffff 64bit pref] [ 0.301306] pci 0000:0b:00.0: reg 0x20: [io 0xe000-0xe0ff] [ 0.301309] pci 0000:0b:00.0: reg 0x24: [mem 0xfca00000-0xfca7ffff] [ 0.301315] pci 0000:0b:00.0: enabling Extended Tags [ 0.301321] pci 0000:0b:00.0: BAR 0: assigned to efifb [ 0.301345] pci 0000:0b:00.0: PME# supported from D1 D2 D3hot D3cold [ 0.301401] pci 0000:0b:00.1: [1002:1640] type 00 class 0x040300 [ 0.301405] pci 0000:0b:00.1: reg 0x10: [mem 0xfca88000-0xfca8bfff] [ 0.301419] pci 0000:0b:00.1: enabling Extended Tags [ 0.301437] pci 0000:0b:00.1: PME# supported from D1 D2 D3hot D3cold [ 0.301469] pci 0000:0b:00.2: [1022:1649] type 00 class 0x108000 [ 0.301496] pci 0000:0b:00.2: reg 0x18: [mem 0xfc900000-0xfc9fffff] [ 0.301503] pci 0000:0b:00.2: reg 0x24: [mem 0xfca8c000-0xfca8dfff] [ 0.301507] pci 0000:0b:00.2: enabling Extended Tags [ 0.301558] pci 0000:0b:00.3: [1022:15b6] type 00 class 0x0c0330 [ 0.301564] pci 0000:0b:00.3: reg 0x10: [mem 0xfc800000-0xfc8fffff 64bit] [ 0.301580] pci 0000:0b:00.3: enabling Extended Tags [ 0.301599] pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold [ 0.301633] pci 0000:0b:00.4: [1022:15b7] type 00 class 0x0c0330 [ 0.301640] pci 0000:0b:00.4: reg 0x10: [mem 0xfc700000-0xfc7fffff 64bit] [ 0.301655] pci 0000:0b:00.4: enabling Extended Tags [ 0.301675] pci 0000:0b:00.4: PME# supported from D0 D3hot D3cold [ 0.301710] pci 0000:0b:00.6: [1022:15e3] type 00 class 0x040300 [ 0.301714] pci 0000:0b:00.6: reg 0x10: [mem 0xfca80000-0xfca87fff] [ 0.301728] pci 0000:0b:00.6: enabling Extended Tags [ 0.301746] pci 0000:0b:00.6: PME# supported from D0 D3hot D3cold [ 0.301787] pci 0000:00:08.1: PCI bridge to [bus 0b] [ 0.301790] pci 0000:00:08.1: bridge window [io 0xe000-0xefff] [ 0.301791] pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfcafffff] [ 0.301793] pci 0000:00:08.1: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref] [ 0.301812] pci 0000:0c:00.0: [1022:15b8] type 00 class 0x0c0330 [ 0.301823] pci 0000:0c:00.0: reg 0x10: [mem 0xfce00000-0xfcefffff 64bit] [ 0.301844] pci 0000:0c:00.0: enabling Extended Tags [ 0.301868] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold [ 0.301915] pci 0000:00:08.3: PCI bridge to [bus 0c] [ 0.301918] pci 0000:00:08.3: bridge window [mem 0xfce00000-0xfcefffff] [ 0.302157] ACPI: PCI: Interrupt link LNKA configured for IRQ 0 [ 0.302176] ACPI: PCI: Interrupt link LNKB configured for IRQ 0 [ 0.302181] ACPI: PCI: Interrupt link LNKC configured for IRQ 0 [ 0.302181] ACPI: PCI: Interrupt link LNKD configured for IRQ 0 [ 0.302188] ACPI: PCI: Interrupt link LNKE configured for IRQ 0 [ 0.302201] ACPI: PCI: Interrupt link LNKF configured for IRQ 0 [ 0.302214] ACPI: PCI: Interrupt link LNKG configured for IRQ 0 [ 0.302227] ACPI: PCI: Interrupt link LNKH configured for IRQ 0 [ 0.302580] iommu: Default domain type: Translated [ 0.302580] iommu: DMA domain TLB invalidation policy: lazy mode [ 0.302960] EDAC MC: Ver: 3.0.0 [ 0.303201] Registered efivars operations [ 0.303201] NetLabel: Initializing [ 0.303201] NetLabel: domain hash size = 128 [ 0.303201] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.303201] NetLabel: unlabeled traffic allowed by default [ 0.303201] PCI: Using ACPI for IRQ routing [ 0.307299] PCI: pci_cache_line_size set to 64 bytes [ 0.307726] e820: reserve RAM buffer [mem 0x09aff000-0x0bffffff] [ 0.307727] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff] [ 0.307727] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff] [ 0.307728] e820: reserve RAM buffer [mem 0x69a5b000-0x6bffffff] [ 0.307728] e820: reserve RAM buffer [mem 0x6c825000-0x6fffffff] [ 0.307729] e820: reserve RAM buffer [mem 0x6fbed000-0x6fffffff] [ 0.307729] e820: reserve RAM buffer [mem 0x7bffb000-0x7bffffff] [ 0.310151] pci 0000:0b:00.0: vgaarb: setting as boot VGA device [ 0.310151] pci 0000:0b:00.0: vgaarb: bridge control possible [ 0.310151] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none [ 0.310151] vgaarb: loaded [ 0.310155] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.310158] hpet0: 3 comparators, 32-bit 14.318180 MHz counter [ 0.312208] clocksource: Switched to clocksource tsc-early [ 0.312266] VFS: Disk quotas dquot_6.6.0 [ 0.312274] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.312311] pnp: PnP ACPI init [ 0.312357] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved [ 0.312383] system 00:01: [mem 0x1058000000-0x1077ffffff window] has been reserved [ 0.312492] system 00:03: [io 0x0290-0x029f] has been reserved [ 0.312494] system 00:03: [io 0x0200-0x023f] has been reserved [ 0.312494] pnp 00:04: [dma 0 disabled] [ 0.312494] system 00:05: [io 0x04d0-0x04d1] has been reserved [ 0.312494] system 00:05: [io 0x040b] has been reserved [ 0.312494] system 00:05: [io 0x04d6] has been reserved [ 0.312494] system 00:05: [io 0x0c00-0x0c01] has been reserved [ 0.312494] system 00:05: [io 0x0c14] has been reserved [ 0.312494] system 00:05: [io 0x0c50-0x0c51] has been reserved [ 0.312494] system 00:05: [io 0x0c52] has been reserved [ 0.312494] system 00:05: [io 0x0c6c] has been reserved [ 0.312494] system 00:05: [io 0x0c6f] has been reserved [ 0.312494] system 00:05: [io 0x0cd8-0x0cdf] has been reserved [ 0.312494] system 00:05: [io 0x0800-0x089f] has been reserved [ 0.312494] system 00:05: [io 0x0b00-0x0b0f] has been reserved [ 0.312494] system 00:05: [io 0x0b20-0x0b3f] has been reserved [ 0.312494] system 00:05: [io 0x0900-0x090f] has been reserved [ 0.312494] system 00:05: [io 0x0910-0x091f] has been reserved [ 0.312494] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved [ 0.312494] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved [ 0.312494] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved [ 0.312494] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved [ 0.312494] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved [ 0.312494] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved [ 0.312494] system 00:05: [mem 0xfeb00000-0xfeb00fff] has been reserved [ 0.312494] system 00:05: [mem 0xff000000-0xffffffff] has been reserved [ 0.312494] pnp: PnP ACPI: found 6 devices [ 0.316325] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.316348] NET: Registered PF_INET protocol family [ 0.316440] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.317598] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear) [ 0.317626] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.317782] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.318017] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 0.318071] TCP: Hash tables configured (established 524288 bind 65536) [ 0.318170] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear) [ 0.318233] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 0.318306] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 0.318368] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.318371] NET: Registered PF_XDP protocol family [ 0.318378] pci 0000:00:01.2: PCI bridge to [bus 01] [ 0.318381] pci 0000:00:01.2: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.318392] pci 0000:03:00.0: PCI bridge to [bus 04] [ 0.318403] pci 0000:03:08.0: PCI bridge to [bus 05] [ 0.318409] pci 0000:03:09.0: PCI bridge to [bus 06] [ 0.318415] pci 0000:03:0a.0: PCI bridge to [bus 07] [ 0.318416] pci 0000:03:0a.0: bridge window [io 0xf000-0xffff] [ 0.318419] pci 0000:03:0a.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.318424] pci 0000:03:0b.0: PCI bridge to [bus 08] [ 0.318432] pci 0000:03:0c.0: PCI bridge to [bus 09] [ 0.318435] pci 0000:03:0c.0: bridge window [mem 0xfcc00000-0xfccfffff] [ 0.318440] pci 0000:03:0d.0: PCI bridge to [bus 0a] [ 0.318443] pci 0000:03:0d.0: bridge window [mem 0xfcb00000-0xfcbfffff] [ 0.318448] pci 0000:02:00.0: PCI bridge to [bus 03-0a] [ 0.318449] pci 0000:02:00.0: bridge window [io 0xf000-0xffff] [ 0.318451] pci 0000:02:00.0: bridge window [mem 0xfcb00000-0xfcdfffff] [ 0.318456] pci 0000:00:02.1: PCI bridge to [bus 02-0a] [ 0.318457] pci 0000:00:02.1: bridge window [io 0xf000-0xffff] [ 0.318459] pci 0000:00:02.1: bridge window [mem 0xfcb00000-0xfcdfffff] [ 0.318469] pci 0000:00:08.1: PCI bridge to [bus 0b] [ 0.318474] pci 0000:00:08.1: bridge window [io 0xe000-0xefff] [ 0.318476] pci 0000:00:08.1: bridge window [mem 0xfc700000-0xfcafffff] [ 0.318477] pci 0000:00:08.1: bridge window [mem 0xfce0000000-0xfcf01fffff 64bit pref] [ 0.318479] pci 0000:00:08.3: PCI bridge to [bus 0c] [ 0.318481] pci 0000:00:08.3: bridge window [mem 0xfce00000-0xfcefffff] [ 0.318484] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 0.318485] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 0.318486] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] [ 0.318487] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window] [ 0.318487] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window] [ 0.318488] pci_bus 0000:00: resource 9 [mem 0x80000000-0xfcffffff window] [ 0.318489] pci_bus 0000:00: resource 10 [mem 0x1080000000-0xfcffffffff window] [ 0.318490] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff] [ 0.318491] pci_bus 0000:02: resource 0 [io 0xf000-0xffff] [ 0.318492] pci_bus 0000:02: resource 1 [mem 0xfcb00000-0xfcdfffff] [ 0.318493] pci_bus 0000:03: resource 0 [io 0xf000-0xffff] [ 0.318493] pci_bus 0000:03: resource 1 [mem 0xfcb00000-0xfcdfffff] [ 0.318494] pci_bus 0000:07: resource 0 [io 0xf000-0xffff] [ 0.318495] pci_bus 0000:07: resource 1 [mem 0xfcd00000-0xfcdfffff] [ 0.318496] pci_bus 0000:09: resource 1 [mem 0xfcc00000-0xfccfffff] [ 0.318497] pci_bus 0000:0a: resource 1 [mem 0xfcb00000-0xfcbfffff] [ 0.318498] pci_bus 0000:0b: resource 0 [io 0xe000-0xefff] [ 0.318498] pci_bus 0000:0b: resource 1 [mem 0xfc700000-0xfcafffff] [ 0.318499] pci_bus 0000:0b: resource 2 [mem 0xfce0000000-0xfcf01fffff 64bit pref] [ 0.318500] pci_bus 0000:0c: resource 1 [mem 0xfce00000-0xfcefffff] [ 0.318860] pci 0000:0b:00.1: D0 power state depends on 0000:0b:00.0 [ 0.318969] PCI: CLS 64 bytes, default 64 [ 0.318975] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported [ 0.318997] pci 0000:00:01.0: Adding to iommu group 0 [ 0.319002] Trying to unpack rootfs image as initramfs... [ 0.319004] pci 0000:00:01.2: Adding to iommu group 1 [ 0.319012] pci 0000:00:02.0: Adding to iommu group 2 [ 0.319019] pci 0000:00:02.1: Adding to iommu group 3 [ 0.319026] pci 0000:00:03.0: Adding to iommu group 4 [ 0.319033] pci 0000:00:04.0: Adding to iommu group 5 [ 0.319041] pci 0000:00:08.0: Adding to iommu group 6 [ 0.319047] pci 0000:00:08.1: Adding to iommu group 7 [ 0.319054] pci 0000:00:08.3: Adding to iommu group 8 [ 0.319064] pci 0000:00:14.0: Adding to iommu group 9 [ 0.319069] pci 0000:00:14.3: Adding to iommu group 9 [ 0.319089] pci 0000:00:18.0: Adding to iommu group 10 [ 0.319095] pci 0000:00:18.1: Adding to iommu group 10 [ 0.319101] pci 0000:00:18.2: Adding to iommu group 10 [ 0.319107] pci 0000:00:18.3: Adding to iommu group 10 [ 0.319112] pci 0000:00:18.4: Adding to iommu group 10 [ 0.319117] pci 0000:00:18.5: Adding to iommu group 10 [ 0.319123] pci 0000:00:18.6: Adding to iommu group 10 [ 0.319129] pci 0000:00:18.7: Adding to iommu group 10 [ 0.319136] pci 0000:01:00.0: Adding to iommu group 11 [ 0.319143] pci 0000:02:00.0: Adding to iommu group 12 [ 0.319150] pci 0000:03:00.0: Adding to iommu group 13 [ 0.319156] pci 0000:03:08.0: Adding to iommu group 14 [ 0.319163] pci 0000:03:09.0: Adding to iommu group 15 [ 0.319170] pci 0000:03:0a.0: Adding to iommu group 16 [ 0.319177] pci 0000:03:0b.0: Adding to iommu group 17 [ 0.319183] pci 0000:03:0c.0: Adding to iommu group 18 [ 0.319191] pci 0000:03:0d.0: Adding to iommu group 19 [ 0.319194] pci 0000:07:00.0: Adding to iommu group 16 [ 0.319198] pci 0000:09:00.0: Adding to iommu group 18 [ 0.319202] pci 0000:0a:00.0: Adding to iommu group 19 [ 0.319217] pci 0000:0b:00.0: Adding to iommu group 20 [ 0.319223] pci 0000:0b:00.1: Adding to iommu group 21 [ 0.319231] pci 0000:0b:00.2: Adding to iommu group 22 [ 0.319239] pci 0000:0b:00.3: Adding to iommu group 23 [ 0.319246] pci 0000:0b:00.4: Adding to iommu group 24 [ 0.319254] pci 0000:0b:00.6: Adding to iommu group 25 [ 0.319261] pci 0000:0c:00.0: Adding to iommu group 26 [ 0.321540] pci 0000:00:00.2: can't derive routing for PCI INT A [ 0.321543] pci 0000:00:00.2: PCI INT A: not connected [ 0.321659] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 0.321661] AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC [ 0.321666] AMD-Vi: Interrupt remapping enabled [ 0.491048] Freeing initrd memory: 47548K [ 0.575039] AMD-Vi: Virtual APIC enabled [ 0.575134] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.575138] software IO TLB: mapped [mem 0x00000000654fd000-0x00000000694fd000] (64MB) [ 0.575170] LVT offset 0 assigned for vector 0x400 [ 0.575306] perf: AMD IBS detected (0x00000bff) [ 0.575311] amd_uncore: 16 amd_df counters detected [ 0.575315] amd_uncore: 6 amd_l3 counters detected [ 0.575554] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank). [ 0.575919] Initialise system trusted keyrings [ 0.575926] Key type blacklist registered [ 0.575940] workingset: timestamp_bits=36 max_order=24 bucket_order=0 [ 0.575946] zbud: loaded [ 0.576087] integrity: Platform Keyring initialized [ 0.576089] integrity: Machine keyring initialized [ 0.576090] Key type asymmetric registered [ 0.576092] Asymmetric key parser 'x509' registered [ 0.578049] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250) [ 0.578076] io scheduler mq-deadline registered [ 0.579425] pcieport 0000:00:01.2: PME: Signaling with IRQ 27 [ 0.579506] pcieport 0000:00:02.1: PME: Signaling with IRQ 28 [ 0.579581] pcieport 0000:00:08.1: PME: Signaling with IRQ 29 [ 0.579645] pcieport 0000:00:08.3: PME: Signaling with IRQ 30 [ 0.580214] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 0.580254] Estimated ratio of average max frequency by base frequency (times 1024): 1181 [ 0.580266] Monitor-Mwait will be used to enter C-1 state [ 0.580269] ACPI: \_SB_.PLTF.C000: Found 3 idle states [ 0.580348] ACPI: \_SB_.PLTF.C002: Found 3 idle states [ 0.580421] ACPI: \_SB_.PLTF.C004: Found 3 idle states [ 0.580480] ACPI: \_SB_.PLTF.C006: Found 3 idle states [ 0.580555] ACPI: \_SB_.PLTF.C008: Found 3 idle states [ 0.580623] ACPI: \_SB_.PLTF.C00A: Found 3 idle states [ 0.580691] ACPI: \_SB_.PLTF.C00C: Found 3 idle states [ 0.580761] ACPI: \_SB_.PLTF.C00E: Found 3 idle states [ 0.580831] ACPI: \_SB_.PLTF.C010: Found 3 idle states [ 0.580884] ACPI: \_SB_.PLTF.C012: Found 3 idle states [ 0.580934] ACPI: \_SB_.PLTF.C014: Found 3 idle states [ 0.580983] ACPI: \_SB_.PLTF.C016: Found 3 idle states [ 0.581035] ACPI: \_SB_.PLTF.C018: Found 3 idle states [ 0.581085] ACPI: \_SB_.PLTF.C01A: Found 3 idle states [ 0.581136] ACPI: \_SB_.PLTF.C01C: Found 3 idle states [ 0.581194] ACPI: \_SB_.PLTF.C01E: Found 3 idle states [ 0.581231] ACPI: \_SB_.PLTF.C001: Found 3 idle states [ 0.581270] ACPI: \_SB_.PLTF.C003: Found 3 idle states [ 0.581319] ACPI: \_SB_.PLTF.C005: Found 3 idle states [ 0.581366] ACPI: \_SB_.PLTF.C007: Found 3 idle states [ 0.581412] ACPI: \_SB_.PLTF.C009: Found 3 idle states [ 0.581459] ACPI: \_SB_.PLTF.C00B: Found 3 idle states [ 0.581506] ACPI: \_SB_.PLTF.C00D: Found 3 idle states [ 0.581555] ACPI: \_SB_.PLTF.C00F: Found 3 idle states [ 0.581605] ACPI: \_SB_.PLTF.C011: Found 3 idle states [ 0.581651] ACPI: \_SB_.PLTF.C013: Found 3 idle states [ 0.581706] ACPI: \_SB_.PLTF.C015: Found 3 idle states [ 0.581756] ACPI: \_SB_.PLTF.C017: Found 3 idle states [ 0.581806] ACPI: \_SB_.PLTF.C019: Found 3 idle states [ 0.581856] ACPI: \_SB_.PLTF.C01B: Found 3 idle states [ 0.581912] ACPI: \_SB_.PLTF.C01D: Found 3 idle states [ 0.581959] ACPI: \_SB_.PLTF.C01F: Found 3 idle states [ 0.582104] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.582270] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 0.582618] Linux agpgart interface v0.103 [ 0.631228] AMD-Vi: AMD IOMMUv2 loaded and initialized [ 0.632513] i8042: PNP: No PS/2 controller found. [ 0.632540] mousedev: PS/2 mouse device common for all mice [ 0.632548] rtc_cmos 00:02: RTC can wake from S4 [ 0.632695] rtc_cmos 00:02: registered as rtc0 [ 0.632719] rtc_cmos 00:02: setting system clock to 2023-03-29T19:34:47 UTC (1680118487) [ 0.632734] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.633063] ledtrig-cpu: registered to indicate activity on CPUs [ 0.633138] efifb: probing for efifb [ 0.633154] efifb: framebuffer at 0xfce0000000, using 3072k, total 3072k [ 0.633155] efifb: mode is 1024x768x32, linelength=4096, pages=1 [ 0.633156] efifb: scrolling: redraw [ 0.633156] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.633427] Console: switching to colour frame buffer device 128x48 [ 0.633657] fb0: EFI VGA frame buffer device [ 0.633714] NET: Registered PF_INET6 protocol family [ 0.635075] Segment Routing with IPv6 [ 0.635093] In-situ OAM (IOAM) with IPv6 [ 0.635103] mip6: Mobile IPv6 [ 0.635112] NET: Registered PF_PACKET protocol family [ 0.635128] mpls_gso: MPLS GSO support [ 0.636178] microcode: CPU1: patch_level=0x0a601203 [ 0.636178] microcode: CPU2: patch_level=0x0a601203 [ 0.636178] microcode: CPU3: patch_level=0x0a601203 [ 0.636179] microcode: CPU4: patch_level=0x0a601203 [ 0.636179] microcode: CPU5: patch_level=0x0a601203 [ 0.636179] microcode: CPU6: patch_level=0x0a601203 [ 0.636180] microcode: CPU7: patch_level=0x0a601203 [ 0.636180] microcode: CPU8: patch_level=0x0a601203 [ 0.636180] microcode: CPU9: patch_level=0x0a601203 [ 0.636181] microcode: CPU10: patch_level=0x0a601203 [ 0.636182] microcode: CPU11: patch_level=0x0a601203 [ 0.636182] microcode: CPU13: patch_level=0x0a601203 [ 0.636190] microcode: CPU12: patch_level=0x0a601203 [ 0.636195] microcode: CPU16: patch_level=0x0a601203 [ 0.636195] microcode: CPU14: patch_level=0x0a601203 [ 0.636196] microcode: CPU15: patch_level=0x0a601203 [ 0.636196] microcode: CPU18: patch_level=0x0a601203 [ 0.636196] microcode: CPU17: patch_level=0x0a601203 [ 0.636196] microcode: CPU19: patch_level=0x0a601203 [ 0.636197] microcode: CPU20: patch_level=0x0a601203 [ 0.636197] microcode: CPU21: patch_level=0x0a601203 [ 0.636198] microcode: CPU22: patch_level=0x0a601203 [ 0.636198] microcode: CPU23: patch_level=0x0a601203 [ 0.636200] microcode: CPU24: patch_level=0x0a601203 [ 0.636201] microcode: CPU25: patch_level=0x0a601203 [ 0.636202] microcode: CPU26: patch_level=0x0a601203 [ 0.636202] microcode: CPU27: patch_level=0x0a601203 [ 0.636203] microcode: CPU0: patch_level=0x0a601203 [ 0.636203] microcode: CPU28: patch_level=0x0a601203 [ 0.636204] microcode: CPU29: patch_level=0x0a601203 [ 0.636205] microcode: CPU30: patch_level=0x0a601203 [ 0.636205] microcode: CPU31: patch_level=0x0a601203 [ 0.637745] microcode: Microcode Update Driver: v2.2. [ 0.637894] resctrl: L3 allocation detected [ 0.638070] resctrl: MB allocation detected [ 0.638162] resctrl: L3 monitoring detected [ 0.638254] IPI shorthand broadcast: enabled [ 0.638831] sched_clock: Marking stable (637544230, 345990)->(652507518, -14617298) [ 0.639345] registered taskstats version 1 [ 0.639464] Loading compiled-in X.509 certificates [ 0.646984] Loaded X.509 cert 'Build time autogenerated kernel key: f0ab4fac035c053ca3514364d9e359a090e09d18' [ 0.648402] zswap: loaded using pool lzo/zbud [ 0.649043] Key type .fscrypt registered [ 0.649118] Key type fscrypt-provisioning registered [ 0.650395] Key type encrypted registered [ 0.650516] integrity: Loading X.509 certificate: UEFI:db [ 0.650655] integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2' [ 0.650730] integrity: Loading X.509 certificate: UEFI:db [ 0.650864] integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071' [ 0.650945] integrity: Loading X.509 certificate: UEFI:db [ 0.651032] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' [ 0.651121] integrity: Loading X.509 certificate: UEFI:db [ 0.651215] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' [ 0.651314] integrity: Loading X.509 certificate: UEFI:db [ 0.651478] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' [ 0.651778] ima: Allocated hash algorithm: sha256 [ 0.783090] ima: No architecture policies found [ 0.783286] evm: Initialising EVM extended attributes: [ 0.783460] evm: security.selinux [ 0.783635] evm: security.SMACK64 (disabled) [ 0.783810] evm: security.SMACK64EXEC (disabled) [ 0.783991] evm: security.SMACK64TRANSMUTE (disabled) [ 0.784169] evm: security.SMACK64MMAP (disabled) [ 0.784312] evm: security.apparmor [ 0.784426] evm: security.ima [ 0.784544] evm: security.capability [ 0.784661] evm: HMAC attrs: 0x1 [ 0.824188] Freeing unused decrypted memory: 2036K [ 0.824607] Freeing unused kernel image (initmem) memory: 3732K [ 0.839629] Write protecting the kernel read-only data: 20480k [ 0.840127] Freeing unused kernel image (rodata/data gap) memory: 516K [ 0.844903] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.845065] Run /init as init process [ 0.845202] with arguments: [ 0.845203] /init [ 0.845203] with environment: [ 0.845204] HOME=/ [ 0.845204] TERM=linux [ 0.845204] BOOT_IMAGE=/boot/vmlinuz-6.2.8+ [ 0.876169] ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no) [ 0.876419] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:20/LNXVIDEO:00/input/input0 [ 0.876739] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 [ 0.876974] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection [ 0.877202] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20 [ 0.879959] SCSI subsystem initialized [ 0.881941] ACPI: bus type USB registered [ 0.882116] usbcore: registered new interface driver usbfs [ 0.882283] usbcore: registered new interface driver hub [ 0.882452] usbcore: registered new device driver usb [ 0.886611] libata version 3.00 loaded. [ 0.888347] ahci 0000:0a:00.0: version 3.0 [ 0.888347] xhci_hcd 0000:0b:00.4: xHCI Host Controller [ 0.888350] xhci_hcd 0000:0b:00.4: new USB bus registered, assigned bus number 1 [ 0.888371] xhci_hcd 0000:0b:00.3: xHCI Host Controller [ 0.888372] xhci_hcd 0000:0c:00.0: xHCI Host Controller [ 0.888375] xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 2 [ 0.888375] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 3 [ 0.888376] xhci_hcd 0000:09:00.0: xHCI Host Controller [ 0.888379] xhci_hcd 0000:09:00.0: new USB bus registered, assigned bus number 4 [ 0.888517] ahci 0000:0a:00.0: enabling device (0000 -> 0002) [ 0.888733] xhci_hcd 0000:0b:00.3: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000410 [ 0.888883] ahci 0000:0a:00.0: SSS flag set, parallel bus scan disabled [ 0.889023] xhci_hcd 0000:0b:00.4: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000410 [ 0.889121] ahci 0000:0a:00.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0xf impl SATA mode [ 0.889130] xhci_hcd 0000:0b:00.3: xHCI Host Controller [ 0.889131] xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 5 [ 0.889132] xhci_hcd 0000:0b:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 0.889161] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02 [ 0.889162] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.889163] usb usb2: Product: xHCI Host Controller [ 0.889163] usb usb2: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.889163] usb usb2: SerialNumber: 0000:0b:00.3 [ 0.889217] hub 2-0:1.0: USB hub found [ 0.889221] hub 2-0:1.0: 2 ports detected [ 0.889381] usb usb5: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.889410] xhci_hcd 0000:0b:00.4: xHCI Host Controller [ 0.889509] ahci 0000:0a:00.0: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst [ 0.889645] xhci_hcd 0000:0c:00.0: USB3 root hub has no ports [ 0.889647] xhci_hcd 0000:0c:00.0: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410 [ 0.889679] usb usb5: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02 [ 0.889854] xhci_hcd 0000:0c:00.0: xHCI Host Controller [ 0.889936] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.889996] scsi host0: ahci [ 0.890047] scsi host1: ahci [ 0.890084] scsi host2: ahci [ 0.890131] scsi host3: ahci [ 0.890228] usb usb5: Product: xHCI Host Controller [ 0.890404] scsi host4: ahci [ 0.890502] usb usb5: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.890672] scsi host5: ahci [ 0.890767] usb usb5: SerialNumber: 0000:0b:00.3 [ 0.890926] ata1: SATA max UDMA/133 abar m1024@0xfcb80000 port 0xfcb80100 irq 41 [ 0.891072] hub 5-0:1.0: USB hub found [ 0.891168] ata2: SATA max UDMA/133 abar m1024@0xfcb80000 port 0xfcb80180 irq 41 [ 0.891341] hub 5-0:1.0: 2 ports detected [ 0.891452] ata3: SATA max UDMA/133 abar m1024@0xfcb80000 port 0xfcb80200 irq 41 [ 0.891778] xhci_hcd 0000:0b:00.4: new USB bus registered, assigned bus number 6 [ 0.891779] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 7 [ 0.891780] xhci_hcd 0000:0c:00.0: Host supports USB 3.0 SuperSpeed [ 0.891811] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02 [ 0.891813] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.891813] usb usb3: Product: xHCI Host Controller [ 0.891814] usb usb3: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.891814] usb usb3: SerialNumber: 0000:0c:00.0 [ 0.891855] hub 3-0:1.0: USB hub found [ 0.891858] hub 3-0:1.0: 1 port detected [ 0.891897] ata4: SATA max UDMA/133 abar m1024@0xfcb80000 port 0xfcb80280 irq 41 [ 0.891961] usb usb7: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.891973] usb usb7: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02 [ 0.891974] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.891975] usb usb7: Product: xHCI Host Controller [ 0.891975] usb usb7: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.891975] usb usb7: SerialNumber: 0000:0c:00.0 [ 0.892009] hub 7-0:1.0: USB hub found [ 0.892011] hub 7-0:1.0: config failed, hub doesn't have any ports! (err -19) [ 0.892055] xhci_hcd 0000:0b:00.4: Host supports USB 3.1 Enhanced SuperSpeed [ 0.892199] ata5: DUMMY [ 0.892379] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02 [ 0.892510] ata6: DUMMY [ 0.892667] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.898907] usb usb1: Product: xHCI Host Controller [ 0.899066] usb usb1: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.899222] usb usb1: SerialNumber: 0000:0b:00.4 [ 0.899417] hub 1-0:1.0: USB hub found [ 0.899611] hub 1-0:1.0: 2 ports detected [ 0.899930] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.900086] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02 [ 0.900239] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.900386] usb usb6: Product: xHCI Host Controller [ 0.900531] usb usb6: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.900674] usb usb6: SerialNumber: 0000:0b:00.4 [ 0.900845] hub 6-0:1.0: USB hub found [ 0.901024] hub 6-0:1.0: 2 ports detected [ 0.902658] r8169 0000:07:00.0 eth0: RTL8125B, 58:11:22:b6:19:fa, XID 641, IRQ 66 [ 0.902842] r8169 0000:07:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko] [ 0.944351] xhci_hcd 0000:09:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410 [ 0.944794] xhci_hcd 0000:09:00.0: xHCI Host Controller [ 0.944955] xhci_hcd 0000:09:00.0: new USB bus registered, assigned bus number 8 [ 0.945109] xhci_hcd 0000:09:00.0: Host supports USB 3.2 Enhanced SuperSpeed [ 0.945300] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02 [ 0.945462] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.945612] usb usb4: Product: xHCI Host Controller [ 0.945761] usb usb4: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.945906] usb usb4: SerialNumber: 0000:09:00.0 [ 0.946106] hub 4-0:1.0: USB hub found [ 0.946285] hub 4-0:1.0: 12 ports detected [ 0.947137] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.947302] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02 [ 0.947456] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.947615] usb usb8: Product: xHCI Host Controller [ 0.947764] usb usb8: Manufacturer: Linux 6.2.8+ xhci-hcd [ 0.947913] usb usb8: SerialNumber: 0000:09:00.0 [ 0.948111] hub 8-0:1.0: USB hub found [ 0.948284] hub 8-0:1.0: 5 ports detected [ 0.948769] usb: port power management may be unreliable [ 1.142169] usb 2-1: new full-speed USB device number 2 using xhci_hcd [ 1.146159] usb 3-1: new high-speed USB device number 2 using xhci_hcd [ 1.203069] ata1: SATA link down (SStatus 0 SControl 300) [ 1.270456] usb 4-6: new full-speed USB device number 2 using xhci_hcd [ 1.296321] usb 3-1: New USB device found, idVendor=1532, idProduct=0091, bcdDevice= 1.01 [ 1.296477] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.296625] usb 3-1: Product: Razer Viper 8KHz [ 1.296765] usb 3-1: Manufacturer: Razer [ 1.301207] hid: raw HID events driver (C) Jiri Kosina [ 1.307087] usb 2-1: New USB device found, idVendor=0853, idProduct=0146, bcdDevice= 0.01 [ 1.307307] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.307454] usb 2-1: Product: REALFORCE 87 US [ 1.307591] usb 2-1: Manufacturer: Topre [ 1.342109] usbcore: registered new interface driver usbhid [ 1.342310] usbhid: USB HID core driver [ 1.516235] ata2: SATA link down (SStatus 0 SControl 300) [ 1.598393] tsc: Refined TSC clocksource calibration: 4491.542 MHz [ 1.598619] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x40be31baffa, max_idle_ns: 440795204515 ns [ 1.598882] clocksource: Switched to clocksource tsc [ 1.659294] usb 4-6: config 1 has an invalid interface number: 2 but max is 1 [ 1.659531] usb 4-6: config 1 has no interface number 1 [ 1.671052] usb 4-6: New USB device found, idVendor=0b05, idProduct=19af, bcdDevice= 1.00 [ 1.671285] usb 4-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 1.671495] usb 4-6: Product: AURA LED Controller [ 1.671700] usb 4-6: Manufacturer: AsusTek Computer Inc. [ 1.671905] usb 4-6: SerialNumber: 9876543210 [ 1.829106] ata3: SATA link down (SStatus 0 SControl 300) [ 2.144428] ata4: SATA link down (SStatus 0 SControl 300) [ 2.146388] input: Razer Razer Viper 8KHz as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.0/0003:1532:0091.0001/input/input1 [ 2.146411] nvme nvme0: pci function 0000:01:00.0 [ 2.146714] hid-generic 0003:1532:0091.0001: input,hidraw0: USB HID v1.00 Mouse [Razer Razer Viper 8KHz] on usb-0000:0c:00.0-1/input0 [ 2.147175] input: Razer Razer Viper 8KHz Keyboard as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.1/0003:1532:0091.0002/input/input2 [ 2.152064] nvme nvme0: Shutdown timeout set to 10 seconds [ 2.155559] nvme nvme0: 32/0/0 default/read/poll queues [ 2.157623] nvme0n1: p1 p2 [ 2.206579] input: Razer Razer Viper 8KHz as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.1/0003:1532:0091.0002/input/input3 [ 2.207104] hid-generic 0003:1532:0091.0002: input,hidraw1: USB HID v1.00 Keyboard [Razer Razer Viper 8KHz] on usb-0000:0c:00.0-1/input1 [ 2.207519] input: Razer Razer Viper 8KHz as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.2/0003:1532:0091.0003/input/input4 [ 2.266520] hid-generic 0003:1532:0091.0003: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Viper 8KHz] on usb-0000:0c:00.0-1/input2 [ 2.267171] input: Topre REALFORCE 87 US as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.0/0003:0853:0146.0004/input/input5 [ 2.326603] hid-generic 0003:0853:0146.0004: input,hidraw3: USB HID v1.11 Keyboard [Topre REALFORCE 87 US] on usb-0000:0b:00.3-1/input0 [ 2.327281] input: Topre REALFORCE 87 US Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.1/0003:0853:0146.0005/input/input6 [ 2.386445] input: Topre REALFORCE 87 US Keyboard as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.1/0003:0853:0146.0005/input/input7 [ 2.387171] hid-generic 0003:0853:0146.0005: input,hidraw4: USB HID v1.11 Keyboard [Topre REALFORCE 87 US] on usb-0000:0b:00.3-1/input1 [ 2.387811] hid-generic 0003:0853:0146.0006: hiddev0,hidraw5: USB HID v1.11 Device [Topre REALFORCE 87 US] on usb-0000:0b:00.3-1/input2 [ 2.388355] hid-generic 0003:0B05:19AF.0007: hiddev1,hidraw6: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:09:00.0-6/input2 [ 2.466137] raid6: avx512x4 gen() 46620 MB/s [ 2.534140] raid6: avx512x2 gen() 48473 MB/s [ 2.602350] raid6: avx512x1 gen() 47825 MB/s [ 2.670351] raid6: avx2x4 gen() 51145 MB/s [ 2.738350] raid6: avx2x2 gen() 50535 MB/s [ 2.806378] raid6: avx2x1 gen() 40112 MB/s [ 2.806619] raid6: using algorithm avx2x4 gen() 51145 MB/s [ 2.874502] raid6: .... xor() 6365 MB/s, rmw enabled [ 2.874745] raid6: using avx512x2 recovery algorithm [ 2.875494] xor: automatically using best checksumming function avx [ 2.876069] async_tx: api initialized (async) [ 2.940500] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes [ 3.002606] EXT4-fs (nvme0n1p2): mounted filesystem e9d7e2ef-75c8-44f6-8e7a-e173446d456a with ordered data mode. Quota mode: none. [ 3.018286] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist. [ 3.042840] systemd[1]: Inserted module 'autofs4' [ 3.050465] systemd[1]: systemd 252.6-1 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.051132] systemd[1]: Detected architecture x86-64. [ 3.052578] systemd[1]: Hostname set to . [ 3.115434] systemd[1]: /etc/systemd/system/ddns.service:5: Special user nobody configured, this is not safe! [ 3.130429] systemd[1]: Queued start job for default target graphical.target. [ 3.255124] systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice. [ 3.255887] systemd[1]: Created slice system-getty.slice - Slice /system/getty. [ 3.256428] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe. [ 3.256956] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix. [ 3.257476] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck. [ 3.257965] systemd[1]: Created slice user.slice - User and Session Slice. [ 3.258393] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch. [ 3.258810] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch. [ 3.259295] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point. [ 3.259966] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes. [ 3.260414] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes. [ 3.260868] systemd[1]: Reached target remote-fs.target - Remote File Systems. [ 3.261314] systemd[1]: Reached target slices.target - Slice Units. [ 3.261762] systemd[1]: Reached target swap.target - Swaps. [ 3.262220] systemd[1]: Reached target time-set.target - System Time Set. [ 3.262677] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes. [ 3.263131] systemd[1]: Reached target virt-guest-shutdown.target - Libvirt guests shutdown. [ 3.263603] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs. [ 3.264118] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket. [ 3.264583] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket. [ 3.265035] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe. [ 3.265543] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket. [ 3.266023] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log). [ 3.266547] systemd[1]: Listening on systemd-journald.socket - Journal Socket. [ 3.273953] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. [ 3.274657] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. [ 3.275609] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System... [ 3.276449] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System... [ 3.277226] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System... [ 3.278063] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System... [ 3.278588] systemd[1]: Finished blk-availability.service - Availability of block devices. [ 3.279546] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... [ 3.280435] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 3.281497] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... [ 3.282363] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... [ 3.283175] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... [ 3.283996] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... [ 3.284820] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... [ 3.285637] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... [ 3.285667] pstore: Using crash dump compression: deflate [ 3.286442] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root). [ 3.288301] pstore: Registered efi_pstore as persistent store backend [ 3.288728] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 3.289205] device-mapper: uevent: version 1.0.3 [ 3.289496] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com [ 3.290023] systemd[1]: Starting systemd-journald.service - Journal Service... [ 3.291106] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... [ 3.291320] loop: module loaded [ 3.291854] fuse: init (API version 7.38) [ 3.292277] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems... [ 3.293104] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... [ 3.294064] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System. [ 3.294580] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System. [ 3.295084] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System. [ 3.295581] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System. [ 3.296118] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. [ 3.296741] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 3.296749] EXT4-fs (nvme0n1p2): re-mounted e9d7e2ef-75c8-44f6-8e7a-e173446d456a. Quota mode: none. [ 3.297021] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. [ 3.297936] ACPI: bus type drm_connector registered [ 3.298083] systemd[1]: modprobe@dm_mod.service: Deactivated successfully. [ 3.298453] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. [ 3.299028] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 3.299292] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm. [ 3.299829] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 3.299916] lp: driver loaded but no devices found [ 3.300092] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. [ 3.300815] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 3.301082] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse. [ 3.301620] systemd[1]: modprobe@loop.service: Deactivated successfully. [ 3.301889] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. [ 3.301974] ppdev: user-space parallel port driver [ 3.302663] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems. [ 3.303635] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System... [ 3.304410] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System... [ 3.304859] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes). [ 3.305288] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). [ 3.306060] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed... [ 3.306550] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. [ 3.307340] systemd[1]: Starting systemd-sysusers.service - Create System Users... [ 3.308466] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. [ 3.308990] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System. [ 3.309478] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System. [ 3.310307] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... [ 3.312451] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed. [ 3.312993] systemd[1]: Finished systemd-sysusers.service - Create System Users. [ 3.313478] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes). [ 3.314290] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... [ 3.314826] systemd[1]: Started systemd-journald.service - Journal Service. [ 3.318539] systemd-journald[533]: Received client request to flush runtime journal. [ 3.347710] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8 [ 3.348018] ACPI: button: Power Button [PWRB] [ 3.348296] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input9 [ 3.348617] ACPI: button: Power Button [PWRF] [ 3.359078] ccp 0000:0b:00.2: enabling device (0000 -> 0002) [ 3.359886] input: PC Speaker as /devices/platform/pcspkr/input/input10 [ 3.361243] ccp 0000:0b:00.2: ccp: unable to access the device: you might be running a broken BIOS. [ 3.361768] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver [ 3.364700] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address [ 3.365422] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer [ 3.365699] RAPL PMU: hw unit of domain package 2^-16 Joules [ 3.365893] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0) [ 3.367748] cryptd: max_cpu_qlen set to 1000 [ 3.371673] ccp 0000:0b:00.2: tee enabled [ 3.372034] ccp 0000:0b:00.2: psp enabled [ 3.373271] AVX2 version of gcm_enc/dec engaged. [ 3.373675] AES CTR mode by8 optimization enabled [ 3.374441] asus_wmi: ASUS WMI generic driver loaded [ 3.374860] Error: Driver 'pcspkr' is already registered, aborting... [ 3.375602] asus_wmi: Initialization: 0x0 [ 3.375962] asus_wmi: BIOS WMI version: 0.0 [ 3.376317] asus_wmi: SFUN value: 0x0 [ 3.376591] eeepc-wmi eeepc-wmi: Detected AsusMbSwInterface, not ASUSWMI, use DSTS [ 3.377115] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input11 [ 3.605658] snd_hda_intel 0000:0b:00.1: enabling device (0000 -> 0002) [ 3.605940] snd_hda_intel 0000:0b:00.1: Handle vga_switcheroo audio client [ 3.606221] snd_hda_intel 0000:0b:00.6: enabling device (0000 -> 0002) [ 3.620313] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:0b:00.1/sound/card0/input12 [ 3.620678] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:0b:00.1/sound/card0/input13 [ 3.648921] SVM: TSC scaling supported [ 3.649152] kvm: Nested Virtualization enabled [ 3.649361] SVM: kvm: Nested Paging enabled [ 3.649576] SVM: Virtual VMLOAD VMSAVE supported [ 3.649790] SVM: Virtual GIF supported [ 3.650018] SVM: LBR virtualization supported [ 3.651420] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC897: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line [ 3.651613] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 3.651789] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0) [ 3.651958] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0 [ 3.652123] snd_hda_codec_realtek hdaudioC1D0: inputs: [ 3.652285] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19 [ 3.652444] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18 [ 3.652601] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a [ 3.657641] MCE: In-kernel MCE decoding enabled. [ 3.660628] intel_rapl_common: Found RAPL domain package [ 3.660796] intel_rapl_common: Found RAPL domain core [ 3.673913] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input14 [ 3.674316] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input15 [ 3.674680] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input16 [ 3.674979] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input17 [ 3.675220] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input18 [ 3.675408] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input19 [ 3.675594] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0b:00.6/sound/card1/input20 [ 4.402797] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 5.414836] br0: port 1(eth0) entered blocking state [ 5.415039] br0: port 1(eth0) entered disabled state [ 5.415269] device eth0 entered promiscuous mode [ 5.442497] RTL8226B_RTL8221B 2.5Gbps PHY r8169-0-700:00: attached PHY driver (mii_bus:phy_addr=r8169-0-700:00, irq=MAC) [ 5.626505] r8169 0000:07:00.0 eth0: Link is Down [ 8.140464] r8169 0000:07:00.0 eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 8.140796] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 8.141132] br0: port 1(eth0) entered blocking state [ 8.141445] br0: port 1(eth0) entered forwarding state [ 8.141854] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready [ 8.453339] r8169 0000:07:00.0: invalid VPD tag 0x00 (size 0) at offset 0; assume missing optional EEPROM [ 102.476745] usb 2-1: USB disconnect, device number 2 [ 103.843948] usb 3-1: USB disconnect, device number 2 [ 105.789692] pcieport 0000:00:08.3: PME: Spurious native interrupt! [ 106.049579] usb 3-1: new full-speed USB device number 3 using xhci_hcd [ 106.214456] usb 3-1: New USB device found, idVendor=0853, idProduct=0146, bcdDevice= 0.01 [ 106.214480] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 106.214489] usb 3-1: Product: REALFORCE 87 US [ 106.214495] usb 3-1: Manufacturer: Topre [ 106.233580] input: Topre REALFORCE 87 US as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.0/0003:0853:0146.0008/input/input21 [ 106.293741] hid-generic 0003:0853:0146.0008: input,hidraw0: USB HID v1.11 Keyboard [Topre REALFORCE 87 US] on usb-0000:0c:00.0-1/input0 [ 106.300873] input: Topre REALFORCE 87 US Consumer Control as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.1/0003:0853:0146.0009/input/input22 [ 106.357684] input: Topre REALFORCE 87 US Keyboard as /devices/pci0000:00/0000:00:08.3/0000:0c:00.0/usb3/3-1/3-1:1.1/0003:0853:0146.0009/input/input23 [ 106.357807] hid-generic 0003:0853:0146.0009: input,hidraw1: USB HID v1.11 Keyboard [Topre REALFORCE 87 US] on usb-0000:0c:00.0-1/input1 [ 106.361789] hid-generic 0003:0853:0146.000A: hiddev0,hidraw2: USB HID v1.11 Device [Topre REALFORCE 87 US] on usb-0000:0c:00.0-1/input2 [ 108.229582] usb 2-1: new high-speed USB device number 3 using xhci_hcd [ 108.379768] usb 2-1: New USB device found, idVendor=1532, idProduct=0091, bcdDevice= 1.01 [ 108.379793] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 108.379802] usb 2-1: Product: Razer Viper 8KHz [ 108.379808] usb 2-1: Manufacturer: Razer [ 108.382349] input: Razer Razer Viper 8KHz as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.0/0003:1532:0091.000B/input/input24 [ 108.382449] hid-generic 0003:1532:0091.000B: input,hidraw3: USB HID v1.00 Mouse [Razer Razer Viper 8KHz] on usb-0000:0b:00.3-1/input0 [ 108.383869] input: Razer Razer Viper 8KHz Keyboard as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.1/0003:1532:0091.000C/input/input25 [ 108.441714] input: Razer Razer Viper 8KHz as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.1/0003:1532:0091.000C/input/input26 [ 108.442523] hid-generic 0003:1532:0091.000C: input,hidraw4: USB HID v1.00 Keyboard [Razer Razer Viper 8KHz] on usb-0000:0b:00.3-1/input1 [ 108.444501] input: Razer Razer Viper 8KHz as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/usb2/2-1/2-1:1.2/0003:1532:0091.000D/input/input27 [ 108.501760] hid-generic 0003:1532:0091.000D: input,hidraw5: USB HID v1.11 Keyboard [Razer Razer Viper 8KHz] on usb-0000:0b:00.3-1/input2 (midi) [~/work/linux]