Re: [PATCH RFC] thunderbolt: Re-add DP resources on resume
From: 李佳怡
Date: Fri Sep 19 2025 - 03:24:28 EST
在 2025/9/19 00:43, Mika Westerberg 写道:
On Thu, Sep 18, 2025 at 06:20:59PM +0200, Mika Westerberg wrote:
Hi,
On Thu, Sep 18, 2025 at 04:34:31PM +0800, 李佳怡 wrote:
在 2025/9/17 20:50, Mika Westerberg 写道:
On Wed, Sep 17, 2025 at 06:12:31PM +0800, 李佳怡 wrote:
As requested, I've attached the complete dmesg output (from boot to after
resume) reproducing the issue.
Testing Methodology:
1. Start with the Targus Thunderbolt dock already connected to the system
2. Enter S3 suspend (sleep) with no DP monitor connected to the dock
3. Resume from S3
4. After the system has fully resumed, connect the DP monitor to the dock
Thanks! It is badly line wrapped. I wonder if you can just attach it?
Anyways I found some unexpected things there:
[ 8.647850] With USB4 patch v1.0.0
What is this? ;-)
Thanks for your help!
This is a self-compiled kernel based on version 5.4 with backported
Thunderbolt drivers. I will also attach the kernel log from a build using
the linux-6.6.y branch of the community linux-stable repository.
Okay but I really suggest using more recent kernel. 6.16 is current stable
so that would be good.
[ 8.647860] ACPI: bus type thunderbolt registered
[ 8.664660] [7] nhi_probe:1326: thunderbolt 0000:2c:00.0: total paths: 21
[ 8.665209] [7] tb_ring_alloc:586: thunderbolt 0000:2c:00.0: allocating
TX ring 0 of size 10
[ 8.665243] [7] tb_ring_alloc:586: thunderbolt 0000:2c:00.0: allocating
RX ring 0 of size 10
[ 8.665267] [7] tb_ctl_alloc:665: thunderbolt 0000:2c:00.0: control
channel created
[ 8.665272] [7] icm_probe:2549: thunderbolt 0000:2c:00.0: ICM not
supported on this controller
[ 8.665285] [7] tb_ring_free:840: thunderbolt 0000:2c:00.0: freeing RX
ring 0
[ 8.665294] [7] tb_ring_free:840: thunderbolt 0000:2c:00.0: freeing TX
ring 0
What is this?
Is this Intel TB/USB4 controller or something else? All USB4 compliant
controllers should go directly to tb.c as that's the part dealing with
software connection manager. The above looks like it tries first with the
firmware connection manager and that should not happen outside of Intel
Thunderbolt 3 hosts.
Yes, there is a mistake. I discovered that during the USB4_NATIVE_CONTROL
negotiation in the firmware, an OSC_CAPABILITIES_MASK_ERROR bit was being
set incorrectly, which should not have happened.
The log I will attach next has been modified to fix this issue.
[..]
[ 0.498976] [1] tb_switch_reset:1666: thunderbolt 0000:2c:00.0: 0: resetting
[ 0.533329] [1] tb_add_dp_resources:217: thunderbolt 0000:2c:00.0: 0:10: DP IN resource available
[ 0.533959] [1] tb_add_dp_resources:217: thunderbolt 0000:2c:00.0: 0:11: DP IN resource available
The DP IN resources were added here.
[..]
[ 19.035726] [171] tb_switch_set_wake:3445: thunderbolt 0000:2c:00.0: 0: enabling wakeup: 0x3f
[ 19.037401] [171] tb_ring_stop:768: thunderbolt 0000:2c:00.0: stopping RX ring 0
[ 19.037412] [171] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: disabling interrupt at register 0x38200 bit 21 (0x200001 -> 0x1)
[ 19.037439] [171] tb_ring_stop:768: thunderbolt 0000:2c:00.0: stopping TX ring 0
[ 19.037449] [171] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 19.037463] [171] tb_ctl_stop:733: thunderbolt 0000:2c:00.0: control channel stopped
Runtime suspend.
(and a couple more)
[ 266.399800] [3870] tb_ctl_start:703: thunderbolt 0000:2c:00.0: control channel starting...
[ 266.399808] [3870] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting TX ring 0
[ 266.399821] [3870] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 266.399826] [3870] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting RX ring 0
[ 266.399837] [3870] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 21 (0x1 -> 0x200001)
[ 266.399848] [3870] tb_switch_resume:3478: thunderbolt 0000:2c:00.0: 0: resuming switch
[ 266.399852] [3870] tb_switch_configure:2590: thunderbolt 0000:2c:00.0: restoring Switch at 0x0 (depth: 0, up port: 5)
[ 266.400032] [3870] tb_switch_set_wake:3447: thunderbolt 0000:2c:00.0: 0: disabling wakeup
Around this time you should see the hotplug events coming to the DP IN
adapters. But there is none.
There is a bit in the DP adapter config space (DHP) that can be used to
disable this but the spec says it defaults to 0. Anyways I suggest to check
that (and also the Plugged bit). You can dump these using tbtools [1]. Let
me know if you want help with that.
Nevermind about the Plugged bit, that's not applicable here.
Here's how to dump the DHP bit. This is from Intel host:
# tbdump -vv -r 0 -N 1 -a 5 ADP_CS_5
0x0005 0x00004809 0b00000000 00000000 01001000 00001001 ..H. ADP_CS_5
[00:06] 0x9 Max Input HopID
[11:17] 0x9 Max Output HopID
[22:28] 0x0 Link Credits Allocated
[29:29] 0x0 HEC Error Enable (HEE)
[30:30] 0x0 Flow Control Error Enable (FCEE)
[31:31] 0x0 Disable Hot Plug Events (DHP)
Thank you for your help. As you suggested, I tried kernel 6.16, but the issue still persists.
The logs and device vendor information are included in the attachment. I also ran the tbdump command, and the result shows the DHP bit is set to 0. Does this indicate there might still be other issues?
# tbdump -vv -r 0 -N 1 -a 5 ADP_CS_5
0x0005 0x0000d814 0b00000000 00000000 11011000 00010100 .... ADP_CS_5
[00:06] 0x14 Max Input HopID
[11:17] 0x1b Max Output HopID
[22:28] 0x0 Link Credits Allocated
[29:29] 0x0 HEC Error Enable (HEE)
[30:30] 0x0 Flow Control Error Enable (FCEE)
[31:31] 0x0 Disable Hot Plug Events (DHP)[ 0.000000] Linux version 6.16.0-rc2+ (lijiayi@kylin-pc) (gcc (Debian 12.4.0-5) 12.4.0, GNU ld (GNU Binutils for Debian) 2.44) #9 SMP PREEMPT_DYNAMIC Mon Aug 25 15:55:54 CST 2025
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.16.0-rc2+ root=UUID=f2d890ff-cf69-4a9c-a4df-4b7c8dd70647 ro quiet splash thunderbolt.dyndbg=+plft vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000003ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000004000000-0x000000000403ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000004040000-0x0000000004ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000005000000-0x0000000005ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000006000000-0x00000000730f5fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000730f6000-0x0000000076edcfff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000076edd000-0x0000000076f1cfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000076f1d000-0x00000000797fdfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000797fe000-0x000000007a9fdfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007a9fe000-0x000000007bffffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007c000000-0x000000007fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dfa00000-0x00000000dfa00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dfa80000-0x00000000dfafffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc0000-0x00000000fedc0fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedc5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc7000-0x00000000fedc7fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc9000-0x00000000fedcafff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000277efffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000277f00000-0x000000027fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000fffd00000000-0x0000ffffffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] efi: EFI v2.8 by Xorcore
[ 0.000000] efi: SMBIOS=0x7a647000 SMBIOS 3.0=0x7a645000 ACPI=0x76f1c000 ACPI 2.0=0x76f1c014 MEMATTR=0x6bf75018 INITRD=0x69a05a18
[ 0.000000] efi: Not removing mem51: MMIO range=[0xdfa00000-0xdfa00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem52: MMIO range=[0xdfa80000-0xdfafffff] (0MB) from e820 map
[ 0.000000] e820: remove [mem 0xdfa80000-0xdfafffff] reserved
[ 0.000000] efi: Remove mem54: MMIO range=[0xfea00000-0xfeafffff] (1MB) from e820 map
[ 0.000000] e820: remove [mem 0xfea00000-0xfeafffff] reserved
[ 0.000000] efi: Not removing mem55: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem56: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem57: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
[ 0.000000] efi: Not removing mem58: MMIO range=[0xfedc0000-0xfedc0fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem59: MMIO range=[0xfedc2000-0xfedc5fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem60: MMIO range=[0xfedc7000-0xfedc7fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem61: MMIO range=[0xfedc9000-0xfedcafff] (8KB) from e820 map
[ 0.000000] efi: Remove mem62: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.4.1 present.
[ 0.000000] DMI: Suma N50/22DD2 , BIOS CSCH051021 09/18/2025
[ 0.000000] DMI: Memory slots populated: 1/2
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2800.052 MHz processor
[ 0.000165] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000168] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000181] last_pfn = 0x277f00 max_arch_pfn = 0x400000000
[ 0.000190] MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
[ 0.000193] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000679] last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[ 0.007158] Using GB pages for direct mapping
[ 0.007607] Secure boot disabled
[ 0.007608] RAMDISK: [mem 0x61043000-0x6516bfff]
[ 0.007689] ACPI: Early table checksum verification disabled
[ 0.007693] ACPI: RSDP 0x0000000076F1C014 000024 (v02 HYGON )
[ 0.007698] ACPI: XSDT 0x0000000076F1B0E8 00009C (v01 HYGON Hygon 00000002 01000013)
[ 0.007705] ACPI: FACP 0x0000000076F16000 000114 (v06 HYGON Hygon 00000002 01000013)
[ 0.007711] ACPI: DSDT 0x0000000076F10000 00512A (v02 HYGON Hygon 03242016 INTL 20190703)
[ 0.007715] ACPI: FACS 0x000000007774F000 000040
[ 0.007718] ACPI: SSDT 0x0000000076F1A000 0000D2 (v02 HYGON HGN ALIB 00000002 MSFT 04000000)
[ 0.007721] ACPI: SSDT 0x0000000076F19000 00020C (v02 HYGON Hygon 00000002 01000013)
[ 0.007724] ACPI: MCFG 0x0000000076F18000 00003C (v01 HYGON Hygon 00000002 01000013)
[ 0.007727] ACPI: HPET 0x0000000076F17000 000038 (v01 HYGON Hygon 00000002 01000013)
[ 0.007731] ACPI: SSDT 0x0000000076F0D000 002314 (v02 HYGON HGN CPU 00000001 HYGN 00000001)
[ 0.007734] ACPI: CRAT 0x0000000076F0C000 000F50 (v01 HYGON HGN CRAT 00000001 HYGN 00000001)
[ 0.007737] ACPI: CDIT 0x0000000076F0B000 000029 (v01 HYGON HGN CDIT 00000001 HYGN 00000001)
[ 0.007740] ACPI: UEFI 0x000000007774C000 000042 (v01 00000000 00000000)
[ 0.007744] ACPI: IVRS 0x0000000076F0A000 0000C8 (v02 HYGON HGN IVRS 00000001 HYGN 00000000)
[ 0.007747] ACPI: FPDT 0x0000000076F09000 000044 (v01 HYGON Hygon 00000002 01000013)
[ 0.007750] ACPI: SSDT 0x0000000076F05000 003016 (v02 Hygon CPMCMN 00000001 INTL 20190703)
[ 0.007753] ACPI: APIC 0x0000000076F03000 0000DE (v04 HYGON Hygon 00000002 01000013)
[ 0.007756] ACPI: WSMT 0x0000000076F02000 000028 (v01 HYGON Hygon 00000002 01000013)
[ 0.007759] ACPI: BGRT 0x0000000076F04000 000038 (v01 HYGON Hygon 00000002 01000013)
[ 0.007762] ACPI: Reserving FACP table memory at [mem 0x76f16000-0x76f16113]
[ 0.007763] ACPI: Reserving DSDT table memory at [mem 0x76f10000-0x76f15129]
[ 0.007764] ACPI: Reserving FACS table memory at [mem 0x7774f000-0x7774f03f]
[ 0.007765] ACPI: Reserving SSDT table memory at [mem 0x76f1a000-0x76f1a0d1]
[ 0.007766] ACPI: Reserving SSDT table memory at [mem 0x76f19000-0x76f1920b]
[ 0.007767] ACPI: Reserving MCFG table memory at [mem 0x76f18000-0x76f1803b]
[ 0.007768] ACPI: Reserving HPET table memory at [mem 0x76f17000-0x76f17037]
[ 0.007769] ACPI: Reserving SSDT table memory at [mem 0x76f0d000-0x76f0f313]
[ 0.007770] ACPI: Reserving CRAT table memory at [mem 0x76f0c000-0x76f0cf4f]
[ 0.007771] ACPI: Reserving CDIT table memory at [mem 0x76f0b000-0x76f0b028]
[ 0.007772] ACPI: Reserving UEFI table memory at [mem 0x7774c000-0x7774c041]
[ 0.007773] ACPI: Reserving IVRS table memory at [mem 0x76f0a000-0x76f0a0c7]
[ 0.007773] ACPI: Reserving FPDT table memory at [mem 0x76f09000-0x76f09043]
[ 0.007774] ACPI: Reserving SSDT table memory at [mem 0x76f05000-0x76f08015]
[ 0.007775] ACPI: Reserving APIC table memory at [mem 0x76f03000-0x76f030dd]
[ 0.007776] ACPI: Reserving WSMT table memory at [mem 0x76f02000-0x76f02027]
[ 0.007777] ACPI: Reserving BGRT table memory at [mem 0x76f04000-0x76f04037]
[ 0.007886] No NUMA configuration found
[ 0.007887] Faking a node at [mem 0x0000000000000000-0x0000000277efffff]
[ 0.007898] NODE_DATA(0) allocated [mem 0x277ed59c0-0x277efffff]
[ 0.008135] Zone ranges:
[ 0.008136] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.008138] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.008139] Normal [mem 0x0000000100000000-0x0000000277efffff]
[ 0.008141] Device empty
[ 0.008142] Movable zone start for each node
[ 0.008146] Early memory node ranges
[ 0.008146] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.008148] node 0: [mem 0x0000000000100000-0x0000000003ffffff]
[ 0.008149] node 0: [mem 0x0000000004040000-0x0000000004ffffff]
[ 0.008150] node 0: [mem 0x0000000006000000-0x00000000730f5fff]
[ 0.008151] node 0: [mem 0x000000007a9fe000-0x000000007bffffff]
[ 0.008152] node 0: [mem 0x0000000100000000-0x0000000277efffff]
[ 0.008154] Initmem setup node 0 [mem 0x0000000000001000-0x0000000277efffff]
[ 0.008160] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.008185] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.008281] On node 0, zone DMA32: 64 pages in unavailable ranges
[ 0.011733] On node 0, zone DMA32: 4096 pages in unavailable ranges
[ 0.012051] On node 0, zone DMA32: 30984 pages in unavailable ranges
[ 0.024826] On node 0, zone Normal: 16384 pages in unavailable ranges
[ 0.024834] On node 0, zone Normal: 256 pages in unavailable ranges
[ 0.026395] ACPI: PM-Timer IO Port: 0x808
[ 0.026409] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.026436] IOAPIC[0]: apic_id 224, version 33, address 0xfec00000, GSI 0-23
[ 0.026442] IOAPIC[1]: apic_id 225, version 33, address 0xdfa00000, GSI 24-55
[ 0.026445] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.026447] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.026452] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.026453] ACPI: HPET id: 0x1d948201 base: 0xfed00000
[ 0.026464] e820: update [mem 0x6afa1000-0x6afe2fff] usable ==> reserved
[ 0.026487] CPU topo: Max. logical packages: 1
[ 0.026488] CPU topo: Max. logical dies: 1
[ 0.026489] CPU topo: Max. dies per package: 1
[ 0.026494] CPU topo: Max. threads per core: 2
[ 0.026495] CPU topo: Num. cores per package: 8
[ 0.026496] CPU topo: Num. threads per package: 16
[ 0.026497] CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
[ 0.026531] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.026534] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.026537] PM: hibernation: Registered nosave memory: [mem 0x04000000-0x0403ffff]
[ 0.026539] PM: hibernation: Registered nosave memory: [mem 0x05000000-0x05ffffff]
[ 0.026541] PM: hibernation: Registered nosave memory: [mem 0x6afa1000-0x6afe2fff]
[ 0.026543] PM: hibernation: Registered nosave memory: [mem 0x730f6000-0x7a9fdfff]
[ 0.026546] PM: hibernation: Registered nosave memory: [mem 0x7c000000-0xffffffff]
[ 0.026548] [mem 0x80000000-0xdf9fffff] available for PCI devices
[ 0.026549] Booting paravirtualized kernel on bare hardware
[ 0.026553] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.026562] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[ 0.027483] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[ 0.027493] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[ 0.027495] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.027529] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.16.0-rc2+ root=UUID=f2d890ff-cf69-4a9c-a4df-4b7c8dd70647 ro quiet splash thunderbolt.dyndbg=+plft vt.handoff=7
[ 0.027669] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.16.0-rc2+", will be passed to user space.
[ 0.027710] random: crng init done
[ 0.027711] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[ 0.028718] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.029243] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.029476] software IO TLB: area num 16.
[ 0.046215] Fallback order for Node 0: 0
[ 0.046227] Built 1 zonelists, mobility grouping on. Total pages: 2012502
[ 0.046228] Policy zone: Normal
[ 0.046230] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.064479] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 0.076535] ftrace: allocating 54503 entries in 216 pages
[ 0.076538] ftrace: allocated 216 pages with 4 groups
[ 0.077627] Dynamic Preempt: voluntary
[ 0.077720] rcu: Preemptible hierarchical RCU implementation.
[ 0.077721] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[ 0.077722] Trampoline variant of Tasks RCU enabled.
[ 0.077723] Rude variant of Tasks RCU enabled.
[ 0.077724] Tracing variant of Tasks RCU enabled.
[ 0.077725] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.077725] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[ 0.077740] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[ 0.077743] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[ 0.077746] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[ 0.082394] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[ 0.082648] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.082783] Console: colour dummy device 80x25
[ 0.082786] printk: legacy console [tty0] enabled
[ 0.082845] ACPI: Core revision 20250404
[ 0.082983] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.083030] APIC: Switch to symmetric I/O mode setup
[ 0.083740] AMD-Vi: Using global IVHD EFR:0x41f73ef22294ade, EFR2:0x0
[ 0.083781] AMD-Vi: [Firmware Bug]: : No southbridge IOAPIC found
[ 0.083786] AMD-Vi: Disabling interrupt remapping
[ 0.085217] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.103026] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c71ccff4, max_idle_ns: 440795309360 ns
[ 0.103032] Calibrating delay loop (skipped), value calculated using timer frequency.. 5600.10 BogoMIPS (lpj=11200208)
[ 0.103050] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.103119] LVT offset 2 assigned for vector 0xf4
[ 0.103139] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[ 0.103141] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[ 0.103144] process: using mwait in idle threads
[ 0.103149] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.103151] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[ 0.103152] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[ 0.103153] Spectre V2 : Mitigation: Retpolines
[ 0.103155] RETBleed: Mitigation: untrained return thunk
[ 0.103156] Spectre V2 : User space: Mitigation: STIBP always-on protection
[ 0.103157] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[ 0.103158] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.103160] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
[ 0.103161] Spectre V2 : Enabling Speculation Barrier for firmware calls
[ 0.103163] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.103164] x86/bugs: return thunk changed
[ 0.103170] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.103172] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.103173] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.103174] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.103176] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[ 0.148575] Freeing SMP alternatives memory: 48K
[ 0.148582] pid_max: default: 32768 minimum: 301
[ 0.152758] LSM: initializing lsm=capability,ima,evm
[ 0.152952] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.152968] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.261855] smpboot: CPU0: Hygon C86-4G (OPN:3450M) (family: 0x18, model: 0x10, stepping: 0x0)
[ 0.262173] Performance Events: Fam17h+ core perfctr, HYGON PMU driver.
[ 0.262214] ... version: 0
[ 0.262216] ... bit width: 48
[ 0.262218] ... generic registers: 6
[ 0.262220] ... value mask: 0000ffffffffffff
[ 0.262222] ... max period: 00007fffffffffff
[ 0.262224] ... fixed-purpose events: 0
[ 0.262226] ... event mask: 000000000000003f
[ 0.262447] signal: max sigframe size: 1776
[ 0.262492] rcu: Hierarchical SRCU implementation.
[ 0.262494] rcu: Max phase no-delay instances is 1000.
[ 0.262566] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.267312] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.267499] smp: Bringing up secondary CPUs ...
[ 0.267667] smpboot: x86: Booting SMP configuration:
[ 0.267670] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15
[ 0.287227] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[ 0.303108] smp: Brought up 1 node, 16 CPUs
[ 0.303108] smpboot: Total of 16 processors activated (89601.66 BogoMIPS)
[ 0.307129] Memory: 7703172K/8050008K available (18598K kernel code, 5992K rwdata, 7940K rodata, 4776K init, 5428K bss, 324896K reserved, 0K cma-reserved)
[ 0.307630] devtmpfs: initialized
[ 0.307630] x86/mm: Memory block size: 128MB
[ 0.311150] ACPI: PM: Registering ACPI NVS region [mem 0x76f1d000-0x797fdfff] (42864640 bytes)
[ 0.312192] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.312192] posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.312192] futex hash table entries: 4096 (262144 bytes on 1 NUMA nodes, total 256 KiB, linear).
[ 0.312192] pinctrl core: initialized pinctrl subsystem
[ 0.312192] PM: RTC time: 07:09:48, date: 2025-09-19
[ 0.312192] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.312419] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[ 0.312426] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.312431] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.312442] audit: initializing netlink subsys (disabled)
[ 0.312452] audit: type=2000 audit(1758265788.000:1): state=initialized audit_enabled=0 res=1
[ 0.312452] thermal_sys: Registered thermal governor 'fair_share'
[ 0.312452] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.312452] thermal_sys: Registered thermal governor 'step_wise'
[ 0.312452] thermal_sys: Registered thermal governor 'user_space'
[ 0.312452] cpuidle: using governor ladder
[ 0.312452] cpuidle: using governor menu
[ 0.312452] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.312452] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.312452] PCI: Using configuration type 1 for base access
[ 0.315193] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.315193] HugeTLB: allocation took 0ms with hugepage_allocation_threads=4
[ 0.315193] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.315193] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.315193] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.315193] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.315321] ACPI: Added _OSI(Module Device)
[ 0.315321] ACPI: Added _OSI(Processor Device)
[ 0.315324] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.332449] ACPI: 5 ACPI AML tables successfully acquired and loaded
[ 0.395089] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.395094] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.396337] ACPI: EC: EC started
[ 0.396340] ACPI: EC: interrupt blocked
[ 0.397166] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.397171] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
[ 0.397174] ACPI: Interpreter enabled
[ 0.397217] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.397219] ACPI: Using IOAPIC for interrupt routing
[ 0.398060] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.398063] PCI: Ignoring E820 reservations for host bridge windows
[ 0.398662] ACPI: Enabled 3 GPEs in block 00 to 1F
[ 0.400345] ACPI: \_SB_.PCI0.N0A0.P0A0: New power resource
[ 0.400433] ACPI: \_SB_.PCI0.N0A0.P3A0: New power resource
[ 0.400819] ACPI: \_SB_.PCI0.N0A0.P0U0: New power resource
[ 0.400884] ACPI: \_SB_.PCI0.N0A0.P3U0: New power resource
[ 0.400947] ACPI: \_SB_.PCI0.N0A0.P0D0: New power resource
[ 0.401010] ACPI: \_SB_.PCI0.N0A0.P3D0: New power resource
[ 0.401074] ACPI: \_SB_.PCI0.N0A0.P0D1: New power resource
[ 0.401136] ACPI: \_SB_.PCI0.N0A0.P3D1: New power resource
[ 0.401199] ACPI: \_SB_.PCI0.N0A0.P0D2: New power resource
[ 0.401262] ACPI: \_SB_.PCI0.N0A0.P3D2: New power resource
[ 0.401324] ACPI: \_SB_.PCI0.N0A0.P0D3: New power resource
[ 0.401388] ACPI: \_SB_.PCI0.N0A0.P3D3: New power resource
[ 0.401451] ACPI: \_SB_.PCI0.N0A0.P0XH: New power resource
[ 0.401515] ACPI: \_SB_.PCI0.N0A0.P3XH: New power resource
[ 0.401581] ACPI: \_SB_.PCI0.N0A0.P0HI: New power resource
[ 0.401644] ACPI: \_SB_.PCI0.N0A0.P3HI: New power resource
[ 0.410279] ACPI: \_SB_.PCI0.N00B.SATA.P0SA: New power resource
[ 0.410343] ACPI: \_SB_.PCI0.N00B.SATA.P3SA: New power resource
[ 0.439687] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.439697] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.439946] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR]
[ 0.440404] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.440873] acpi PNP0A08:00: host bridge window expanded to [io 0x03b0-0x03df window]; [io 0x03b0-0x03df window] ignored
[ 0.441353] PCI host bridge to bus 0000:00
[ 0.441360] pci_bus 0000:00: root bus resource [io 0x0000-0x02e7 window]
[ 0.441365] pci_bus 0000:00: root bus resource [io 0x0300-0x03df window]
[ 0.441368] pci_bus 0000:00: root bus resource [io 0x0400-0x0cf7 window]
[ 0.441371] pci_bus 0000:00: root bus resource [io 0x3000-0xffff window]
[ 0.441375] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.441379] pci_bus 0000:00: root bus resource [mem 0xa8000000-0xb69fffff window]
[ 0.441382] pci_bus 0000:00: root bus resource [mem 0x34000000000-0x3501fffffff window]
[ 0.441386] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.441414] pci 0000:00:00.0: [1d94:14c0] type 00 class 0x060000 conventional PCI endpoint
[ 0.441598] pci 0000:00:00.2: [1d94:149e] type 00 class 0x080600 conventional PCI endpoint
[ 0.441786] pci 0000:00:01.0: [1d94:14c2] type 00 class 0x060000 conventional PCI endpoint
[ 0.441956] pci 0000:00:01.1: [1d94:14c3] type 01 class 0x060400 PCIe Root Port
[ 0.441989] pci 0000:00:01.1: PCI bridge to [bus 01-44]
[ 0.441999] pci 0000:00:01.1: bridge window [io 0x3000-0xcfff]
[ 0.442006] pci 0000:00:01.1: bridge window [mem 0xb0000000-0xb3ffffff]
[ 0.442020] pci 0000:00:01.1: bridge window [mem 0x34000000000-0x34fffffffff 64bit pref]
[ 0.442134] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.442538] pci 0000:00:01.2: [1d94:14c3] type 01 class 0x060400 PCIe Root Port
[ 0.442571] pci 0000:00:01.2: PCI bridge to [bus 45]
[ 0.442581] pci 0000:00:01.2: bridge window [io 0xf000-0xffff]
[ 0.442587] pci 0000:00:01.2: bridge window [mem 0xa8000000-0xac0fffff]
[ 0.442602] pci 0000:00:01.2: bridge window [mem 0x35000000000-0x3501fffffff 64bit pref]
[ 0.442714] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[ 0.442981] pci 0000:00:01.3: [1d94:14c3] type 01 class 0x060400 PCIe Root Port
[ 0.443014] pci 0000:00:01.3: PCI bridge to [bus 46]
[ 0.443026] pci 0000:00:01.3: bridge window [mem 0xb4800000-0xb48fffff]
[ 0.443152] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[ 0.443416] pci 0000:00:01.5: [1d94:14c3] type 01 class 0x060400 PCIe Root Port
[ 0.443449] pci 0000:00:01.5: PCI bridge to [bus 47]
[ 0.443459] pci 0000:00:01.5: bridge window [io 0xe000-0xefff]
[ 0.443465] pci 0000:00:01.5: bridge window [mem 0xb4700000-0xb47fffff]
[ 0.443587] pci 0000:00:01.5: PME# supported from D0 D3hot D3cold
[ 0.443876] pci 0000:00:01.6: [1d94:14c3] type 01 class 0x060400 PCIe Root Port
[ 0.443909] pci 0000:00:01.6: PCI bridge to [bus 48]
[ 0.443919] pci 0000:00:01.6: bridge window [io 0xd000-0xdfff]
[ 0.443925] pci 0000:00:01.6: bridge window [mem 0xb4600000-0xb46fffff]
[ 0.444047] pci 0000:00:01.6: PME# supported from D0 D3hot D3cold
[ 0.444322] pci 0000:00:02.0: [1d94:14c2] type 00 class 0x060000 conventional PCI endpoint
[ 0.444491] pci 0000:00:03.0: [1d94:14c2] type 00 class 0x060000 conventional PCI endpoint
[ 0.444668] pci 0000:00:07.0: [1d94:14c2] type 00 class 0x060000 conventional PCI endpoint
[ 0.444837] pci 0000:00:07.1: [1d94:14c4] type 01 class 0x060400 PCIe Root Port
[ 0.444875] pci 0000:00:07.1: PCI bridge to [bus 49]
[ 0.444888] pci 0000:00:07.1: bridge window [mem 0xb4300000-0xb45fffff]
[ 0.444917] pci 0000:00:07.1: enabling Extended Tags
[ 0.445005] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[ 0.445275] pci 0000:00:08.0: [1d94:14c2] type 00 class 0x060000 conventional PCI endpoint
[ 0.445443] pci 0000:00:08.1: [1d94:14c4] type 01 class 0x060400 PCIe Root Port
[ 0.445481] pci 0000:00:08.1: PCI bridge to [bus 4a]
[ 0.445494] pci 0000:00:08.1: bridge window [mem 0xb4000000-0xb42fffff]
[ 0.445524] pci 0000:00:08.1: enabling Extended Tags
[ 0.445612] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.445873] pci 0000:00:0b.0: [1d94:790b] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.446081] pci 0000:00:0b.3: [1d94:790e] type 00 class 0x060100 conventional PCI endpoint
[ 0.446383] pci 0000:00:18.0: [1d94:14d0] type 00 class 0x060000 conventional PCI endpoint
[ 0.446465] pci 0000:00:18.1: [1d94:14d1] type 00 class 0x060000 conventional PCI endpoint
[ 0.446546] pci 0000:00:18.2: [1d94:14d2] type 00 class 0x060000 conventional PCI endpoint
[ 0.446629] pci 0000:00:18.3: [1d94:14d3] type 00 class 0x060000 conventional PCI endpoint
[ 0.446711] pci 0000:00:18.4: [1d94:14d4] type 00 class 0x060000 conventional PCI endpoint
[ 0.446791] pci 0000:00:18.5: [1d94:14d5] type 00 class 0x060000 conventional PCI endpoint
[ 0.446873] pci 0000:00:18.6: [1d94:14d6] type 00 class 0x060000 conventional PCI endpoint
[ 0.446954] pci 0000:00:18.7: [1d94:14d7] type 00 class 0x060000 conventional PCI endpoint
[ 0.447182] pci 0000:01:00.0: [1b21:2421] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.447228] pci 0000:01:00.0: PCI bridge to [bus 02-2c]
[ 0.447241] pci 0000:01:00.0: bridge window [io 0x3000-0xcfff]
[ 0.447249] pci 0000:01:00.0: bridge window [mem 0xb0000000-0xb27fffff]
[ 0.447268] pci 0000:01:00.0: bridge window [mem 0x34000000000-0x34fffffffff 64bit pref]
[ 0.447420] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.447810] pci 0000:00:01.1: PCI bridge to [bus 01-44]
[ 0.447994] pci 0000:02:00.0: [1b21:2423] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.448041] pci 0000:02:00.0: PCI bridge to [bus 03-16]
[ 0.448053] pci 0000:02:00.0: bridge window [io 0x7000-0xafff]
[ 0.448060] pci 0000:02:00.0: bridge window [mem 0xb1000000-0xb1ffffff]
[ 0.448079] pci 0000:02:00.0: bridge window [mem 0x34800000000-0x34fffffffff 64bit pref]
[ 0.448267] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.448632] pci 0000:02:01.0: [1b21:2423] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.448679] pci 0000:02:01.0: PCI bridge to [bus 17-2a]
[ 0.448691] pci 0000:02:01.0: bridge window [io 0x3000-0x6fff]
[ 0.448698] pci 0000:02:01.0: bridge window [mem 0xb0000000-0xb0ffffff]
[ 0.448717] pci 0000:02:01.0: bridge window [mem 0x34000000000-0x347ffffffff 64bit pref]
[ 0.448904] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[ 0.449272] pci 0000:02:02.0: [1b21:2423] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.449318] pci 0000:02:02.0: PCI bridge to [bus 2b]
[ 0.449327] pci 0000:02:02.0: bridge window [io 0xc000-0xcfff]
[ 0.449334] pci 0000:02:02.0: bridge window [mem 0xb2400000-0xb27fffff]
[ 0.449479] pci 0000:02:02.0: PME# supported from D0 D3hot D3cold
[ 0.449800] pci 0000:02:03.0: [1b21:2423] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.449847] pci 0000:02:03.0: PCI bridge to [bus 2c]
[ 0.449856] pci 0000:02:03.0: bridge window [io 0xb000-0xbfff]
[ 0.449863] pci 0000:02:03.0: bridge window [mem 0xb2000000-0xb23fffff]
[ 0.450007] pci 0000:02:03.0: PME# supported from D0 D3hot D3cold
[ 0.450350] pci 0000:01:00.0: PCI bridge to [bus 02-2c]
[ 0.450449] pci 0000:02:00.0: PCI bridge to [bus 03-16]
[ 0.450553] pci 0000:02:01.0: PCI bridge to [bus 17-2a]
[ 0.450698] pci 0000:2b:00.0: [1b21:2426] type 00 class 0x0c0330 PCIe Legacy Endpoint
[ 0.450767] pci 0000:2b:00.0: BAR 0 [mem 0xb2400000-0xb2407fff 64bit]
[ 0.450891] pci 0000:2b:00.0: PME# supported from D0 D3hot D3cold
[ 0.451197] pci 0000:02:02.0: PCI bridge to [bus 2b]
[ 0.451353] pci 0000:2c:00.0: [1b21:2425] type 00 class 0x0c0340 PCIe Legacy Endpoint
[ 0.451422] pci 0000:2c:00.0: BAR 0 [mem 0xb2000000-0xb203ffff 64bit]
[ 0.451430] pci 0000:2c:00.0: BAR 2 [mem 0xb2040000-0xb204ffff 64bit]
[ 0.451550] pci 0000:2c:00.0: PME# supported from D0 D3hot D3cold
[ 0.463461] pci 0000:02:03.0: PCI bridge to [bus 2c]
[ 0.464591] pci 0000:45:00.0: [1ec8:9810] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.464666] pci 0000:45:00.0: BAR 0 [mem 0xa8000000-0xabffffff 64bit]
[ 0.464675] pci 0000:45:00.0: BAR 2 [mem 0x35000000000-0x3501fffffff 64bit pref]
[ 0.464681] pci 0000:45:00.0: BAR 4 [io 0xf000-0xf0ff]
[ 0.464689] pci 0000:45:00.0: ROM [mem 0xac000000-0xac07ffff pref]
[ 0.464834] pci 0000:45:00.0: supports D1
[ 0.464837] pci 0000:45:00.0: PME# supported from D0 D1 D3hot
[ 0.466129] pci 0000:00:01.2: PCI bridge to [bus 45]
[ 0.467083] pci 0000:46:00.0: [1e68:8111] type 00 class 0x010802 PCIe Endpoint
[ 0.467218] pci 0000:46:00.0: BAR 0 [mem 0xb4800000-0xb4803fff 64bit]
[ 0.468782] pci 0000:00:01.3: PCI bridge to [bus 46]
[ 0.468909] pci 0000:47:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.468989] pci 0000:47:00.0: BAR 0 [io 0xe000-0xe0ff]
[ 0.469000] pci 0000:47:00.0: BAR 2 [mem 0xb4704000-0xb4704fff 64bit]
[ 0.469008] pci 0000:47:00.0: BAR 4 [mem 0xb4700000-0xb4703fff 64bit]
[ 0.469163] pci 0000:47:00.0: supports D1 D2
[ 0.469166] pci 0000:47:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.469464] pci 0000:00:01.5: PCI bridge to [bus 47]
[ 0.469598] pci 0000:48:00.0: [10ec:b852] type 00 class 0x028000 PCIe Endpoint
[ 0.469695] pci 0000:48:00.0: BAR 0 [io 0xd000-0xd0ff]
[ 0.469707] pci 0000:48:00.0: BAR 2 [mem 0xb4600000-0xb46fffff 64bit]
[ 0.469873] pci 0000:48:00.0: PME# supported from D0 D3hot D3cold
[ 0.470181] pci 0000:00:01.6: PCI bridge to [bus 48]
[ 0.470337] pci 0000:49:00.0: [1d94:14c5] type 00 class 0x130000 PCIe Endpoint
[ 0.470433] pci 0000:49:00.0: enabling Extended Tags
[ 0.470733] pci 0000:49:00.2: [1d94:14c6] type 00 class 0x108000 PCIe Endpoint
[ 0.470813] pci 0000:49:00.2: BAR 2 [mem 0xb4400000-0xb44fffff]
[ 0.470823] pci 0000:49:00.2: BAR 5 [mem 0xb4502000-0xb4503fff]
[ 0.470840] pci 0000:49:00.2: enabling Extended Tags
[ 0.471202] pci 0000:49:00.3: [1d94:14d8] type 00 class 0x108000 PCIe Endpoint
[ 0.471228] pci 0000:49:00.3: BAR 2 [mem 0xb4300000-0xb43fffff]
[ 0.471233] pci 0000:49:00.3: BAR 5 [mem 0xb4500000-0xb4501fff]
[ 0.471241] pci 0000:49:00.3: enabling Extended Tags
[ 0.471449] pci 0000:00:07.1: PCI bridge to [bus 49]
[ 0.471564] pci 0000:4a:00.0: [1d94:14c5] type 00 class 0x130000 PCIe Endpoint
[ 0.471596] pci 0000:4a:00.0: enabling Extended Tags
[ 0.471738] pci 0000:4a:00.1: [1d94:148c] type 00 class 0x0c0330 PCIe Endpoint
[ 0.471764] pci 0000:4a:00.1: BAR 0 [mem 0xb4000000-0xb40fffff 64bit]
[ 0.471775] pci 0000:4a:00.1: enabling Extended Tags
[ 0.471815] pci 0000:4a:00.1: PME# supported from D0 D3hot D3cold
[ 0.471976] pci 0000:4a:00.2: [1d94:148c] type 00 class 0x0c0330 PCIe Endpoint
[ 0.472002] pci 0000:4a:00.2: BAR 0 [mem 0xb4100000-0xb41fffff 64bit]
[ 0.472012] pci 0000:4a:00.2: enabling Extended Tags
[ 0.472052] pci 0000:4a:00.2: PME# supported from D0 D3hot D3cold
[ 0.472218] pci 0000:4a:00.6: [1d94:14c9] type 00 class 0x040300 PCIe Endpoint
[ 0.472243] pci 0000:4a:00.6: BAR 0 [mem 0xb4200000-0xb4207fff]
[ 0.472254] pci 0000:4a:00.6: enabling Extended Tags
[ 0.472292] pci 0000:4a:00.6: PME# supported from D0 D3hot D3cold
[ 0.472497] pci 0000:00:08.1: PCI bridge to [bus 4a]
[ 0.489355] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.489477] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.489596] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.489715] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.489835] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.489954] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.490073] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.490193] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.490836] ACPI: EC: interrupt unblocked
[ 0.490839] ACPI: EC: event unblocked
[ 0.490845] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.490848] ACPI: EC: GPE=0x3
[ 0.490851] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC initialization complete
[ 0.490855] ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
[ 0.490985] iommu: Default domain type: Translated
[ 0.490985] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.491375] SCSI subsystem initialized
[ 0.491390] libata version 3.00 loaded.
[ 0.491390] ACPI: bus type USB registered
[ 0.491390] usbcore: registered new interface driver usbfs
[ 0.491390] usbcore: registered new interface driver hub
[ 0.491390] usbcore: registered new device driver usb
[ 0.550459] mc: Linux media interface: v0.10
[ 0.550479] videodev: Linux video capture interface: v2.00
[ 0.550493] pps_core: LinuxPPS API ver. 1 registered
[ 0.550495] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 0.550501] PTP clock support registered
[ 0.550532] EDAC MC: Ver: 3.0.0
[ 0.551996] efivars: Registered efivars operations
[ 0.551996] Advanced Linux Sound Architecture Driver Initialized.
[ 0.551996] PCI: Using ACPI for IRQ routing
[ 0.569110] PCI: pci_cache_line_size set to 64 bytes
[ 0.571966] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.571970] e820: reserve RAM buffer [mem 0x05000000-0x07ffffff]
[ 0.571972] e820: reserve RAM buffer [mem 0x6afa1000-0x6bffffff]
[ 0.571975] e820: reserve RAM buffer [mem 0x730f6000-0x73ffffff]
[ 0.571977] e820: reserve RAM buffer [mem 0x277f00000-0x277ffffff]
[ 0.572109] pci 0000:45:00.0: vgaarb: setting as boot VGA device
[ 0.572109] pci 0000:45:00.0: vgaarb: bridge control possible
[ 0.572109] pci 0000:45:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.572109] vgaarb: loaded
[ 0.572109] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.572109] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.576111] clocksource: Switched to clocksource tsc-early
[ 0.576344] VFS: Disk quotas dquot_6.6.0
[ 0.576359] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.576386] pnp: PnP ACPI init
[ 0.576386] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.594701] system 00:03: [io 0x04d0-0x04d1] has been reserved
[ 0.594707] system 00:03: [io 0x040b] has been reserved
[ 0.594710] system 00:03: [io 0x04d6] has been reserved
[ 0.594714] system 00:03: [io 0x0c00-0x0c01] has been reserved
[ 0.594718] system 00:03: [io 0x0c14] has been reserved
[ 0.594721] system 00:03: [io 0x0c50-0x0c51] has been reserved
[ 0.594725] system 00:03: [io 0x0c52] has been reserved
[ 0.594729] system 00:03: [io 0x0c6c] has been reserved
[ 0.594732] system 00:03: [io 0x0c6f] has been reserved
[ 0.594736] system 00:03: [io 0x0cd0-0x0cd1] has been reserved
[ 0.594739] system 00:03: [io 0x0cd2-0x0cd3] has been reserved
[ 0.594743] system 00:03: [io 0x0cd4-0x0cd5] has been reserved
[ 0.594746] system 00:03: [io 0x0cd6-0x0cd7] has been reserved
[ 0.594750] system 00:03: [io 0x0cd8-0x0cdf] has been reserved
[ 0.594753] system 00:03: [io 0x0800-0x089f] has been reserved
[ 0.594757] system 00:03: [io 0x0b00-0x0b0f] has been reserved
[ 0.594760] system 00:03: [io 0x0b20-0x0b3f] has been reserved
[ 0.594764] system 00:03: [io 0x0900-0x090f] has been reserved
[ 0.594767] system 00:03: [io 0x0910-0x091f] has been reserved
[ 0.594771] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.594775] system 00:03: [mem 0xfec01000-0xfec01fff] has been reserved
[ 0.594779] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 0.594783] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.594787] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 0.594790] system 00:03: [mem 0xfed61000-0xfed70fff] has been reserved
[ 0.594794] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.594798] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
[ 0.595986] pnp: PnP ACPI: found 5 devices
[ 0.603580] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.603673] NET: Registered PF_INET protocol family
[ 0.603788] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.605955] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 0.605969] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.605976] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.606079] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.606314] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.606374] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.606422] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.606527] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.606537] NET: Registered PF_XDP protocol family
[ 0.606565] pci 0000:02:00.0: PCI bridge to [bus 03-16]
[ 0.606572] pci 0000:02:00.0: bridge window [io 0x7000-0xafff]
[ 0.606582] pci 0000:02:00.0: bridge window [mem 0xb1000000-0xb1ffffff]
[ 0.606590] pci 0000:02:00.0: bridge window [mem 0x34800000000-0x34fffffffff 64bit pref]
[ 0.606602] pci 0000:02:01.0: PCI bridge to [bus 17-2a]
[ 0.606608] pci 0000:02:01.0: bridge window [io 0x3000-0x6fff]
[ 0.606617] pci 0000:02:01.0: bridge window [mem 0xb0000000-0xb0ffffff]
[ 0.606624] pci 0000:02:01.0: bridge window [mem 0x34000000000-0x347ffffffff 64bit pref]
[ 0.606636] pci 0000:02:02.0: PCI bridge to [bus 2b]
[ 0.606642] pci 0000:02:02.0: bridge window [io 0xc000-0xcfff]
[ 0.606651] pci 0000:02:02.0: bridge window [mem 0xb2400000-0xb27fffff]
[ 0.606665] pci 0000:02:03.0: PCI bridge to [bus 2c]
[ 0.606671] pci 0000:02:03.0: bridge window [io 0xb000-0xbfff]
[ 0.606680] pci 0000:02:03.0: bridge window [mem 0xb2000000-0xb23fffff]
[ 0.606694] pci 0000:01:00.0: PCI bridge to [bus 02-2c]
[ 0.606699] pci 0000:01:00.0: bridge window [io 0x3000-0xcfff]
[ 0.606708] pci 0000:01:00.0: bridge window [mem 0xb0000000-0xb27fffff]
[ 0.606716] pci 0000:01:00.0: bridge window [mem 0x34000000000-0x34fffffffff 64bit pref]
[ 0.606726] pci 0000:00:01.1: PCI bridge to [bus 01-44]
[ 0.606732] pci 0000:00:01.1: bridge window [io 0x3000-0xcfff]
[ 0.606740] pci 0000:00:01.1: bridge window [mem 0xb0000000-0xb3ffffff]
[ 0.606746] pci 0000:00:01.1: bridge window [mem 0x34000000000-0x34fffffffff 64bit pref]
[ 0.606757] pci 0000:00:01.2: PCI bridge to [bus 45]
[ 0.606762] pci 0000:00:01.2: bridge window [io 0xf000-0xffff]
[ 0.606770] pci 0000:00:01.2: bridge window [mem 0xa8000000-0xac0fffff]
[ 0.606776] pci 0000:00:01.2: bridge window [mem 0x35000000000-0x3501fffffff 64bit pref]
[ 0.606787] pci 0000:00:01.3: PCI bridge to [bus 46]
[ 0.606794] pci 0000:00:01.3: bridge window [mem 0xb4800000-0xb48fffff]
[ 0.606807] pci 0000:00:01.5: PCI bridge to [bus 47]
[ 0.606812] pci 0000:00:01.5: bridge window [io 0xe000-0xefff]
[ 0.606820] pci 0000:00:01.5: bridge window [mem 0xb4700000-0xb47fffff]
[ 0.606833] pci 0000:00:01.6: PCI bridge to [bus 48]
[ 0.606838] pci 0000:00:01.6: bridge window [io 0xd000-0xdfff]
[ 0.606846] pci 0000:00:01.6: bridge window [mem 0xb4600000-0xb46fffff]
[ 0.606859] pci 0000:00:07.1: PCI bridge to [bus 49]
[ 0.606867] pci 0000:00:07.1: bridge window [mem 0xb4300000-0xb45fffff]
[ 0.606880] pci 0000:00:08.1: PCI bridge to [bus 4a]
[ 0.606888] pci 0000:00:08.1: bridge window [mem 0xb4000000-0xb42fffff]
[ 0.606902] pci_bus 0000:00: resource 4 [io 0x0000-0x02e7 window]
[ 0.606905] pci_bus 0000:00: resource 5 [io 0x0300-0x03df window]
[ 0.606909] pci_bus 0000:00: resource 6 [io 0x0400-0x0cf7 window]
[ 0.606912] pci_bus 0000:00: resource 7 [io 0x3000-0xffff window]
[ 0.606915] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.606918] pci_bus 0000:00: resource 9 [mem 0xa8000000-0xb69fffff window]
[ 0.606922] pci_bus 0000:00: resource 10 [mem 0x34000000000-0x3501fffffff window]
[ 0.606926] pci_bus 0000:01: resource 0 [io 0x3000-0xcfff]
[ 0.606929] pci_bus 0000:01: resource 1 [mem 0xb0000000-0xb3ffffff]
[ 0.606932] pci_bus 0000:01: resource 2 [mem 0x34000000000-0x34fffffffff 64bit pref]
[ 0.606935] pci_bus 0000:02: resource 0 [io 0x3000-0xcfff]
[ 0.606939] pci_bus 0000:02: resource 1 [mem 0xb0000000-0xb27fffff]
[ 0.606942] pci_bus 0000:02: resource 2 [mem 0x34000000000-0x34fffffffff 64bit pref]
[ 0.606945] pci_bus 0000:03: resource 0 [io 0x7000-0xafff]
[ 0.606948] pci_bus 0000:03: resource 1 [mem 0xb1000000-0xb1ffffff]
[ 0.606951] pci_bus 0000:03: resource 2 [mem 0x34800000000-0x34fffffffff 64bit pref]
[ 0.606955] pci_bus 0000:17: resource 0 [io 0x3000-0x6fff]
[ 0.606958] pci_bus 0000:17: resource 1 [mem 0xb0000000-0xb0ffffff]
[ 0.606961] pci_bus 0000:17: resource 2 [mem 0x34000000000-0x347ffffffff 64bit pref]
[ 0.606965] pci_bus 0000:2b: resource 0 [io 0xc000-0xcfff]
[ 0.606968] pci_bus 0000:2b: resource 1 [mem 0xb2400000-0xb27fffff]
[ 0.606972] pci_bus 0000:2c: resource 0 [io 0xb000-0xbfff]
[ 0.606975] pci_bus 0000:2c: resource 1 [mem 0xb2000000-0xb23fffff]
[ 0.606978] pci_bus 0000:45: resource 0 [io 0xf000-0xffff]
[ 0.606981] pci_bus 0000:45: resource 1 [mem 0xa8000000-0xac0fffff]
[ 0.606984] pci_bus 0000:45: resource 2 [mem 0x35000000000-0x3501fffffff 64bit pref]
[ 0.606988] pci_bus 0000:46: resource 1 [mem 0xb4800000-0xb48fffff]
[ 0.606991] pci_bus 0000:47: resource 0 [io 0xe000-0xefff]
[ 0.606994] pci_bus 0000:47: resource 1 [mem 0xb4700000-0xb47fffff]
[ 0.606998] pci_bus 0000:48: resource 0 [io 0xd000-0xdfff]
[ 0.607001] pci_bus 0000:48: resource 1 [mem 0xb4600000-0xb46fffff]
[ 0.607004] pci_bus 0000:49: resource 1 [mem 0xb4300000-0xb45fffff]
[ 0.607008] pci_bus 0000:4a: resource 1 [mem 0xb4000000-0xb42fffff]
[ 0.609737] PCI: CLS 64 bytes, default 64
[ 0.609833] Trying to unpack rootfs image as initramfs...
[ 0.609904] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 0.610036] pci 0000:00:00.0: Adding to iommu group 0
[ 0.610159] pci 0000:00:01.0: Adding to iommu group 1
[ 0.610187] pci 0000:00:01.1: Adding to iommu group 1
[ 0.610214] pci 0000:00:01.2: Adding to iommu group 1
[ 0.610241] pci 0000:00:01.3: Adding to iommu group 1
[ 0.610267] pci 0000:00:01.5: Adding to iommu group 1
[ 0.610293] pci 0000:00:01.6: Adding to iommu group 1
[ 0.610336] pci 0000:00:02.0: Adding to iommu group 2
[ 0.610382] pci 0000:00:03.0: Adding to iommu group 3
[ 0.610440] pci 0000:00:07.0: Adding to iommu group 4
[ 0.610469] pci 0000:00:07.1: Adding to iommu group 4
[ 0.610527] pci 0000:00:08.0: Adding to iommu group 5
[ 0.610556] pci 0000:00:08.1: Adding to iommu group 5
[ 0.610622] pci 0000:00:0b.0: Adding to iommu group 6
[ 0.610652] pci 0000:00:0b.3: Adding to iommu group 6
[ 0.610798] pci 0000:00:18.0: Adding to iommu group 7
[ 0.610829] pci 0000:00:18.1: Adding to iommu group 7
[ 0.610860] pci 0000:00:18.2: Adding to iommu group 7
[ 0.610890] pci 0000:00:18.3: Adding to iommu group 7
[ 0.610922] pci 0000:00:18.4: Adding to iommu group 7
[ 0.610953] pci 0000:00:18.5: Adding to iommu group 7
[ 0.610984] pci 0000:00:18.6: Adding to iommu group 7
[ 0.611015] pci 0000:00:18.7: Adding to iommu group 7
[ 0.611026] pci 0000:01:00.0: Adding to iommu group 1
[ 0.611038] pci 0000:02:00.0: Adding to iommu group 1
[ 0.611049] pci 0000:02:01.0: Adding to iommu group 1
[ 0.611062] pci 0000:02:02.0: Adding to iommu group 1
[ 0.611076] pci 0000:02:03.0: Adding to iommu group 1
[ 0.611086] pci 0000:2b:00.0: Adding to iommu group 1
[ 0.611098] pci 0000:2c:00.0: Adding to iommu group 1
[ 0.611109] pci 0000:45:00.0: Adding to iommu group 1
[ 0.611123] pci 0000:46:00.0: Adding to iommu group 1
[ 0.611134] pci 0000:47:00.0: Adding to iommu group 1
[ 0.611145] pci 0000:48:00.0: Adding to iommu group 1
[ 0.611158] pci 0000:49:00.0: Adding to iommu group 4
[ 0.611169] pci 0000:49:00.2: Adding to iommu group 4
[ 0.611180] pci 0000:49:00.3: Adding to iommu group 4
[ 0.611191] pci 0000:4a:00.0: Adding to iommu group 5
[ 0.611201] pci 0000:4a:00.1: Adding to iommu group 5
[ 0.611212] pci 0000:4a:00.2: Adding to iommu group 5
[ 0.611224] pci 0000:4a:00.6: Adding to iommu group 5
[ 0.612812] AMD-Vi: Extended features (0x41f73ef22294ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
[ 0.613107] AMD-Vi: Virtual APIC enabled
[ 0.613114] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.613117] software IO TLB: mapped [mem 0x000000006e7ee000-0x00000000727ee000] (64MB)
[ 0.613438] amd_uncore: 4 HYGON amd_df counters detected
[ 0.613452] amd_uncore: 6 HYGON amd_l3 counters detected
[ 0.613608] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 0.614804] Initialise system trusted keyrings
[ 0.614818] Key type blacklist registered
[ 0.614884] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[ 0.615361] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.615501] fuse: init (API version 7.44)
[ 0.634899] Key type asymmetric registered
[ 0.634905] Asymmetric key parser 'x509' registered
[ 0.634935] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[ 0.635006] io scheduler mq-deadline registered
[ 0.635028] io scheduler bfq registered
[ 0.635750] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.635925] pcieport 0000:00:01.1: PME: Signaling with IRQ 30
[ 0.636164] pcieport 0000:00:01.2: PME: Signaling with IRQ 31
[ 0.636362] pcieport 0000:00:01.3: PME: Signaling with IRQ 32
[ 0.636571] pcieport 0000:00:01.5: PME: Signaling with IRQ 33
[ 0.636762] pcieport 0000:00:01.6: PME: Signaling with IRQ 34
[ 0.637065] pcieport 0000:00:07.1: PME: Signaling with IRQ 36
[ 0.637294] pcieport 0000:00:08.1: PME: Signaling with IRQ 37
[ 0.637608] pcieport 0000:02:00.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.637952] pcieport 0000:02:01.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.658135] ACPI: AC: AC Adapter [ADP1] (on-line)
[ 0.658274] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:39/PNP0C0D:00/input/input0
[ 0.658318] ACPI: button: Lid Switch [LID0]
[ 0.658387] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.658429] ACPI: button: Power Button [PWRB]
[ 0.658506] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.658584] ACPI: button: Power Button [PWRF]
[ 0.659176] Monitor-Mwait will be used to enter C-1 state
[ 0.661971] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.662264] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.667511] Linux agpgart interface v0.103
[ 0.676800] loop: module loaded
[ 0.677317] tun: Universal TUN/TAP device driver, 1.6
[ 0.677373] PPP generic driver version 2.4.2
[ 0.677545] VFIO - User Level meta-driver version: 0.3
[ 0.677841] xhci_hcd 0000:2b:00.0: xHCI Host Controller
[ 0.677850] xhci_hcd 0000:2b:00.0: new USB bus registered, assigned bus number 1
[ 0.680533] xhci_hcd 0000:2b:00.0: hcc params 0x0200ef81 hci version 0x120 quirks 0x0000000200000010
[ 0.680910] xhci_hcd 0000:2b:00.0: xHCI Host Controller
[ 0.680916] xhci_hcd 0000:2b:00.0: new USB bus registered, assigned bus number 2
[ 0.680920] xhci_hcd 0000:2b:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.680991] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[ 0.680995] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.680999] usb usb1: Product: xHCI Host Controller
[ 0.681001] usb usb1: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 0.681004] usb usb1: SerialNumber: 0000:2b:00.0
[ 0.681191] hub 1-0:1.0: USB hub found
[ 0.681203] hub 1-0:1.0: 2 ports detected
[ 0.682885] ACPI: battery: Slot [BAT1] (battery absent)
[ 0.684413] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.684453] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[ 0.684457] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.684460] usb usb2: Product: xHCI Host Controller
[ 0.684464] usb usb2: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 0.684466] usb usb2: SerialNumber: 0000:2b:00.0
[ 0.684733] hub 2-0:1.0: USB hub found
[ 0.684744] hub 2-0:1.0: 2 ports detected
[ 0.687574] xhci_hcd 0000:4a:00.1: xHCI Host Controller
[ 0.687583] xhci_hcd 0000:4a:00.1: new USB bus registered, assigned bus number 3
[ 0.687728] xhci_hcd 0000:4a:00.1: hcc params 0x0130ffc5 hci version 0x110 quirks 0x0000000000000010
[ 0.688066] xhci_hcd 0000:4a:00.1: xHCI Host Controller
[ 0.688071] xhci_hcd 0000:4a:00.1: new USB bus registered, assigned bus number 4
[ 0.688075] xhci_hcd 0000:4a:00.1: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.688126] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[ 0.688130] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.688133] usb usb3: Product: xHCI Host Controller
[ 0.688136] usb usb3: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 0.688139] usb usb3: SerialNumber: 0000:4a:00.1
[ 0.688380] hub 3-0:1.0: USB hub found
[ 0.688391] hub 3-0:1.0: 6 ports detected
[ 0.688668] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.688704] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[ 0.688708] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.688711] usb usb4: Product: xHCI Host Controller
[ 0.688713] usb usb4: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 0.688716] usb usb4: SerialNumber: 0000:4a:00.1
[ 0.688860] hub 4-0:1.0: USB hub found
[ 0.688870] hub 4-0:1.0: 4 ports detected
[ 0.689185] xhci_hcd 0000:4a:00.2: xHCI Host Controller
[ 0.689193] xhci_hcd 0000:4a:00.2: new USB bus registered, assigned bus number 5
[ 0.689333] xhci_hcd 0000:4a:00.2: hcc params 0x0130ffc5 hci version 0x110 quirks 0x0000000000000010
[ 0.689656] xhci_hcd 0000:4a:00.2: xHCI Host Controller
[ 0.689661] xhci_hcd 0000:4a:00.2: new USB bus registered, assigned bus number 6
[ 0.689665] xhci_hcd 0000:4a:00.2: Host supports USB 3.0 SuperSpeed
[ 0.689717] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[ 0.689721] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.689725] usb usb5: Product: xHCI Host Controller
[ 0.689728] usb usb5: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 0.689731] usb usb5: SerialNumber: 0000:4a:00.2
[ 0.690110] hub 5-0:1.0: USB hub found
[ 0.690122] hub 5-0:1.0: 6 ports detected
[ 0.690445] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.690482] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[ 0.690485] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.690488] usb usb6: Product: xHCI Host Controller
[ 0.690491] usb usb6: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 0.690494] usb usb6: SerialNumber: 0000:4a:00.2
[ 0.690652] hub 6-0:1.0: USB hub found
[ 0.690662] hub 6-0:1.0: 4 ports detected
[ 0.691043] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[ 0.691047] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[ 0.693030] i8042: Warning: Keylock active
[ 0.696164] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.697106] mousedev: PS/2 mouse device common for all mice
[ 0.697337] rtc_cmos 00:01: RTC can wake from S4
[ 0.697814] rtc_cmos 00:01: registered as rtc0
[ 0.697880] rtc_cmos 00:01: setting system clock to 2025-09-19T07:09:49 UTC (1758265789)
[ 0.697941] rtc_cmos 00:01: alarms up to one day, y3k, 114 bytes nvram
[ 0.697960] i2c_dev: i2c /dev entries driver
[ 0.698131] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.698150] device-mapper: uevent: version 1.0.3
[ 0.698223] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@xxxxxxxxxxxxxxx
[ 0.699231] efifb: probing for efifb
[ 0.699272] efifb: framebuffer at 0x35000000000, using 3072k, total 3072k
[ 0.699277] efifb: mode is 1024x768x32, linelength=4096, pages=1
[ 0.699280] efifb: scrolling: redraw
[ 0.699282] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.699432] Console: switching to colour frame buffer device 128x48
[ 0.701493] fb0: EFI VGA frame buffer device
[ 0.701753] drop_monitor: Initializing network drop monitor service
[ 0.701908] NET: Registered PF_INET6 protocol family
[ 0.704159] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.935365] usb 3-5: new full-speed USB device number 2 using xhci_hcd
[ 0.939358] usb 5-6: new high-speed USB device number 2 using xhci_hcd
[ 0.952735] Freeing initrd memory: 66724K
[ 0.962089] Segment Routing with IPv6
[ 0.962115] In-situ OAM (IOAM) with IPv6
[ 0.962160] NET: Registered PF_PACKET protocol family
[ 0.962208] Key type dns_resolver registered
[ 0.964292] x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
[ 0.964310] microcode: no support for this CPU vendor
[ 0.965310] IPI shorthand broadcast: enabled
[ 0.970552] sched_clock: Marking stable (966897837, 326183)->(971306281, -4082261)
[ 0.970935] registered taskstats version 1
[ 0.971291] Loading compiled-in X.509 certificates
[ 0.971955] Loaded X.509 cert 'Build time autogenerated kernel key: 835710caf92d568fc968dcd54c5e92be7db53729'
[ 0.977876] Demotion targets for Node 0: null
[ 0.978046] Key type .fscrypt registered
[ 0.978048] Key type fscrypt-provisioning registered
[ 0.994205] Key type encrypted registered
[ 0.994232] ima: No TPM chip found, activating TPM-bypass!
[ 0.994242] ima: Allocated hash algorithm: sha256
[ 0.994257] ima: No architecture policies found
[ 0.994276] evm: Initialising EVM extended attributes:
[ 0.994278] evm: security.selinux
[ 0.994281] evm: security.SMACK64 (disabled)
[ 0.994283] evm: security.SMACK64EXEC (disabled)
[ 0.994285] evm: security.SMACK64TRANSMUTE (disabled)
[ 0.994287] evm: security.SMACK64MMAP (disabled)
[ 0.994289] evm: security.apparmor
[ 0.994291] evm: security.ima
[ 0.994293] evm: security.capability
[ 0.994295] evm: HMAC attrs: 0x1
[ 0.994712] PM: Magic number: 9:802:167
[ 0.994790] acpi PNP0000:00: hash matches
[ 0.994795] acpi device:30: hash matches
[ 0.995286] acpi_cpufreq: overriding BIOS provided _PSD data
[ 0.996566] RAS: Correctable Errors collector initialized.
[ 0.996640] clk: Disabling unused clocks
[ 0.996644] PM: genpd: Disabling unused power domains
[ 0.996649] ALSA device list:
[ 0.996652] No soundcards found.
[ 0.999416] Freeing unused decrypted memory: 2028K
[ 1.000495] Freeing unused kernel image (initmem) memory: 4776K
[ 1.000517] Write protecting the kernel read-only data: 28672k
[ 1.001536] Freeing unused kernel image (text/rodata gap) memory: 1880K
[ 1.001674] Freeing unused kernel image (rodata/data gap) memory: 252K
[ 1.104570] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.104597] Run /init as init process
[ 1.104602] with arguments:
[ 1.104605] /init
[ 1.104608] splash
[ 1.104611] with environment:
[ 1.104613] HOME=/
[ 1.104616] TERM=linux
[ 1.104619] BOOT_IMAGE=/boot/vmlinuz-6.16.0-rc2+
[ 1.140133] usb 3-5: New USB device found, idVendor=13d3, idProduct=3570, bcdDevice= 0.00
[ 1.140141] usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.140145] usb 3-5: Product: Bluetooth Radio
[ 1.140148] usb 3-5: Manufacturer: Realtek
[ 1.140151] usb 3-5: SerialNumber: 00e04c000001
[ 1.213181] usb 5-6: New USB device found, idVendor=2ef4, idProduct=207b, bcdDevice= 0.06
[ 1.213190] usb 5-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.213193] usb 5-6: Product: Integrated Camera
[ 1.213197] usb 5-6: Manufacturer: SunplusIT Inc
[ 1.213200] usb 5-6: SerialNumber: HBW20250723V0
[ 1.240983] usb 4-2: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.257859] usb 4-2: New USB device found, idVendor=0951, idProduct=1666, bcdDevice=11.00
[ 1.257867] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.257870] usb 4-2: Product: DataTraveler 3.0
[ 1.257874] usb 4-2: Manufacturer: Kingston
[ 1.257877] usb 4-2: SerialNumber: 408D5C15A0CB21C07905CC3F
[ 1.263577] usb-storage 4-2:1.0: USB Mass Storage device detected
[ 1.263788] scsi host0: usb-storage 4-2:1.0
[ 1.264098] usbcore: registered new interface driver usb-storage
[ 1.265944] usbcore: registered new interface driver uas
[ 1.281411] ACPI: video: Video Device [EUMA] (multi-head: yes rom: no post: no)
[ 1.282309] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input4
[ 1.304615] nvme nvme0: pci function 0000:46:00.0
[ 1.307609] r8169 0000:47:00.0 eth0: RTL8168h/8111h, dc:36:43:94:de:51, XID 541, IRQ 69
[ 1.307617] r8169 0000:47:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 1.312558] ACPI: bus type thunderbolt registered
[ 1.312709] [223] nhi_probe:1356: thunderbolt 0000:2c:00.0: total paths: 21
[ 1.312719] [223] nhi_check_iommu:1220: thunderbolt 0000:2c:00.0: IOMMU DMA protection is disabled
[ 1.313152] [223] tb_ring_alloc:584: thunderbolt 0000:2c:00.0: allocating TX ring 0 of size 10
[ 1.313183] [223] tb_ring_alloc:584: thunderbolt 0000:2c:00.0: allocating RX ring 0 of size 10
[ 1.313212] [223] tb_ctl_alloc:683: thunderbolt 0000:2c:00.0: control channel created
[ 1.313217] [223] tb_probe:3380: thunderbolt 0000:2c:00.0: using software connection manager
[ 1.313759] nvme nvme0: missing or invalid SUBNQN field.
[ 1.313810] nvme nvme0: D3 entry latency set to 10 seconds
[ 1.315080] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.317890] nvme0n1: p1 p2 p3 p4 p5 p6 p7
[ 1.319735] r8169 0000:47:00.0 enp71s0: renamed from eth0
[ 1.324481] [223] tb_acpi_add_link:65: thunderbolt 0000:2c:00.0: created link from 0000:02:00.0
[ 1.336468] [223] tb_acpi_add_link:65: thunderbolt 0000:2c:00.0: created link from 0000:02:01.0
[ 1.336689] [223] nhi_probe:1392: thunderbolt 0000:2c:00.0: NHI initialized, starting thunderbolt
[ 1.336693] [223] tb_ctl_start:726: thunderbolt 0000:2c:00.0: control channel starting...
[ 1.336697] [223] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting TX ring 0
[ 1.336705] [223] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1.336710] [223] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting RX ring 0
[ 1.336717] [223] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 21 (0x1 -> 0x200001)
[ 1.336725] [223] tb_domain_add:455: thunderbolt 0000:2c:00.0: security level set to user
[ 1.336967] [223] tb_switch_alloc:2445: thunderbolt 0000:2c:00.0: current switch config:
[ 1.336971] [223] tb_dump_switch:1530: thunderbolt 0000:2c:00.0: USB4 Switch: 174c:2428 (Revision: 0, TB Version: 32)
[ 1.336976] [223] tb_dump_switch:1533: thunderbolt 0000:2c:00.0: Max Port Number: 11
[ 1.336980] [223] tb_dump_switch:1534: thunderbolt 0000:2c:00.0: Config:
[ 1.336984] [223] tb_dump_switch:1535: thunderbolt 0000:2c:00.0: Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[ 1.336988] [223] tb_dump_switch:1540: thunderbolt 0000:2c:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.339997] [223] tb_switch_configure:2575: thunderbolt 0000:2c:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[ 1.341210] [223] usb4_switch_credits_init:756: thunderbolt 0000:2c:00.0: 0: credit allocation parameters:
[ 1.341215] [223] usb4_switch_credits_init:766: thunderbolt 0000:2c:00.0: 0: USB3: 64
[ 1.341219] [223] usb4_switch_credits_init:770: thunderbolt 0000:2c:00.0: 0: DP AUX: 2
[ 1.341222] [223] usb4_switch_credits_init:774: thunderbolt 0000:2c:00.0: 0: DP main: 0
[ 1.341225] [223] usb4_switch_credits_init:778: thunderbolt 0000:2c:00.0: 0: PCIe: 64
[ 1.341229] [223] usb4_switch_credits_init:782: thunderbolt 0000:2c:00.0: 0: DMA: 32
[ 1.344417] [223] tb_drom_parse:638: thunderbolt 0000:2c:00.0: 0: DROM version: 1
[ 1.345548] [223] tb_switch_add:3274: thunderbolt 0000:2c:00.0: 0: uid: 0x14547f00174c8a29
[ 1.346810] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 1: 0:0 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.346816] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 27/27
[ 1.346819] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 7
[ 1.346823] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0xae00000
[ 1.346826] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 174/2
[ 1.347946] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 2: 0:0 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.347951] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 27/27
[ 1.347955] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 7
[ 1.347958] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0xae00000
[ 1.347961] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 174/2
[ 1.349209] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 3: 0:0 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.349214] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 27/27
[ 1.349218] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 7
[ 1.349221] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0xae00000
[ 1.349224] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 174/2
[ 1.350346] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 4: 0:0 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.350351] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 27/27
[ 1.350354] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 7
[ 1.350358] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0xae00000
[ 1.350361] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 174/2
[ 1.350599] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 5: 0:0 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[ 1.350603] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 20/27
[ 1.350607] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 0
[ 1.350610] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.350613] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.350851] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 6: 0:0 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.350856] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/8
[ 1.350859] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 1
[ 1.350863] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.350866] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.351104] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 7: 0:0 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.351108] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/8
[ 1.351112] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 1
[ 1.351115] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.351118] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.351356] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 8: 0:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.351361] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/27
[ 1.351364] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 1
[ 1.351367] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.351371] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.351609] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 9: 0:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.351614] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/27
[ 1.351617] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 1
[ 1.351620] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.351624] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.351862] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 10: 0:0 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.351867] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 9/27
[ 1.351870] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 0
[ 1.351873] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.351877] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.352114] [223] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 11: 0:0 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.352119] [223] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 9/27
[ 1.352122] [223] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 0
[ 1.352126] [223] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x0
[ 1.352129] [223] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 0/0
[ 1.355272] [223] tmu_mode_init:364: thunderbolt 0000:2c:00.0: 0: TMU: supports uni-directional mode
[ 1.355398] [223] tb_switch_tmu_init:433: thunderbolt 0000:2c:00.0: 0: TMU: current mode: bi-directional, HiFi
[ 1.359428] [223] tb_switch_nvm_add:375: thunderbolt 0000:2c:00.0: 0: NVM version 200012.250409
[ 1.359586] [223] tb_switch_tmu_configure:1056: thunderbolt 0000:2c:00.0: 0: TMU: mode change bi-directional, HiFi -> uni-directional, LowRes requested
[ 1.360036] [223] tb_switch_tmu_enable:1006: thunderbolt 0000:2c:00.0: 0: TMU: mode set to: uni-directional, LowRes
[ 1.360416] [223] tb_switch_reset:1651: thunderbolt 0000:2c:00.0: 0: resetting
[ 1.376442] usb 3-6: new full-speed USB device number 3 using xhci_hcd
[ 1.396239] [223] tb_add_dp_resources:134: thunderbolt 0000:2c:00.0: 0:10: DP IN resource available
[ 1.396868] [223] tb_add_dp_resources:134: thunderbolt 0000:2c:00.0: 0:11: DP IN resource available
[ 1.527795] usb 3-6: not running at top speed; connect to a high speed hub
[ 1.545063] usb 3-6: New USB device found, idVendor=2f0a, idProduct=8020, bcdDevice=63.28
[ 1.545072] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.545075] usb 3-6: Product: PT2887-SS Module
[ 1.545079] usb 3-6: Manufacturer: PXAT
[ 1.545082] usb 3-6: SerialNumber: 0A3860PNA356
[ 1.617227] tsc: Refined TSC clocksource calibration: 2799.995 MHz
[ 1.617242] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x285c3bb69db, max_idle_ns: 440795222977 ns
[ 1.617306] clocksource: Switched to clocksource tsc
[ 2.446477] scsi 0:0:0:0: Direct-Access Kingston DataTraveler 3.0 1100 PQ: 0 ANSI: 6
[ 2.447388] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 2.447595] sd 0:0:0:0: [sda] 483709273 512-byte logical blocks: (248 GB/231 GiB)
[ 2.448045] sd 0:0:0:0: [sda] Write Protect is off
[ 2.448049] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
[ 2.448494] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.519221] sda: sda1 sda2
[ 2.519501] sd 0:0:0:0: [sda] Attached SCSI removable disk
[ 2.704735] EXT4-fs (nvme0n1p7): mounted filesystem f2d890ff-cf69-4a9c-a4df-4b7c8dd70647 ro with ordered data mode. Quota mode: none.
[ 2.814919] systemd[1]: Inserted module 'autofs4'
[ 2.833418] systemd[1]: systemd 255.4-1ubuntu8.10 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 2.833428] systemd[1]: Detected architecture x86-64.
[ 2.835122] systemd[1]: Hostname set to <user-N50>.
[ 3.038875] systemd[1]: Queued start job for default target graphical.target.
[ 3.070832] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 3.071348] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 3.071678] systemd[1]: Created slice user.slice - User and Session Slice.
[ 3.071758] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 3.071989] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 3.072012] systemd[1]: Expecting device dev-disk-by\x2duuid-FD31\x2dD05E.device - /dev/disk/by-uuid/FD31-D05E...
[ 3.072040] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 3.072073] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 3.072085] systemd[1]: Reached target slices.target - Slice Units.
[ 3.072100] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 3.072133] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 3.072365] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 3.072483] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 3.072547] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 3.072667] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 3.072803] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 3.073039] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[ 3.073098] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.073398] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 3.073517] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 3.074771] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 3.075705] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 3.077301] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 3.078379] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 3.080777] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 3.081877] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 3.082981] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 3.083878] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 3.085022] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 3.086023] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 3.087135] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 3.088110] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 3.089461] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 3.089700] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 3.091568] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 3.091603] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.092974] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 3.093074] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.094268] pstore: Using crash dump compression: deflate
[ 3.094371] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 3.095396] pstore: Registered efi_pstore as persistent store backend
[ 3.096345] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 3.096486] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 3.096598] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 3.096713] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 3.097009] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 3.097448] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.097671] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 3.098018] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.098225] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 3.098557] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 3.098767] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 3.099102] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.099343] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 3.099689] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.099895] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 3.101121] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 3.101940] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 3.102001] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.102685] systemd-journald[375]: Collecting audit messages is disabled.
[ 3.103097] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 3.107338] lp: driver loaded but no devices found
[ 3.108444] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 3.108577] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 3.118423] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 3.130197] ACPI: bus type drm_connector registered
[ 3.131270] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.131515] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 3.131964] ppdev: user-space parallel port driver
[ 3.152110] EXT4-fs (nvme0n1p7): re-mounted f2d890ff-cf69-4a9c-a4df-4b7c8dd70647 r/w.
[ 3.153687] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 3.154085] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 3.189329] systemd[1]: Activating swap swap.img.swap - /swap.img...
[ 3.189754] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 3.189802] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 3.190865] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 3.191802] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 3.191850] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 3.192616] Adding 4194300k swap on /swap.img. Priority:-2 extents:33 across:4587520k SS
[ 3.192988] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 3.193012] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.193080] systemd[1]: Activated swap swap.img.swap - /swap.img.
[ 3.193484] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 3.193702] systemd[1]: Reached target swap.target - Swaps.
[ 3.205420] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 3.205539] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[ 3.212527] systemd[1]: Mounting snap-bare-5.mount - Mount unit for bare, revision 5...
[ 3.214138] systemd[1]: Mounting snap-core22-2045.mount - Mount unit for core22, revision 2045...
[ 3.215463] systemd[1]: Mounting snap-firefox-6565.mount - Mount unit for firefox, revision 6565...
[ 3.216644] systemd[1]: Mounting snap-firmware\x2dupdater-167.mount - Mount unit for firmware-updater, revision 167...
[ 3.217885] systemd[1]: Mounting snap-gnome\x2d42\x2d2204-202.mount - Mount unit for gnome-42-2204, revision 202...
[ 3.219074] systemd[1]: Mounting snap-gtk\x2dcommon\x2dthemes-1535.mount - Mount unit for gtk-common-themes, revision 1535...
[ 3.220271] systemd[1]: Mounting snap-snap\x2dstore-1270.mount - Mount unit for snap-store, revision 1270...
[ 3.225392] loop0: detected capacity change from 0 to 151376
[ 3.225655] loop1: detected capacity change from 0 to 502024
[ 3.225925] loop2: detected capacity change from 0 to 22800
[ 3.226151] loop3: detected capacity change from 0 to 1056784
[ 3.226387] loop4: detected capacity change from 0 to 187776
[ 3.226637] systemd[1]: Mounting snap-snapd-24792.mount - Mount unit for snapd, revision 24792...
[ 3.226735] loop5: detected capacity change from 0 to 22176
[ 3.227045] loop6: detected capacity change from 0 to 8
[ 3.228106] systemd[1]: Mounting snap-snapd\x2ddesktop\x2dintegration-315.mount - Mount unit for snapd-desktop-integration, revision 315...
[ 3.229479] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 3.233434] loop7: detected capacity change from 0 to 100952
[ 3.235219] systemd[1]: Started systemd-journald.service - Journal Service.
[ 3.235296] loop8: detected capacity change from 0 to 1152
[ 3.271158] systemd-journald[375]: Received client request to flush runtime journal.
[ 3.285771] systemd-journald[375]: /var/log/journal/6a0ea5268fb74c04886cd1af124291f2/system.journal: Journal file uses a different sequence number ID, rotating.
[ 3.285780] systemd-journald[375]: Rotating system journal.
[ 3.466771] piix4_smbus 0000:00:0b.0: SMBus Host Controller at 0xb00, revision 0
[ 3.466780] piix4_smbus 0000:00:0b.0: Using register 0x02 for SMBus port selection
[ 3.467963] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[ 3.467968] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 3.467971] RAPL PMU: hw unit of domain core 2^-16 Joules
[ 3.577666] Bluetooth: Core ver 2.22
[ 3.596380] NET: Registered PF_BLUETOOTH protocol family
[ 3.596384] Bluetooth: HCI device and connection manager initialized
[ 3.596393] Bluetooth: HCI socket layer initialized
[ 3.596397] Bluetooth: L2CAP socket layer initialized
[ 3.596404] Bluetooth: SCO socket layer initialized
[ 3.652765] usb 5-6: Found UVC 1.50 device Integrated Camera (2ef4:207b)
[ 3.660749] kvm_amd: TSC scaling supported
[ 3.660754] kvm_amd: Nested Virtualization enabled
[ 3.660756] kvm_amd: Nested Paging enabled
[ 3.660759] kvm_amd: LBR virtualization supported
[ 3.660769] kvm_amd: Virtual VMLOAD VMSAVE supported
[ 3.660771] kvm_amd: Virtual GIF supported
[ 3.660898] usbcore: registered new interface driver btusb
[ 3.665058] Bluetooth: hci0: RTL: examining hci_ver=0b hci_rev=000b lmp_ver=0b lmp_subver=8852
[ 3.667052] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 3.667059] Bluetooth: hci0: RTL: loading rtl_bt/rtl8852bu_fw.bin
[ 3.667979] bluetooth hci0: Direct firmware load for rtl_bt/rtl8852bu_fw.bin failed with error -2
[ 3.667987] Bluetooth: hci0: RTL: firmware file rtl_bt/rtl8852bu_fw not found
[ 3.671117] MCE: In-kernel MCE decoding enabled.
[ 3.717323] usb 5-6: Found UVC 1.50 device Integrated Camera (2ef4:207b)
[ 3.726889] i2c i2c-3: SMBus Timeout!
[ 3.726914] i2c i2c-3: Failed reset at end of transaction (01)
[ 3.726989] i2c i2c-3: Failed! (01)
[ 3.734828] usbcore: registered new interface driver uvcvideo
[ 3.814850] amd_atl: AMD Address Translation Library initialized
[ 3.815225] intel_rapl_common: Found RAPL domain package
[ 3.815231] intel_rapl_common: Found RAPL domain core
[ 4.438782] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4.438788] Bluetooth: BNEP filters: protocol multicast
[ 4.438798] Bluetooth: BNEP socket layer initialized
[ 4.520114] nvme nvme0: using unchecked data buffer
[ 5.241711] r8169 0000:47:00.0: Unable to load firmware rtl_nic/rtl8168h-2.fw (-2)
[ 5.264397] Generic FE-GE Realtek PHY r8169-0-4700:00: attached PHY driver (mii_bus:phy_addr=r8169-0-4700:00, irq=MAC)
[ 5.372511] r8169 0000:47:00.0 enp71s0: Link is Down
[ 6.268352] loop9: detected capacity change from 0 to 8
[ 19.909441] [277] tb_switch_suspend:3579: thunderbolt 0000:2c:00.0: 0: suspending switch
[ 19.909450] [277] tb_switch_set_wake:3443: thunderbolt 0000:2c:00.0: 0: enabling wakeup: 0x3f
[ 19.911214] [277] tb_ring_stop:768: thunderbolt 0000:2c:00.0: stopping RX ring 0
[ 19.911225] [277] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: disabling interrupt at register 0x38200 bit 21 (0x200001 -> 0x1)
[ 19.911246] [277] tb_ring_stop:768: thunderbolt 0000:2c:00.0: stopping TX ring 0
[ 19.911255] [277] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 19.911270] [277] tb_ctl_stop:756: thunderbolt 0000:2c:00.0: control channel stopped
[ 21.066443] [1370] tb_ctl_start:726: thunderbolt 0000:2c:00.0: control channel starting...
[ 21.066451] [1370] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting TX ring 0
[ 21.066461] [1370] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 21.066467] [1370] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting RX ring 0
[ 21.066478] [1370] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 21 (0x1 -> 0x200001)
[ 21.066486] [1370] tb_switch_resume:3476: thunderbolt 0000:2c:00.0: 0: resuming switch
[ 21.066491] [1370] tb_switch_configure:2575: thunderbolt 0000:2c:00.0: restoring Switch at 0x0 (depth: 0, up port: 5)
[ 21.067184] [1370] tb_switch_set_wake:3445: thunderbolt 0000:2c:00.0: 0: disabling wakeup
[ 21.074510] [1370] tmu_mode_init:364: thunderbolt 0000:2c:00.0: 0: TMU: supports uni-directional mode
[ 21.074633] [1370] tb_switch_tmu_init:433: thunderbolt 0000:2c:00.0: 0: TMU: current mode: off
[ 21.074639] [1370] tb_switch_tmu_configure:1056: thunderbolt 0000:2c:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 21.075139] [1370] tb_switch_tmu_enable:1006: thunderbolt 0000:2c:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 21.077169] pci_bus 0000:02: Allocating resources
[ 21.077625] pci_bus 0000:02: Allocating resources
[ 34.124491] irq 9: nobody cared (try booting with the "irqpoll" option)
[ 34.125460] CPU: 1 UID: 0 PID: 235 Comm: kworker/1:1H Not tainted 6.16.0-rc2+ #9 PREEMPT(voluntary)
[ 34.125464] Hardware name: Suma N50/22DD2 , BIOS CSCH051021 09/18/2025
[ 34.125467] Workqueue: 0x0 (kblockd)
[ 34.125475] Call Trace:
[ 34.125477] <IRQ>
[ 34.125480] dump_stack_lvl+0x70/0x90
[ 34.125487] dump_stack+0x14/0x20
[ 34.125491] __report_bad_irq+0x30/0xd0
[ 34.125497] note_interrupt+0x304/0x350
[ 34.125503] handle_irq_event+0x79/0x80
[ 34.125507] handle_fasteoi_irq+0x82/0x220
[ 34.125512] __common_interrupt+0x43/0xb0
[ 34.125517] common_interrupt+0x8c/0xa0
[ 34.125522] </IRQ>
[ 34.125523] <TASK>
[ 34.125526] asm_common_interrupt+0x2b/0x40
[ 34.125529] RIP: 0010:finish_task_switch.isra.0+0x84/0x290
[ 34.125534] Code: 44 00 00 41 c7 44 24 34 00 00 00 00 4c 8b b3 d8 0b 00 00 4d 85 f6 0f 85 c2 01 00 00 48 89 df e8 82 8c f0 00 fb 0f 1f 44 00 00 <66> 90 4d 85 ed 74 20 65 48 8b 05 c5 02 37 02 4c 3b a8 50 09 00 00
[ 34.125536] RSP: 0018:ffffa372808a7dd0 EFLAGS: 00000282
[ 34.125539] RAX: 0000000080000002 RBX: ffff8d80efc716c0 RCX: 0000000000000002
[ 34.125541] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff8d80efc716c0
[ 34.125543] RBP: ffffa372808a7df8 R08: 0000000000000002 R09: 0000000000000002
[ 34.125544] R10: 0000000000000001 R11: 0000000000000000 R12: ffff8d7f81b68000
[ 34.125546] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000001
[ 34.125555] __schedule+0x493/0xb40
[ 34.125563] schedule+0x2b/0xf0
[ 34.125567] worker_thread+0x1b6/0x3e0
[ 34.125571] ? srso_return_thunk+0x5/0x5f
[ 34.125576] ? __pfx_worker_thread+0x10/0x10
[ 34.125579] kthread+0x111/0x220
[ 34.125584] ? __pfx_kthread+0x10/0x10
[ 34.125588] ret_from_fork+0x8e/0x100
[ 34.125592] ? __pfx_kthread+0x10/0x10
[ 34.125596] ret_from_fork_asm+0x1a/0x30
[ 34.125604] </TASK>
[ 34.125605] handlers:
[ 34.126562] [<000000009b5a8355>] irq_default_primary_handler threaded [<0000000073def0a5>] acpi_irq
[ 34.126602] Disabling IRQ #9
[ 37.037048] [161] tb_switch_suspend:3579: thunderbolt 0000:2c:00.0: 0: suspending switch
[ 37.037057] [161] tb_switch_set_wake:3443: thunderbolt 0000:2c:00.0: 0: enabling wakeup: 0x3f
[ 37.038766] [161] tb_ring_stop:768: thunderbolt 0000:2c:00.0: stopping RX ring 0
[ 37.038775] [161] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: disabling interrupt at register 0x38200 bit 21 (0x200001 -> 0x1)
[ 37.038794] [161] tb_ring_stop:768: thunderbolt 0000:2c:00.0: stopping TX ring 0
[ 37.038803] [161] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 37.038816] [161] tb_ctl_stop:756: thunderbolt 0000:2c:00.0: control channel stopped
[ 51.795704] systemd-journald[375]: /var/log/journal/6a0ea5268fb74c04886cd1af124291f2/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 79.874770] [1371] tb_ctl_start:726: thunderbolt 0000:2c:00.0: control channel starting...
[ 79.874778] [1371] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting TX ring 0
[ 79.874786] [1371] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 79.874791] [1371] tb_ring_start:693: thunderbolt 0000:2c:00.0: starting RX ring 0
[ 79.874798] [1371] ring_interrupt_active:141: thunderbolt 0000:2c:00.0: enabling interrupt at register 0x38200 bit 21 (0x1 -> 0x200001)
[ 79.874806] [1371] tb_switch_resume:3476: thunderbolt 0000:2c:00.0: 0: resuming switch
[ 79.874810] [1371] tb_switch_configure:2575: thunderbolt 0000:2c:00.0: restoring Switch at 0x0 (depth: 0, up port: 5)
[ 79.875162] [1371] tb_switch_set_wake:3445: thunderbolt 0000:2c:00.0: 0: disabling wakeup
[ 79.878770] [1371] tmu_mode_init:364: thunderbolt 0000:2c:00.0: 0: TMU: supports uni-directional mode
[ 79.878895] [1371] tb_switch_tmu_init:433: thunderbolt 0000:2c:00.0: 0: TMU: current mode: off
[ 79.878901] [1371] tb_switch_tmu_configure:1056: thunderbolt 0000:2c:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 79.879401] [1371] tb_switch_tmu_enable:1006: thunderbolt 0000:2c:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 79.881000] pci_bus 0000:02: Allocating resources
[ 79.884674] pci_bus 0000:02: Allocating resources
[ 80.345087] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot plug event on 0:3
[ 80.345182] [12] tb_handle_hotplug:2502: thunderbolt 0000:2c:00.0: 0:3: hotplug: scanning
[ 80.345892] [12] tb_wait_for_port:534: thunderbolt 0000:2c:00.0: 0:3: is connected, link is up (state: 2)
[ 80.346365] [12] tb_switch_alloc:2445: thunderbolt 0000:2c:00.0: current switch config:
[ 80.346370] [12] tb_dump_switch:1530: thunderbolt 0000:2c:00.0: Thunderbolt 3 Switch: 8086:15ef (Revision: 6, TB Version: 16)
[ 80.346375] [12] tb_dump_switch:1533: thunderbolt 0000:2c:00.0: Max Port Number: 13
[ 80.346378] [12] tb_dump_switch:1534: thunderbolt 0000:2c:00.0: Config:
[ 80.346381] [12] tb_dump_switch:1535: thunderbolt 0000:2c:00.0: Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 80.346386] [12] tb_dump_switch:1540: thunderbolt 0000:2c:00.0: unknown1: 0x0 unknown4: 0x0
[ 80.348511] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot unplug event on 0:3
[ 80.349963] [12] tb_switch_configure:2575: thunderbolt 0000:2c:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[ 80.350091] [12] tb_handle_hotplug:2505: thunderbolt 0000:2c:00.0: 0:3: hotplug: no switch found
[ 80.350099] [12] tb_handle_hotplug:2492: thunderbolt 0000:2c:00.0: 0:3: got unplug event for disconnected port, ignoring
[ 81.113248] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot plug event on 0:3
[ 81.113341] [12] tb_handle_hotplug:2502: thunderbolt 0000:2c:00.0: 0:3: hotplug: scanning
[ 81.113904] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot plug event on 0:4
[ 81.114036] [12] tb_wait_for_port:534: thunderbolt 0000:2c:00.0: 0:3: is connected, link is up (state: 2)
[ 81.115176] [12] tb_switch_alloc:2445: thunderbolt 0000:2c:00.0: current switch config:
[ 81.115183] [12] tb_dump_switch:1530: thunderbolt 0000:2c:00.0: Thunderbolt 3 Switch: 8086:15ef (Revision: 6, TB Version: 16)
[ 81.115188] [12] tb_dump_switch:1533: thunderbolt 0000:2c:00.0: Max Port Number: 13
[ 81.115192] [12] tb_dump_switch:1534: thunderbolt 0000:2c:00.0: Config:
[ 81.115196] [12] tb_dump_switch:1535: thunderbolt 0000:2c:00.0: Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 81.115200] [12] tb_dump_switch:1540: thunderbolt 0000:2c:00.0: unknown1: 0x0 unknown4: 0x0
[ 81.120229] [12] tb_switch_configure:2575: thunderbolt 0000:2c:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[ 81.123760] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot plug event on 3:2
[ 81.138740] [12] tb_drom_bit_bang:566: thunderbolt 0000:2c:00.0: 3: reading DROM (length: 0x6a)
[ 81.485557] [12] tb_drom_parse:638: thunderbolt 0000:2c:00.0: 3: DROM version: 1
[ 81.486567] [12] tb_switch_add:3274: thunderbolt 0000:2c:00.0: 3: uid: 0x14251c4d448a600
[ 81.488461] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 1: 8086:15ef (Revision: 6, TB Version: 1, Type: Port (0x1))
[ 81.488467] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 19/19
[ 81.488471] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 16
[ 81.488474] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x3c00000
[ 81.488478] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 60/2
[ 81.490356] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 2: 8086:15ef (Revision: 6, TB Version: 1, Type: Port (0x1))
[ 81.490361] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 19/19
[ 81.490365] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 16
[ 81.490368] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x3c00000
[ 81.490371] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 60/2
[ 81.492250] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 3: 8086:15ef (Revision: 6, TB Version: 1, Type: Port (0x1))
[ 81.492255] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 19/19
[ 81.492259] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 16
[ 81.492262] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x3c00000
[ 81.492265] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 60/2
[ 81.494144] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 4: 8086:15ef (Revision: 6, TB Version: 1, Type: Port (0x1))
[ 81.494149] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 19/19
[ 81.494153] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 16
[ 81.494156] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x3c00000
[ 81.494159] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 60/2
[ 81.494163] [12] tb_switch_add:3284: thunderbolt 0000:2c:00.0: 3:5: disabled by eeprom
[ 81.494167] [12] tb_switch_add:3284: thunderbolt 0000:2c:00.0: 3:6: disabled by eeprom
[ 81.494170] [12] tb_switch_add:3284: thunderbolt 0000:2c:00.0: 3:7: disabled by eeprom
[ 81.494397] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 8: 8086:15ef (Revision: 6, TB Version: 1, Type: PCIe (0x100102))
[ 81.494402] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/8
[ 81.494405] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 2
[ 81.494408] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x800000
[ 81.494412] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 8/0
[ 81.494649] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 9: 8086:15ef (Revision: 6, TB Version: 1, Type: PCIe (0x100101))
[ 81.494654] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/8
[ 81.494657] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 2
[ 81.494661] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x800000
[ 81.494664] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 8/0
[ 81.495155] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 10: 8086:15ef (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 81.495160] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 9/9
[ 81.495163] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 2
[ 81.495166] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x800000
[ 81.495169] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 8/0
[ 81.495660] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 11: 8086:15ef (Revision: 6, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 81.495665] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 9/9
[ 81.495668] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 2
[ 81.495671] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x800000
[ 81.495675] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 8/0
[ 81.495913] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 12: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[ 81.495917] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/8
[ 81.495921] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 2
[ 81.495924] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x800000
[ 81.495927] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 8/0
[ 81.496165] [12] tb_dump_port:448: thunderbolt 0000:2c:00.0: Port 13: 8086:15ea (Revision: 6, TB Version: 1, Type: Inactive (0x0))
[ 81.496169] [12] tb_dump_port:453: thunderbolt 0000:2c:00.0: Max hop id (in/out): 8/8
[ 81.496173] [12] tb_dump_port:455: thunderbolt 0000:2c:00.0: Max counters: 2
[ 81.496176] [12] tb_dump_port:456: thunderbolt 0000:2c:00.0: NFC Credits: 0x800000
[ 81.496179] [12] tb_dump_port:457: thunderbolt 0000:2c:00.0: Credits (total/control): 8/0
[ 81.496418] [12] tb_switch_link_init:2860: thunderbolt 0000:2c:00.0: 3: current link speed 10.0 Gb/s
[ 81.496423] [12] tb_switch_link_init:2861: thunderbolt 0000:2c:00.0: 3: current link width symmetric, single lane
[ 81.496797] [12] tb_port_do_update_credits:1234: thunderbolt 0000:2c:00.0: 0:3: total credits changed 174 -> 174
[ 81.496923] [12] tb_port_do_update_credits:1234: thunderbolt 0000:2c:00.0: 0:4: total credits changed 174 -> 174
[ 81.497050] [12] tb_switch_clx_init:231: thunderbolt 0000:2c:00.0: 3: CLx: current mode: disabled
[ 81.499955] [12] tmu_mode_init:364: thunderbolt 0000:2c:00.0: 3: TMU: supports uni-directional mode
[ 81.500207] [12] tb_switch_tmu_init:433: thunderbolt 0000:2c:00.0: 3: TMU: current mode: bi-directional, HiFi
[ 81.500307] thunderbolt 0-3: new device found, vendor=0x142 device=0x221
[ 81.500311] thunderbolt 0-3: Targus DOCK221
[ 81.501891] [12] tb_switch_nvm_add:375: thunderbolt 0000:2c:00.0: 3: NVM version 50.0
[ 81.502605] [12] tb_wait_for_port:534: thunderbolt 0000:2c:00.0: 0:4: is connected, link is up (state: 2)
[ 81.504878] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot unplug event on 3:2
[ 81.505346] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot unplug event on 0:4
[ 81.512435] [12] tb_port_do_update_credits:1234: thunderbolt 0000:2c:00.0: 0:4: total credits changed 174 -> 174
[ 81.512554] [12] tb_port_do_update_credits:1234: thunderbolt 0000:2c:00.0: 3:1: total credits changed 60 -> 120
[ 81.512680] [12] tb_port_do_update_credits:1234: thunderbolt 0000:2c:00.0: 3:2: total credits changed 60 -> 0
[ 81.512956] [12] tb_switch_set_link_width:3134: thunderbolt 0000:2c:00.0: 3: link width set to symmetric, dual lanes
[ 81.515399] [12] tb_retimer_nvm_authenticate_status:200: thunderbolt 0000:2c:00.0: 0:3: reading NVM authentication status of retimers
[ 81.719464] [12] tb_retimer_unset_inbound_sbtx:242: thunderbolt 0000:2c:00.0: 0:3: disabling sideband transactions
[ 81.822070] [12] tb_switch_clx_enable:355: thunderbolt 0000:2c:00.0: 3:1: CLx: CL0s/CL1 supported
[ 81.822076] [12] tb_switch_clx_enable:357: thunderbolt 0000:2c:00.0: 0:3: CLx: CL0s/CL1 not supported
[ 81.822196] [12] tb_wait_for_port:526: thunderbolt 0000:2c:00.0: 3:3: is unplugged (state: 7)
[ 81.822586] [1654] tb_tunnel_activate:2367: thunderbolt 0000:2c:00.0: 0:7 <-> 3:8 (PCI): activating
[ 81.822593] [1654] tb_path_activate:512: thunderbolt 0000:2c:00.0: activating PCIe Down path from 0:7 to 3:8
[ 81.822703] [1654] tb_path_activate:573: thunderbolt 0000:2c:00.0: 3:1: Writing hop 1
[ 81.822707] [1654] tb_dump_hop:20: thunderbolt 0000:2c:00.0: 3:1: In HopID: 8 => Out port: 8 Out HopID: 8
[ 81.822712] [1654] tb_dump_hop:22: thunderbolt 0000:2c:00.0: 3:1: Weight: 1 Priority: 3 Credits: 32 Drop: 0 PM: 0
[ 81.822716] [1654] tb_dump_hop:25: thunderbolt 0000:2c:00.0: 3:1: Counter enabled: 0 Counter index: 2047
[ 81.822720] [1654] tb_dump_hop:27: thunderbolt 0000:2c:00.0: 3:1: Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[ 81.822725] [1654] tb_dump_hop:30: thunderbolt 0000:2c:00.0: 3:1: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 81.822955] [1654] tb_path_activate:573: thunderbolt 0000:2c:00.0: 0:7: Writing hop 0
[ 81.822959] [1654] tb_dump_hop:20: thunderbolt 0000:2c:00.0: 0:7: In HopID: 8 => Out port: 3 Out HopID: 8
[ 81.822963] [1654] tb_dump_hop:22: thunderbolt 0000:2c:00.0: 0:7: Weight: 1 Priority: 3 Credits: 7 Drop: 0 PM: 0
[ 81.822967] [1654] tb_dump_hop:25: thunderbolt 0000:2c:00.0: 0:7: Counter enabled: 0 Counter index: 2047
[ 81.822971] [1654] tb_dump_hop:27: thunderbolt 0000:2c:00.0: 0:7: Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[ 81.822975] [1654] tb_dump_hop:30: thunderbolt 0000:2c:00.0: 0:7: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 81.823108] [1654] tb_path_activate:584: thunderbolt 0000:2c:00.0: PCIe Down path activation complete
[ 81.823112] [1654] tb_path_activate:512: thunderbolt 0000:2c:00.0: activating PCIe Up path from 3:8 to 0:7
[ 81.823234] [1654] tb_path_activate:573: thunderbolt 0000:2c:00.0: 0:3: Writing hop 1
[ 81.823238] [1654] tb_dump_hop:20: thunderbolt 0000:2c:00.0: 0:3: In HopID: 8 => Out port: 7 Out HopID: 8
[ 81.823242] [1654] tb_dump_hop:22: thunderbolt 0000:2c:00.0: 0:3: Weight: 1 Priority: 3 Credits: 64 Drop: 0 PM: 0
[ 81.823246] [1654] tb_dump_hop:25: thunderbolt 0000:2c:00.0: 0:3: Counter enabled: 0 Counter index: 2047
[ 81.823250] [1654] tb_dump_hop:27: thunderbolt 0000:2c:00.0: 0:3: Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[ 81.823254] [1654] tb_dump_hop:30: thunderbolt 0000:2c:00.0: 0:3: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 81.823508] [1654] tb_path_activate:573: thunderbolt 0000:2c:00.0: 3:8: Writing hop 0
[ 81.823512] [1654] tb_dump_hop:20: thunderbolt 0000:2c:00.0: 3:8: In HopID: 8 => Out port: 1 Out HopID: 8
[ 81.823516] [1654] tb_dump_hop:22: thunderbolt 0000:2c:00.0: 3:8: Weight: 1 Priority: 3 Credits: 7 Drop: 0 PM: 0
[ 81.823520] [1654] tb_dump_hop:25: thunderbolt 0000:2c:00.0: 3:8: Counter enabled: 0 Counter index: 2047
[ 81.823524] [1654] tb_dump_hop:27: thunderbolt 0000:2c:00.0: 3:8: Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[ 81.823528] [1654] tb_dump_hop:30: thunderbolt 0000:2c:00.0: 3:8: Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[ 81.823635] [1654] tb_path_activate:584: thunderbolt 0000:2c:00.0: PCIe Up path activation complete
[ 81.825329] [1654] tb_lc_xhci_connect:358: thunderbolt 0000:2c:00.0: 3:1: xHCI connected
[ 81.825707] [1654] tb_lc_xhci_connect:358: thunderbolt 0000:2c:00.0: 3:3: xHCI connected
[ 81.825736] [12] tb_handle_hotplug:2496: thunderbolt 0000:2c:00.0: 0:4: got plug event for connected port, ignoring
[ 81.825749] [12] tb_handle_hotplug:2443: thunderbolt 0000:2c:00.0: hotplug event for upstream port 3:2 (unplug: 0)
[ 81.825755] [12] tb_handle_hotplug:2443: thunderbolt 0000:2c:00.0: hotplug event for upstream port 3:2 (unplug: 1)
[ 81.825762] [12] tb_handle_hotplug:2492: thunderbolt 0000:2c:00.0: 0:4: got unplug event for disconnected port, ignoring
[ 82.617544] pcieport 0000:02:01.0: pciehp: Slot(0-1): Card present
[ 82.617551] pcieport 0000:02:01.0: pciehp: Slot(0-1): Link Up
[ 82.745196] pci 0000:17:00.0: [8086:15ef] type 01 class 0x060400 PCIe Switch Upstream Port
[ 82.745275] pci 0000:17:00.0: PCI bridge to [bus 00]
[ 82.745297] pci 0000:17:00.0: bridge window [io 0x0000-0x0fff]
[ 82.745307] pci 0000:17:00.0: bridge window [mem 0x00000000-0x000fffff]
[ 82.745338] pci 0000:17:00.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 82.745373] pci 0000:17:00.0: enabling Extended Tags
[ 82.745692] pci 0000:17:00.0: supports D1 D2
[ 82.745695] pci 0000:17:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 82.746021] pci 0000:17:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:02:01.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 82.746196] pci 0000:17:00.0: Adding to iommu group 1
[ 82.752475] pci 0000:17:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 82.752724] pci 0000:18:02.0: [8086:15ef] type 01 class 0x060400 PCIe Switch Downstream Port
[ 82.752780] pci 0000:18:02.0: PCI bridge to [bus 00]
[ 82.752797] pci 0000:18:02.0: bridge window [io 0x0000-0x0fff]
[ 82.752805] pci 0000:18:02.0: bridge window [mem 0x00000000-0x000fffff]
[ 82.752828] pci 0000:18:02.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 82.752859] pci 0000:18:02.0: enabling Extended Tags
[ 82.753082] pci 0000:18:02.0: supports D1 D2
[ 82.753085] pci 0000:18:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 82.753473] pci 0000:18:02.0: Adding to iommu group 1
[ 82.753567] pci 0000:18:04.0: [8086:15ef] type 01 class 0x060400 PCIe Switch Downstream Port
[ 82.753623] pci 0000:18:04.0: PCI bridge to [bus 00]
[ 82.753639] pci 0000:18:04.0: bridge window [io 0x0000-0x0fff]
[ 82.753647] pci 0000:18:04.0: bridge window [mem 0x00000000-0x000fffff]
[ 82.753670] pci 0000:18:04.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 82.753700] pci 0000:18:04.0: enabling Extended Tags
[ 82.754139] pci 0000:18:04.0: supports D1 D2
[ 82.754143] pci 0000:18:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 82.754567] pci 0000:18:04.0: Adding to iommu group 1
[ 82.754665] pci 0000:17:00.0: PCI bridge to [bus 18-2a]
[ 82.754694] pci 0000:18:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 82.754711] pci 0000:18:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 82.755064] pci 0000:19:00.0: [8086:15f0] type 00 class 0x0c0330 PCIe Endpoint
[ 82.755165] pci 0000:19:00.0: BAR 0 [mem 0x00000000-0x0000ffff]
[ 82.755201] pci 0000:19:00.0: enabling Extended Tags
[ 82.755582] pci 0000:19:00.0: supports D1 D2
[ 82.755586] pci 0000:19:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 82.755806] pci 0000:19:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:02:01.0 (capable of 8.000 Gb/s with 2.5 GT/s PCIe x4 link)
[ 82.756093] pci 0000:19:00.0: Adding to iommu group 1
[ 82.756208] pci 0000:18:02.0: PCI bridge to [bus 19-2a]
[ 82.756238] pci_bus 0000:19: busn_res: [bus 19-2a] end is updated to 19
[ 82.756408] pci 0000:18:04.0: PCI bridge to [bus 1a-2a]
[ 82.756436] pci_bus 0000:1a: busn_res: [bus 1a-2a] end is updated to 2a
[ 82.756448] pci_bus 0000:18: busn_res: [bus 18-2a] end is updated to 2a
[ 82.756465] pci 0000:18:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 1a-2a] add_size 100000 add_align 100000
[ 82.756472] pci 0000:18:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 1a-2a] add_size 100000 add_align 100000
[ 82.756480] pci 0000:17:00.0: bridge window [mem 0x00100000-0x002fffff 64bit pref] to [bus 18-2a] add_size 100000 add_align 100000
[ 82.756487] pci 0000:17:00.0: bridge window [mem 0x00100000-0x002fffff] to [bus 18-2a] add_size 100000 add_align 100000
[ 82.756499] pci 0000:17:00.0: bridge window [mem 0xb0000000-0xb0ffffff]: assigned
[ 82.756504] pci 0000:17:00.0: bridge window [mem 0x34000000000-0x347ffffffff 64bit pref]: assigned
[ 82.756508] pci 0000:17:00.0: bridge window [io 0x3000-0x6fff]: assigned
[ 82.756515] pci 0000:18:02.0: bridge window [mem 0xb0000000-0xb00fffff]: assigned
[ 82.756519] pci 0000:18:02.0: bridge window [mem 0x34000000000-0x340000fffff 64bit pref]: assigned
[ 82.756524] pci 0000:18:04.0: bridge window [mem 0xb0100000-0xb0ffffff]: assigned
[ 82.756528] pci 0000:18:04.0: bridge window [mem 0x34000100000-0x347ffffffff 64bit pref]: assigned
[ 82.756532] pci 0000:18:02.0: bridge window [io 0x3000-0x3fff]: assigned
[ 82.756536] pci 0000:18:04.0: bridge window [io 0x4000-0x6fff]: assigned
[ 82.756541] pci 0000:19:00.0: BAR 0 [mem 0xb0000000-0xb000ffff]: assigned
[ 82.756551] pci 0000:18:02.0: PCI bridge to [bus 19]
[ 82.756557] pci 0000:18:02.0: bridge window [io 0x3000-0x3fff]
[ 82.756568] pci 0000:18:02.0: bridge window [mem 0xb0000000-0xb00fffff]
[ 82.756576] pci 0000:18:02.0: bridge window [mem 0x34000000000-0x340000fffff 64bit pref]
[ 82.756591] pci 0000:18:04.0: PCI bridge to [bus 1a-2a]
[ 82.756598] pci 0000:18:04.0: bridge window [io 0x4000-0x6fff]
[ 82.756609] pci 0000:18:04.0: bridge window [mem 0xb0100000-0xb0ffffff]
[ 82.756618] pci 0000:18:04.0: bridge window [mem 0x34000100000-0x347ffffffff 64bit pref]
[ 82.756633] pci 0000:17:00.0: PCI bridge to [bus 18-2a]
[ 82.756639] pci 0000:17:00.0: bridge window [io 0x3000-0x6fff]
[ 82.756650] pci 0000:17:00.0: bridge window [mem 0xb0000000-0xb0ffffff]
[ 82.756659] pci 0000:17:00.0: bridge window [mem 0x34000000000-0x347ffffffff 64bit pref]
[ 82.756672] pcieport 0000:02:01.0: PCI bridge to [bus 17-2a]
[ 82.756677] pcieport 0000:02:01.0: bridge window [io 0x3000-0x6fff]
[ 82.756684] pcieport 0000:02:01.0: bridge window [mem 0xb0000000-0xb0ffffff]
[ 82.756690] pcieport 0000:02:01.0: bridge window [mem 0x34000000000-0x347ffffffff 64bit pref]
[ 82.756753] pcieport 0000:17:00.0: enabling device (0000 -> 0003)
[ 82.757078] pcieport 0000:18:02.0: enabling device (0000 -> 0003)
[ 82.757328] pcieport 0000:18:04.0: enabling device (0000 -> 0003)
[ 82.757665] pcieport 0000:18:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 82.758260] pci 0000:19:00.0: enabling device (0000 -> 0002)
[ 82.758584] xhci_hcd 0000:19:00.0: xHCI Host Controller
[ 82.758593] xhci_hcd 0000:19:00.0: new USB bus registered, assigned bus number 7
[ 82.759874] xhci_hcd 0000:19:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[ 82.760447] xhci_hcd 0000:19:00.0: xHCI Host Controller
[ 82.760455] xhci_hcd 0000:19:00.0: new USB bus registered, assigned bus number 8
[ 82.760461] xhci_hcd 0000:19:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 82.760537] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.16
[ 82.760542] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 82.760545] usb usb7: Product: xHCI Host Controller
[ 82.760549] usb usb7: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 82.760552] usb usb7: SerialNumber: 0000:19:00.0
[ 82.761480] hub 7-0:1.0: USB hub found
[ 82.761499] hub 7-0:1.0: 2 ports detected
[ 82.762124] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.16
[ 82.762130] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 82.762133] usb usb8: Product: xHCI Host Controller
[ 82.762136] usb usb8: Manufacturer: Linux 6.16.0-rc2+ xhci-hcd
[ 82.762139] usb usb8: SerialNumber: 0000:19:00.0
[ 82.763184] hub 8-0:1.0: USB hub found
[ 82.763207] hub 8-0:1.0: 2 ports detected
[ 83.009137] usb 7-1: new high-speed USB device number 2 using xhci_hcd
[ 83.147493] usb 7-1: New USB device found, idVendor=2109, idProduct=2820, bcdDevice= 0.30
[ 83.147501] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 83.147505] usb 7-1: Product: USB2.0 Hub
[ 83.147508] usb 7-1: Manufacturer: VIA Labs, Inc.
[ 83.148964] hub 7-1:1.0: USB hub found
[ 83.149173] hub 7-1:1.0: 4 ports detected
[ 83.274158] usb 8-1: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[ 83.291097] usb 8-1: New USB device found, idVendor=2109, idProduct=0820, bcdDevice= 0.30
[ 83.291105] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 83.291109] usb 8-1: Product: USB3.0 Hub
[ 83.291113] usb 8-1: Manufacturer: VIA Labs, Inc.
[ 83.292939] hub 8-1:1.0: USB hub found
[ 83.293083] hub 8-1:1.0: 4 ports detected
[ 84.845613] usb 7-1-port1: Cannot enable. Maybe the USB cable is bad?
[ 85.948738] usb 7-1-port1: Cannot enable. Maybe the USB cable is bad?
[ 85.948993] usb 7-1-port1: attempt power cycle
[ 86.028346] usb 8-1.2: new SuperSpeed Plus Gen 2x1 USB device number 3 using xhci_hcd
[ 86.073355] usb 8-1.2: New USB device found, idVendor=2109, idProduct=0817, bcdDevice=20.13
[ 86.073360] usb 8-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 86.073363] usb 8-1.2: Product: USB3.0 Hub
[ 86.073365] usb 8-1.2: Manufacturer: VIA Labs, Inc.
[ 86.073367] usb 8-1.2: SerialNumber: 000000000
[ 86.081743] hub 8-1.2:1.0: USB hub found
[ 86.081982] hub 8-1.2:1.0: 4 ports detected
[ 86.721472] usb 8-1.2.4: new SuperSpeed USB device number 4 using xhci_hcd
[ 86.767262] usb 8-1.2.4: New USB device found, idVendor=2109, idProduct=0817, bcdDevice=20.14
[ 86.767271] usb 8-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 86.767274] usb 8-1.2.4: Product: USB3.0 Hub
[ 86.767278] usb 8-1.2.4: Manufacturer: VIA Labs, Inc.
[ 86.767281] usb 8-1.2.4: SerialNumber: 000000000
[ 86.769639] hub 8-1.2.4:1.0: USB hub found
[ 86.769751] hub 8-1.2.4:1.0: 4 ports detected
[ 88.349339] usb 8-1.1: new SuperSpeed Plus Gen 2x1 USB device number 5 using xhci_hcd
[ 88.365764] usb 8-1.1: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00
[ 88.365773] usb 8-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[ 88.365777] usb 8-1.1: Product: USB 10/100/1000 LAN
[ 88.365780] usb 8-1.1: Manufacturer: Realtek
[ 88.365783] usb 8-1.1: SerialNumber: 00120010F
[ 88.395954] usbcore: registered new device driver r8152-cfgselector
[ 88.489242] usb 7-1.2: new high-speed USB device number 6 using xhci_hcd
[ 88.631446] usb 7-1.2: New USB device found, idVendor=2109, idProduct=2817, bcdDevice=20.13
[ 88.631455] usb 7-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 88.631459] usb 7-1.2: Product: USB2.0 Hub
[ 88.631462] usb 7-1.2: Manufacturer: VIA Labs, Inc.
[ 88.631466] usb 7-1.2: SerialNumber: 000000000
[ 88.634651] hub 7-1.2:1.0: USB hub found
[ 88.634761] hub 7-1.2:1.0: 5 ports detected
[ 88.700904] r8152-cfgselector 8-1.1: reset SuperSpeed Plus Gen 2x1 USB device number 5 using xhci_hcd
[ 88.724013] r8152 8-1.1:1.0: Direct firmware load for rtl_nic/rtl8153b-2.fw failed with error -2
[ 88.724022] r8152 8-1.1:1.0: unable to load firmware patch rtl_nic/rtl8153b-2.fw (-2)
[ 88.757455] r8152 8-1.1:1.0 eth0: v1.12.13
[ 88.757527] usbcore: registered new interface driver r8152
[ 88.768265] usbcore: registered new interface driver cdc_ether
[ 88.770645] usbcore: registered new interface driver r8153_ecm
[ 88.841945] r8152 8-1.1:1.0 enx4c56df200810: renamed from eth0
[ 89.870169] usb 7-1-port3: Cannot enable. Maybe the USB cable is bad?
[ 90.977632] usb 7-1-port3: Cannot enable. Maybe the USB cable is bad?
[ 90.979385] usb 7-1-port3: attempt power cycle
[ 91.101231] usb 7-1.2.4: new high-speed USB device number 9 using xhci_hcd
[ 91.243338] usb 7-1.2.4: New USB device found, idVendor=2109, idProduct=2817, bcdDevice=20.14
[ 91.243346] usb 7-1.2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 91.243350] usb 7-1.2.4: Product: USB2.0 Hub
[ 91.243354] usb 7-1.2.4: Manufacturer: VIA Labs, Inc.
[ 91.243357] usb 7-1.2.4: SerialNumber: 000000000
[ 91.248073] hub 7-1.2.4:1.0: USB hub found
[ 91.248156] hub 7-1.2.4:1.0: 5 ports detected
[ 91.445282] usb 7-1.2.5: new high-speed USB device number 10 using xhci_hcd
[ 91.534168] usb 7-1.2.5: New USB device found, idVendor=2109, idProduct=3801, bcdDevice= 0.01
[ 91.534177] usb 7-1.2.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 91.534180] usb 7-1.2.5: Product: USB Billboard Device
[ 91.534184] usb 7-1.2.5: Manufacturer: VIA Labs, Inc.
[ 91.534187] usb 7-1.2.5: SerialNumber: 0000000000000001
[ 91.819603] r8152 8-1.1:1.0 enx4c56df200810: carrier on
[ 91.957227] usb 7-1.2.4.1: new full-speed USB device number 11 using xhci_hcd
[ 92.275310] usb 7-1.2.4.1: New USB device found, idVendor=0572, idProduct=00e5, bcdDevice= 0.02
[ 92.275319] usb 7-1.2.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 92.275323] usb 7-1.2.4.1: Product: Targus DOCK221
[ 92.275327] usb 7-1.2.4.1: Manufacturer: Synaptics
[ 92.275330] usb 7-1.2.4.1: SerialNumber: 000000000000
[ 93.209702] usb 7-1-port3: Cannot enable. Maybe the USB cable is bad?
[ 94.317561] usb 7-1-port3: Cannot enable. Maybe the USB cable is bad?
[ 94.319324] usb 7-1-port3: unable to enumerate USB device
[ 94.392416] usb 7-1.2.4.5: new high-speed USB device number 14 using xhci_hcd
[ 94.483112] usb 7-1.2.4.5: New USB device found, idVendor=2109, idProduct=3802, bcdDevice= 0.01
[ 94.483121] usb 7-1.2.4.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 94.483125] usb 7-1.2.4.5: Product: USB Billboard Device
[ 94.483129] usb 7-1.2.4.5: Manufacturer: VIA Labs, Inc.
[ 94.483132] usb 7-1.2.4.5: SerialNumber: 0000000000000001
[ 94.502535] hid: raw HID events driver (C) Jiri Kosina
[ 94.584118] usbcore: registered new interface driver usbhid
[ 94.584124] usbhid: USB HID core driver
[ 94.629430] usbcore: registered new interface driver snd-usb-audio
[ 94.647206] input: Synaptics Targus DOCK221 as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/0000:02:01.0/0000:17:00.0/0000:18:02.0/0000:19:00.0/usb7/7-1/7-1.2/7-1.2.4/7-1.2.4.1/7-1.2.4.1:1.3/0003:0572:00E5.0001/input/input5
[ 94.700566] hid-generic 0003:0572:00E5.0001: input,hidraw0: USB HID v1.11 Device [Synaptics Targus DOCK221] on usb-0000:19:00.0-1.2.4.1/input3
[ 98.856966] [369] tb_cfg_ack_plug:842: thunderbolt 0000:2c:00.0: acking hot plug event on 3:10
[ 98.857870] [12] tb_dp_resource_available:2214: thunderbolt 0000:2c:00.0: 3:10: DP OUT resource available after hotplug
[ 98.857880] [12] tb_tunnel_dp:2069: thunderbolt 0000:2c:00.0: looking for DP IN <-> DP OUT pairs:
[ 98.857884] [12] tb_tunnel_dp:2093: thunderbolt 0000:2c:00.0: no suitable DP IN adapter available, not tunneling
[ 120.746880] exFAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
2c:00.0 USB controller [0c03]: ASMedia Technology Inc. Device [1b21:2425] (rev 01) (prog-if 40 [USB4 Host Interface])
Subsystem: ASMedia Technology Inc. Device [1b21:2421]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 41
IOMMU group: 1
Region 0: Memory at b2000000 (64-bit, non-prefetchable) [size=256K]
Region 2: Memory at b2040000 (64-bit, non-prefetchable) [size=64K]
Capabilities: [50] MSI: Enable- Count=1/8 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [68] MSI-X: Enable+ Count=16 Masked-
Vector table: BAR=0 offset=0003f000
PBA: BAR=0 offset=0003f100
Capabilities: [78] Power Management version 3
Flags: PMEClk- DSI+ D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [80] Express (v2) Legacy Endpoint, MSI 00
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <64ns, L1 unlimited
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <4us, L1 <64us
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x1
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR+
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
FRS-
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- 10BitTagReq- OBFF Disabled,
AtomicOpsCtl: ReqEn-
LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: unsupported
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [160 v1] Latency Tolerance Reporting
Max snoop latency: 0ns
Max no snoop latency: 0ns
Capabilities: [178 v1] Device Serial Number 45-1e-ca-ff-ff-51-77-a0
Kernel driver in use: thunderbolt
Kernel modules: thunderbolt
A
B
B
A
A
A
A
A
A
A
A
A
A
A
A