Re: Goodix Drive issue

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Hans

Yes, both the front and back cameras work but with very noticeable lag, the back camera is unusable because of it, the front camera shows as Front Camera (V4L2) in Kamoso and for some reason the back camera is USB 2.0 Camera (V4L2) in Kamoso (I don't really care for the cameras but I thought it was worth adding)

The i2cdetect is basically instant, the first ever run did go through the list one digit at a time in cmd if you know what I mean by that, like a loading bar. But now its instantaneous.

I have attached the dmesg.txt again after running i2cdetect, I think there are more options in the list now, I think prior was only 3? I am very new to this depth of linux so excuse my lack of knowlege, its a good learning ground for me!

I would also like to add, please do not feel you need to rush to do this, I don't want to step in the way of your other projects!

Thanks

Henry

On 20/03/2025 15:53, Hans de Goede wrote:
Hi Henry.

On 20-Mar-25 4:10 PM, Henry Isaac wrote:
Hello Hans

Yes the LCD was on during the entire process. Everything litterally works on the tablet except for the touchscreen function. The display is fine, no refresh rate issues or resolution issues.

I am unsure the exact driver for windows, I can boot into a copy of windows 11 and find out. Also Geos website has a zip folder of all the drivers if this helps!

https://geocomputers.freshdesk.com/en/support/solutions/articles/103000268395-where-can-i-download-the-drivers-for-my-geo-device-
Ok I downloaded this and there are no special touchscreen
drivers there, so I guess things just work with the default
i2c-hid support in Windows.

Question, do the cameras on this tablet work ? I wonder
if this is using an IPU4 based camera with a sensor which
happens to be on the same bus and is blocking the bus.

When you run the i2cdetect command does it go fast or
slow ? It should be pretty fast.

Also do any new messages show up in dmesg when you run
i2cdetect ?

Regards,

Hans




On 20 Mar 2025 2:54 pm, Hans de Goede <hdegoede@xxxxxxxxxx> wrote:

     Hi Henry,

     On 19-Mar-25 4:49 PM, Henry Isaac wrote:
     > Hello,
     >
     > Sorry about that, I'll be sure to select reply all next time.
     >
     > For some reason I am still getting nothing on the sudo i2cdetect unless I am doing something wrong, I have attached the command line results as a .txt
     >
     > I will add, I am unsure if this makes a difference but the touchscreen supports, and the tablet comes with a battery powered stylus, I am unsure if this feature of the touchscreen could cause any issues?

     Well that is weird. I'm not quite sure what is going on here...

     Do you know which driver the touchscreen uses under
     Windows ? Maybe the manufacturer provides a separate
     driver packages for the touchscreen for Windows ?

     Also I presume that the LCD panel of the tablet was
     on during all these tests ?

     Sometimes the touchscreen gets turned on/off together
     with the LCD panel ...

     Regards,

     Hans



     > On 19/03/2025 13:25, Hans de Goede wrote:
     >> Hi Henry,
     >>
     >> Note I've added linux-input@xxxxxxxxxxxxxxx back to the Cc,
     >> please use reply-to-all to keep it in the Cc.
     >>
     >> On 18-Mar-25 11:26 PM, Henry Isaac wrote:
     >>> Hello Hans
     >>>
     >>> Sorry for the delay, had an issue with Endevour so I reinstalled but this time just used the normal Arch ISO (Sorry if his complicates things) I followed all the steps again and the new ones to be safe.
     >>>
     >>> At the i2c_hid part of the file it just says address unavailable, I hope this helps!
     >> Since the new dmesg was not send to the list, here are the 2 relevant
     >> new messages after enabling i2c_hid.dyndbg:
     >>
     >> [    5.553115] drivers/hid/i2c-hid/i2c-hid-core.c: HID probe called for i2c 0x5d
     >> [    5.553819] i2c_hid_acpi i2c-GXTP7386:00: nothing at this address: -121
     >>
     >> Henry, this means that either the touchscreen is not at that address,
     >> or it is but it is not powered on.
     >>
     >> The ACPI tables describe 5 possible touchscreens, there is
     >> a possibility that somehow the wrong one is selected by the BIOS.
     >>
     >> First lets try to see if there is a touchscreen at a different
     >> i2c-address.
     >>
     >> All ACPI touchscreen descriptions use the same i2c controller,
     >> so first of all lets find out which i2c-bus Linux has assigned
     >> to that controller, please run:
     >>
     >> ls -l /sys/bus/i2c/devices/i2c-GXTP7386:00
     >>
     >> Here is the output of that run on the touchscreen of a laptop:
     >>
     >> lrwxrwxrwx. 1 root root 0 Mar 19 11:24 /sys/bus/i2c/devices/i2c-ELAN901C:00 -> ../../../devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN901C:00
     >>
     >> notice the "/i2c-1/" in the output, this indicates that the touchscreen
     >> on that laptop is on bus 1. Now install i2c-tools (not sure what
     >> the Arch pkg name is) and run e.g.:
     >>
     >> sudo modprobe i2c_dev
     >> sudo i2cdetect -y -r 1
     >>
     >> replacing "1" with the bus-number you found.
     >>
     >> Here is example output from the same laptop:
     >>
     >>       0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
     >> 00:                         -- -- -- -- -- -- -- --
     >> 10: 10 -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
     >> 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
     >> 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
     >> 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
     >> 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
     >> 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
     >> 70: -- -- -- -- -- -- -- --
     >>
     >> This shows a single device on this bus at address 0x10.
     >>
     >> Maybe you will see a device here at address 0x10, 0x14,
     >> 0x38, 0x40 or 0x5d .
     >>
     >> If you see a device at one of these addresses please
     >> copy and paste the output in your next email and
     >> then we will see from there.
     >>
     >> OTOH if you don't see a device at any of these addresses
     >> lets try to see if we can power the touchscreen up by setting
     >> its GPIO. According to the ACPI info GPIO-controller
     >> GPO0 pin 0x3a (pin 58) is used for the touchscreen enable.
     >>
     >> First lets make sure that gpiochip0 matches GPO0,
     >> install libgpiod-utils (Fedora pkg name) and run:
     >>
     >> sudo gpiodetect
     >>
     >> On your geminilake tablet I expect that to output
     >> something like this:
     >>
     >> gpiochip0 [INT3453:00] (80 lines)
     >> gpiochip1 [INT3453:01] (80 lines)
     >> gpiochip2 [INT3453:02] (20 lines)
     >> gpiochip3 [INT3453:03] (35 lines)
     >>
     >> The important thing here is that gpiochip0 is INT3453:00,
     >> that may be different if there is some other GPIO chip
     >> which got registered earlier.
     >>
     >> Assuming that gpiochip0 is INT3453:00 lets try to turn
     >> the touchpad on:
     >>
     >> sudo gpioset -c gpiochip0 58=1
     >>
     >> (and then press Ctrl+C because gpioset keeps running
     >> to hold ownership over the GPIO)
     >>
     >> and then re-run the i2cdetect:
     >>
     >> sudo i2cdetect -y -r 1
     >>
     >> again replacing "1" with the bus-number you found.
     >>
     >> Hopefully a device will show up now, if it does
     >> please copy and paste the output in your next email.
     >>
     >> If there still is no device, then maybe the enable signal
     >> is inverted, try running:
     >>
     >> sudo gpioset -c gpiochip0 58=0
     >> (and then press Ctrl+C again)
     >>
     >> and re-run the i2cdetect:
     >>
     >> sudo i2cdetect -y -r 1
     >>
     >> Note if you do get a device found after running gpioset,
     >> please also let me know if you got the device to show
     >> up with 58=1 or with 58=0
     >>
     >> Regards,
     >>
     >> Hans
     >>
     >>

[    0.000000] Linux version 6.13.7-arch1-1 (linux@archlinux) (gcc (GCC) 14.2.1 20250207, GNU ld (GNU Binutils) 2.44) #1 SMP PREEMPT_DYNAMIC Thu, 13 Mar 2025 18:12:00 +0000
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=db39d1fe-0423-4502-81b2-5605b9f969a0 rw rootflags=subvol=@ zswap.enabled=0 rootfstype=btrfs loglevel=3 quiet i2c_hid.dyndbg
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000003dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000003e000-0x000000000003ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000040000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000010000000-0x0000000012150fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000012151000-0x00000000761e9fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000761ea000-0x0000000079a3efff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000079a3f000-0x0000000079a61fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000079a62000-0x0000000079acafff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000079acb000-0x0000000079ed8fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000079ed9000-0x000000007a775fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a776000-0x000000007a821fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a822000-0x000000007abfffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007ac00000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000d0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000d3709000-0x00000000d3709fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe042000-0x00000000fe044fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe900000-0x00000000fe902fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] e820: update [mem 0x6c09f018-0x6c0af057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000003dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000003e000-0x000000000003ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000040000-0x000000000009dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000000fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000010000000-0x0000000012150fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000012151000-0x000000006c09f017] usable
[    0.000000] reserve setup_data: [mem 0x000000006c09f018-0x000000006c0af057] usable
[    0.000000] reserve setup_data: [mem 0x000000006c0af058-0x00000000761e9fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000761ea000-0x0000000079a3efff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000079a3f000-0x0000000079a61fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x0000000079a62000-0x0000000079acafff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000079acb000-0x0000000079ed8fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000079ed9000-0x000000007a775fff] usable
[    0.000000] reserve setup_data: [mem 0x000000007a776000-0x000000007a821fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000007a822000-0x000000007abfffff] usable
[    0.000000] reserve setup_data: [mem 0x000000007ac00000-0x000000007fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000d0000000-0x00000000d0ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000d3709000-0x00000000d3709fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fe042000-0x00000000fe044fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fe900000-0x00000000fe902fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000027fffffff] usable
[    0.000000] efi: EFI v2.7 by American Megatrends
[    0.000000] efi: ACPI 2.0=0x79a46000 ACPI=0x79a46000 SMBIOS=0x79ceb000 SMBIOS 3.0=0x79cea000 MEMATTR=0x7285e018 ESRT=0x7287d618 INITRD=0x6f577d98 RNG=0x79a45018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem47: MMIO range=[0xd0000000-0xd0ffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xd0000000-0xd0ffffff] reserved
[    0.000000] efi: Not removing mem48: MMIO range=[0xd3709000-0xd3709fff] (4KB) from e820 map
[    0.000000] efi: Remove mem49: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[    0.000000] efi: Not removing mem50: MMIO range=[0xfe042000-0xfe042fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem51: MMIO range=[0xfe043000-0xfe043fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem52: MMIO range=[0xfe044000-0xfe044fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem53: MMIO range=[0xfe900000-0xfe902fff] (12KB) from e820 map
[    0.000000] efi: Not removing mem54: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem55: MMIO range=[0xfed01000-0xfed01fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem56: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem57: MMIO range=[0xff800000-0xffffffff] (8MB) from e820 map
[    0.000000] e820: remove [mem 0xff800000-0xffffffff] reserved
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: Tactus GeoPad 220/SF133GR530, BIOS LC-BI-12-SF133GR530-669-A 03/10/2022
[    0.000000] DMI: Memory slots populated: 4/4
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1094.400 MHz processor
[    0.000038] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000047] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000082] last_pfn = 0x280000 max_arch_pfn = 0x400000000
[    0.000101] MTRR map: 7 entries (3 fixed + 4 variable; max 23), built from 10 variable MTRRs
[    0.000108] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000236] last_pfn = 0x7ac00 max_arch_pfn = 0x400000000
[    0.012963] esrt: Reserving ESRT space from 0x000000007287d618 to 0x000000007287d650.
[    0.012981] e820: update [mem 0x7287d000-0x7287dfff] usable ==> reserved
[    0.013041] Using GB pages for direct mapping
[    0.015872] Secure boot disabled
[    0.015874] RAMDISK: [mem 0x6c0b0000-0x6da3ffff]
[    0.016100] ACPI: Early table checksum verification disabled
[    0.016109] ACPI: RSDP 0x0000000079A46000 000024 (v02 ALASKA)
[    0.016120] ACPI: XSDT 0x0000000079A460C0 0000F4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.016137] ACPI: FACP 0x0000000079A536C0 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.016154] ACPI: DSDT 0x0000000079A46260 00D456 (v02 ALASKA A M I    01072009 INTL 20160930)
[    0.016166] ACPI: FACS 0x0000000079ACA080 000040
[    0.016174] ACPI: FPDT 0x0000000079A537E0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.016184] ACPI: FIDT 0x0000000079A53830 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.016193] ACPI: MSDM 0x0000000079A538D0 000055 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.016203] ACPI: MCFG 0x0000000079A53930 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.016213] ACPI: DBG2 0x0000000079A53970 000072 (v00 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016222] ACPI: DBGP 0x0000000079A539F0 000034 (v01 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016232] ACPI: HPET 0x0000000079A53A30 000038 (v01 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016241] ACPI: LPIT 0x0000000079A53A70 00005C (v01 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016250] ACPI: APIC 0x0000000079A53AD0 000084 (v04 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016260] ACPI: NPKT 0x0000000079A53B60 000065 (v01 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016269] ACPI: SSDT 0x0000000079A53BD0 004286 (v02 INTEL  DptfTab  00000003 BRXT 0100000D)
[    0.016280] ACPI: SSDT 0x0000000079A57E60 004C2A (v02 INTEL  RVPRtd3  00000003 BRXT 0100000D)
[    0.016290] ACPI: SSDT 0x0000000079A5CA90 000C8F (v02 INTEL  UsbCTabl 00000003 BRXT 0100000D)
[    0.016300] ACPI: SSDT 0x0000000079A5D720 000669 (v01 Intel_ Platform 00001000 INTL 20160930)
[    0.016310] ACPI: SSDT 0x0000000079A5DD90 0000B1 (v01 Intel_ ADebTabl 00001000 INTL 20160930)
[    0.016319] ACPI: SSDT 0x0000000079A5DE50 000517 (v02 PmRef  Cpu0Ist  00003000 INTL 20160930)
[    0.016329] ACPI: SSDT 0x0000000079A5E370 000775 (v02 CpuRef CpuSsdt  00003000 INTL 20160930)
[    0.016339] ACPI: SSDT 0x0000000079A5EAF0 00035F (v02 PmRef  Cpu0Tst  00003000 INTL 20160930)
[    0.016349] ACPI: SSDT 0x0000000079A5EE50 0001E6 (v02 PmRef  ApTst    00003000 INTL 20160930)
[    0.016359] ACPI: SSDT 0x0000000079A5F040 002892 (v02 SaSsdt SaSsdt   00003000 INTL 20160930)
[    0.016369] ACPI: UEFI 0x0000000079A618E0 000048 (v01 ALASKA A M I    00000002      01000013)
[    0.016378] ACPI: BGRT 0x0000000079A61930 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.016388] ACPI: DMAR 0x0000000079A61970 0000A8 (v01 INTEL  GLK-SOC  00000003 BRXT 0100000D)
[    0.016397] ACPI: WDAT 0x0000000079A61A20 000104 (v01                 00000000      00000000)
[    0.016407] ACPI: WSMT 0x0000000079A61B30 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.016415] ACPI: Reserving FACP table memory at [mem 0x79a536c0-0x79a537d3]
[    0.016420] ACPI: Reserving DSDT table memory at [mem 0x79a46260-0x79a536b5]
[    0.016423] ACPI: Reserving FACS table memory at [mem 0x79aca080-0x79aca0bf]
[    0.016426] ACPI: Reserving FPDT table memory at [mem 0x79a537e0-0x79a53823]
[    0.016429] ACPI: Reserving FIDT table memory at [mem 0x79a53830-0x79a538cb]
[    0.016432] ACPI: Reserving MSDM table memory at [mem 0x79a538d0-0x79a53924]
[    0.016435] ACPI: Reserving MCFG table memory at [mem 0x79a53930-0x79a5396b]
[    0.016438] ACPI: Reserving DBG2 table memory at [mem 0x79a53970-0x79a539e1]
[    0.016441] ACPI: Reserving DBGP table memory at [mem 0x79a539f0-0x79a53a23]
[    0.016444] ACPI: Reserving HPET table memory at [mem 0x79a53a30-0x79a53a67]
[    0.016447] ACPI: Reserving LPIT table memory at [mem 0x79a53a70-0x79a53acb]
[    0.016450] ACPI: Reserving APIC table memory at [mem 0x79a53ad0-0x79a53b53]
[    0.016453] ACPI: Reserving NPKT table memory at [mem 0x79a53b60-0x79a53bc4]
[    0.016456] ACPI: Reserving SSDT table memory at [mem 0x79a53bd0-0x79a57e55]
[    0.016459] ACPI: Reserving SSDT table memory at [mem 0x79a57e60-0x79a5ca89]
[    0.016462] ACPI: Reserving SSDT table memory at [mem 0x79a5ca90-0x79a5d71e]
[    0.016465] ACPI: Reserving SSDT table memory at [mem 0x79a5d720-0x79a5dd88]
[    0.016468] ACPI: Reserving SSDT table memory at [mem 0x79a5dd90-0x79a5de40]
[    0.016471] ACPI: Reserving SSDT table memory at [mem 0x79a5de50-0x79a5e366]
[    0.016474] ACPI: Reserving SSDT table memory at [mem 0x79a5e370-0x79a5eae4]
[    0.016477] ACPI: Reserving SSDT table memory at [mem 0x79a5eaf0-0x79a5ee4e]
[    0.016480] ACPI: Reserving SSDT table memory at [mem 0x79a5ee50-0x79a5f035]
[    0.016483] ACPI: Reserving SSDT table memory at [mem 0x79a5f040-0x79a618d1]
[    0.016486] ACPI: Reserving UEFI table memory at [mem 0x79a618e0-0x79a61927]
[    0.016489] ACPI: Reserving BGRT table memory at [mem 0x79a61930-0x79a61967]
[    0.016492] ACPI: Reserving DMAR table memory at [mem 0x79a61970-0x79a61a17]
[    0.016495] ACPI: Reserving WDAT table memory at [mem 0x79a61a20-0x79a61b23]
[    0.016498] ACPI: Reserving WSMT table memory at [mem 0x79a61b30-0x79a61b57]
[    0.016691] No NUMA configuration found
[    0.016694] Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
[    0.016726] NODE_DATA(0) allocated [mem 0x27ffd52c0-0x27fffffff]
[    0.017772] Zone ranges:
[    0.017775]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.017780]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.017786]   Normal   [mem 0x0000000100000000-0x000000027fffffff]
[    0.017791]   Device   empty
[    0.017794] Movable zone start for each node
[    0.017802] Early memory node ranges
[    0.017804]   node   0: [mem 0x0000000000001000-0x000000000003dfff]
[    0.017808]   node   0: [mem 0x0000000000040000-0x000000000009dfff]
[    0.017812]   node   0: [mem 0x0000000000100000-0x000000000fffffff]
[    0.017815]   node   0: [mem 0x0000000012151000-0x00000000761e9fff]
[    0.017819]   node   0: [mem 0x0000000079ed9000-0x000000007a775fff]
[    0.017823]   node   0: [mem 0x000000007a822000-0x000000007abfffff]
[    0.017826]   node   0: [mem 0x0000000100000000-0x000000027fffffff]
[    0.017835] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
[    0.017850] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.017857] On node 0, zone DMA: 2 pages in unavailable ranges
[    0.017929] On node 0, zone DMA: 98 pages in unavailable ranges
[    0.026597] On node 0, zone DMA32: 8529 pages in unavailable ranges
[    0.027314] On node 0, zone DMA32: 15599 pages in unavailable ranges
[    0.027342] On node 0, zone DMA32: 172 pages in unavailable ranges
[    0.056875] On node 0, zone Normal: 21504 pages in unavailable ranges
[    0.056909] Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
[    0.057282] ACPI: PM-Timer IO Port: 0x408
[    0.057312] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
[    0.057317] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
[    0.057321] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
[    0.057324] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
[    0.057365] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-119
[    0.057375] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.057381] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.057394] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.057398] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.057427] e820: update [mem 0x71b3a000-0x72420fff] usable ==> reserved
[    0.057479] TSC deadline timer available
[    0.057498] CPU topo: Max. logical packages:   1
[    0.057501] CPU topo: Max. logical dies:       1
[    0.057503] CPU topo: Max. dies per package:   1
[    0.057521] CPU topo: Max. threads per core:   1
[    0.057524] CPU topo: Num. cores per package:     4
[    0.057526] CPU topo: Num. threads per package:   4
[    0.057528] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.057613] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.057620] PM: hibernation: Registered nosave memory: [mem 0x0003e000-0x0003ffff]
[    0.057627] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[    0.057633] PM: hibernation: Registered nosave memory: [mem 0x10000000-0x12150fff]
[    0.057640] PM: hibernation: Registered nosave memory: [mem 0x6c09f000-0x6c09ffff]
[    0.057647] PM: hibernation: Registered nosave memory: [mem 0x6c0af000-0x6c0affff]
[    0.057653] PM: hibernation: Registered nosave memory: [mem 0x71b3a000-0x72420fff]
[    0.057660] PM: hibernation: Registered nosave memory: [mem 0x7287d000-0x7287dfff]
[    0.057666] PM: hibernation: Registered nosave memory: [mem 0x761ea000-0x79a3efff]
[    0.057669] PM: hibernation: Registered nosave memory: [mem 0x79a3f000-0x79a61fff]
[    0.057672] PM: hibernation: Registered nosave memory: [mem 0x79a62000-0x79acafff]
[    0.057675] PM: hibernation: Registered nosave memory: [mem 0x79acb000-0x79ed8fff]
[    0.057681] PM: hibernation: Registered nosave memory: [mem 0x7a776000-0x7a821fff]
[    0.057688] PM: hibernation: Registered nosave memory: [mem 0x7ac00000-0x7fffffff]
[    0.057691] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xd3708fff]
[    0.057693] PM: hibernation: Registered nosave memory: [mem 0xd3709000-0xd3709fff]
[    0.057696] PM: hibernation: Registered nosave memory: [mem 0xd370a000-0xfe041fff]
[    0.057699] PM: hibernation: Registered nosave memory: [mem 0xfe042000-0xfe044fff]
[    0.057702] PM: hibernation: Registered nosave memory: [mem 0xfe045000-0xfe8fffff]
[    0.057705] PM: hibernation: Registered nosave memory: [mem 0xfe900000-0xfe902fff]
[    0.057707] PM: hibernation: Registered nosave memory: [mem 0xfe903000-0xfebfffff]
[    0.057710] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.057713] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
[    0.057715] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.057718] PM: hibernation: Registered nosave memory: [mem 0xfed02000-0xfedfffff]
[    0.057721] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.057724] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[    0.057729] [mem 0x80000000-0xd3708fff] available for PCI devices
[    0.057733] Booting paravirtualized kernel on bare hardware
[    0.057740] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.076477] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.077257] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[    0.077285] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[    0.077294] pcpu-alloc: [0] 0 1 2 3 
[    0.077368] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=db39d1fe-0423-4502-81b2-5605b9f969a0 rw rootflags=subvol=@ zswap.enabled=0 rootfstype=btrfs loglevel=3 quiet i2c_hid.dyndbg
[    0.077758] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux", will be passed to user space.
[    0.077795] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[    0.079994] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.081122] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.081298] Fallback order for Node 0: 0 
[    0.081315] Built 1 zonelists, mobility grouping on.  Total pages: 2051247
[    0.081320] Policy zone: Normal
[    0.081993] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.082021] software IO TLB: area num 4.
[    0.187455] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.187585] ftrace: allocating 51706 entries in 202 pages
[    0.251831] ftrace: allocated 202 pages with 4 groups
[    0.252116] Dynamic Preempt: full
[    0.252250] rcu: Preemptible hierarchical RCU implementation.
[    0.252253] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.252257] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.252260] 	Trampoline variant of Tasks RCU enabled.
[    0.252262] 	Rude variant of Tasks RCU enabled.
[    0.252264] 	Tracing variant of Tasks RCU enabled.
[    0.252266] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.252268] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.252288] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.252294] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.252300] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.273490] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[    0.273903] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.274332] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.274441] Console: colour dummy device 80x25
[    0.274450] printk: legacy console [tty0] enabled
[    0.274637] ACPI: Core revision 20240827
[    0.275248] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
[    0.275370] APIC: Switch to symmetric I/O mode setup
[    0.275377] DMAR: Host address width 39
[    0.275382] DMAR: DRHD base: 0x000000fed64000 flags: 0x0
[    0.275402] DMAR: dmar0: reg_base_addr fed64000 ver 1:0 cap 1c0000c40660462 ecap 9e2ff0505e
[    0.275411] DMAR: DRHD base: 0x000000fed65000 flags: 0x1
[    0.275425] DMAR: dmar1: reg_base_addr fed65000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.275434] DMAR: RMRR base: 0x000000799dd000 end: 0x000000799fcfff
[    0.275440] DMAR: RMRR base: 0x0000007b800000 end: 0x0000007fffffff
[    0.275447] DMAR-IR: IOAPIC id 1 under DRHD base  0xfed65000 IOMMU 1
[    0.275452] DMAR-IR: HPET id 0 under DRHD base 0xfed65000
[    0.275456] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.278107] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.278117] x2apic enabled
[    0.278293] APIC: Switched APIC routing to: cluster x2apic
[    0.282984] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.287314] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, max_idle_ns: 440795224246 ns
[    0.287336] Calibrating delay loop (skipped), value calculated using timer frequency.. 2188.80 BogoMIPS (lpj=1094400)
[    0.287416] x86/cpu: SGX disabled or unsupported by BIOS.
[    0.287437] CPU0: Thermal monitoring enabled (TM1)
[    0.287444] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.287571] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.287576] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.287586] process: using mwait in idle threads
[    0.287593] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.287602] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.287607] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.287611] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.287619] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.287625] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.287629] Register File Data Sampling: Mitigation: Clear Register File
[    0.287642] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.287647] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.287651] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.287654] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.287659] x86/fpu: xstate_offset[3]:  576, xstate_sizes[3]:   64
[    0.287664] x86/fpu: xstate_offset[4]:  640, xstate_sizes[4]:   64
[    0.287669] x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
[    0.373659] Freeing SMP alternatives memory: 40K
[    0.373675] pid_max: default: 32768 minimum: 301
[    0.380242] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[    0.380484] landlock: Up and running.
[    0.380494] Yama: becoming mindful.
[    0.381031] LSM support for eBPF active
[    0.381134] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.381174] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.381968] smpboot: CPU0: Intel(R) Pentium(R) Silver N5030 CPU @ 1.10GHz (family: 0x6, model: 0x7a, stepping: 0x8)
[    0.383645] Performance Events: PEBS fmt3+, Goldmont plus events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.383710] ... version:                4
[    0.383713] ... bit width:              48
[    0.383716] ... generic registers:      4
[    0.383718] ... value mask:             0000ffffffffffff
[    0.383722] ... max period:             00007fffffffffff
[    0.383725] ... fixed-purpose events:   3
[    0.383727] ... event mask:             000000070000000f
[    0.383984] signal: max sigframe size: 2032
[    0.384024] Estimated ratio of average max frequency by base frequency (times 1024): 2885
[    0.391993] rcu: Hierarchical SRCU implementation.
[    0.392003] rcu: 	Max phase no-delay instances is 400.
[    0.392249] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.393545] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.393729] smp: Bringing up secondary CPUs ...
[    0.394600] smpboot: x86: Booting SMP configuration:
[    0.394605] .... node  #0, CPUs:      #1 #2 #3
[    0.398352] smp: Brought up 1 node, 4 CPUs
[    0.398368] smpboot: Total of 4 processors activated (8755.20 BogoMIPS)
[    0.398702] Memory: 7891952K/8204988K available (18432K kernel code, 2693K rwdata, 15164K rodata, 4316K init, 3876K bss, 300548K reserved, 0K cma-reserved)
[    0.400041] devtmpfs: initialized
[    0.400041] x86/mm: Memory block size: 128MB
[    0.402786] ACPI: PM: Registering ACPI NVS region [mem 0x79a62000-0x79acafff] (430080 bytes)
[    0.402786] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.402786] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.403447] pinctrl core: initialized pinctrl subsystem
[    0.403730] PM: RTC time: 16:52:01, date: 2025-03-20
[    0.405394] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.406110] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.406390] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.406661] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.406694] audit: initializing netlink subsys (disabled)
[    0.406735] audit: type=2000 audit(1742489521.127:1): state=initialized audit_enabled=0 res=1
[    0.406735] thermal_sys: Registered thermal governor 'fair_share'
[    0.406735] thermal_sys: Registered thermal governor 'bang_bang'
[    0.406735] thermal_sys: Registered thermal governor 'step_wise'
[    0.406735] thermal_sys: Registered thermal governor 'user_space'
[    0.406735] thermal_sys: Registered thermal governor 'power_allocator'
[    0.406735] cpuidle: using governor ladder
[    0.406735] cpuidle: using governor menu
[    0.407531] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.407652] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[    0.407693] PCI: Using configuration type 1 for base access
[    0.408394] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.408547] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.408547] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.408547] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.408547] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.410553] ACPI: Added _OSI(Module Device)
[    0.410559] ACPI: Added _OSI(Processor Device)
[    0.410562] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.410566] ACPI: Added _OSI(Processor Aggregator Device)
[    0.448674] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.460251] ACPI: Dynamic OEM Table Load:
[    0.460274] ACPI: SSDT 0xFFFF9B2400279C00 000190 (v02 PmRef  Cpu0Cst  00003001 INTL 20160930)
[    0.463051] ACPI: Dynamic OEM Table Load:
[    0.463068] ACPI: SSDT 0xFFFF9B2400279800 0001E6 (v02 PmRef  ApIst    00003000 INTL 20160930)
[    0.465327] ACPI: Dynamic OEM Table Load:
[    0.465345] ACPI: SSDT 0xFFFF9B2400D89900 0000C9 (v02 PmRef  ApCst    00003000 INTL 20160930)
[    0.469704] ACPI: EC: EC started
[    0.469709] ACPI: EC: interrupt blocked
[    0.575564] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.575574] ACPI: \_SB_.PCI0.SBRG.H_EC: Boot DSDT EC used to handle transactions
[    0.575580] ACPI: Interpreter enabled
[    0.575654] ACPI: PM: (supports S0 S3 S4 S5)
[    0.575659] ACPI: Using IOAPIC for interrupt routing
[    0.578417] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.578423] PCI: Using E820 reservations for host bridge windows
[    0.579496] ACPI: Enabled 11 GPEs in block 00 to 7F
[    0.585477] ACPI: \_SB_.PCI0.SATA.PRT0.SPPR: New power resource
[    0.585931] ACPI: \_SB_.PCI0.SATA.PRT1.SPPR: New power resource
[    0.586950] ACPI: \_SB_.PCI0.XHC_.RHUB.HS02.UPPR: New power resource
[    0.587526] ACPI: \_SB_.PCI0.XHC_.RHUB.HS03.BTPR: New power resource
[    0.588177] ACPI: \_SB_.PCI0.XHC_.RHUB.HS04.UPPR: New power resource
[    0.588709] ACPI: \_SB_.PCI0.XHC_.RHUB.HS05.UPPR: New power resource
[    0.589884] ACPI: \_SB_.PCI0.XHC_.RHUB.HS07.PX07: New power resource
[    0.591182] ACPI: \_SB_.PCI0.XHC_.RHUB.HS09.IBTU.BTPR: New power resource
[    0.592050] ACPI: \_SB_.PCI0.XHC_.RHUB.SS02.UPPR: New power resource
[    0.592999] ACPI: \_SB_.PCI0.XHC_.RHUB.SS04.UPPR: New power resource
[    0.593682] ACPI: \_SB_.PCI0.XHC_.RHUB.SS05.UPPR: New power resource
[    0.594979] ACPI: \_SB_.USBC: New power resource
[    0.595459] ACPI: \_SB_.PCI0.LSPR: New power resource
[    0.601620] ACPI: \_SB_.SDPR: New power resource
[    0.607868] ACPI: \_SB_.PCI0.RP01.PXP_: New power resource
[    0.711277] ACPI: \_SB_.PCI0.RP01.PXSX.DRST: New power resource
[    0.711843] ACPI: \_SB_.PCI0.RP02.PXP_: New power resource
[    0.815266] ACPI: \_SB_.PCI0.RP02.PXSX.DRST: New power resource
[    0.815802] ACPI: \_SB_.PCI0.RP03.PXP_: New power resource
[    0.919258] ACPI: \_SB_.PCI0.RP03.PXSX.DRST: New power resource
[    0.919662] ACPI: \_SB_.PCI0.RP04.PXP_: New power resource
[    0.920563] ACPI: \_SB_.PCI0.RP04.PXSX.DRST: New power resource
[    0.921094] ACPI: \_SB_.PCI0.RP05.PXP_: New power resource
[    0.921993] ACPI: \_SB_.PCI0.RP05.PXSX.DRST: New power resource
[    0.922555] ACPI: \_SB_.PCI0.RP06.PXP_: New power resource
[    1.026259] ACPI: \_SB_.PCI0.RP06.PXSX.DRST: New power resource
[    1.027511] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[    1.028155] ACPI: \_SB_.PCI0.PAUD: New power resource
[    1.040139] ACPI: \_TZ_.FN00: New power resource
[    1.042395] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    1.042417] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.044698] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    1.045071] acpi PNP0A08:00: host bridge window [mem 0x1000000010000 window] (ignored, not CPU addressable)
[    1.047254] PCI host bridge to bus 0000:00
[    1.047268] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    1.047276] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    1.047282] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    1.047287] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.047294] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[    1.047300] pci_bus 0000:00: root bus resource [mem 0x7c000001-0xbfffffff window]
[    1.047305] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xefffffff window]
[    1.047310] pci_bus 0000:00: root bus resource [mem 0xfea00000-0xfeafffff window]
[    1.047315] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfed003ff window]
[    1.047319] pci_bus 0000:00: root bus resource [mem 0xfed01000-0xfed01fff window]
[    1.047324] pci_bus 0000:00: root bus resource [mem 0xfed03000-0xfed03fff window]
[    1.047328] pci_bus 0000:00: root bus resource [mem 0xfed06000-0xfed06fff window]
[    1.047334] pci_bus 0000:00: root bus resource [mem 0xfed08000-0xfed09fff window]
[    1.047340] pci_bus 0000:00: root bus resource [mem 0xfed80000-0xfedbffff window]
[    1.047344] pci_bus 0000:00: root bus resource [mem 0xfed1c000-0xfed1cfff window]
[    1.047349] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xfeefffff window]
[    1.047357] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.272432] pci 0000:00:00.0: [8086:31f0] type 00 class 0x060000 conventional PCI endpoint
[    1.272752] pci 0000:00:00.1: [8086:318c] type 00 class 0x118000 conventional PCI endpoint
[    1.272791] pci 0000:00:00.1: BAR 0 [mem 0x80000000-0x80007fff 64bit]
[    1.273123] pci 0000:00:02.0: [8086:3184] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    1.273145] pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
[    1.273175] pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    1.273186] pci 0000:00:02.0: BAR 4 [io  0xf000-0xf03f]
[    1.273228] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.274049] pci 0000:00:0c.0: [8086:31dc] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[    1.274127] pci 0000:00:0c.0: BAR 0 [mem 0xa1214000-0xa1217fff 64bit]
[    1.274428] pci 0000:00:0c.0: PME# supported from D0 D3hot D3cold
[    1.274816] pci 0000:00:0e.0: [8086:3198] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    1.274847] pci 0000:00:0e.0: BAR 0 [mem 0xa1210000-0xa1213fff 64bit]
[    1.274884] pci 0000:00:0e.0: BAR 4 [mem 0xa1000000-0xa10fffff 64bit]
[    1.274974] pci 0000:00:0e.0: PME# supported from D0 D3hot D3cold
[    1.279733] pci 0000:00:0f.0: [8086:319a] type 00 class 0x078000 conventional PCI endpoint
[    1.279779] pci 0000:00:0f.0: BAR 0 [mem 0xa123d000-0xa123dfff 64bit]
[    1.279952] pci 0000:00:0f.0: PME# supported from D3hot
[    1.280216] pci 0000:00:12.0: [8086:31e3] type 00 class 0x010601 conventional PCI endpoint
[    1.280240] pci 0000:00:12.0: BAR 0 [mem 0xa1218000-0xa1219fff]
[    1.280253] pci 0000:00:12.0: BAR 1 [mem 0xa123c000-0xa123c0ff]
[    1.280266] pci 0000:00:12.0: BAR 2 [io  0xf090-0xf097]
[    1.280279] pci 0000:00:12.0: BAR 3 [io  0xf080-0xf083]
[    1.280292] pci 0000:00:12.0: BAR 4 [io  0xf060-0xf07f]
[    1.280305] pci 0000:00:12.0: BAR 5 [mem 0xa123b000-0xa123b7ff]
[    1.280372] pci 0000:00:12.0: PME# supported from D3hot
[    1.280952] pci 0000:00:13.0: [8086:31d8] type 01 class 0x060400 PCIe Root Port
[    1.280990] pci 0000:00:13.0: PCI bridge to [bus 01]
[    1.281098] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
[    1.281445] pci 0000:00:13.1: [8086:31d9] type 01 class 0x060400 PCIe Root Port
[    1.281501] pci 0000:00:13.1: PCI bridge to [bus 02]
[    1.281605] pci 0000:00:13.1: PME# supported from D0 D3hot D3cold
[    1.281896] pci 0000:00:13.2: [8086:31da] type 01 class 0x060400 PCIe Root Port
[    1.281933] pci 0000:00:13.2: PCI bridge to [bus 03]
[    1.281944] pci 0000:00:13.2:   bridge window [mem 0xa1100000-0xa11fffff]
[    1.282042] pci 0000:00:13.2: PME# supported from D0 D3hot D3cold
[    1.282346] pci 0000:00:15.0: [8086:31a8] type 00 class 0x0c0330 conventional PCI endpoint
[    1.282376] pci 0000:00:15.0: BAR 0 [mem 0xa1200000-0xa120ffff 64bit]
[    1.282489] pci 0000:00:15.0: PME# supported from D3hot D3cold
[    1.282820] pci 0000:00:16.0: [8086:31ac] type 00 class 0x118000 conventional PCI endpoint
[    1.282849] pci 0000:00:16.0: BAR 0 [mem 0xa123a000-0xa123afff 64bit]
[    1.282871] pci 0000:00:16.0: BAR 2 [mem 0xa1239000-0xa1239fff 64bit]
[    1.283152] pci 0000:00:16.1: [8086:31ae] type 00 class 0x118000 conventional PCI endpoint
[    1.283182] pci 0000:00:16.1: BAR 0 [mem 0xa1238000-0xa1238fff 64bit]
[    1.283203] pci 0000:00:16.1: BAR 2 [mem 0xa1237000-0xa1237fff 64bit]
[    1.283477] pci 0000:00:16.2: [8086:31b0] type 00 class 0x118000 conventional PCI endpoint
[    1.283507] pci 0000:00:16.2: BAR 0 [mem 0xa1236000-0xa1236fff 64bit]
[    1.283529] pci 0000:00:16.2: BAR 2 [mem 0xa1235000-0xa1235fff 64bit]
[    1.283808] pci 0000:00:16.3: [8086:31b2] type 00 class 0x118000 conventional PCI endpoint
[    1.283838] pci 0000:00:16.3: BAR 0 [mem 0xa1234000-0xa1234fff 64bit]
[    1.283857] pci 0000:00:16.3: BAR 2 [mem 0xa1233000-0xa1233fff 64bit]
[    1.284157] pci 0000:00:17.0: [8086:31b4] type 00 class 0x118000 conventional PCI endpoint
[    1.284190] pci 0000:00:17.0: BAR 0 [mem 0xa1232000-0xa1232fff 64bit]
[    1.284210] pci 0000:00:17.0: BAR 2 [mem 0xa1231000-0xa1231fff 64bit]
[    1.284488] pci 0000:00:17.1: [8086:31b6] type 00 class 0x118000 conventional PCI endpoint
[    1.284520] pci 0000:00:17.1: BAR 0 [mem 0xa1230000-0xa1230fff 64bit]
[    1.284539] pci 0000:00:17.1: BAR 2 [mem 0xa122f000-0xa122ffff 64bit]
[    1.284804] pci 0000:00:17.2: [8086:31b8] type 00 class 0x118000 conventional PCI endpoint
[    1.284837] pci 0000:00:17.2: BAR 0 [mem 0xa122e000-0xa122efff 64bit]
[    1.284857] pci 0000:00:17.2: BAR 2 [mem 0xa122d000-0xa122dfff 64bit]
[    1.285125] pci 0000:00:17.3: [8086:31ba] type 00 class 0x118000 conventional PCI endpoint
[    1.285155] pci 0000:00:17.3: BAR 0 [mem 0xa122c000-0xa122cfff 64bit]
[    1.285176] pci 0000:00:17.3: BAR 2 [mem 0xa122b000-0xa122bfff 64bit]
[    1.285481] pci 0000:00:18.0: [8086:31bc] type 00 class 0x118000 conventional PCI endpoint
[    1.285511] pci 0000:00:18.0: BAR 0 [mem 0xa122a000-0xa122afff 64bit]
[    1.285533] pci 0000:00:18.0: BAR 2 [mem 0xa1229000-0xa1229fff 64bit]
[    1.285797] pci 0000:00:18.1: [8086:31be] type 00 class 0x118000 conventional PCI endpoint
[    1.285826] pci 0000:00:18.1: BAR 0 [mem 0xa1228000-0xa1228fff 64bit]
[    1.285849] pci 0000:00:18.1: BAR 2 [mem 0xa1227000-0xa1227fff 64bit]
[    1.286115] pci 0000:00:18.2: [8086:31c0] type 00 class 0x118000 conventional PCI endpoint
[    1.286145] pci 0000:00:18.2: BAR 0 [mem 0xfea10000-0xfea10fff 64bit]
[    1.286167] pci 0000:00:18.2: BAR 2 [mem 0x00000000-0x00000fff 64bit]
[    1.286444] pci 0000:00:18.3: [8086:31ee] type 00 class 0x118000 conventional PCI endpoint
[    1.286474] pci 0000:00:18.3: BAR 0 [mem 0xa1226000-0xa1226fff 64bit]
[    1.286493] pci 0000:00:18.3: BAR 2 [mem 0xa1225000-0xa1225fff 64bit]
[    1.286795] pci 0000:00:19.0: [8086:31c2] type 00 class 0x118000 conventional PCI endpoint
[    1.286825] pci 0000:00:19.0: BAR 0 [mem 0xa1224000-0xa1224fff 64bit]
[    1.286846] pci 0000:00:19.0: BAR 2 [mem 0xa1223000-0xa1223fff 64bit]
[    1.287119] pci 0000:00:19.1: [8086:31c4] type 00 class 0x118000 conventional PCI endpoint
[    1.287150] pci 0000:00:19.1: BAR 0 [mem 0xa1222000-0xa1222fff 64bit]
[    1.287169] pci 0000:00:19.1: BAR 2 [mem 0xa1221000-0xa1221fff 64bit]
[    1.287430] pci 0000:00:19.2: [8086:31c6] type 00 class 0x118000 conventional PCI endpoint
[    1.287461] pci 0000:00:19.2: BAR 0 [mem 0xa1220000-0xa1220fff 64bit]
[    1.287481] pci 0000:00:19.2: BAR 2 [mem 0xa121f000-0xa121ffff 64bit]
[    1.287795] pci 0000:00:1c.0: [8086:31cc] type 00 class 0x080501 conventional PCI endpoint
[    1.287823] pci 0000:00:1c.0: BAR 0 [mem 0xa121e000-0xa121efff 64bit]
[    1.287842] pci 0000:00:1c.0: BAR 2 [mem 0xa121d000-0xa121dfff 64bit]
[    1.288442] pci 0000:00:1e.0: [8086:31d0] type 00 class 0x080501 conventional PCI endpoint
[    1.288471] pci 0000:00:1e.0: BAR 0 [mem 0xa121c000-0xa121cfff 64bit]
[    1.288490] pci 0000:00:1e.0: BAR 2 [mem 0xa121b000-0xa121bfff 64bit]
[    1.288781] pci 0000:00:1f.0: [8086:31e8] type 00 class 0x060100 conventional PCI endpoint
[    1.289182] pci 0000:00:1f.1: [8086:31d4] type 00 class 0x0c0500 conventional PCI endpoint
[    1.289253] pci 0000:00:1f.1: BAR 0 [mem 0xa121a000-0xa121a0ff 64bit]
[    1.289367] pci 0000:00:1f.1: BAR 4 [io  0xf040-0xf05f]
[    1.289667] pci 0000:00:13.0: PCI bridge to [bus 01]
[    1.289787] pci 0000:00:13.1: PCI bridge to [bus 02]
[    1.289922] pci 0000:03:00.0: [10ec:522a] type 00 class 0xff0000 PCIe Endpoint
[    1.289950] pci 0000:03:00.0: BAR 0 [mem 0xa1100000-0xa1100fff]
[    1.290029] pci 0000:03:00.0: Upstream bridge's Max Payload Size set to 128 (was 256, max 256)
[    1.290040] pci 0000:03:00.0: Max Payload Size set to 128 (was 128, max 128)
[    1.290149] pci 0000:03:00.0: supports D1 D2
[    1.290154] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[    1.290501] pci 0000:00:13.2: PCI bridge to [bus 03]
[    1.300494] ACPI: PCI: Interrupt link LNKA configured for IRQ 3
[    1.300710] ACPI: PCI: Interrupt link LNKB configured for IRQ 4
[    1.300917] ACPI: PCI: Interrupt link LNKC configured for IRQ 5
[    1.301131] ACPI: PCI: Interrupt link LNKD configured for IRQ 6
[    1.301339] ACPI: PCI: Interrupt link LNKE configured for IRQ 7
[    1.301549] ACPI: PCI: Interrupt link LNKF configured for IRQ 9
[    1.301757] ACPI: PCI: Interrupt link LNKG configured for IRQ 10
[    1.301966] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    1.316474] ACPI Warning: GPE type mismatch (level/edge) (20240827/evxface-791)
[    1.316516] ACPI: EC: interrupt unblocked
[    1.316520] ACPI: EC: event unblocked
[    1.316531] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.316535] ACPI: EC: GPE=0x26
[    1.316540] ACPI: \_SB_.PCI0.SBRG.H_EC: Boot DSDT EC initialization complete
[    1.316546] ACPI: \_SB_.PCI0.SBRG.H_EC: EC: Used to handle transactions and events
[    1.317379] iommu: Default domain type: Translated
[    1.317379] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.317741] SCSI subsystem initialized
[    1.317741] libata version 3.00 loaded.
[    1.317741] ACPI: bus type USB registered
[    1.317741] usbcore: registered new interface driver usbfs
[    1.317741] usbcore: registered new interface driver hub
[    1.317741] usbcore: registered new device driver usb
[    1.317741] EDAC MC: Ver: 3.0.0
[    1.318535] efivars: Registered efivars operations
[    1.319027] NetLabel: Initializing
[    1.319032] NetLabel:  domain hash size = 128
[    1.319036] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.319088] NetLabel:  unlabeled traffic allowed by default
[    1.319103] mctp: management component transport protocol core
[    1.319107] NET: Registered PF_MCTP protocol family
[    1.319382] PCI: Using ACPI for IRQ routing
[    1.349634] PCI: pci_cache_line_size set to 64 bytes
[    1.349828] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    1.349834] e820: reserve RAM buffer [mem 0x0003e000-0x0003ffff]
[    1.349840] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    1.349844] e820: reserve RAM buffer [mem 0x6c09f018-0x6fffffff]
[    1.349848] e820: reserve RAM buffer [mem 0x71b3a000-0x73ffffff]
[    1.349852] e820: reserve RAM buffer [mem 0x7287d000-0x73ffffff]
[    1.349855] e820: reserve RAM buffer [mem 0x761ea000-0x77ffffff]
[    1.349859] e820: reserve RAM buffer [mem 0x7a776000-0x7bffffff]
[    1.349863] e820: reserve RAM buffer [mem 0x7ac00000-0x7bffffff]
[    1.350393] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.350393] pci 0000:00:02.0: vgaarb: bridge control possible
[    1.350393] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.350393] vgaarb: loaded
[    1.350464] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.350464] hpet0: 8 comparators, 64-bit 19.200000 MHz counter
[    1.352451] clocksource: Switched to clocksource tsc-early
[    1.354205] VFS: Disk quotas dquot_6.6.0
[    1.354221] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.354456] pnp: PnP ACPI init
[    1.354753] system 00:00: [io  0x0680-0x069f] has been reserved
[    1.354764] system 00:00: [io  0x0400-0x047f] could not be reserved
[    1.354770] system 00:00: [io  0x0500-0x05fe] has been reserved
[    1.354775] system 00:00: [io  0x0600-0x061f] has been reserved
[    1.354781] system 00:00: [io  0x164e-0x164f] has been reserved
[    1.357020] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
[    1.357031] system 00:01: [mem 0xfea00000-0xfeafffff] could not be reserved
[    1.357038] system 00:01: [mem 0xfed01000-0xfed01fff] has been reserved
[    1.357044] system 00:01: [mem 0xfed03000-0xfed03fff] has been reserved
[    1.357051] system 00:01: [mem 0xfed06000-0xfed06fff] has been reserved
[    1.357056] system 00:01: [mem 0xfed08000-0xfed09fff] has been reserved
[    1.357062] system 00:01: [mem 0xfed80000-0xfedbffff] has been reserved
[    1.357068] system 00:01: [mem 0xfed1c000-0xfed1cfff] has been reserved
[    1.357074] system 00:01: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.358650] pnp: PnP ACPI: found 4 devices
[    1.367735] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.367914] NET: Registered PF_INET protocol family
[    1.368234] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.414285] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    1.414384] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.414519] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.415279] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.415775] TCP: Hash tables configured (established 65536 bind 65536)
[    1.416000] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    1.416144] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    1.416320] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    1.416504] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.416525] NET: Registered PF_XDP protocol family
[    1.416574] resource: avoiding allocation from e820 entry [mem 0x0009e000-0x000fffff]
[    1.416582] resource: avoiding allocation from e820 entry [mem 0x7ac00000-0x7fffffff]
[    1.416591] pci 0000:00:18.2: BAR 2 [mem 0x80008000-0x80008fff 64bit]: assigned
[    1.416619] pci 0000:00:13.0: PCI bridge to [bus 01]
[    1.416638] pci 0000:00:13.1: PCI bridge to [bus 02]
[    1.416654] pci 0000:00:13.2: PCI bridge to [bus 03]
[    1.416662] pci 0000:00:13.2:   bridge window [mem 0xa1100000-0xa11fffff]
[    1.416678] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    1.416685] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    1.416691] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    1.416696] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    1.416701] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000fffff window]
[    1.416706] pci_bus 0000:00: resource 9 [mem 0x7c000001-0xbfffffff window]
[    1.416711] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xefffffff window]
[    1.416716] pci_bus 0000:00: resource 11 [mem 0xfea00000-0xfeafffff window]
[    1.416721] pci_bus 0000:00: resource 12 [mem 0xfed00000-0xfed003ff window]
[    1.416726] pci_bus 0000:00: resource 13 [mem 0xfed01000-0xfed01fff window]
[    1.416731] pci_bus 0000:00: resource 14 [mem 0xfed03000-0xfed03fff window]
[    1.416735] pci_bus 0000:00: resource 15 [mem 0xfed06000-0xfed06fff window]
[    1.416740] pci_bus 0000:00: resource 16 [mem 0xfed08000-0xfed09fff window]
[    1.416745] pci_bus 0000:00: resource 17 [mem 0xfed80000-0xfedbffff window]
[    1.416750] pci_bus 0000:00: resource 18 [mem 0xfed1c000-0xfed1cfff window]
[    1.416754] pci_bus 0000:00: resource 19 [mem 0xfee00000-0xfeefffff window]
[    1.416760] pci_bus 0000:03: resource 1 [mem 0xa1100000-0xa11fffff]
[    1.417910] PCI: CLS 64 bytes, default 64
[    1.418009] pci 0000:00:0d.0: [8086:3192] type 00 class 0x058000 conventional PCI endpoint
[    1.418100] pci 0000:00:0d.0: BAR 0 [mem 0xd0000000-0xd0ffffff 64bit]
[    1.419436] pci 0000:00:0d.2: [8086:3196] type 00 class 0x0c8000 conventional PCI endpoint
[    1.419475] pci 0000:00:0d.2: BAR 0 [mem 0xfed01000-0xfed01fff]
[    1.419806] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.419811] software IO TLB: mapped [mem 0x000000006db3a000-0x0000000071b3a000] (64MB)
[    1.419904] Trying to unpack rootfs image as initramfs...
[    1.420011] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xfc66f4fc7c, max_idle_ns: 440795224246 ns
[    1.420055] clocksource: Switched to clocksource tsc
[    1.496820] Initialise system trusted keyrings
[    1.496849] Key type blacklist registered
[    1.496995] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    1.497355] fuse: init (API version 7.41)
[    1.497606] integrity: Platform Keyring initialized
[    1.497615] integrity: Machine keyring initialized
[    1.536237] Key type asymmetric registered
[    1.536247] Asymmetric key parser 'x509' registered
[    1.536350] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    1.536533] io scheduler mq-deadline registered
[    1.536539] io scheduler kyber registered
[    1.536573] io scheduler bfq registered
[    1.536994] ledtrig-cpu: registered to indicate activity on CPUs
[    1.537590] pcieport 0000:00:13.0: PME: Signaling with IRQ 120
[    1.538127] pcieport 0000:00:13.1: PME: Signaling with IRQ 121
[    1.538618] pcieport 0000:00:13.2: PME: Signaling with IRQ 122
[    1.538866] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.541044] ACPI: AC: AC Adapter [ADP1] (off-line)
[    1.541183] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03/PNP0C09:00/PNP0C0D:00/input/input0
[    1.544401] ACPI: button: Lid Switch [LID0]
[    1.544532] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.544599] ACPI: button: Power Button [PWRB]
[    1.555747] thermal LNXTHERM:00: registered as thermal_zone0
[    1.555762] ACPI: thermal: Thermal Zone [TZ01] (27 C)
[    1.557151] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.574761] Non-volatile memory driver v1.3
[    1.574773] Linux agpgart interface v0.103
[    1.574912] ACPI: bus type drm_connector registered
[    1.575399] ACPI: battery: Slot [BAT0] (battery present)
[    1.576204] ahci 0000:00:12.0: version 3.0
[    1.586787] ahci 0000:00:12.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    1.586805] ahci 0000:00:12.0: 2/2 ports implemented (port mask 0x3)
[    1.586811] ahci 0000:00:12.0: flags: 64bit ncq sntf pm clo only pmp pio slum part deso sadm sds apst 
[    1.588125] scsi host0: ahci
[    1.588490] scsi host1: ahci
[    1.588595] ata1: SATA max UDMA/133 abar m2048@0xa123b000 port 0xa123b100 irq 123 lpm-pol 3
[    1.588604] ata2: SATA max UDMA/133 abar m2048@0xa123b000 port 0xa123b180 irq 123 lpm-pol 3
[    1.589539] xhci_hcd 0000:00:15.0: xHCI Host Controller
[    1.589559] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1
[    1.591519] xhci_hcd 0000:00:15.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[    1.592108] xhci_hcd 0000:00:15.0: xHCI Host Controller
[    1.592121] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 2
[    1.592130] xhci_hcd 0000:00:15.0: Host supports USB 3.0 SuperSpeed
[    1.592255] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[    1.592276] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.592283] usb usb1: Product: xHCI Host Controller
[    1.592287] usb usb1: Manufacturer: Linux 6.13.7-arch1-1 xhci-hcd
[    1.592292] usb usb1: SerialNumber: 0000:00:15.0
[    1.592724] hub 1-0:1.0: USB hub found
[    1.592756] hub 1-0:1.0: 9 ports detected
[    1.598862] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[    1.598874] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.598880] usb usb2: Product: xHCI Host Controller
[    1.598885] usb usb2: Manufacturer: Linux 6.13.7-arch1-1 xhci-hcd
[    1.598889] usb usb2: SerialNumber: 0000:00:15.0
[    1.599205] hub 2-0:1.0: USB hub found
[    1.599236] hub 2-0:1.0: 7 ports detected
[    1.601407] usb: port power management may be unreliable
[    1.604703] usbcore: registered new interface driver usbserial_generic
[    1.604721] usbserial: USB Serial support registered for generic
[    1.605015] rtc_cmos 00:03: RTC can wake from S4
[    1.606011] rtc_cmos 00:03: registered as rtc0
[    1.606163] rtc_cmos 00:03: setting system clock to 2025-03-20T16:52:02 UTC (1742489522)
[    1.606234] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram
[    1.606701] intel_pstate: Intel P-state driver initializing
[    1.607902] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[    1.607907] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[    1.612836] fbcon: Deferring console take-over
[    1.612846] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    1.612977] hid: raw HID events driver (C) Jiri Kosina
[    1.613104] drop_monitor: Initializing network drop monitor service
[    1.613254] NET: Registered PF_INET6 protocol family
[    1.624306] Freeing initrd memory: 26176K
[    1.634107] Segment Routing with IPv6
[    1.634115] RPL Segment Routing with IPv6
[    1.634142] In-situ OAM (IOAM) with IPv6
[    1.634191] NET: Registered PF_PACKET protocol family
[    1.634760] microcode: Current revision: 0x00000024
[    1.634762] microcode: Updated early from: 0x0000000c
[    1.635088] resctrl: L2 allocation detected
[    1.635126] IPI shorthand broadcast: enabled
[    1.637411] sched_clock: Marking stable (1632001006, 5263315)->(1642955864, -5691543)
[    1.637655] registered taskstats version 1
[    1.638056] Loading compiled-in X.509 certificates
[    1.648837] Loaded X.509 cert 'Build time autogenerated kernel key: 3521833c1fe91dd778f863acdf084893f8861d8e'
[    1.650988] Demotion targets for Node 0: null
[    1.651294] Key type .fscrypt registered
[    1.651297] Key type fscrypt-provisioning registered
[    1.652220] integrity: Loading X.509 certificate: UEFI:db
[    1.652284] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    1.652288] integrity: Loading X.509 certificate: UEFI:db
[    1.652319] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    1.653610] PM:   Magic number: 1:521:894
[    1.659927] RAS: Correctable Errors collector initialized.
[    1.682154] clk: Disabling unused clocks
[    1.682162] PM: genpd: Disabling unused power domains
[    1.832575] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    1.896239] ata2: SATA link down (SStatus 4 SControl 300)
[    1.957146] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[    1.957163] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.957168] usb 1-3: Product: FocalTech Fingerprint Device
[    1.957173] usb 1-3: Manufacturer: HOLTEK
[    2.056541] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.057491] ata1.00: ATA-10: TS256GMTS430S, 22X4XAIA, max UDMA/133
[    2.057562] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    2.058407] ata1.00: Features: Dev-Sleep
[    2.059364] ata1.00: configured for UDMA/133
[    2.069508] ahci 0000:00:12.0: port does not support device sleep
[    2.069948] scsi 0:0:0:0: Direct-Access     ATA      TS256GMTS430S    XAIA PQ: 0 ANSI: 5
[    2.070426] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    2.070545] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.070559] sd 0:0:0:0: [sda] Write Protect is off
[    2.070563] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.070578] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.070609] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    2.084006]  sda: sda1 sda2
[    2.084486] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.086182] Freeing unused decrypted memory: 2028K
[    2.087442] Freeing unused kernel image (initmem) memory: 4316K
[    2.087495] Write protecting the kernel read-only data: 34816k
[    2.088235] Freeing unused kernel image (rodata/data gap) memory: 1220K
[    2.106568] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.106576] rodata_test: all tests were successful
[    2.106585] Run /init as init process
[    2.106587]   with arguments:
[    2.106589]     /init
[    2.106591]   with environment:
[    2.106592]     HOME=/
[    2.106593]     TERM=linux
[    2.106594]     BOOT_IMAGE=/vmlinuz-linux
[    2.176057] raid6: skipped pq benchmark and selected sse2x4
[    2.176066] raid6: using ssse3x2 recovery algorithm
[    2.182322] xor: measuring software checksum speed
[    2.182539]    prefetch64-sse  : 15614 MB/sec
[    2.182792]    generic_sse     : 13258 MB/sec
[    2.182795] xor: using function: prefetch64-sse (15614 MB/sec)
[    2.245689] usb 1-5: New USB device found, idVendor=0bda, idProduct=5842, bcdDevice= 0.01
[    2.245701] usb 1-5: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.245703] usb 1-5: Product: Front Camera
[    2.245706] usb 1-5: Manufacturer: Front Camera
[    2.245707] usb 1-5: SerialNumber: 200901010001
[    2.362314] usb 1-6: new high-speed USB device number 4 using xhci_hcd
[    2.391384] Btrfs loaded, zoned=yes, fsverity=yes
[    2.494276] usb 1-6: New USB device found, idVendor=0c45, idProduct=636d, bcdDevice= 1.00
[    2.494288] usb 1-6: New USB device strings: Mfr=2, Product=1, SerialNumber=3
[    2.494291] usb 1-6: Product: USB 2.0 Camera
[    2.494293] usb 1-6: Manufacturer: Sonix Technology Co., Ltd.
[    2.494295] usb 1-6: SerialNumber: SN0001
[    2.608289] usb 1-8: new full-speed USB device number 5 using xhci_hcd
[    2.616115] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    2.616123] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    2.617784] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.637468] rtsx_pci 0000:03:00.0: enabling device (0000 -> 0002)
[    2.681135] sdhci: Secure Digital Host Controller Interface driver
[    2.681143] sdhci: Copyright(c) Pierre Ossman
[    2.704406] sdhci-pci 0000:00:1c.0: SDHCI controller found [8086:31cc] (rev 6)
[    2.704873] mmc1: CQHCI version 5.10
[    2.704951] sdhci-pci 0000:00:1e.0: SDHCI controller found [8086:31d0] (rev 6)
[    2.704965] sdhci-pci 0000:00:1e.0: enabling device (0000 -> 0002)
[    2.705448] mmc2: SDHCI controller on PCI [0000:00:1e.0] using ADMA 64-bit
[    2.705451] mmc1: SDHCI controller on PCI [0000:00:1c.0] using ADMA 64-bit
[    2.713863] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    2.733526] usb 1-8: New USB device found, idVendor=1018, idProduct=1006, bcdDevice= 1.09
[    2.733536] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.846320] usb 1-9: new full-speed USB device number 6 using xhci_hcd
[    2.876916] mmc2: Failed to initialize a non-removable card
[    2.886378] mmc1: Command Queue Engine enabled
[    2.886384] mmc1: new HS400 MMC card at address 0001
[    2.970825] usb 1-9: New USB device found, idVendor=8087, idProduct=0aaa, bcdDevice= 0.02
[    2.970832] usb 1-9: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.479714] i915 0000:00:02.0: [drm] Unknown revision 0x06
[    3.479725] i915 0000:00:02.0: [drm] Found geminilake (device ID 3184) display version 10.00 stepping **
[    3.479731] i915 0000:00:02.0: [drm] Unknown revid 0x06
[    3.486165] mmcblk1: mmc1:0001 ARV11X 58.3 GiB
[    3.497609] usbcore: registered new interface driver usbhid
[    3.497617] usbhid: USB HID core driver
[    3.498977] i915 0000:00:02.0: vgaarb: deactivate vga console
[    3.499136] i915 0000:00:02.0: [drm] couldn't get memory information
[    3.499477] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.500910] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/glk_dmc_ver1_04.bin (v1.4)
[    3.503524]  mmcblk1: p1 p2
[    3.503780] mmcblk1boot0: mmc1:0001 ARV11X 4.00 MiB
[    3.504183] mmcblk1boot1: mmc1:0001 ARV11X 4.00 MiB
[    3.504695] mmcblk1rpmb: mmc1:0001 ARV11X 4.00 MiB, chardev (240:0)
[    3.505597] input: HID 1018:1006 as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.0/0003:1018:1006.0001/input/input3
[    3.560920] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 1
[    3.562687] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.562858] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    3.582984] hid-generic 0003:1018:1006.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 1018:1006] on usb-0000:00:15.0-8/input0
[    3.584645] input: HID 1018:1006 Mouse as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input5
[    3.584832] input: HID 1018:1006 Touchpad as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input6
[    3.585005] input: HID 1018:1006 System Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input7
[    3.596366] fbcon: i915drmfb (fb0) is primary device
[    3.596369] fbcon: Deferring console take-over
[    3.596372] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    3.635582] input: HID 1018:1006 Consumer Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input8
[    3.635902] hid-generic 0003:1018:1006.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [HID 1018:1006] on usb-0000:00:15.0-8/input1
[    3.722393] input: HID 1018:1006 Mouse as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input9
[    3.722547] input: HID 1018:1006 Touchpad as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input10
[    3.722652] input: HID 1018:1006 System Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input11
[    3.774012] input: HID 1018:1006 Consumer Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0002/input/input12
[    3.774236] hid-multitouch 0003:1018:1006.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [HID 1018:1006] on usb-0000:00:15.0-8/input1
[    3.823148] BTRFS: device fsid db39d1fe-0423-4502-81b2-5605b9f969a0 devid 1 transid 383 /dev/sda2 (8:2) scanned by mount (217)
[    3.823633] BTRFS info (device sda2): first mount of filesystem db39d1fe-0423-4502-81b2-5605b9f969a0
[    3.823653] BTRFS info (device sda2): using crc32c (crc32c-intel) checksum algorithm
[    3.823661] BTRFS info (device sda2): using free-space-tree
[    3.887122] usb 1-3: USB disconnect, device number 2
[    4.024117] systemd[1]: systemd 257.4-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[    4.024133] systemd[1]: Detected architecture x86-64.
[    4.175610] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[    4.350403] usb 1-3: new full-speed USB device number 7 using xhci_hcd
[    4.474885] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[    4.474896] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.474898] usb 1-3: Product: FocalTech Fingerprint Device
[    4.474900] usb 1-3: Manufacturer: HOLTEK
[    4.544653] zram: Added device: zram0
[    4.702805] systemd[1]: Queued start job for default target Graphical Interface.
[    4.725958] systemd[1]: Created slice Slice /system/dirmngr.
[    4.726561] systemd[1]: Created slice Slice /system/getty.
[    4.727079] systemd[1]: Created slice Slice /system/gpg-agent.
[    4.727619] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[    4.728122] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[    4.728647] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[    4.729159] systemd[1]: Created slice Slice /system/keyboxd.
[    4.729684] systemd[1]: Created slice Slice /system/modprobe.
[    4.730186] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[    4.730616] systemd[1]: Created slice User and Session Slice.
[    4.730714] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.730794] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.731074] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.731108] systemd[1]: Expecting device /dev/disk/by-uuid/18CD-A4B8...
[    4.731122] systemd[1]: Expecting device /dev/disk/by-uuid/db39d1fe-0423-4502-81b2-5605b9f969a0...
[    4.731135] systemd[1]: Expecting device /dev/zram0...
[    4.731158] systemd[1]: Reached target Local Encrypted Volumes.
[    4.731185] systemd[1]: Reached target Login Prompts.
[    4.731205] systemd[1]: Reached target Local Integrity Protected Volumes.
[    4.731239] systemd[1]: Reached target Path Units.
[    4.731263] systemd[1]: Reached target Remote File Systems.
[    4.731289] systemd[1]: Reached target Slice Units.
[    4.731333] systemd[1]: Reached target Local Verity Protected Volumes.
[    4.731455] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    4.735751] systemd[1]: Listening on Process Core Dump Socket.
[    4.736874] systemd[1]: Listening on Credential Encryption/Decryption.
[    4.737028] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.737172] systemd[1]: Listening on Journal Sockets.
[    4.737227] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.737251] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.737368] systemd[1]: Listening on udev Control Socket.
[    4.737449] systemd[1]: Listening on udev Kernel Socket.
[    4.737570] systemd[1]: Listening on User Database Manager Socket.
[    4.740430] systemd[1]: Mounting Huge Pages File System...
[    4.741795] systemd[1]: Mounting POSIX Message Queue File System...
[    4.743137] systemd[1]: Mounting Kernel Debug File System...
[    4.744563] systemd[1]: Mounting Kernel Trace File System...
[    4.747503] systemd[1]: Starting Create List of Static Device Nodes...
[    4.758150] systemd[1]: Starting Load Kernel Module configfs...
[    4.761609] systemd[1]: Starting Load Kernel Module dm_mod...
[    4.763273] systemd[1]: Starting Load Kernel Module drm...
[    4.764940] systemd[1]: Starting Load Kernel Module fuse...
[    4.769557] systemd[1]: Starting Load Kernel Module loop...
[    4.769662] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[    4.772343] systemd[1]: Starting Journal Service...
[    4.775402] systemd[1]: Starting Load Kernel Modules...
[    4.775447] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.778742] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.778837] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.782663] systemd[1]: Starting Load udev Rules from Credentials...
[    4.785717] systemd[1]: Starting Coldplug All udev Devices...
[    4.790733] device-mapper: uevent: version 1.0.3
[    4.790878] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@xxxxxxxxxxxxxxx
[    4.793888] systemd[1]: Mounted Huge Pages File System.
[    4.794089] systemd[1]: Mounted POSIX Message Queue File System.
[    4.794235] systemd[1]: Mounted Kernel Debug File System.
[    4.794385] systemd[1]: Mounted Kernel Trace File System.
[    4.794818] systemd[1]: Finished Create List of Static Device Nodes.
[    4.795554] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    4.800988] systemd[1]: Finished Load Kernel Module configfs.
[    4.802543] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    4.802838] systemd[1]: Finished Load Kernel Module dm_mod.
[    4.803432] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    4.803747] systemd[1]: Finished Load Kernel Module drm.
[    4.804225] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    4.804717] systemd[1]: Finished Load Kernel Module fuse.
[    4.805998] loop: module loaded
[    4.807137] systemd[1]: Mounting FUSE Control File System...
[    4.809116] systemd[1]: Mounting Kernel Configuration File System...
[    4.813533] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[    4.814212] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    4.814637] systemd-journald[278]: Collecting audit messages is disabled.
[    4.821734] systemd[1]: Finished Load Kernel Module loop.
[    4.825446] i2c_dev: i2c /dev entries driver
[    4.828720] systemd[1]: Finished Load Kernel Modules.
[    4.829421] systemd[1]: Finished Load udev Rules from Credentials.
[    4.830309] systemd[1]: Mounted FUSE Control File System.
[    4.830496] systemd[1]: Mounted Kernel Configuration File System.
[    4.830810] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    4.832241] systemd[1]: Starting Apply Kernel Variables...
[    4.852246] systemd[1]: Starting User Database Manager...
[    4.885928] systemd[1]: Finished Apply Kernel Variables.
[    4.897718] BTRFS info (device sda2 state M): use zstd compression, level 3
[    4.899165] systemd[1]: Finished Remount Root and Kernel File Systems.
[    4.901683] systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
[    4.903181] systemd[1]: Starting Load/Save OS Random Seed...
[    4.903222] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    4.917624] systemd[1]: Started Journal Service.
[    5.222854] zram0: detected capacity change from 0 to 7938048
[    5.285989] Adding 3969020k swap on /dev/zram0.  Priority:100 extents:1 across:3969020k SSDsc
[    5.337894] mousedev: PS/2 mouse device common for all mice
[    5.381509] input: Intel HID events as /devices/platform/INT33D5:00/input/input13
[    5.395738] intel-hid INT33D5:00: platform supports 5 button array
[    5.395828] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input14
[    5.407486] Consider using thermal netlink events interface
[    5.563596] mc: Linux media interface: v0.10
[    5.566204] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    5.619875] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    5.632614] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    5.636501] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    5.636703] videodev: Linux video capture interface: v2.00
[    5.641599] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    5.648687] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    5.648965] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    5.650177] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    5.650185] cfg80211: failed to load regulatory.db
[    5.674791] i801_smbus 0000:00:1f.1: SPD Write Disable is set
[    5.674850] i801_smbus 0000:00:1f.1: SMBus using PCI interrupt
[    5.678151] idma64 idma64.4: Found Intel integrated DMA 64-bit
[    5.683818] drivers/hid/i2c-hid/i2c-hid-core.c: HID probe called for i2c 0x5d
[    5.684511] i2c_hid_acpi i2c-GXTP7386:00: nothing at this address: -121
[    5.684569] idma64 idma64.5: Found Intel integrated DMA 64-bit
[    5.689934] idma64 idma64.6: Found Intel integrated DMA 64-bit
[    5.694733] idma64 idma64.7: Found Intel integrated DMA 64-bit
[    5.701883] Intel(R) Wireless WiFi driver for Linux
[    5.701943] iwlwifi 0000:00:0c.0: enabling device (0000 -> 0002)
[    5.702885] iwlwifi 0000:00:0c.0: Detected crf-id 0x2816, cnv-id 0x1000100 wfpm id 0x80000000
[    5.702898] iwlwifi 0000:00:0c.0: PCI dev 31dc/0034, rev=0x312, rfid=0x105110
[    5.702903] iwlwifi 0000:00:0c.0: Detected Intel(R) Wireless-AC 9560 160MHz
[    5.712034] iwlwifi 0000:00:0c.0: WRT: Overriding region id 0
[    5.712046] iwlwifi 0000:00:0c.0: WRT: Overriding region id 1
[    5.712049] iwlwifi 0000:00:0c.0: WRT: Overriding region id 2
[    5.712051] iwlwifi 0000:00:0c.0: WRT: Overriding region id 3
[    5.712053] iwlwifi 0000:00:0c.0: WRT: Overriding region id 4
[    5.712054] iwlwifi 0000:00:0c.0: WRT: Overriding region id 6
[    5.712056] iwlwifi 0000:00:0c.0: WRT: Overriding region id 8
[    5.712058] iwlwifi 0000:00:0c.0: WRT: Overriding region id 9
[    5.712060] iwlwifi 0000:00:0c.0: WRT: Overriding region id 10
[    5.712061] iwlwifi 0000:00:0c.0: WRT: Overriding region id 11
[    5.712063] iwlwifi 0000:00:0c.0: WRT: Overriding region id 15
[    5.712065] iwlwifi 0000:00:0c.0: WRT: Overriding region id 16
[    5.712066] iwlwifi 0000:00:0c.0: WRT: Overriding region id 18
[    5.712068] iwlwifi 0000:00:0c.0: WRT: Overriding region id 19
[    5.712070] iwlwifi 0000:00:0c.0: WRT: Overriding region id 20
[    5.712071] iwlwifi 0000:00:0c.0: WRT: Overriding region id 21
[    5.712073] iwlwifi 0000:00:0c.0: WRT: Overriding region id 28
[    5.712724] iwlwifi 0000:00:0c.0: loaded firmware version 46.7e3e4b69.0 9000-pu-b0-jf-b0-46.ucode op_mode iwlmvm
[    5.717621] idma64 idma64.8: Found Intel integrated DMA 64-bit
[    5.717974] idma64 idma64.9: Found Intel integrated DMA 64-bit
[    5.719290] idma64 idma64.12: Found Intel integrated DMA 64-bit
[    5.719760] idma64 idma64.13: Found Intel integrated DMA 64-bit
[    5.720142] idma64 idma64.14: Found Intel integrated DMA 64-bit
[    5.742388] pps_core: LinuxPPS API ver. 1 registered
[    5.742393] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[    5.742910] Bluetooth: Core ver 2.22
[    5.742937] NET: Registered PF_BLUETOOTH protocol family
[    5.742940] Bluetooth: HCI device and connection manager initialized
[    5.742946] Bluetooth: HCI socket layer initialized
[    5.742949] Bluetooth: L2CAP socket layer initialized
[    5.742955] Bluetooth: SCO socket layer initialized
[    5.776834] input: PC Speaker as /devices/platform/pcspkr/input/input15
[    5.851608] systemd-journald[278]: Received client request to flush runtime journal.
[    5.857793] PTP clock support registered
[    5.909936] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    5.909945] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    5.909946] RAPL PMU: hw unit of domain package 2^-14 Joules
[    5.909948] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    5.909949] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    6.072901] mei_hdcp 0000:00:0f.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[    6.077329] usb 1-5: Found UVC 1.00 device Front Camera (0bda:5842)
[    6.096589] cryptd: max_cpu_qlen set to 1000
[    6.109550] usb 1-6: Found UVC 1.00 device USB 2.0 Camera (0c45:636d)
[    6.112860] usb 1-6: Failed to query (GET_INFO) UVC control 7 on unit 1: 0 (exp. 1).
[    6.113101] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    6.117873] usbcore: registered new interface driver uvcvideo
[    6.170815] intel_rapl_common: Found RAPL domain package
[    6.170828] intel_rapl_common: Found RAPL domain core
[    6.170831] intel_rapl_common: Found RAPL domain uncore
[    6.170835] intel_rapl_common: Found RAPL domain dram
[    6.243548] iwlwifi 0000:00:0c.0: base HW address: 2c:8d:b1:2f:6d:9f, OTP minor version: 0x4
[    6.266586] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    6.266602] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.266607] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    6.266611] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    6.266614] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    6.266617] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    6.266621] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    6.326478] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    6.339709] dw-apb-uart.8: ttyS4 at MMIO 0xa122a000 (irq = 4, base_baud = 115200) is a 16550A
[    6.354100] Bluetooth: hci0: Bootloader revision 0.1 build 42 week 52 2015
[    6.355103] Bluetooth: hci0: Device revision is 2
[    6.355112] Bluetooth: hci0: Secure boot is enabled
[    6.355114] Bluetooth: hci0: OTP lock is enabled
[    6.355116] Bluetooth: hci0: API lock is enabled
[    6.355118] Bluetooth: hci0: Debug lock is disabled
[    6.355121] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    6.367041] Bluetooth: hci0: Found device firmware: intel/ibt-17-16-1.sfi
[    6.367109] Bluetooth: hci0: Boot Address: 0x40800
[    6.367113] Bluetooth: hci0: Firmware Version: 201-12.24
[    6.368359] usbcore: registered new interface driver btusb
[    6.375683] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:0e.0/sound/card0/input16
[    6.375884] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:0e.0/sound/card0/input17
[    6.376045] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input18
[    6.376197] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input19
[    6.376361] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:0e.0/sound/card0/input20
[    6.406568] dw-apb-uart.9: ttyS5 at MMIO 0xa1228000 (irq = 5, base_baud = 115200) is a 16550A
[    6.466826] iwlwifi 0000:00:0c.0 wlo2: renamed from wlan0
[    6.469805] dw-apb-uart.10: ttyS6 at MMIO 0xfea10000 (irq = 6, base_baud = 115200) is a 16550A
[    6.495739] dw-apb-uart.11: ttyS7 at MMIO 0xa1226000 (irq = 7, base_baud = 115200) is a 16550A
[    6.599035] Creating 1 MTD partitions on "intel-spi":
[    6.599052] 0x000000000000-0x000000800000 : "BIOS"
[    6.922357] intel_telemetry_core Init
[    6.974150] Invalid pltconfig, ensure IPC1 device is enabled in BIOS
[    7.322624] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.322635] Bluetooth: BNEP filters: protocol multicast
[    7.322643] Bluetooth: BNEP socket layer initialized
[    7.964879] Bluetooth: hci0: Waiting for firmware download to complete
[    7.965077] Bluetooth: hci0: Firmware loaded in 1560567 usecs
[    7.965171] Bluetooth: hci0: Waiting for device to boot
[    7.979103] Bluetooth: hci0: Device booted in 13656 usecs
[    7.979749] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-17-16-1.ddc
[    7.981094] Bluetooth: hci0: Applying Intel DDC parameters completed
[    7.982099] Bluetooth: hci0: Firmware revision 0.1 build 201 week 12 2024
[    7.984084] Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
[    8.056744] Bluetooth: MGMT ver 1.23
[    8.072448] NET: Registered PF_ALG protocol family
[    8.383388] iwlwifi 0000:00:0c.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[   15.643830] ucsi_acpi USBC000:00: failed to reset PPM!
[   15.643842] ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
[   20.227738] Bluetooth: RFCOMM TTY layer initialized
[   20.227758] Bluetooth: RFCOMM socket layer initialized
[   20.227771] Bluetooth: RFCOMM ver 1.11
[   23.790834] wlo2: authenticate with 60:8d:26:17:b9:eb (local address=2c:8d:b1:2f:6d:9f)
[   23.791876] wlo2: send auth to 60:8d:26:17:b9:eb (try 1/3)
[   23.832534] wlo2: authenticated
[   23.835662] wlo2: associate with 60:8d:26:17:b9:eb (try 1/3)
[   23.836927] wlo2: RX AssocResp from 60:8d:26:17:b9:eb (capab=0x1011 status=0 aid=10)
[   23.839498] wlo2: associated
[   23.977692] wlo2: Limiting TX power to 19 (20 - 1) dBm as advertised by 60:8d:26:17:b9:eb
[   26.132886] usb 1-3: USB disconnect, device number 7
[   26.600366] usb 1-3: new full-speed USB device number 8 using xhci_hcd
[   26.725600] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[   26.725616] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   26.725621] usb 1-3: Product: FocalTech Fingerprint Device
[   26.725624] usb 1-3: Manufacturer: HOLTEK
[   36.425373] systemd-journald[278]: Time jumped backwards, rotating.
[   48.384044] usb 1-3: USB disconnect, device number 8
[   48.852593] usb 1-3: new full-speed USB device number 9 using xhci_hcd
[   48.980463] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[   48.980474] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   48.980477] usb 1-3: Product: FocalTech Fingerprint Device
[   48.980479] usb 1-3: Manufacturer: HOLTEK
[   70.635957] usb 1-3: USB disconnect, device number 9
[   71.103172] usb 1-3: new full-speed USB device number 10 using xhci_hcd
[   71.227562] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[   71.227572] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   71.227575] usb 1-3: Product: FocalTech Fingerprint Device
[   71.227577] usb 1-3: Manufacturer: HOLTEK
[   92.887478] usb 1-3: USB disconnect, device number 10
[   93.353896] usb 1-3: new full-speed USB device number 11 using xhci_hcd
[   93.478858] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[   93.478870] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   93.478872] usb 1-3: Product: FocalTech Fingerprint Device
[   93.478874] usb 1-3: Manufacturer: HOLTEK
[  115.138362] usb 1-3: USB disconnect, device number 11
[  115.604738] usb 1-3: new full-speed USB device number 12 using xhci_hcd
[  115.729774] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[  115.729786] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  115.729788] usb 1-3: Product: FocalTech Fingerprint Device
[  115.729790] usb 1-3: Manufacturer: HOLTEK
[  137.387914] usb 1-3: USB disconnect, device number 12
[  137.855768] usb 1-3: new full-speed USB device number 13 using xhci_hcd
[  137.980252] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[  137.980264] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  137.980266] usb 1-3: Product: FocalTech Fingerprint Device
[  137.980268] usb 1-3: Manufacturer: HOLTEK
[  159.635544] usb 1-3: USB disconnect, device number 13
[  160.105667] usb 1-3: new full-speed USB device number 14 using xhci_hcd
[  160.236992] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[  160.237008] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  160.237013] usb 1-3: Product: FocalTech Fingerprint Device
[  160.237016] usb 1-3: Manufacturer: HOLTEK
[  181.881468] usb 1-3: USB disconnect, device number 14
[  182.349865] usb 1-3: new full-speed USB device number 15 using xhci_hcd
[  182.474290] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[  182.474301] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  182.474303] usb 1-3: Product: FocalTech Fingerprint Device
[  182.474305] usb 1-3: Manufacturer: HOLTEK
[  204.127286] usb 1-3: USB disconnect, device number 15
[  204.594048] usb 1-3: new full-speed USB device number 16 using xhci_hcd
[  204.718686] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[  204.718712] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  204.718721] usb 1-3: Product: FocalTech Fingerprint Device
[  204.718727] usb 1-3: Manufacturer: HOLTEK
[  215.883201] warning: `plasmashell' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[  226.373366] usb 1-3: USB disconnect, device number 16
[  226.840187] usb 1-3: new full-speed USB device number 17 using xhci_hcd
[  226.964342] usb 1-3: New USB device found, idVendor=2808, idProduct=6652, bcdDevice= 1.00
[  226.964353] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  226.964356] usb 1-3: Product: FocalTech Fingerprint Device
[  226.964358] usb 1-3: Manufacturer: HOLTEK
[  399.963479] usb 1-8: USB disconnect, device number 5
[  400.308931] usb 1-8: new full-speed USB device number 18 using xhci_hcd
[  400.687882] usb 1-8: device descriptor read/64, error -71
[  400.900918] usb 1-8: device descriptor read/64, error -71
[  401.320582] usb 1-8: new full-speed USB device number 19 using xhci_hcd
[  401.639907] usb 1-8: device descriptor read/64, error -71
[  401.869249] usb 1-8: New USB device found, idVendor=1018, idProduct=1006, bcdDevice= 1.09
[  401.869271] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[  401.874478] input: HID 1018:1006 as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.0/0003:1018:1006.0003/input/input21
[  401.948233] hid-generic 0003:1018:1006.0003: input,hidraw0: USB HID v1.11 Keyboard [HID 1018:1006] on usb-0000:00:15.0-8/input0
[  401.982912] input: HID 1018:1006 Mouse as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0004/input/input22
[  401.983288] input: HID 1018:1006 Touchpad as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0004/input/input23
[  401.983603] input: HID 1018:1006 System Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0004/input/input24
[  402.035315] input: HID 1018:1006 Consumer Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0004/input/input25
[  402.035768] hid-multitouch 0003:1018:1006.0004: input,hiddev96,hidraw1: USB HID v1.11 Mouse [HID 1018:1006] on usb-0000:00:15.0-8/input1
[  410.198561] usb 1-8: USB disconnect, device number 19
[  410.617792] usb 1-8: new full-speed USB device number 20 using xhci_hcd
[  410.743854] usb 1-8: New USB device found, idVendor=1018, idProduct=1006, bcdDevice= 1.09
[  410.743879] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[  410.748962] input: HID 1018:1006 as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.0/0003:1018:1006.0005/input/input26
[  410.830081] hid-generic 0003:1018:1006.0005: input,hidraw0: USB HID v1.11 Keyboard [HID 1018:1006] on usb-0000:00:15.0-8/input0
[  410.863454] input: HID 1018:1006 Mouse as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0006/input/input27
[  410.864000] input: HID 1018:1006 Touchpad as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0006/input/input28
[  410.864489] input: HID 1018:1006 System Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0006/input/input29
[  410.916350] input: HID 1018:1006 Consumer Control as /devices/pci0000:00/0000:00:15.0/usb1/1-8/1-8:1.1/0003:1018:1006.0006/input/input30
[  410.917151] hid-multitouch 0003:1018:1006.0006: input,hiddev96,hidraw1: USB HID v1.11 Mouse [HID 1018:1006] on usb-0000:00:15.0-8/input1

[Index of Archives]     [Linux Media Devel]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Linux Wireless Networking]     [Linux Omap]

  Powered by Linux